/* ═══════════════════════════════════════════════
   İzmir GEO – Full Stylesheet v2.0
   ═══════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Design tokens ── */
:root {
  --navy:        #0a1628;
  --navy-mid:    #0d1e3a;
  --navy-light:  #132444;
  --gold:        #d4a843;
  --gold-dark:   #b8902f;
  --gold-light:  #e8c06a;
  --white:       #ffffff;
  --gray-50:     #f8f9fc;
  --gray-100:    #f0f2f7;
  --gray-200:    #e2e8f0;
  --gray-400:    #94a3b8;
  --gray-600:    #475569;
  --gray-800:    #1e293b;
  --text:        #1e293b;
  --text-muted:  #64748b;
  --bg:          #ffffff;
  --bg-alt:      #f8f9fc;
  --border:      #e2e8f0;
  --card-bg:     #ffffff;

  --font-body: 'Inter', -apple-system, sans-serif;
  --font-head: 'Plus Jakarta Sans', 'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.07);
  --shadow-md:   0 4px 16px rgba(0,0,0,.09);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.13);
  --shadow-gold: 0 8px 32px rgba(212,168,67,.28);

  --transition: .25s cubic-bezier(.4,0,.2,1);
  --max-w: 1200px;
}

/* ── Dark mode ── */
[data-theme="dark"] {
  --bg:         #0a0f1e;
  --bg-alt:     #0d1528;
  --border:     rgba(255,255,255,.1);
  --card-bg:    #111827;
  --text:       #e2e8f0;
  --text-muted: #94a3b8;
  --gray-50:    #111827;
  --gray-100:   #1a2233;
  --gray-200:   rgba(255,255,255,.08);
  --gray-800:   #e2e8f0;
}

html { scroll-behavior: smooth; scroll-padding-top: 72px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.section__header { text-align: center; max-width: 680px; margin: 0 auto 64px; }

.section__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-top: 16px;
}
.section__title em { font-style: normal; color: var(--gold); }
.section__sub { margin-top: 16px; color: var(--text-muted); font-size: 1.05rem; }

