/* =========================================================
   ETICMAX — Kurumsal E-Ticaret Platformu
   Premium Corporate Design System (Navy + Steel + White)
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px; line-height: 1.6; color: var(--text);
  background: var(--white); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
::selection { background: var(--accent); color: var(--white); }

:root {
  /* Brand — Navy + Steel */
  --navy-950: #051A36;
  --navy-900: #0A1F44;
  --navy-800: #0B2545;
  --navy-700: #122E5C;
  --navy-600: #1B3B73;
  --steel-700: #1E5BC6;
  --steel-600: #2563EB;
  --steel-500: #3B82F6;
  --steel-400: #4F8BD9;
  --steel-100: #EAF0FA;
  --steel-50:  #F4F7FC;

  /* Neutrals */
  --white:   #FFFFFF;
  --bg:      #F7F9FC;
  --bg-soft: #EEF2F8;
  --border:  #DCE3EE;
  --border-strong: #BCC7D8;
  --text:    #0A1A2F;
  --muted:   #5A6B85;
  --subtle:  #8898AE;

  /* Status */
  --success: #10B981;
  --warning: #F59E0B;
  --danger:  #EF4444;

  /* Effects */
  --r-sm: 4px;
  --r:    6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-2xl: 20px;

  --shadow-xs: 0 1px 2px rgba(10,26,47,.04);
  --shadow-sm: 0 1px 3px rgba(10,26,47,.06), 0 1px 2px rgba(10,26,47,.04);
  --shadow:    0 4px 12px -2px rgba(10,26,47,.06), 0 2px 4px -2px rgba(10,26,47,.04);
  --shadow-md: 0 10px 25px -5px rgba(10,26,47,.10);
  --shadow-lg: 0 25px 50px -12px rgba(10,26,47,.18);
  --shadow-xl: 0 35px 70px -20px rgba(10,26,47,.25);

  /* Layout */
  --container: 1240px;
  --container-md: 1100px;
  --nav-h: 72px;

  --t: all .2s ease;
  --t-slow: all .4s cubic-bezier(.4,0,.2,1);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.15; color: var(--text); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5vw, 4.25rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.125rem; font-weight: 700; }
p  { color: var(--muted); line-height: 1.7; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8125rem; font-weight: 600; color: var(--steel-700);
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1.25rem;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--steel-700); }
.lead { font-size: 1.1875rem; color: var(--muted); line-height: 1.65; max-width: 62ch; font-weight: 400; }
.lead-lg { font-size: 1.375rem; line-height: 1.5; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container-md { max-width: var(--container-md); }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-lg { padding: 8rem 0; }
@media (max-width: 1024px) { .section, .section-lg { padding: 5rem 0; } .section-sm { padding: 3rem 0; } }
@media (max-width: 640px) { .section, .section-lg { padding: 3.5rem 0; } .section-sm { padding: 2.5rem 0; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .875rem 1.625rem; font-size: .9375rem; font-weight: 600; line-height: 1;
  border-radius: var(--r-md); transition: var(--t); white-space: nowrap;
  border: 1px solid transparent; cursor: pointer; letter-spacing: -.005em;
}
.btn-primary { background: var(--steel-700); color: var(--white); }
.btn-primary:hover { background: var(--steel-600); transform: translateY(-1px); box-shadow: 0 10px 25px -5px rgba(30,91,198,.35); }
.btn-secondary { background: var(--white); color: var(--text); border-color: var(--border-strong); }
.btn-secondary:hover { border-color: var(--navy-800); color: var(--navy-800); }
.btn-navy { background: var(--navy-800); color: var(--white); }
.btn-navy:hover { background: var(--navy-900); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { color: var(--steel-700); }
.btn-outline { background: transparent; color: var(--steel-700); border-color: var(--steel-700); }
.btn-outline:hover { background: var(--steel-700); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-lg { padding: 1.0625rem 2rem; font-size: 1rem; border-radius: var(--r-md); }
.btn-sm { padding: .625rem 1.125rem; font-size: .875rem; }
.btn-block { width: 100%; }
.btn-arrow::after { content: "→"; transition: transform .2s; }
.btn-arrow:hover::after { transform: translateX(3px); }

/* ---------- Top utility bar (corporate signal) ---------- */
.utility-bar {
  background: var(--bg); color: var(--muted); font-size: .8125rem;
  border-bottom: 1px solid var(--border);
}
.utility-bar .container { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.utility-bar a { color: var(--muted); }
.utility-bar a:hover { color: var(--text); }
.utility-left, .utility-right { display: flex; align-items: center; gap: 1.25rem; }
.utility-bar .sep { color: var(--border-strong); }
.utility-bar .badge-mini { background: var(--steel-700); color: white; font-size: .6875rem; padding: .125rem .4375rem; border-radius: 999px; font-weight: 600; }
@media (max-width: 768px) { .utility-bar { display: none; } }

/* ---------- Header (with mega menu) ---------- */
.site-header {
  position: relative; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  box-shadow: 0 1px 0 rgba(10,26,47,.04);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 1.5rem; }
.nav-brand { display: flex; align-items: center; gap: .625rem; font-weight: 800; font-size: 1.1875rem; color: var(--text); letter-spacing: -.02em; flex-shrink: 0; }
.nav-brand-mark {
  width: 36px; height: 36px; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--steel-700) 100%);
  display: grid; place-items: center; color: white; font-weight: 800; font-size: 1.0625rem;
  letter-spacing: -.03em; box-shadow: 0 2px 6px rgba(10,31,68,.18);
}
.nav-brand-mark sup { font-size: .5em; opacity: .75; margin-left: -1px; }
.nav-links { display: flex; align-items: center; gap: .125rem; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: .25rem;
  padding: .4375rem .75rem; font-size: .875rem; font-weight: 500; color: var(--text);
  border-radius: var(--r-sm); transition: var(--t); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--steel-700); background: var(--steel-50); }
.nav-link.has-mega::after { content: "▾"; font-size: .7em; opacity: .6; margin-left: .125rem; }
.nav-cta { display: flex; align-items: center; gap: .375rem; flex-shrink: 0; }
.nav-cta .lang-switch {
  display: inline-flex; gap: .25rem; align-items: center; padding: .375rem .5rem;
  font-size: .75rem; color: var(--muted); border-radius: var(--r-sm);
}
.nav-cta .lang-switch:hover { color: var(--text); background: var(--bg); }
.nav-cta .lang-switch .globe { width: 13px; height: 13px; }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: var(--r-md); align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); position: relative; transition: var(--t); }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 100%; height: 2px; background: var(--text); transition: var(--t); }
.nav-toggle span::before { top: -7px; } .nav-toggle span::after { top: 7px; }

