/* TWOTIMESTWO LLC - Standalone styles */
:root {
  --bg: #fff;
  --fg: #1f1f1f;
  --accent: #FF4D00;
  --neutral-50: #fafafa;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-800: #262626;
  --neutral-900: #171717;
  --font-sans: 'Inter', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --radius: 0;
  --container: min(1280px, 100% - 3rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 800; letter-spacing: -0.025em; }

.page { min-height: 100vh; }
.container { width: var(--container); margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  font-family: var(--font-sans);
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn-nav { background: var(--neutral-900); color: #fff; }
.btn-nav:hover, .btn-nav:active { background: var(--accent); color: #fff; }
.btn-hero-primary { background: #fff; color: var(--neutral-900); padding: 1rem 2.5rem; }
.btn-hero-primary:hover, .btn-hero-primary:active { background: var(--accent); color: #fff; }
.btn-hero-outline { background: rgba(255,255,255,0.05); color: #fff; border: 1px solid rgba(255,255,255,0.3); padding: 1rem 2.5rem; }
.btn-hero-outline:hover, .btn-hero-outline:active { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-white { background: #fff; color: var(--neutral-900); padding: 1rem 2.5rem; }
.btn-white:hover, .btn-white:active { background: var(--accent); color: #fff; }
.btn-submit { width: 100%; background: var(--neutral-900); color: #fff; padding: 1.25rem; font-size: 1rem; }
.btn-submit:hover, .btn-submit:active { background: var(--accent); color: #fff; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-submit:disabled:hover, .btn-submit:disabled:active { background: var(--neutral-900); color: #fff; }

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229,229,229,0.5);
}
.nav-inner {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--neutral-900);
}
.logo img {
  display: block;
  height: 3.25rem;
  width: auto;
  max-height: 100%;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.nav-links a {
  color: var(--neutral-600);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a:active { color: var(--accent); }
.nav-links a.btn-nav,
.nav-links a.btn-nav:hover,
.nav-links a.btn-nav:active { color: #fff; }
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2rem;
  height: 2rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--neutral-900);
}
.nav-toggle:hover, .nav-toggle:active { color: var(--accent); }
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-links { display: flex; }
}
@media (max-width: 767px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--neutral-200);
    gap: 1rem;
  }
  .nav-links.hidden { display: none !important; }
  .nav-links:not(.hidden) { display: flex; }
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--neutral-900);
  padding-top: 5rem;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23,23,23,0.7);
  z-index: 1;
  mix-blend-mode: multiply;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--neutral-900), rgba(23,23,23,0.4), transparent);
  z-index: 1;
}
.hero-img,
.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-img { filter: grayscale(100%); opacity: 0.8; }
.hero-media { filter: grayscale(100%); opacity: 0.8; }
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-text { max-width: 64rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 1rem;
  margin-bottom: 2rem;
  background: #fff;
  color: var(--neutral-900);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: 0 10px 15px -3px rgba(255,255,255,0.1);
}
.hero-badge.hidden { display: none; }
.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: #fff;
  line-height: 1.05;
  margin: 0 0 2rem;
  letter-spacing: -0.025em;
}
.hero-title.hidden { display: none; }
.hero-desc {
  font-size: 1.125rem;
  color: rgba(212,212,212,1);
  font-weight: 300;
  max-width: 48rem;
  margin: 0 0 3rem;
  line-height: 1.6;
}
.hero-desc.hidden { display: none; }
@media (min-width: 768px) {
  .hero-desc { font-size: 1.5rem; }
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-cta.hidden { display: none; }
@media (min-width: 640px) {
  .hero-cta { flex-direction: row; }
}
.hero-indicators {
  position: absolute;
  bottom: 3rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-dot {
  width: 1.5rem;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.5s, background 0.3s;
}
.hero-dot:hover { background: var(--accent); }
.hero-dot.active { width: 4rem; background: var(--accent); }
.hero-counter {
  margin-left: 1rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-family: monospace;
  letter-spacing: 0.1em;
}

/* Strip */
.strip {
  background: var(--neutral-900);
  border-top: 1px solid var(--neutral-800);
  padding: 4rem 0;
}
.strip-container { position: relative; }
/* Mobil: carousel, 2'li gösterim */
.strip-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.strip-grid::-webkit-scrollbar { display: none; }
.strip-item {
  flex: 0 0 50%;
  min-width: 50%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 0 0.75rem;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.strip-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}
.strip-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--neutral-400);
  text-transform: uppercase;
}
/* Carousel dots - sadece mobil */
.strip-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.strip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--neutral-600);
  cursor: pointer;
  transition: background 0.2s;
}
.strip-dot:hover { background: var(--neutral-400); }
.strip-dot.active { background: var(--accent); }
@media (min-width: 768px) {
  .strip-dots { display: none; }
  .strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    overflow: visible;
    scroll-snap-type: none;
  }
  .strip-item {
    flex: none;
    min-width: 0;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    border-left: 1px solid var(--neutral-800);
    scroll-snap-align: none;
  }
  .strip-item:first-child { border-left: none; padding-left: 0; }
  .strip-value { font-size: 1.5rem; }
}