/* ── Badge ── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: 100px;
  font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  background: rgba(212,168,67,.15); color: var(--gold-dark);
  border: 1px solid rgba(212,168,67,.3);
}
.badge--light {
  background: rgba(10,22,40,.06); color: var(--text);
  border-color: rgba(10,22,40,.12);
}
[data-theme="dark"] .badge--light {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: var(--text);
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius-md);
  font-size: .95rem; font-weight: 600;
  transition: all var(--transition); white-space: nowrap;
}
.btn--lg { padding: 15px 36px; font-size: 1rem; }
.btn--sm { padding: 8px 18px; font-size: .85rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.btn--ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.35); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

.btn--outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); }
[data-theme="dark"] .btn--outline { color: var(--text); border-color: var(--border); }
[data-theme="dark"] .btn--outline:hover { background: var(--navy-light); color: var(--white); border-color: var(--navy-light); }

/* ═══ PRELOADER ═══════════════════════════════ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }

.preloader__logo { width: 72px; height: 72px; animation: pl-pulse 1.2s ease infinite; }
@keyframes pl-pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.08);opacity:.85} }

.pl-circle { stroke-dasharray: 120; stroke-dashoffset: 120; animation: pl-draw 1s ease forwards; }
@keyframes pl-draw { to { stroke-dashoffset: 0; } }

.preloader__bar { width: 200px; height: 3px; background: rgba(255,255,255,.1); border-radius: 2px; overflow: hidden; }
.preloader__fill { height: 100%; background: var(--gold); border-radius: 2px; width: 0; transition: width .1s linear; }

/* ═══ SCROLL PROGRESS ════════════════════════ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold-light));
  z-index: 1000; width: 0; transition: width .1s linear;
}

/* ═══ HEADER ══════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.header.scrolled {
  background: rgba(10,22,40,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}
[data-theme="dark"] .header.scrolled { background: rgba(8,12,24,.95); }

.header__inner { display: flex; align-items: center; gap: 24px; height: 72px; }

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo__text { font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; color: var(--white); letter-spacing: -.01em; }
.logo__text strong { color: var(--gold); }

.nav { margin-left: auto; }
.nav__list { display: flex; gap: 4px; }
.nav__link {
  display: block; padding: 8px 14px; font-size: .88rem; font-weight: 500;
  color: rgba(255,255,255,.8); border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav__link:hover, .nav__link--active { color: var(--white); background: rgba(255,255,255,.08); }

.header__right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Theme toggle */
.theme-toggle {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8); font-size: .9rem;
  transition: all var(--transition);
}
.theme-toggle:hover { background: rgba(255,255,255,.2); color: var(--white); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; margin-left: auto; padding: 4px; }
.hamburger span { display: block; width: 100%; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══ HERO ════════════════════════════════════ */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  position: relative; background: var(--navy); overflow: hidden;
  padding: 120px 0 80px;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__blob { position: absolute; border-radius: 50%; filter: blur(90px); }
.hero__blob--1 { width: 700px; height: 700px; top: -250px; right: -100px; background: radial-gradient(circle, rgba(212,168,67,.15), transparent 70%); }
.hero__blob--2 { width: 500px; height: 500px; bottom: -150px; left: -100px; background: radial-gradient(circle, rgba(19,100,196,.18), transparent 70%); }

.hero__particles { position: absolute; inset: 0; }

.hero__inner {
  position: relative; display: grid;
  grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}

.hero__content { color: var(--white); }

.hero__heading {
  font-family: var(--font-head); font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800; line-height: 1.1; margin: 20px 0 24px;
  color: var(--white);
}
.hero__heading em { font-style: normal; color: var(--gold); }

.typed-wrapper { display: inline-block; min-width: 220px; }
.typed-cursor { display: inline-block; color: var(--gold); animation: blink .75s infinite; margin-left: 2px; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero__sub { font-size: 1.1rem; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 40px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }

.hero__trust { display: flex; gap: 0; flex-wrap: wrap; }
.trust-item { padding: 0 28px; }
.trust-item:first-child { padding-left: 0; }
.trust-item strong { display: block; font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.trust-item small { display: block; font-size: .78rem; color: rgba(255,255,255,.55); margin-top: 4px; text-transform: uppercase; letter-spacing: .05em; }
.trust-sep { width: 1px; background: rgba(255,255,255,.15); align-self: stretch; margin: 4px 0; }

/* Dashboard */
.hero__visual { position: relative; }
.dashboard {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 24px;
  backdrop-filter: blur(12px); box-shadow: var(--shadow-lg);
}
.dashboard__header { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--red { background: #ff5f57; }
.dot--yellow { background: #ffbd2e; }
.dot--green { background: #28c840; }
.dashboard__title { font-size: .78rem; color: rgba(255,255,255,.5); margin-left: 8px; font-weight: 500; letter-spacing: .04em; }
.chart { padding: 8px 0 16px; }
.chart__bars { display: flex; align-items: flex-end; gap: 8px; height: 120px; }
.chart__bar { flex: 1; height: var(--h); background: rgba(255,255,255,.12); border-radius: 6px 6px 0 0; position: relative; }
.chart__bar span { position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); font-size: .62rem; color: rgba(255,255,255,.4); white-space: nowrap; }
.chart__bar--highlight { background: linear-gradient(to top, var(--gold-dark), var(--gold-light)); }
.dashboard__stats { display: flex; gap: 12px; margin-top: 28px; }
.dstat { flex: 1; background: rgba(255,255,255,.06); border-radius: var(--radius-sm); padding: 10px 12px; display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.85); }
.dstat i { color: var(--gold); }
.dstat--geo i { color: #4ade80; }
.dashboard__metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 12px; }
.metric { background: rgba(255,255,255,.04); border-radius: var(--radius-sm); padding: 10px; text-align: center; }
.metric__label { display: block; font-size: .65rem; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.metric__value { display: block; font-size: 1rem; font-weight: 700; color: var(--white); }
.metric__change { display: block; font-size: .65rem; font-weight: 600; margin-top: 2px; }
.metric__change--up { color: #4ade80; }

.hero__scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); }
.hero__scroll span { display: block; width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.25); border-radius: 12px; position: relative; }
.hero__scroll span::after { content: ''; display: block; width: 4px; height: 8px; background: rgba(255,255,255,.5); border-radius: 2px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); animation: scroll-hint 1.6s ease infinite; }
@keyframes scroll-hint { 0%{opacity:1;transform:translateX(-50%) translateY(0)} 80%{opacity:0;transform:translateX(-50%) translateY(10px)} 100%{opacity:0;transform:translateX(-50%) translateY(0)} }

/* ═══ CLIENTS ═════════════════════════════════ */
.clients { padding: 32px 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.clients__label { text-align: center; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 20px; }
.clients__track { overflow: hidden; position: relative; }
.clients__track::before, .clients__track::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 1; }
.clients__track::before { left: 0; background: linear-gradient(to right, var(--bg-alt), transparent); }
.clients__track::after { right: 0; background: linear-gradient(to left, var(--bg-alt), transparent); }
.clients__logos { display: flex; gap: 40px; width: max-content; animation: marquee 18s linear infinite; }
.clients__logos:hover { animation-play-state: paused; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.client-logo { font-size: .88rem; font-weight: 700; letter-spacing: .05em; color: var(--gray-400); text-transform: uppercase; padding: 8px 20px; border: 1px solid var(--border); border-radius: var(--radius-sm); white-space: nowrap; flex-shrink: 0; }

/* ═══ SERVICES ═══════════════════════════════ */
.services { background: var(--bg-alt); }
.services__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.service-card {
  background: var(--card-bg); border-radius: var(--radius-lg); padding: 40px 32px;
  border: 1px solid var(--border); transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.service-card--seo::before { background: #3b82f6; }
.service-card--geo::before { background: var(--gold); }
.service-card--social::before { background: #8b5cf6; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.service-card--featured { background: var(--navy); border-color: var(--navy); color: var(--white); }
.service-card__badge { position: absolute; top: 20px; right: 20px; background: var(--gold); color: var(--navy); font-size: .72rem; font-weight: 700; padding: 4px 12px; border-radius: 100px; text-transform: uppercase; }
.service-card__icon { width: 56px; height: 56px; background: var(--gray-100); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 24px; }
.service-card--seo .service-card__icon { background: rgba(59,130,246,.1); color: #3b82f6; }
.service-card--geo.service-card--featured .service-card__icon { background: rgba(212,168,67,.2); color: var(--gold); }
.service-card--social .service-card__icon { background: rgba(139,92,246,.1); color: #8b5cf6; }
.service-card__title { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin-bottom: 14px; }
.service-card--featured .service-card__title { color: var(--white); }
.service-card__desc { font-size: .92rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.service-card--featured .service-card__desc { color: rgba(255,255,255,.65); }
.service-card__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.service-card__list li { display: flex; align-items: center; gap: 10px; font-size: .9rem; }
.service-card__list li i { color: var(--gold); font-size: .75rem; flex-shrink: 0; }
.service-card--featured .service-card__list li { color: rgba(255,255,255,.8); }
.service-card__link { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: var(--navy); transition: gap var(--transition); }
[data-theme="dark"] .service-card__link { color: var(--gold); }
.service-card--featured .service-card__link { color: var(--gold); }
.service-card__link:hover { gap: 12px; }

/* ═══ WHY US ══════════════════════════════════ */
.why-us { background: var(--bg); }
.why-us__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-us__content .section__title { text-align: left; }
.why-us__content > p { color: var(--text-muted); font-size: 1rem; margin: 20px 0 36px; line-height: 1.75; }
.why-us__features { display: flex; flex-direction: column; gap: 24px; }
.why-feature { display: flex; gap: 18px; align-items: flex-start; }
.why-feature__icon { width: 44px; height: 44px; background: rgba(212,168,67,.12); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--gold-dark); font-size: 1.1rem; flex-shrink: 0; }
.why-feature strong { display: block; font-size: .95rem; font-weight: 600; margin-bottom: 4px; }
.why-feature p { font-size: .88rem; color: var(--text-muted); }
.why-us__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card { background: var(--bg-alt); border-radius: var(--radius-md); padding: 28px 24px; border: 1px solid var(--border); }
.stat-card--gold { background: var(--navy); border-color: var(--navy); color: var(--white); }
.stat-card--dark { background: var(--gray-800); border-color: var(--gray-800); color: var(--white); }
[data-theme="dark"] .stat-card--dark { background: var(--navy-mid); border-color: var(--navy-light); }
.stat-card__number { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-card__label { font-size: .9rem; font-weight: 600; }
.stat-card__sub { font-size: .78rem; color: var(--text-muted); margin-top: 4px; }
.stat-card--gold .stat-card__sub, .stat-card--dark .stat-card__sub { color: rgba(255,255,255,.5); }

/* ═══ PROCESS ════════════════════════════════ */
.process { background: var(--navy); }
.process .section__title { color: var(--white); }
.process .badge--light { background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.15); }
.process .section__sub { color: rgba(255,255,255,.5); }
.process__steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.process__steps::before { content: ''; position: absolute; top: 52px; left: calc(12.5% + 24px); right: calc(12.5% + 24px); height: 1px; background: linear-gradient(to right, var(--gold), rgba(212,168,67,.1)); pointer-events: none; }
.process__step { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); padding: 32px 24px 28px; color: var(--white); position: relative; transition: all var(--transition); }
.process__step:hover { background: rgba(255,255,255,.07); border-color: rgba(212,168,67,.3); transform: translateY(-4px); }
.process__num { position: absolute; top: -14px; left: 24px; background: var(--gold); color: var(--navy); font-size: .7rem; font-weight: 800; padding: 4px 10px; border-radius: 100px; }
.process__icon { font-size: 1.6rem; color: var(--gold); margin-bottom: 20px; }
.process__step h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; }
.process__step p { font-size: .87rem; color: rgba(255,255,255,.6); line-height: 1.7; }

/* ═══ PRICING ════════════════════════════════ */
.pricing { background: var(--bg-alt); }
.pricing__toggle { display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 48px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 100px; padding: 6px; width: fit-content; margin-left: auto; margin-right: auto; }
.pricing__toggle-btn { padding: 8px 22px; border-radius: 100px; font-size: .88rem; font-weight: 600; color: var(--text-muted); transition: all var(--transition); }
.pricing__toggle-btn.active { background: var(--navy); color: var(--white); }
[data-theme="dark"] .pricing__toggle-btn.active { background: var(--gold); color: var(--navy); }
.pricing__save { background: rgba(212,168,67,.2); color: var(--gold-dark); font-size: .7rem; padding: 2px 8px; border-radius: 100px; margin-left: 6px; }

.pricing__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pricing-card { background: var(--card-bg); border-radius: var(--radius-lg); padding: 40px 32px; border: 1px solid var(--border); position: relative; transition: all var(--transition); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card--featured { background: var(--navy); border-color: var(--navy); color: var(--white); transform: scale(1.03); }
.pricing-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-size: .72rem; font-weight: 700; padding: 4px 18px; border-radius: 100px; white-space: nowrap; }
.pricing-card__header h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.pricing-card--featured .pricing-card__header h3 { color: var(--white); }
.pricing-card__header p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 28px; }
.pricing-card--featured .pricing-card__header p { color: rgba(255,255,255,.6); }
.pricing-card__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 32px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.pricing-card--featured .pricing-card__price { border-color: rgba(255,255,255,.1); }
.pricing-card__amount { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--navy); }
[data-theme="dark"] .pricing-card__amount { color: var(--text); }
.pricing-card--featured .pricing-card__amount { color: var(--gold); }
.pricing-card__period { font-size: .88rem; color: var(--text-muted); }
.pricing-card--featured .pricing-card__period { color: rgba(255,255,255,.5); }
.pricing-card__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.pricing-card__features li { display: flex; align-items: center; gap: 10px; font-size: .9rem; }
.pricing-card__features li i { font-size: .75rem; }
.pricing-card__features li i.fa-check { color: var(--gold); }
.pricing-card__features li i.fa-xmark { color: var(--gray-400); }
.pricing-card--featured li i.fa-check { color: var(--gold-light); }
.pricing-card--featured li { color: rgba(255,255,255,.85); }
.pricing-card__features li.disabled { opacity: .45; }
.pricing-card__cta { width: 100%; justify-content: center; }
.pricing__note { text-align: center; margin-top: 32px; font-size: .9rem; color: var(--text-muted); }
.pricing__note a { color: var(--navy); font-weight: 600; text-decoration: underline; }
[data-theme="dark"] .pricing__note a { color: var(--gold); }

/* ═══ TESTIMONIALS ═══════════════════════════ */
.testimonials { background: var(--bg); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial { background: var(--card-bg); border-radius: var(--radius-lg); padding: 36px 32px; border: 1px solid var(--border); transition: all var(--transition); }
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial--featured { background: var(--navy); border-color: var(--navy); color: var(--white); }
.testimonial__stars { color: var(--gold); font-size: .85rem; margin-bottom: 20px; display: flex; gap: 3px; }
.testimonial p { font-size: .95rem; line-height: 1.75; font-style: italic; margin-bottom: 24px; }
.testimonial--featured p { color: rgba(255,255,255,.85); }
.testimonial footer strong { display: block; font-size: .9rem; font-weight: 600; }
.testimonial footer cite { font-size: .8rem; color: var(--text-muted); font-style: normal; }
.testimonial--featured footer cite { color: rgba(255,255,255,.5); }

/* ═══ TEAM ═══════════════════════════════════ */
.team { background: var(--bg-alt); }
.team__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card { background: var(--card-bg); border-radius: var(--radius-lg); padding: 40px 32px; border: 1px solid var(--border); text-align: center; transition: all var(--transition); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.team-card__avatar { margin: 0 auto 20px; width: 88px; height: 88px; }
.team-card__avatar-placeholder { width: 88px; height: 88px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); font-size: 2rem; border: 3px solid var(--gold); }
.team-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.team-card p { font-size: .88rem; color: var(--gold-dark); font-weight: 600; margin-bottom: 8px; }
.team-card span { font-size: .8rem; color: var(--text-muted); display: block; margin-bottom: 20px; }
.team-card__social { display: flex; justify-content: center; gap: 10px; }
.team-card__social a { width: 34px; height: 34px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .82rem; color: var(--text-muted); transition: all var(--transition); }
.team-card__social a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ═══ FAQ ════════════════════════════════════ */
.faq { background: var(--bg); }
.faq__inner { max-width: 780px; margin: 0 auto; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq__question button { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 20px 24px; font-size: .98rem; font-weight: 600; color: var(--text); text-align: left; gap: 16px; transition: background var(--transition); }
.faq__question button:hover { background: var(--bg-alt); }
.faq__question button[aria-expanded="true"] { background: var(--navy); color: var(--white); }
.faq__question button i { flex-shrink: 0; font-size: .85rem; transition: transform var(--transition); }
.faq__question button[aria-expanded="true"] i { transform: rotate(180deg); }
.faq__answer { padding: 0 24px 20px; font-size: .92rem; color: var(--text-muted); line-height: 1.75; }
.faq__answer[hidden] { display: none; }

/* ═══ CTA BAND ═══════════════════════════════ */
.cta-band { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); padding: 72px 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--navy); }
.cta-band p { color: rgba(10,22,40,.75); margin-top: 8px; }
.cta-band .btn--gold { background: var(--navy); color: var(--white); }
.cta-band .btn--gold:hover { background: var(--navy-mid); box-shadow: 0 8px 32px rgba(10,22,40,.35); }

/* ═══ CONTACT ════════════════════════════════ */
.contact { background: var(--bg-alt); }
.contact__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact__info .section__title { text-align: left; }
.contact__info > p { color: var(--text-muted); margin: 16px 0 36px; font-size: 1rem; line-height: 1.75; }
.contact__nap { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.nap-item { display: flex; align-items: flex-start; gap: 14px; font-size: .92rem; color: var(--text); }
.nap-item i { width: 20px; color: var(--gold-dark); margin-top: 2px; flex-shrink: 0; }
.nap-item a { color: var(--text); font-weight: 500; transition: color var(--transition); }
.nap-item a:hover { color: var(--gold-dark); }
.contact__social { display: flex; gap: 12px; }
.contact__social a { width: 40px; height: 40px; background: var(--navy); color: var(--white); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: .9rem; transition: all var(--transition); }
.contact__social a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }

/* Form */
.contact__form { background: var(--card-bg); border-radius: var(--radius-lg); padding: 40px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }
.form-group label span { color: var(--gold-dark); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .92rem;
  color: var(--text); background: var(--bg); transition: border-color var(--transition), box-shadow var(--transition); outline: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,168,67,.15); }
.form-group input.error, .form-group textarea.error { border-color: #ef4444; }
.form-group textarea { resize: vertical; }
.form-group--checkbox { flex-direction: row; align-items: flex-start; gap: 10px; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; color: var(--text-muted); cursor: pointer; }
.checkbox-label input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin: 0; accent-color: var(--gold); }
.checkbox-label a { color: var(--navy); font-weight: 600; text-decoration: underline; }
[data-theme="dark"] .checkbox-label a { color: var(--gold); }
.form-error { font-size: .78rem; color: #ef4444; min-height: 18px; }
.form-success { display: flex; align-items: center; gap: 10px; padding: 16px; background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); border-radius: var(--radius-sm); color: #15803d; font-size: .9rem; font-weight: 500; margin-top: 16px; }
.form-success i { color: #16a34a; }
.form-error-global { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.25); border-radius: var(--radius-sm); color: #dc2626; font-size: .88rem; margin-top: 12px; }
.form-error-global[hidden] { display: none !important; }
.form-success[hidden] { display: none !important; }

/* Submit button loading */
#form-submit.loading { pointer-events: none; opacity: .75; }
#form-submit .fa-spinner { animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══ COOKIE BANNER ══════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px; max-width: 600px; margin: 0 auto;
  background: var(--navy); color: var(--white); border-radius: var(--radius-md);
  padding: 18px 24px; z-index: 800; box-shadow: var(--shadow-lg);
  animation: slide-up .4s ease;
  border: 1px solid rgba(255,255,255,.1);
}
.cookie-banner[hidden] { display: none !important; }
@keyframes slide-up { from{transform:translateY(20px);opacity:0} to{transform:translateY(0);opacity:1} }
.cookie-banner__inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cookie-banner__inner p { flex: 1; font-size: .88rem; color: rgba(255,255,255,.8); min-width: 200px; }
.cookie-banner__inner a { color: var(--gold); text-decoration: underline; }
.cookie-banner__inner i { color: var(--gold); }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ═══ WHATSAPP FLOAT ═════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  width: 54px; height: 54px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.5); }
.whatsapp-float__tooltip {
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
  background: var(--navy); color: var(--white);
  font-size: .8rem; font-weight: 600; padding: 6px 12px; border-radius: var(--radius-sm);
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }

/* ═══ BACK TO TOP ════════════════════════════ */
.back-to-top {
  position: fixed; bottom: 88px; right: 28px;
  width: 44px; height: 44px; background: var(--gold); color: var(--navy);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .9rem; box-shadow: 0 4px 16px rgba(212,168,67,.4); z-index: 800;
  transition: all var(--transition);
}
.back-to-top:hover { background: var(--gold-dark); transform: translateY(-3px); }
.back-to-top[hidden] { display: none !important; }

/* ═══ FOOTER ══════════════════════════════════ */
.footer { background: var(--navy); color: rgba(255,255,255,.65); }
.footer__inner { display: flex; gap: 64px; padding: 72px 24px 48px; flex-wrap: wrap; }
.footer__brand { flex: 0 0 260px; }
.footer__brand p { font-size: .88rem; line-height: 1.7; margin-top: 16px; color: rgba(255,255,255,.5); }
.footer__social { display: flex; gap: 10px; margin-top: 24px; }
.footer__social a { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: .85rem; color: rgba(255,255,255,.6); transition: all var(--transition); }
.footer__social a:hover { background: var(--gold); color: var(--navy); }
.footer__nav { flex: 1; display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.footer__col h3 { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: .88rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer__col a:hover { color: var(--gold); }
.footer__col address { display: flex; flex-direction: column; gap: 10px; }
.footer__col address p { font-size: .88rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__bottom p { font-size: .82rem; }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: .82rem; color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer__legal a:hover { color: var(--gold); }

/* ═══ ANIMATIONS ═════════════════════════════ */
[data-animate] { opacity: 0; transition: opacity .65s ease, transform .65s ease; }
[data-animate="fade-up"]    { transform: translateY(32px); }
[data-animate="fade-right"] { transform: translateX(-32px); }
[data-animate="fade-left"]  { transform: translateX(32px); }
[data-animate].is-visible   { opacity: 1; transform: none; }

/* ═══ RESPONSIVE ══════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner         { grid-template-columns: 1fr; }
  .hero__visual        { display: none; }
  .services__grid      { grid-template-columns: 1fr 1fr; }
  .why-us__inner       { grid-template-columns: 1fr; gap: 48px; }
  .process__steps      { grid-template-columns: 1fr 1fr; }
  .process__steps::before { display: none; }
  .testimonials__grid  { grid-template-columns: 1fr 1fr; }
  .pricing__grid       { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .team__grid          { grid-template-columns: 1fr 1fr; }
  .contact__inner      { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .header__cta { display: none; }
  .hamburger   { display: flex; }
  .nav {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(10,22,40,.97); backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 16px 24px 24px; margin: 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path .35s ease; pointer-events: none;
  }
  .nav.open { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); pointer-events: all; }
  .nav__list { flex-direction: column; gap: 4px; }
  .nav__link { padding: 12px 16px; font-size: 1rem; }
  .header__right .header__cta { display: none; }
  .services__grid     { grid-template-columns: 1fr; }
  .process__steps     { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .team__grid         { grid-template-columns: 1fr; }
  .why-us__stats      { grid-template-columns: 1fr 1fr; }
  .form-row           { grid-template-columns: 1fr; }
  .footer__inner      { flex-direction: column; gap: 40px; }
  .footer__brand      { flex: none; }
  .footer__nav        { grid-template-columns: 1fr 1fr; }
  .cta-band__inner    { flex-direction: column; text-align: center; }
  .cta-band .btn      { width: 100%; justify-content: center; }
  .cookie-banner      { left: 12px; right: 12px; bottom: 12px; }
}

@media (max-width: 480px) {
  .why-us__stats      { grid-template-columns: 1fr; }
  .footer__nav        { grid-template-columns: 1fr; }
  .contact__form      { padding: 24px 16px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .trust-item         { padding: 0 16px; }
  .trust-item:first-child { padding-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-animate] { opacity: 1 !important; transform: none !important; }
}