/* Mega menu — wide, detailed, opens to the RIGHT of the parent */
.mega {
  position: absolute; top: calc(100% + 8px); left: 0; right: auto; transform: translateY(-8px);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: 0 24px 48px -12px rgba(10, 26, 47, 0.18), 0 8px 16px -4px rgba(10, 26, 47, 0.08);
  min-width: 820px; max-width: 940px; padding: 1.5rem;
  opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s;
  display: grid; grid-template-columns: 1fr 1fr 1fr 1.1fr; gap: 1.25rem;
  pointer-events: none;
  z-index: 200;
}
.mega::before { content: ""; position: absolute; top: -8px; left: 24px; width: 16px; height: 16px; background: var(--white); border-left: 1px solid var(--border); border-top: 1px solid var(--border); transform: rotate(45deg); }
.nav-item:hover .mega { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.mega-col { min-width: 0; }
.mega-col h5 { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--subtle); margin-bottom: .75rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border); }
.mega-link { display: flex; gap: .625rem; padding: .5rem .625rem; border-radius: var(--r-sm); transition: var(--t); align-items: flex-start; }
.mega-link:hover { background: var(--steel-50); transform: translateX(2px); }
.mega-link .ic { width: 32px; height: 32px; border-radius: var(--r-sm); background: var(--steel-100); color: var(--steel-700); display: grid; place-items: center; flex-shrink: 0; font-size: 1rem; }
.mega-link .ic--blue { background: linear-gradient(135deg, var(--steel-100), var(--steel-50)); }
.mega-link .tt { font-weight: 600; font-size: .875rem; color: var(--text); display: flex; align-items: center; gap: .375rem; }
.mega-link .ds { font-size: .75rem; color: var(--muted); line-height: 1.35; margin-top: .125rem; }
.mega-link .lbl-new, .mega-link .lbl-hot { display: inline-block; padding: 1px 5px; font-size: .5625rem; font-weight: 700; border-radius: 4px; text-transform: uppercase; letter-spacing: .04em; vertical-align: middle; line-height: 1.2; }
.mega-link .lbl-new { background: var(--success); color: white; }
.mega-link .lbl-hot { background: linear-gradient(135deg, #F59E0B, #EF4444); color: white; }

/* Promo panel */
.mega-promo { border-radius: var(--r); padding: 1.25rem 1rem; color: white; display: flex; flex-direction: column; gap: .625rem; min-width: 0; }
.mega-promo h5 { color: white !important; font-size: .875rem !important; font-weight: 700; line-height: 1.3; margin: 0 !important; padding: 0 !important; border: 0 !important; text-transform: none !important; letter-spacing: 0 !important; word-wrap: break-word; }
.mega-promo .btn-sm { padding: .5rem .5rem; font-size: .75rem; gap: .25rem; }
.mega-promo p { color: rgba(255,255,255,.85); font-size: .75rem; line-height: 1.5; margin: 0; }
.mega-promo--featured { background: linear-gradient(135deg, var(--navy-900) 0%, var(--steel-700) 100%); position: relative; overflow: hidden; isolation: isolate; }
.mega-promo--featured::after { content: ""; position: absolute; bottom: -40px; right: -40px; width: 140px; height: 140px; background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%); border-radius: 50%; z-index: 0; pointer-events: none; }
.mega-promo--gradient { background: linear-gradient(135deg, #1E5BC6 0%, #1B3B73 100%); position: relative; overflow: hidden; isolation: isolate; }
.mega-promo--gradient::before { content: ""; position: absolute; top: -30px; right: -30px; width: 120px; height: 120px; background: radial-gradient(circle, rgba(255,255,255,.15), transparent 70%); border-radius: 50%; z-index: 0; pointer-events: none; }
.promo-eyebrow { display: inline-block; padding: .1875rem .5rem; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); border-radius: 999px; font-size: .625rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; align-self: flex-start; }
.promo-stats { display: flex; gap: 1rem; margin: .75rem 0; padding: .75rem .875rem; background: rgba(255,255,255,.08); border-radius: var(--r-sm); border: 1px solid rgba(255,255,255,.15); }
.promo-stats > div { display: flex; flex-direction: column; flex: 1; }
.promo-stats strong { font-size: 1.125rem; font-weight: 800; color: white; line-height: 1.1; }
.promo-stats span { font-size: .625rem; color: rgba(255,255,255,.75); margin-top: .125rem; }
.promo-list { list-style: none; padding: 0; margin: .5rem 0; display: flex; flex-direction: column; gap: .3125rem; position: relative; z-index: 1; }
.promo-list li { font-size: .75rem; color: rgba(255,255,255,.9); display: flex; align-items: center; gap: .3125rem; }
.btn-promo { background-color: #ffffff !important; background-image: none !important; color: var(--navy-800) !important; font-weight: 700; align-self: stretch; width: 100%; position: relative; z-index: 5; box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.btn-promo:hover { background-color: #F4F7FC !important; }
.btn-ghost { background-color: transparent !important; background-image: none !important; color: white !important; border: 1px solid rgba(255,255,255,.4) !important; align-self: stretch; width: 100%; position: relative; z-index: 5; }
.btn-ghost:hover { background-color: rgba(255,255,255,.1) !important; border-color: white !important; }
@media (min-width: 1101px) {
  .nav-item:hover .mega, .nav-item:focus-within .mega { display: grid; }
}

@media (max-width: 1100px) {
  .nav-links, .nav-cta > *:not(.nav-toggle) { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: .25rem;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: white; padding: 1.5rem; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md); max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav-links.open .nav-link { width: 100%; padding: .75rem 1rem; }
  .nav-links.open .mega { position: static; transform: none; min-width: 0; max-width: 100%; opacity: 1; visibility: visible; pointer-events: auto; box-shadow: none; border: 0; padding: .5rem 0; margin-top: .5rem; grid-template-columns: 1fr; gap: 1rem; background: var(--bg-soft); border-radius: var(--r); }
  .nav-links.open .mega::before { display: none; }
  .nav-links.open .mega-promo { display: none; }
}

/* ---------- Hero — Real image, corporate feel ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
  color: var(--text); padding: 5rem 0 4rem;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(50% 40% at 80% 0%, rgba(30,91,198,.06) 0%, transparent 60%),
    radial-gradient(40% 30% at 0% 50%, rgba(30,91,198,.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 4rem; align-items: center; position: relative; }
.hero h1 { color: var(--text); margin-bottom: 1.5rem; }
.hero h1 .accent { color: var(--steel-700); }
.hero-sub { font-size: 1.1875rem; color: var(--muted); margin-bottom: 2.5rem; max-width: 36rem; line-height: 1.65; }
.hero-ctas { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-ctas .btn-primary { background: var(--steel-700); color: var(--white); }
.hero-ctas .btn-primary:hover { background: var(--steel-600); }
.hero-ctas .btn-outline-white { color: var(--steel-700); border-color: var(--steel-700); }
.hero-ctas .btn-outline-white:hover { background: var(--steel-700); color: var(--white); }
.hero-meta { display: flex; gap: 2rem; flex-wrap: wrap; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.hero-meta .item .num { font-size: 1.5rem; font-weight: 800; color: var(--text); letter-spacing: -.02em; }
.hero-meta .item .lbl { font-size: .8125rem; color: var(--muted); }
.hero-trust { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.hero-trust .badge-trust { background: var(--steel-50); border: 1px solid var(--steel-100); color: var(--steel-700); padding: .375rem .75rem; font-size: .75rem; font-weight: 600; border-radius: 999px; }

/* Hero image — clean, no float cards */
.hero-image {
  position: relative; border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-image::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--r-xl);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, .06);
  pointer-events: none;
}

@media (max-width: 1100px) {
  .hero { padding: 4rem 0 5rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; min-height: auto; }
  .hero h1 { font-size: clamp(2rem, 5vw, 3rem); }
  .hero-sub { font-size: 1.0625rem; }
}
@media (max-width: 480px) {
  .hero { padding: 3rem 0 3.5rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-meta { gap: 1.25rem; }
  .hero-meta .item .num { font-size: 1.25rem; }
}

/* ---------- Press logos strip ---------- */
.press-strip {
  background: var(--bg); padding: 3rem 0; border-bottom: 1px solid var(--border);
}
.press-strip-label { text-align: center; color: var(--subtle); font-size: .8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 2rem; }
.press-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; align-items: center; }
.press-row .item {
  display: flex; flex-direction: column; align-items: center; gap: .25rem;
  color: var(--muted); font-weight: 700; font-size: .9375rem; text-align: center;
  opacity: .7; transition: var(--t); min-width: 0;
}
.press-row .item:hover { opacity: 1; color: var(--text); }
.press-row .item .logo-box {
  width: 100%; max-width: 140px; height: 48px; display: grid; place-items: center;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r);
  font-size: .75rem; font-weight: 800; letter-spacing: -.02em; color: var(--text);
  padding: 0 .5rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  min-width: 0; max-width: 100%;
}
.press-row .item .src { font-size: .75rem; color: var(--subtle); font-weight: 500; }
@media (max-width: 1100px) { .press-row { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
@media (max-width: 480px) {
  .press-row { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .press-row .item .logo-box { font-size: .625rem; height: 40px; padding: 0 .25rem; letter-spacing: -.04em; }
}

/* ---------- Section Heading ---------- */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 4.5rem; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head p { margin-top: 1.25rem; font-size: 1.125rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.stat-card { background: var(--white); padding: 2.5rem 2rem; text-align: center; transition: var(--t); }
.stat-card:hover { background: var(--steel-50); }
.stat-card .num { font-size: 2.75rem; font-weight: 800; color: var(--navy-800); letter-spacing: -.035em; line-height: 1; margin-bottom: .5rem; }
.stat-card .num sup { font-size: .5em; opacity: .6; }
.stat-card .lbl { font-size: .9375rem; color: var(--muted); }
.stat-card .delta { font-size: .75rem; color: var(--success); font-weight: 600; margin-top: .5rem; }
@media (max-width: 1100px) { .stats { grid-template-columns: repeat(2,1fr); } .stat-card { padding: 2rem 1.5rem; } .stat-card .num { font-size: 2.25rem; } }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr; } .stat-card { padding: 1.75rem 1.25rem; } .stat-card .num { font-size: 2rem; } }

/* ---------- Feature Cards (icon + text) ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 2rem; transition: var(--t); position: relative; overflow: hidden;
}
.feature-card:hover { border-color: var(--steel-400); box-shadow: var(--shadow); transform: translateY(-2px); }
.feature-card .ic {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--steel-100), var(--steel-50));
  color: var(--steel-700);
  display: grid; place-items: center; margin-bottom: 1.5rem;
  border: 1px solid var(--steel-100);
}
.feature-card h3 { font-size: 1.1875rem; margin-bottom: .625rem; }
.feature-card p { font-size: .9375rem; line-height: 1.65; }
.feature-card .link { color: var(--steel-700); font-weight: 600; font-size: .875rem; margin-top: 1rem; display: inline-flex; align-items: center; gap: .25rem; }
.feature-card .link:hover { gap: .5rem; }
@media (max-width: 1100px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; gap: 1rem; } }

/* ---------- Image + Content (corporate split) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split.reverse > div:first-child { order: 2; }
.split-image {
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; background: var(--bg-soft); position: relative;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-image .caption { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; background: rgba(255,255,255,.95); padding: .75rem 1rem; border-radius: var(--r); font-size: .8125rem; font-weight: 600; backdrop-filter: blur(8px); }
@media (max-width: 1100px) { .split { grid-template-columns: 1fr; gap: 2.5rem; } .split.reverse > div:first-child { order: initial; } .split-image { aspect-ratio: 16/10; } }

/* ---------- Bento Showcase ---------- */
.bento { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; gap: 1.5rem; }
.bento .card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 2.25rem; transition: var(--t); position: relative; overflow: hidden;
}
.bento .card:hover { box-shadow: var(--shadow); border-color: var(--steel-400); }
.bento .bento-large { grid-row: span 2; padding: 2.5rem; background: linear-gradient(135deg, var(--navy-900), var(--navy-800)); color: white; }
.bento .bento-large h3, .bento .bento-large .tag { color: white; }
.bento .bento-large p { color: rgba(255,255,255,.78); }
.bento .bento-large .tag { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); }
.bento .card h3 { font-size: 1.25rem; margin: 1.25rem 0 .625rem; }
.bento .card .tag { display: inline-block; font-size: .75rem; font-weight: 600; color: var(--steel-700); background: var(--steel-50); padding: .25rem .625rem; border-radius: 999px; border: 1px solid var(--steel-100); }
.bento .card p { color: var(--muted); font-size: .9375rem; line-height: 1.5; }