/* Section common */
.section-header, .section-label, .section-title { text-align: center; }
.section-header { max-width: 56rem; margin-left: auto; margin-right: auto; margin-bottom: 6rem; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--neutral-500);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-label .line { width: 3rem; height: 1px; background: var(--neutral-300); }
.section-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--neutral-900);
  line-height: 1.1;
  margin: 0;
}

/* Divisions */
.divisions {
  padding: 8rem 0;
  background: #fff;
}
@media (min-width: 768px) {
  .divisions { padding: 10rem 0; }
}
.divisions-grid {
  display: grid;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .divisions-grid { grid-template-columns: repeat(2, 1fr); }
}
.division-card {
  position: relative;
  border: 1px solid var(--neutral-200);
  padding: 2rem;
  background: var(--neutral-50);
  transition: border-color 0.5s, box-shadow 0.5s, transform 0.5s, background 0.5s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 768px) {
  .division-card { padding: 4rem; }
}
.division-card:hover {
  border-color: var(--accent);
  box-shadow: 0 25px 50px -12px rgba(255,77,0,0.2);
  transform: translateY(-0.5rem);
  background: #fff;
}
.division-num {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  color: var(--neutral-200);
  opacity: 0.2;
  transition: color 0.5s;
}
.division-card:hover .division-num { color: var(--accent); }
.division-icon {
  display: block;
  color: var(--neutral-900);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.division-title {
  font-size: 1.875rem;
  color: var(--neutral-900);
  margin: 0 0 1.5rem;
  position: relative;
  z-index: 1;
}
.division-desc {
  color: var(--neutral-600);
  line-height: 1.6;
  margin: 0 0 3rem;
  flex-grow: 1;
  font-size: 1.125rem;
  position: relative;
  z-index: 1;
}
.division-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--neutral-900);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  text-decoration: none;
  transition: gap 0.3s, color 0.2s;
  position: relative;
  z-index: 1;
}
.division-link:hover, .division-link:active { color: var(--accent); }
.division-card:hover .division-link { gap: 1.5rem; }