/* Visual cards (Kargo, Güvenlik) */
.bento .card--visual { display: flex; flex-direction: column; }
.bento .card--visual .card-visual { margin-top: auto; padding-top: 1.25rem; }
.bento .card--dark { background: linear-gradient(135deg, var(--navy-900), var(--navy-800)); color: white; border-color: rgba(255,255,255,.08); }
.bento .card--dark h3 { color: white; }
.bento .card--dark p { color: rgba(255,255,255,.7); }
.bento .card--dark .tag { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #6FA8FF; }

/* Cargo mini */
.cargo-mini-row { display: flex; gap: .25rem; flex-wrap: wrap; margin-bottom: .75rem; }
.cm-cargo { font-size: .6875rem; font-weight: 700; color: var(--text); background: var(--bg); border: 1px solid var(--border); padding: .25rem .5rem; border-radius: 4px; letter-spacing: -.01em; }
.cm-cargo:last-child { background: var(--steel-50); color: var(--steel-700); border-color: var(--steel-100); }
.cargo-mini-bar { position: relative; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; height: 36px; overflow: hidden; }
.cmb-fill { position: absolute; top: 0; left: 0; bottom: 0; background: linear-gradient(90deg, var(--steel-100), var(--steel-50)); }
.cmb-label { position: relative; display: flex; align-items: center; gap: .375rem; padding: 0 .75rem; height: 100%; }
.cmb-label span { font-size: .8125rem; font-weight: 700; color: var(--text); }
.cmb-label small { font-size: .625rem; color: var(--muted); }

/* Shield card */
.card-visual--shield { display: flex; align-items: center; gap: 1rem; padding-top: 1.25rem; margin-top: auto; }
.shield { width: 56px; height: 56px; flex-shrink: 0; border-radius: 50%; background: linear-gradient(135deg, rgba(16,185,129,.2), rgba(16,185,129,.05)); border: 1px solid rgba(16,185,129,.3); display: grid; place-items: center; color: #34D399; }
.shield svg { width: 24px; height: 24px; }
.shield-stats { display: flex; gap: 1.25rem; flex: 1; }
.shield-stats > div { display: flex; flex-direction: column; }
.shield-stats strong { font-size: 1.125rem; font-weight: 800; color: white; line-height: 1.1; }
.shield-stats span { font-size: .625rem; color: rgba(255,255,255,.6); margin-top: .125rem; }
.bento .visual { margin-top: 1.5rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 1.25rem; min-height: 220px; }
.bento .bento-large .visual { background: rgba(255,255,255,.05); }
@media (max-width: 1100px) { .bento { grid-template-columns: 1fr; } .bento .bento-large { grid-row: auto; } }

/* ---------- Awards / Certifications strip ---------- */
.awards {
  background: var(--navy-900); color: white; padding: 4rem 0;
}
.awards-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; align-items: stretch; }
.award { text-align: center; padding: 1.5rem 1rem; border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-lg); transition: var(--t); background: rgba(255,255,255,.02); }
.award:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); }
.award .icon { width: 52px; height: 52px; margin: 0 auto .875rem; display: grid; place-items: center; background: rgba(255,255,255,.06); border-radius: 50%; }
.award .ttl { font-size: .875rem; font-weight: 700; }
.award .sub { font-size: .6875rem; color: rgba(255,255,255,.6); margin-top: .25rem; }
@media (max-width: 1100px) { .awards-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .awards-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Testimonial ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem;
  position: relative;
}
.testimonial::before { content: "“"; position: absolute; top: 1rem; right: 1.5rem; font-size: 4rem; color: var(--steel-100); line-height: 1; font-family: 'Source Serif Pro', Georgia, serif; }
.testimonial .stars { color: #F59E0B; font-size: .875rem; letter-spacing: 2px; }
.testimonial .quote { font-size: 1rem; line-height: 1.65; color: var(--text); flex: 1; }
.testimonial .author { display: flex; align-items: center; gap: .875rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.testimonial .avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--steel-100); }
.testimonial .avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial .who .name { font-weight: 600; font-size: .9375rem; color: var(--text); }
.testimonial .who .role { font-size: .8125rem; color: var(--muted); }
.testimonial .who .company { font-size: .75rem; color: var(--steel-700); font-weight: 600; margin-top: .125rem; }
@media (max-width: 1100px) { .testimonial-grid { grid-template-columns: 1fr; gap: 1rem; } }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.price-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 2.5rem 2rem; display: flex; flex-direction: column; position: relative;
  transition: var(--t);
}
.price-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.price-card.featured { border-color: var(--navy-800); box-shadow: var(--shadow-md); }
.price-card.featured::before {
  content: "EN ÇOK TERCİH EDİLEN"; position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--navy-800); color: white; font-size: .6875rem; font-weight: 700; padding: .3125rem .875rem; border-radius: 999px; letter-spacing: .05em;
}
.price-card .name { font-size: 1.25rem; font-weight: 800; color: var(--text); }
.price-card .tag { font-size: .75rem; color: var(--steel-700); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-top: .25rem; }
.price-card .desc { font-size: .875rem; color: var(--muted); margin: 1rem 0 1.5rem; min-height: 2.6em; }
.price-card .price { display: flex; align-items: baseline; gap: .25rem; margin-bottom: .5rem; }
.price-card .price .currency { font-size: 1.25rem; font-weight: 700; color: var(--text); }
.price-card .price .amt { font-size: 2.75rem; font-weight: 800; color: var(--text); letter-spacing: -.035em; line-height: 1; }
.price-card .price .per { font-size: .9375rem; color: var(--muted); }
.price-card .price-note { font-size: .8125rem; color: var(--muted); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.price-card ul { margin: 0 0 2rem; display: flex; flex-direction: column; gap: .75rem; flex: 1; }
.price-card li { display: flex; align-items: flex-start; gap: .625rem; font-size: .9375rem; color: var(--text); line-height: 1.5; }
.price-card li .ck { width: 20px; height: 20px; border-radius: 50%; background: var(--steel-100); color: var(--steel-700); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; font-weight: 800; font-size: .6875rem; }
.price-card li.muted { color: var(--subtle); }
.price-card li.muted .ck { background: var(--bg-soft); color: var(--subtle); }
@media (max-width: 1100px) { .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; } }

.compare-table { width: 100%; border-collapse: collapse; margin-top: 3rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; min-width: 600px; }
.compare-table th, .compare-table td { padding: 1rem 1.25rem; text-align: left; font-size: .9375rem; border-bottom: 1px solid var(--border); }
.compare-table th { background: var(--bg); font-weight: 700; color: var(--text); }
.compare-table th:first-child { color: var(--text); }
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table .check { display: inline-block; width: 22px; height: 22px; border-radius: 50%; text-align: center; line-height: 22px; font-weight: 800; font-size: .75rem; }
.compare-table .check.y { background: rgba(16,185,129,.12); color: var(--success); }
.compare-table .check.n { background: var(--bg-soft); color: var(--subtle); }
.compare-table tr.group td { background: var(--bg); font-weight: 700; color: var(--text); font-size: .875rem; text-transform: uppercase; letter-spacing: .05em; }

/* ---------- Integrations ---------- */
.integration-cats { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.5rem; justify-content: center; }
.cat-pill { padding: .625rem 1.125rem; font-size: .875rem; font-weight: 600; border-radius: 999px; border: 1px solid var(--border); background: var(--white); color: var(--muted); cursor: pointer; transition: var(--t); }
.cat-pill:hover { color: var(--text); border-color: var(--text); }
.cat-pill.active { background: var(--navy-800); color: var(--white); border-color: var(--navy-800); }
.integration-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.integration-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.5rem; display: flex; align-items: center; gap: 1rem; transition: var(--t);
}
.integration-card:hover { border-color: var(--steel-400); transform: translateY(-2px); box-shadow: var(--shadow); }
.integration-card .logo {
  width: 48px; height: 48px; border-radius: var(--r); background: var(--white);
  border: 1px solid var(--border); display: grid; place-items: center; flex-shrink: 0; overflow: hidden;
}
.integration-card .logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.integration-card .name { font-weight: 700; font-size: .9375rem; color: var(--text); }
.integration-card .cat { font-size: .75rem; color: var(--muted); }
@media (max-width: 1100px) { .integration-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 640px) { .integration-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .integration-grid { grid-template-columns: 1fr; } }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--steel-700) 100%);
  color: white; border-radius: var(--r-2xl); padding: 5rem 3rem;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.04);
}
.cta-banner::before { width: 400px; height: 400px; top: -150px; right: -100px; }
.cta-banner::after  { width: 300px; height: 300px; bottom: -100px; left: -50px; }
.cta-banner > * { position: relative; }
.cta-banner h2 { color: white; margin-bottom: 1.25rem; }
.cta-banner .lead { color: rgba(255,255,255,.8); max-width: 56ch; margin: 0 auto 2.5rem; }
.cta-banner .btn-primary { background: var(--white); color: var(--navy-800); }
.cta-banner .btn-primary:hover { background: var(--steel-100); }
.cta-banner .btn-outline-white { color: white; border-color: rgba(255,255,255,.4); }
.cta-banner .btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: white; color: white; }