/* Advantage: arka plan full-width, içerik container'da */
.advantage {
  position: relative;
  padding: 8rem 0;
  background: var(--neutral-900);
  color: #fff;
  overflow: hidden;
}
@media (min-width: 768px) {
  .advantage { padding: 10rem 0; }
}
.advantage-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}
@media (min-width: 768px) {
  .advantage-bg { width: 50%; right: 0; left: auto; opacity: 0.4; }
}
.advantage-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  mix-blend-mode: screen;
}
.advantage-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent, rgba(23,23,23,0.8), var(--neutral-900));
}
@media (max-width: 767px) {
  .advantage-bg-gradient { background: linear-gradient(to top, transparent, rgba(23,23,23,0.8), var(--neutral-900)); }
}
.advantage .container { position: relative; z-index: 10; }
.advantage-inner { max-width: 48rem; margin-left: 0; margin-right: auto; }
.advantage-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--neutral-400);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.advantage-label .line { width: 2rem; height: 1px; background: var(--neutral-600); }
.advantage-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin: 0 0 2.5rem;
}
.advantage-desc {
  font-size: 1.25rem;
  color: var(--neutral-300);
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 4rem;
  max-width: 42rem;
}
.advantage-desc strong { font-weight: 600; color: #fff; }
@media (min-width: 768px) {
  .advantage-desc { font-size: 1.5rem; }
}

/* Partner */
.partner {
  padding: 8rem 0;
  background: var(--neutral-50);
}
@media (min-width: 768px) {
  .partner { padding: 10rem 0; }
}
.partner-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .partner-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.partner-img-wrap {
  order: 2;
}
@media (min-width: 1024px) {
  .partner-img-wrap { order: 1; }
}
.partner-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  filter: grayscale(100%);
  border: 1px solid var(--neutral-200);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.partner-content { order: 1; }
@media (min-width: 1024px) {
  .partner-content { order: 2; }
}
.partner-content .section-label { justify-content: flex-start; }
.partner-content .section-title { text-align: left; }
.partner-intro {
  font-size: 1.25rem;
  color: var(--neutral-600);
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 4rem;
  border-left: 2px solid var(--neutral-900);
  padding-left: 1.5rem;
}
.partner-items { display: flex; flex-direction: column; gap: 3rem; }
.partner-item {
  display: flex;
  gap: 1.5rem;
}
.partner-icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  background: #fff;
  border: 1px solid var(--neutral-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-900);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.partner-item-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin: 0 0 0.75rem;
}
.partner-item-desc {
  color: var(--neutral-600);
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0;
}

/* Contact */
.contact {
  padding: 8rem 0;
  background: #fff;
  border-top: 1px solid var(--neutral-200);
}
@media (min-width: 768px) {
  .contact { padding: 10rem 0; }
}
.contact-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem 5rem;
    align-items: center;
  }
}
.contact-intro {
  min-width: 0;
}
.contact-title {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  color: var(--neutral-900);
  line-height: 1.05;
  margin: 0 0 1.5rem;
}
.contact-desc {
  font-size: 1.25rem;
  color: var(--neutral-600);
  font-weight: 300;
  margin: 0;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .contact-desc { font-size: 1.5rem; }
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: 0;
}
@media (min-width: 768px) {
  .contact-details { padding: 2.5rem; gap: 1.5rem; }
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--neutral-200);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-900);
}
.contact-detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neutral-500);
  margin-bottom: 0.25rem;
}
.contact-detail-value {
  font-size: 1rem;
  color: var(--neutral-900);
  font-weight: 500;
  line-height: 1.4;
}
.contact-link {
  text-decoration: none;
  color: var(--neutral-900);
  transition: color 0.2s;
}
.contact-link:hover, .contact-link:active { color: var(--accent); text-decoration: underline; }
.contact-detail-ein {
  margin-top: 0.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--neutral-200);
}
.contact-detail-ein .contact-detail-label { display: inline; margin-right: 0.5rem; }
.contact-detail-ein .contact-detail-value { font-size: 0.875rem; color: var(--neutral-600); }

/* Footer */
.footer {
  background: var(--neutral-900);
  padding: 4rem 0;
  color: var(--neutral-400);
  border-top: 1px solid var(--neutral-800);
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--neutral-800);
}
@media (min-width: 768px) {
  .footer-top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}
.footer-brand { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #fff;
}
.footer-address {
  font-size: 0.875rem;
  color: var(--neutral-400);
  line-height: 1.5;
  max-width: 280px;
}
.footer-ein {
  font-size: 0.75rem;
  color: var(--neutral-500);
  letter-spacing: 0.05em;
}
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer-right { flex-direction: row; align-items: flex-start; gap: 3rem; }
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.footer-contact a {
  color: var(--neutral-400);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover, .footer-contact a:active { color: var(--accent); }
.footer-links {
  display: flex;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover, .footer-links a:active { color: var(--accent); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.025em;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover, .footer-legal a:active { color: var(--accent); }

.hidden { display: none !important; }

/* Selection */
::selection { background: var(--neutral-900); color: #fff; }