/* ---------- Footer (Advanced Mega Footer v2) ---------- */
.site-footer { background: var(--navy-950); color: #94A3B8; padding: 0; margin-top: 2rem; overflow: hidden; }

/* Trust bar */
.footer-trust { background: var(--navy-900); border-bottom: 1px solid rgba(255,255,255,.08); padding: 1.75rem 0; }
.trust-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.trust-item { display: flex; align-items: center; gap: .875rem; }
.trust-icon { width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px; background: linear-gradient(135deg, rgba(30,91,198,.18), rgba(30,91,198,.06)); border: 1px solid rgba(30,91,198,.25); display: grid; place-items: center; color: #6FA8FF; }
.trust-icon svg { width: 20px; height: 20px; }
.trust-text { min-width: 0; }
.trust-title { color: white; font-size: .8125rem; font-weight: 700; line-height: 1.2; }
.trust-desc { color: #94A3B8; font-size: .75rem; margin-top: .125rem; }

/* CTA: Newsletter + App */
.footer-cta { background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%); padding: 2.5rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.cta-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.5rem; align-items: stretch; }
.cta-block { display: grid; grid-template-columns: 48px 1fr; grid-template-rows: auto auto; gap: 1rem 1.25rem; padding: 1.5rem; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-lg); }
.cta-icon { width: 48px; height: 48px; flex-shrink: 0; border-radius: var(--r); background: var(--steel-700); color: white; display: grid; place-items: center; grid-row: span 2; }
.cta-icon svg { width: 22px; height: 22px; }
.cta-content { min-width: 0; }
.cta-content h4 { color: white; font-size: 1rem; font-weight: 700; margin-bottom: .25rem; }
.cta-content p { color: #94A3B8; font-size: .8125rem; line-height: 1.5; word-wrap: break-word; }
.newsletter-form { display: flex; gap: .5rem; min-width: 0; }
.newsletter-form input { flex: 1; min-width: 0; padding: .625rem .875rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r); color: white; font-size: .8125rem; }
.newsletter-form input::placeholder { color: #64748B; }
.newsletter-form input:focus { outline: none; border-color: var(--steel-700); background: rgba(255,255,255,.1); }
.newsletter-form .btn { padding: .625rem 1.25rem; font-size: .8125rem; white-space: nowrap; }
.app-badges { display: flex; gap: .5rem; flex-wrap: wrap; }
.app-badge { display: flex; align-items: center; gap: .5rem; padding: .4375rem .75rem; background: #000; color: white; border-radius: 8px; border: 1px solid rgba(255,255,255,.12); transition: var(--t); white-space: nowrap; }
.app-badge:hover { background: #111; transform: translateY(-1px); }
.app-badge span { display: flex; flex-direction: column; line-height: 1.1; }
.app-badge small { font-size: .5625rem; opacity: .8; }
.app-badge strong { font-size: .6875rem; font-weight: 700; }

/* Main grid */
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1fr 1fr; gap: 2rem; padding: 3.5rem 0 2.5rem; align-items: start; }
.footer-brand .nav-brand { color: white; margin-bottom: 1rem; }
.footer-brand .nav-brand--footer { font-size: 1.25rem; }
.footer-tagline { font-size: .8125rem; color: #94A3B8; line-height: 1.6; margin-bottom: 1.25rem; max-width: 32ch; }

/* Contact items */
.footer-contact { display: flex; flex-direction: column; gap: .625rem; margin-bottom: 1.5rem; padding: 1rem; background: rgba(255,255,255,.03); border-radius: var(--r-md); border: 1px solid rgba(255,255,255,.06); }
.contact-item { display: flex; align-items: center; gap: .625rem; color: #94A3B8; transition: var(--t); }
a.contact-item:hover { color: white; }
.contact-icon { width: 28px; height: 28px; display: grid; place-items: center; background: rgba(255,255,255,.06); border-radius: 6px; font-size: .8125rem; flex-shrink: 0; }
.contact-item span span { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.contact-item small { font-size: .625rem; color: #64748B; text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.contact-item strong { font-size: .8125rem; color: white; font-weight: 600; }
div.contact-item strong { color: #cbd5e1; }

/* Social */
.footer-social { padding-top: .5rem; }
.social-label { display: block; font-size: .6875rem; text-transform: uppercase; letter-spacing: .08em; color: #64748B; font-weight: 600; margin-bottom: .625rem; }
.social-icons { display: flex; gap: .5rem; flex-wrap: wrap; }
.social-link { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); display: grid; place-items: center; color: #94A3B8; transition: var(--t); }
.social-link:hover { background: var(--steel-700); border-color: var(--steel-700); color: white; transform: translateY(-2px); }

/* Columns */
.footer-col h5 { color: white; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.125rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5625rem; }
.footer-col a { font-size: .8125rem; color: #94A3B8; transition: var(--t); display: inline-flex; align-items: center; gap: .375rem; }
.footer-col a:hover { color: white; transform: translateX(2px); }
.footer-badge { display: inline-block; padding: .0625rem .3125rem; background: var(--steel-700); color: white; font-size: .5625rem; font-weight: 700; border-radius: 999px; vertical-align: middle; }

/* Payments */
.footer-payments { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); flex-wrap: wrap; }
.payments-left h6 { color: white; font-size: .8125rem; font-weight: 700; margin-bottom: .125rem; }
.payments-sub { font-size: .6875rem; color: #64748B; }
.payment-icons { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.pay-icon { display: inline-flex; align-items: center; gap: .25rem; padding: .375rem .625rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 6px; color: #cbd5e1; font-size: .6875rem; font-weight: 700; letter-spacing: .04em; font-family: 'Inter', monospace; min-height: 28px; }
.pay-icon--secure { background: rgba(16,185,129,.12); border-color: rgba(16,185,129,.25); color: #34D399; }

/* Bottom */
.footer-bottom { background: var(--navy-900); padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,.04); }
.bottom-row { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.bottom-meta { display: flex; flex-direction: column; gap: .25rem; }
.copyright { color: #94A3B8; font-size: .8125rem; }
.copyright strong { color: white; font-weight: 700; }
.meta-sub { color: #64748B; font-size: .6875rem; }
.bottom-controls { display: flex; gap: .625rem; }
.lang-btn, .region-btn { display: inline-flex; align-items: center; gap: .5rem; padding: .4375rem .75rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 8px; color: #cbd5e1; font-size: .75rem; font-weight: 600; transition: var(--t); }
.lang-btn:hover, .region-btn:hover { background: rgba(255,255,255,.1); color: white; }
.flag { font-size: .875rem; line-height: 1; }
.bottom-legal { display: flex; gap: .625rem; align-items: center; font-size: .75rem; }
.bottom-legal a { color: #94A3B8; transition: var(--t); }
.bottom-legal a:hover { color: white; }
.bottom-legal .sep { color: #475569; }

/* Responsive */
@media (max-width: 1280px) {
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
  .footer-grid > .footer-col:nth-child(5),
  .footer-grid > .footer-col:nth-child(6),
  .footer-grid > .footer-col:nth-child(7) { grid-column: span 1; }
  .trust-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 1rem; }
  .cta-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-payments { flex-direction: column; align-items: flex-start; }
  .bottom-row { flex-direction: column; align-items: flex-start; }
  .bottom-controls { width: 100%; }
  .lang-btn, .region-btn { flex: 1; justify-content: center; }
  .cta-block { flex-direction: column; text-align: center; }
  .cta-block .newsletter-form { width: 100%; min-width: 0; }
  .cta-block .app-badges { justify-content: center; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-brand { grid-column: 1; }
  .trust-row { grid-template-columns: 1fr; }
  .trust-item { padding: .5rem; }
  .newsletter-form { flex-direction: column; }
  .app-badges { flex-direction: column; }
}
@media (max-width: 480px) {
  .footer-cta { padding: 1.5rem 0; }
  .cta-block { padding: 1.125rem; }
  .footer-contact { padding: .875rem; }
}

/* ---------- Forms ---------- */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; color: var(--text); margin-bottom: .5rem; }
.form-control {
  width: 100%; padding: .8125rem 1rem; font-size: .9375rem; color: var(--text);
  background: var(--white); border: 1px solid var(--border-strong); border-radius: var(--r-md);
  transition: var(--t);
}
.form-control:focus { outline: none; border-color: var(--steel-700); box-shadow: 0 0 0 4px rgba(30,91,198,.12); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-help { font-size: .8125rem; color: var(--muted); margin-top: .375rem; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 2.5rem; box-shadow: var(--shadow-sm); }
.form-card.lg { padding: 3rem; }
.form-check { display: flex; align-items: flex-start; gap: .5rem; }
.form-check input { margin-top: .25rem; }
.form-check label { font-size: .875rem; color: var(--muted); line-height: 1.5; font-weight: 400; }
.form-check label a { color: var(--steel-700); font-weight: 600; }

/* ---------- Page Header (sub-pages) ---------- */
.page-header {
  padding: 6rem 0 4rem; background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: white; position: relative; overflow: hidden;
}
.page-header::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 50% at 50% 0%, rgba(30,91,198,.18) 0%, transparent 60%); }
.page-header > * { position: relative; }
.page-header .container { max-width: 920px; }
.page-header .eyebrow { color: #93C5FD; }
.page-header .eyebrow::before { background: #93C5FD; }
.page-header h1 { color: white; font-size: clamp(2.25rem, 4.5vw, 3.5rem); margin-bottom: 1.25rem; }
.page-header .lead { color: rgba(255,255,255,.78); }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .8125rem; color: rgba(255,255,255,.6); margin-bottom: 1.5rem; }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: white; }
.breadcrumb .sep { color: rgba(255,255,255,.3); }

/* ---------- FAQ Accordion ---------- */
.accordion { display: flex; flex-direction: column; gap: .75rem; max-width: 880px; margin: 0 auto; }
.accordion-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: var(--t); }
.accordion-item.open { border-color: var(--steel-400); box-shadow: var(--shadow-sm); }
.accordion-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.375rem 1.75rem; font-size: 1.0625rem; font-weight: 600; text-align: left; color: var(--text); }
.accordion-q .ic { width: 28px; height: 28px; border-radius: 50%; background: var(--steel-50); display: grid; place-items: center; color: var(--steel-700); transition: var(--t); flex-shrink: 0; font-size: 1.125rem; font-weight: 400; }
.accordion-item.open .accordion-q .ic { background: var(--steel-700); color: white; transform: rotate(45deg); }
.accordion-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.accordion-a-inner { padding: 0 1.75rem 1.5rem; color: var(--muted); font-size: .9375rem; line-height: 1.7; }
.accordion-item.open .accordion-a { max-height: 600px; }

/* ---------- Misc utilities ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; } .mt-6 { margin-top: 3rem; } .mt-8 { margin-top: 4rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; } .mb-6 { margin-bottom: 3rem; } .mb-8 { margin-bottom: 4rem; }
.flex { display: flex; }
.gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.w-full { width: 100%; }
.text-muted { color: var(--muted); }
.text-primary { color: var(--steel-700); }
.font-bold { font-weight: 700; }
.divider { height: 1px; background: var(--border); margin: 3rem 0; }
.badge { display: inline-flex; align-items: center; gap: .375rem; padding: .25rem .625rem; font-size: .75rem; font-weight: 600; background: var(--steel-50); color: var(--steel-700); border-radius: 999px; }
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--steel-700); }
.badge-outline { display: inline-flex; align-items: center; gap: .375rem; padding: .25rem .625rem; font-size: .75rem; font-weight: 600; background: transparent; color: var(--steel-700); border: 1px solid var(--steel-400); border-radius: 999px; }

/* ---------- Two column layouts ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.two-col.reverse > div:first-child { order: 2; }
@media (max-width: 1100px) { .two-col { grid-template-columns: 1fr; gap: 2.5rem; } .two-col.reverse > div:first-child { order: initial; } }

/* ---------- Case Study Card ---------- */
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.case-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; transition: var(--t); display: flex; flex-direction: column; }
.case-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--steel-400); }
.case-card .thumb { height: 220px; overflow: hidden; position: relative; }
.case-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.case-card:hover .thumb img { transform: scale(1.05); }
.case-card .thumb-overlay { position: absolute; bottom: 1rem; left: 1rem; background: rgba(255,255,255,.95); padding: .375rem .75rem; border-radius: var(--r-sm); font-size: .75rem; font-weight: 700; color: var(--text); backdrop-filter: blur(8px); }
.case-card .body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.case-card .industry { font-size: .75rem; font-weight: 700; color: var(--steel-700); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem; }
.case-card h3 { font-size: 1.25rem; margin-bottom: .75rem; }
.case-card p { font-size: .9375rem; flex: 1; }
.case-card .stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin: 1.5rem 0; padding: 1.25rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.case-card .stats-row .num { font-size: 1.625rem; font-weight: 800; color: var(--navy-800); }
.case-card .stats-row .lbl { font-size: .75rem; color: var(--muted); margin-top: .125rem; }
.case-card .link { color: var(--steel-700); font-weight: 600; font-size: .9375rem; display: inline-flex; align-items: center; gap: .375rem; }
.case-card .link:hover { gap: .625rem; }
@media (max-width: 768px) { .case-grid { grid-template-columns: 1fr; } }

/* ---------- Blog Cards ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: var(--t); }
.blog-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--steel-400); }
.blog-card .thumb { height: 200px; overflow: hidden; position: relative; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .thumb img { transform: scale(1.05); }
.blog-card .cat-tag { position: absolute; top: 1rem; left: 1rem; background: var(--white); color: var(--navy-800); font-size: .75rem; font-weight: 700; padding: .25rem .75rem; border-radius: 999px; }
.blog-card .body { padding: 1.75rem; }
.blog-card .meta { display: flex; gap: 1rem; font-size: .75rem; color: var(--subtle); margin-bottom: .75rem; text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
.blog-card h3 { font-size: 1.1875rem; margin-bottom: .625rem; line-height: 1.4; }
.blog-card p { font-size: .875rem; }
.blog-card .author-mini { display: flex; align-items: center; gap: .5rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border); font-size: .8125rem; color: var(--muted); }
.blog-card .author-mini img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
@media (max-width: 1100px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* ---------- Contact Page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.contact-info .item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); }
.contact-info .item .ic { width: 44px; height: 44px; border-radius: var(--r); background: var(--steel-50); color: var(--steel-700); display: grid; place-items: center; flex-shrink: 0; }
.contact-info .item h4 { font-size: .9375rem; margin-bottom: .125rem; }
.contact-info .item p { font-size: .875rem; color: var(--muted); }
@media (max-width: 1100px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- Step (Demo process) ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; position: relative; }
.steps::before { content: ""; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 2px; background: var(--border); z-index: 0; }
.step { text-align: center; padding: 1.5rem; position: relative; }
.step .num { width: 56px; height: 56px; border-radius: 50%; background: var(--white); color: var(--steel-700); display: grid; place-items: center; margin: 0 auto 1.25rem; font-weight: 800; font-size: 1.25rem; border: 2px solid var(--steel-700); position: relative; z-index: 1; }
.step h4 { font-size: 1.0625rem; margin-bottom: .5rem; }
.step p { font-size: .875rem; }
@media (max-width: 768px) { .steps { grid-template-columns: repeat(2,1fr); } .steps::before { display: none; } }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: var(--t); }
.team-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.team-card .photo { height: 240px; overflow: hidden; }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card .info { padding: 1.5rem; }
.team-card h4 { font-size: 1.0625rem; margin-bottom: .125rem; }
.team-card .role { font-size: .875rem; color: var(--steel-700); font-weight: 600; margin-bottom: .75rem; }
.team-card .bio { font-size: .8125rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 768px) { .team-grid { grid-template-columns: repeat(2,1fr); } }

/* ---------- Toggle (annual/monthly) ---------- */
.toggle { display: inline-flex; background: var(--white); border: 1px solid var(--border); padding: 4px; border-radius: 999px; }
.toggle button { padding: .625rem 1.25rem; font-size: .875rem; font-weight: 600; border-radius: 999px; color: var(--muted); transition: var(--t); }
.toggle button.active { background: var(--navy-800); color: var(--white); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; max-width: 480px; z-index: 200;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.25rem; box-shadow: var(--shadow-lg);
}
.cookie-banner p { font-size: .875rem; color: var(--muted); margin-bottom: .75rem; }
.cookie-banner .actions { display: flex; gap: .5rem; }
.cookie-banner .btn { flex: 1; padding: .5rem .75rem; font-size: .8125rem; }

/* ---------- Animations ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Job listing ---------- */
.job-list { display: flex; flex-direction: column; gap: 1rem; }
.job-item {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 1.5rem 2rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr auto; gap: 1.5rem; align-items: center;
  transition: var(--t);
}
.job-item:hover { border-color: var(--steel-400); box-shadow: var(--shadow-sm); }
.job-item h4 { font-size: 1.0625rem; margin-bottom: .125rem; }
.job-item .dept { font-size: .8125rem; color: var(--muted); }
.job-item .meta { font-size: .875rem; color: var(--muted); display: flex; align-items: center; gap: .375rem; }
.job-item .meta .ic { width: 16px; height: 16px; }
@media (max-width: 768px) { .job-item { grid-template-columns: 1fr; gap: .5rem; padding: 1.25rem; } }

/* ---------- Investor/financial ---------- */
.financial-table { width: 100%; border-collapse: collapse; margin-top: 2rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.financial-table th, .financial-table td { padding: 1rem 1.25rem; text-align: right; font-size: .9375rem; border-bottom: 1px solid var(--border); }
.financial-table th { background: var(--bg); font-weight: 700; color: var(--text); text-align: right; }
.financial-table th:first-child, .financial-table td:first-child { text-align: left; }
.financial-table tr:last-child td { border-bottom: 0; }
.financial-table .pos { color: var(--success); font-weight: 600; }
.financial-table .neg { color: var(--danger); font-weight: 600; }

/* ---------- Office cards ---------- */
.office-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.office-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: var(--t); }
.office-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.office-card .photo { height: 200px; overflow: hidden; position: relative; }
.office-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.office-card .photo .tag { position: absolute; top: 1rem; left: 1rem; background: rgba(255,255,255,.95); padding: .25rem .625rem; border-radius: var(--r-sm); font-size: .75rem; font-weight: 700; }
.office-card .info { padding: 1.75rem; }
.office-card h4 { font-size: 1.1875rem; margin-bottom: .5rem; }
.office-card .address { font-size: .875rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.office-card .meta { display: flex; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); font-size: .8125rem; color: var(--muted); }
@media (max-width: 768px) { .office-grid { grid-template-columns: 1fr; } }

/* ---------- Press release card ---------- */
.press-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.press-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem; transition: var(--t); display: flex; flex-direction: column; gap: 1rem; }
.press-card:hover { border-color: var(--steel-400); box-shadow: var(--shadow); }
.press-card .source { display: flex; align-items: center; gap: .75rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.press-card .source-logo { width: 64px; height: 32px; background: var(--bg); border-radius: var(--r-sm); display: grid; place-items: center; font-size: .6875rem; font-weight: 800; color: var(--muted); }
.press-card .source-name { font-size: .875rem; font-weight: 600; }
.press-card .date { font-size: .75rem; color: var(--muted); }
.press-card h3 { font-size: 1.25rem; line-height: 1.4; }
.press-card p { font-size: .9375rem; }
.press-card .read-link { color: var(--steel-700); font-weight: 600; font-size: .875rem; }
@media (max-width: 768px) { .press-grid { grid-template-columns: 1fr; } }
