:root {
  --ink: #0B2237;
  /* derin lacivert — güven */
  --ink-soft: #12324E;
  --paper: #F5F9F8;
  /* açık zemin */
  --card: #FFFFFF;
  --teal: #0E9F7A;
  /* yeşil aksan — onay/başarı */
  --teal-deep: #0A7A5E;
  --blue: #1E6FD9;
  /* mavi aksan — rota/link */
  --line: #D8E4E1;
  --muted: #5B7284;
  --kraft: #E9E2D3;
  /* koli bandı dokunuşu */

  /* Yeni Renk Tokenları */
  --amber: #C99A2E;
  --amber-ink: #7A6234;
  --danger: #C24A4A;
  --ok: var(--teal);

  --radius: 14px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.01em
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px
}

.mono {
  font-family: var(--font-mono)
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--teal);
  display: inline-block
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px
}

/* Font Awesome ince ayar */
.logo-mark i {
  font-size: 35px
}

.btn i {
  font-size: 13px
}

.plane i {
  font-size: 20px;
  /*transform: rotate(44deg);*/
  color: var(--teal-deep);
}

.mb-icon i {
  font-size: 22px
}

.footer-bottom i {
  font-size: 11px;
  opacity: .75;
  margin-right: 2px
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 249, 248, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px
}

.logo-mark {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: var(--ink);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
}

.logo .tld {
  color: var(--teal-deep);
  font-weight: 500;
  margin-left: -9px
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted)
}

.nav-links a:hover {
  color: var(--ink)
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 11px 20px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn:hover {
  transform: translateY(-1px)
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 6px 18px rgba(14, 159, 122, .28)
}

.btn-primary:hover {
  background: var(--teal-deep)
}

.btn-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--ink)
}

.btn-ghost:hover {
  border-color: var(--ink)
}

.btn-dark {
  background: var(--ink);
  color: #fff
}

.btn-dark:hover {
  background: var(--ink-soft)
}

/* ---------- HERO ---------- */
.hero {
  padding: 72px 0 84px;
  position: relative;
  overflow: hidden
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center
}

.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 700;
  margin: 18px 0 20px
}

.hero h1 .hl {
  color: var(--teal-deep);
  position: relative;
  white-space: nowrap
}

.hero h1 .hl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 10px;
  background: rgba(14, 159, 122, .16);
  z-index: -1;
  border-radius: 3px;
}

.hero p.lead {
  font-size: 17.5px;
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 30px
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap
}

.stat b {
  font-family: var(--font-display);
  font-size: 24px;
  display: block
}

.stat span {
  font-size: 13px;
  color: var(--muted)
}

/* Waybill card — imza öğesi */
.waybill {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  /*box-shadow: 0 24px 60px rgba(11, 34, 55, .12);*/
  overflow: hidden;
  position: relative;
}

.waybill::before {
  /* koli bandı */
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 130px;
  height: 30px;
  background: var(--kraft);
  opacity: .9;
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
}

.wb-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px 14px;
  border-bottom: 1px dashed var(--line);
}

.wb-head .code {
  font-family: var(--font-mono);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .04em
}

.wb-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  background: rgba(14, 159, 122, .12);
  color: var(--teal-deep);
  padding: 4px 10px;
  border-radius: 99px;
  font-weight: 600;
}

.wb-route {
  padding: 24px 22px 8px;
  display: flex;
  align-items: center;
  gap: 14px
}

.wb-city {
  text-align: center;
  min-width: 88px
}

.wb-city .iata {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px
}

.wb-city .name {
  font-size: 12px;
  color: var(--muted)
}

.wb-path {
  flex: 1;
  position: relative;
  height: 34px
}

.wb-path .line {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 0;
  right: 0;
  height: 0;
  border-top: 2px dashed var(--blue);
  opacity: .5;
}

.wb-path .plane {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  /*background: var(--blue);*/
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
  /*box-shadow: 0 6px 14px rgba(30, 111, 217, .35);*/
  animation: fly 5.5s ease-in-out infinite;
}

@keyframes fly {
  0% {
    left: 6%
  }

  50% {
    left: 94%
  }

  100% {
    left: 6%
  }
}

.wb-steps {
  padding: 16px 22px 20px;
  display: grid;
  gap: 0
}

.wb-step {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 9px 0;
  font-size: 13.5px;
}

.wb-step .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 5px;
  border: 2.5px solid var(--line);
  background: #fff;
}

.wb-step.done .dot {
  background: var(--teal);
  border-color: var(--teal)
}

.wb-step.active .dot {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(30, 111, 217, .15)
}

.wb-step .t {
  font-weight: 600
}

.wb-step .d {
  color: var(--muted);
  font-size: 12.5px
}

.wb-step time {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted)
}

.wb-foot {
  border-top: 1px dashed var(--line);
  padding: 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FBFDFC;
}

.wb-foot .barcode {
  height: 26px;
  flex: 1;
  max-width: 150px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 5px, var(--ink) 5px 6px, transparent 6px 10px);
  opacity: .85;
}

.wb-foot .kg {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted)
}

/* ---------- NASIL ÇALIŞIR ---------- */
section {
  padding: 76px 0
}

.section-head {
  max-width: 640px;
  margin-bottom: 44px
}

.section-head h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  margin: 14px 0 12px
}

.section-head p {
  color: var(--muted);
  font-size: 16.5px
}

/* ---------- NASIL ÇALIŞIR · SEVKİYAT HATTI ---------- */
.hc {
  position: relative;
  padding-top: 60px
}

/* 44px hat şeridi + 16px bacak */

/* — rota hattı: hat/kamyon/varış .hc'ye, node'lar KARTLARA bağlı — */
.hc-line {
  position: absolute;
  z-index: 0;
  top: 22px;
  left: 0;
  width: 100%;
  height: 0;
  border-top: 2px dashed var(--blue);
  opacity: .5;
  /* hero .wb-path .line dili */
}

.hc-node {
  /* kartın içinde: kart merkezi = node merkezi, garanti */
  position: relative;
  z-index: 2;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--blue);
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease;
}

.hc-truck {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 50%;
  /* 02'nin sağı: durağı örtmez */
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(30, 111, 217, .35);
}

.hc-dest {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 0;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-dest small {
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .08em;
  color: var(--muted);
  white-space: nowrap;
}

/* — kartlar — */
.hc-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.hc-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px 18px;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}

.hc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11, 34, 55, .10)
}

.hc-card::after {
  /* karttan hatta çıkan bağlantı bacağı */
  content: "";
  position: absolute;
  top: -21px;
  left: 50%;
  height: 21px;
  border-left: 2px dashed var(--blue);
  opacity: .5;
  transform: translateX(-50%);
  transition: top .18s ease, height .18s ease;
}

.hc-card:hover .hc-node {
  transform: translate(-50%, 4px);
}

.hc-card:hover::after {
  top: -17px;
  height: 17px;
}

.hc-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .11em;
  color: var(--blue);
  border: 1.5px dashed var(--blue);
  border-radius: 8px;
  padding: 4px 9px;
  align-self: flex-start;
  margin-bottom: 14px;
}

.hc-card h3 {
  font-size: 19px;
  margin-bottom: 8px
}

.hc-card>p {
  font-size: 14.5px;
  color: var(--muted);
  flex: 1;
  margin-bottom: 16px
}

.hc-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px
}

.hc-total {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--muted);
}

/* — durak eserleri (artifact) — */
.hc-artifact {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px
}

/* 01 · link-input maketi */
.af-link{display:flex; align-items:center; gap:9px; font-family:var(--font-mono); font-size:12px}
.af-link>i{color:var(--blue); font-size:12px; flex:0 0 auto}
.af-url{flex:1; min-width:0; color:var(--ink-soft); white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.af-caret{flex:0 0 1.5px; width:1.5px; height:14px; background:var(--ink); margin-left:-6px; animation:hc-blink 1.1s steps(1) infinite}
@keyframes hc-blink{50%{opacity:0}}
.af-paste{
  flex:0 0 auto; font-size:9.5px; font-weight:600; letter-spacing:.1em;
  color:var(--blue); border:1.5px dashed var(--blue); border-radius:6px; padding:3px 7px;
}

/* 02 · depo kabul fişi */
.af-intake {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 11px;
  align-items: center
}

.af-photo {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  border: 1.5px dashed var(--muted);
  color: var(--muted);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.af-rows {
  display: grid;
  gap: 6px;
  min-width: 0
}

.af-kg {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .04em
}

.af-barcode {
  height: 16px;
  border-radius: 1px;
  opacity: .85;
  background: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 5px, var(--ink) 5px 6px, transparent 6px 10px);
}

.af-ok {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--teal-deep);
  border-top: 1px dashed var(--line);
  padding-top: 8px;
  margin-top: 2px;
}

/* 03 · gümrük mührü + sürprizsiz fatura */
.af-stamp {
  display: flex;
  align-items: center;
  gap: 14px
}

.st-seal {
  position: relative;
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  color: var(--teal-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  font-family: var(--font-mono);
  transform: rotate(-8deg);
}

.st-seal::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1.5px dashed var(--teal);
  opacity: .7
}

.st-seal b {
  font-size: 8.5px;
  letter-spacing: .14em;
  font-weight: 600
}

.st-seal i {
  font-size: 15px
}

.st-lines {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-soft)
}

.st-lines span {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 4px
}

.st-lines span:last-child {
  border-bottom: 0;
  padding-bottom: 0
}

.st-lines b {
  font-weight: 600;
  color: var(--teal-deep);
  white-space: nowrap
}

/* — scroll reveal koreografisi (gizleme sadece .js altında) — */
.js .hc:not(.in) .hc-line {
  width: 0
}

.js .hc .hc-line {
  transition: width 1.1s ease .1s
}

.js .hc:not(.in) .hc-node {
  opacity: 0
}

.js .hc.in .hc-node {
  animation: hc-pop .45s cubic-bezier(.3, 1.6, .5, 1) backwards;
  animation-delay: calc(.4s + var(--i)*.15s)
}

@keyframes hc-pop {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(.2)
  }
}

/* not: node'un kalıcı transform'u translateX(-50%) olduğu için keyframe
   içinde de korunur — yoksa pop sırasında yana kayar. */

.js .hc:not(.in) .hc-truck {
  left: -40px;
  opacity: 0
}

.js .hc .hc-truck {
  transition: left 1.5s cubic-bezier(.45, 0, .25, 1) .3s, opacity .3s ease .3s
}

.js .hc:not(.in) .hc-dest {
  opacity: 0
}

.js .hc .hc-dest {
  transition: opacity .4s ease 1.5s
}

.js .hc:not(.in) .hc-card {
  opacity: 0
}

.js .hc.in .hc-card {
  animation: hc-up .55s cubic-bezier(.2, .7, .3, 1) backwards;
  animation-delay: calc(.2s + var(--i)*.13s)
}

@keyframes hc-up {
  from {
    opacity: 0;
    transform: translateY(16px)
  }
}

/* — mobil: dikey timeline — */
@media (max-width:900px) {
  .hc {
    padding-top: 0
  }

  .hc-line,
  .hc-truck,
  .hc-dest,
  .hc-node {
    display: none
  }

  .hc-card::after {
    display: none
  }

  .hc-steps {
    grid-template-columns: 1fr;
    gap: 18px;
    position: relative;
    padding-left: 46px
  }

  .hc-steps::before {
    content: "";
    position: absolute;
    left: 19px;
    top: 6px;
    bottom: 6px;
    border-left: 2px dashed var(--blue);
    opacity: .5;
  }

  .hc-card::before {
    content: attr(data-n);
    position: absolute;
    left: -41px;
    top: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--card);
    border: 2px solid var(--blue);
    color: var(--blue);
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* — reduced motion: animasyonsuz, son karede — */
@media (prefers-reduced-motion:reduce) {

  .js .hc:not(.in) .hc-card,
  .js .hc:not(.in) .hc-node,
  .js .hc:not(.in) .hc-truck,
  .js .hc:not(.in) .hc-dest {
    opacity: 1
  }

  .js .hc:not(.in) .hc-line {
    width: 100%
  }

  .js .hc:not(.in) .hc-truck {
    left: 50%
  }

  .js .hc.in .hc-card,
  .js .hc.in .hc-node {
    animation: none
  }

  .hc-line,
  .hc-truck,
  .hc-dest {
    transition: none !important
  }

  .af-caret {
    animation: none
  }
}

/* ---------- ÜLKELER ---------- */
.countries {
  background: var(--ink);
  color: #EAF2F0;
  border-radius: 28px;
  margin: 0 16px;
}

.countries .container {
  padding-top: 76px;
  padding-bottom: 76px;
}

.countries .eyebrow {
  color: #7ED8BC
}

.countries .eyebrow::before {
  background: #7ED8BC
}

.countries h2 {
  color: #fff
}

.countries .section-head p {
  color: #9DB4C4
}

.region-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px
}

.region-tab {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: 99px;
  cursor: pointer;
  background: transparent;
  color: #9DB4C4;
  border: 1.5px solid #22415C;
  transition: all .15s ease;
}

.region-tab:hover {
  border-color: #3D628A;
  color: #fff
}

.region-tab.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px
}

.country-chip {
  background: #10314D;
  border: 1px solid #1D4266;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background .15s ease, transform .15s ease;
  cursor: pointer;
}

.country-chip:hover {
  background: #164066;
  transform: translateY(-2px)
}

.country-chip .flag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.country-chip .cname {
  flex: 1
}

.cdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cdot-active {
  background: #7ED8BC;
  box-shadow: 0 0 6px rgba(126, 216, 188, .5);
}

.cdot-new {
  background: #8FBCF5;
  box-shadow: 0 0 6px rgba(143, 188, 245, .5);
}

.cdot-pending {
  background: #F0C768;
  box-shadow: 0 0 6px rgba(240, 199, 104, .5);
}

.cdot-closed {
  background: #F09999;
  box-shadow: 0 0 6px rgba(240, 153, 153, .5);
}

.country-note {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #7290A8
}

.tag-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #9DB4C4;
  align-items: center;
}

.tag-legend .legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---------- HİZMETLER ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.svc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.svc:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11, 34, 55, .10)
}

.svc .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.svc:nth-child(1) .icon {
  background: rgba(30, 111, 217, .12)
}

.svc:nth-child(2) .icon {
  background: rgba(14, 159, 122, .12)
}

.svc:nth-child(3) .icon {
  background: rgba(233, 177, 58, .16)
}

.svc h3 {
  font-size: 19px;
  margin-bottom: 8px
}

.svc p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 14px
}

.svc ul {
  list-style: none;
  font-size: 13.5px;
  color: var(--ink);
  display: grid;
  gap: 7px
}

.svc li {
  display: flex;
  gap: 9px;
  align-items: baseline
}

.svc li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 700;
  font-size: 12px
}

/* ---------- FİYAT HESAPLA CTA ---------- */
.calc {
  background: linear-gradient(135deg, #0E9F7A 0%, #0A7A5E 60%, #0B2237 140%);
  border-radius: 28px;
  margin: 0 16px;
  color: #fff;
}

.calc .container {
  padding-top: 64px;
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
}

.calc h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 12px;
  color: #fff
}

.calc p {
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 46ch
}

.calc-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
}

.calc-box label {
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px
}

.calc-box .field {
  margin-bottom: 16px
}

.calc-box input,
.calc-box select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14.5px;
  background: #FBFDFC;
  color: var(--ink);
}

.calc-box input:focus,
.calc-box select:focus {
  outline: none;
  border-color: var(--teal)
}

.calc-box .btn {
  width: 100%;
  justify-content: center
}

.calc-hint {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center
}

.calc-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.check-field {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #FBFDFC;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 11px 13px;
  cursor: pointer;
  font-size: 13.5px;
}

.check-field input {
  width: auto;
  margin-top: 3px;
  accent-color: var(--teal)
}

.check-field .sub {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 400
}

.calc-result {
  margin-top: 18px;
  border-top: 1.5px dashed var(--line);
  padding-top: 16px;
  display: none;
}

.calc-result.show {
  display: block
}

.cr-line {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 5px 0;
  color: var(--muted)
}

.cr-line b {
  color: var(--ink);
  font-family: var(--font-mono);
  font-weight: 500
}

.cr-line.total {
  border-top: 1.5px solid var(--line);
  margin-top: 8px;
  padding-top: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

.cr-line.total b {
  font-size: 18px;
  font-weight: 700;
  color: var(--teal-deep)
}

.cr-warn {
  margin-top: 12px;
  background: #FDF3F3;
  border: 1.5px solid #F0C4C4;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  color: #9B3535;
  display: none;
}

.cr-warn.show {
  display: block
}

.cr-info {
  margin-top: 12px;
  background: #F1F8F5;
  border: 1.5px solid #C8E6D9;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--teal-deep);
  display: none;
}

.cr-info.show {
  display: block
}

/* Akordiyon Bileşeni */
.calc-accordion {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-accordion details {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.calc-accordion details[open] {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
}

.calc-accordion summary {
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.calc-accordion summary::-webkit-details-marker {
  display: none;
}

.calc-accordion summary span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.calc-accordion summary i.arrow {
  font-size: 12px;
  transition: transform 0.25s ease;
  opacity: 0.8;
}

.calc-accordion details[open] summary i.arrow {
  transform: rotate(180deg);
}

.calc-accordion .content {
  padding: 0 18px 16px 18px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #E2F2EE;
}

.calc-accordion .content p {
  color: #E2F2EE !important;
}

.calc-accordion .content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
}

.calc-accordion .content li {
  position: relative;
  padding-left: 16px;
}

.calc-accordion .content li::before {
  content: "•";
  color: #7ED8BC;
  position: absolute;
  left: 0;
  top: 0;
}

/* ---------- MEVZUAT / GÜMRÜK DOSYASI KONSEPTİ ---------- */
.mz-section {
  padding: 80px 0;
}

.mz-panel {
  background: linear-gradient(180deg, #EFE9DC, var(--kraft));
  background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.01) 0, rgba(0, 0, 0, 0.01) 2px, transparent 2px, transparent 8px), linear-gradient(180deg, #EFE9DC, var(--kraft));
  border-radius: 28px;
  padding: 56px 64px;
  position: relative;
  overflow: hidden;
  margin: 0 16px;
  color: var(--ink);
}

/* CSS Mühür */
.mz-stamp {
  position: absolute;
  top: 40px;
  right: 50px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid var(--danger);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-8deg);
  opacity: 0.85;
  pointer-events: none;
}

.mz-stamp::before {
  content: "";
  position: absolute;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  border: 1px dashed var(--danger);
}

.mz-stamp-inner {
  text-align: center;
  color: var(--danger);
  display: flex;
  flex-direction: column;
}

.mz-stamp-date {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--danger);
  padding-bottom: 2px;
  margin-bottom: 2px;
}

.mz-stamp-text {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.mz-head {
  max-width: 600px;
  margin-bottom: 40px;
}

.mz-head h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-top: 12px;
}

/* A) Değişim Şeridi */
.mz-shift {
  display: flex;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  align-items: center;
  margin-bottom: 12px;
  box-shadow: 0 8px 24px rgba(11, 34, 55, 0.04);
}

.mz-shift-col {
  flex: 1;
}

.mz-shift-col.old {
  opacity: 0.6;
}

.mz-shift-col.old li {
  text-decoration: line-through;
}

.mz-shift-col.new {
  color: var(--ink);
}

.mz-shift-col.new li {
  color: var(--ink);
  font-weight: 500;
}

.mz-shift-title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
}

.mz-shift-arrow {
  padding: 0 32px;
  color: var(--blue);
  font-size: 20px;
}

.mz-shift ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mz-shift li {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mz-shift li::before {
  content: "•";
  color: var(--muted);
}

.mz-shift-note {
  font-size: 14px;
  color: var(--amber-ink);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
}

.mz-shift-note i {
  color: var(--amber);
}

/* B) Oran Karşılaştırma Kahramanı */
.mz-rates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 16px;
}

.rate-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 12px 36px rgba(11, 34, 55, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rate-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(11, 34, 55, 0.1);
}

.rate-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.rate-label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}

.rate-num-wrap {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  color: var(--ink);
  line-height: 1;
  display: flex;
  align-items: baseline;
}

.rate-num-wrap span {
  font-size: 56px;
}

.rate-bar-track {
  height: 12px;
  background: var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.rate-bar {
  height: 100%;
  background: var(--teal);
  width: 0;
  /* JS ile dolacak */
  border-radius: 6px;
  transition: width 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mz-otv-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}

.mz-otv-chip {
  background: rgba(201, 154, 46, 0.12);
  border: 1px dashed var(--amber);
  border-radius: 99px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.otv-val {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  color: var(--amber-ink);
}

.otv-desc {
  font-size: 13px;
  color: var(--amber-ink);
  opacity: 0.8;
}

.mz-cif-note {
  font-size: 13.5px;
  color: var(--muted);
}

/* C) Limit Göstergeleri */
.mz-limits {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}

.limit-row {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.limit-row .l-label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  width: 140px;
}

.limit-row .l-val {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  flex: 1;
}

.limit-row .l-val small {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}

.limit-row .l-track {
  width: 80px;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  position: relative;
}

.limit-row .l-track::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 60%;
  background: var(--amber);
  border-radius: 2px;
}

.mz-warn {
  background: rgba(194, 74, 74, 0.08);
  border: 1px solid rgba(194, 74, 74, 0.2);
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--danger);
  font-size: 13.5px;
  margin-bottom: 48px;
}

/* D & E) Kapsam Tablosu ve Notlar */
.mz-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mz-scope {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scope-row {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}

.scope-row i {
  font-size: 16px;
}

.scope-row.ban i {
  color: var(--danger);
}

.scope-row.cond i {
  color: var(--amber);
}

.scope-row.ok i {
  color: var(--ok);
}

.mz-side-notes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.mz-note {
  background: var(--card);
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 20px;
}

.mono-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}

.mz-note p {
  font-size: 13.5px;
  color: var(--ink);
}

.mz-source {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.mz-btn {
  align-self: flex-start;
}

/* Responsive Düzenlemeler */
@media (max-width: 1024px) {
  .mz-panel {
    padding: 40px 32px;
  }

  .rate-num-wrap span {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .mz-shift {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .mz-shift-arrow {
    padding: 0;
    transform: rotate(90deg);
  }

  .mz-rates {
    grid-template-columns: 1fr;
  }

  .mz-footer-grid {
    grid-template-columns: 1fr;
  }

  .mz-stamp {
    width: 100px;
    height: 100px;
    top: 20px;
    right: 20px;
  }

  .mz-stamp::before {
    width: 88px;
    height: 88px;
  }

  .mz-stamp-date {
    font-size: 11px;
  }

  .mz-stamp-text {
    font-size: 10px;
  }

  .limit-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .limit-row .l-track {
    display: none;
  }
}

/* ---------- FOOTER ---------- */
footer {
  padding: 56px 0 36px;
  border-top: 1px solid var(--line);
  margin-top: 76px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px
}

.footer-grid p {
  font-size: 14px;
  color: var(--muted);
  max-width: 32ch;
  margin-top: 12px
}

.footer-grid h4 {
  font-family: var(--font-display);
  font-size: 14px;
  margin-bottom: 14px
}

.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 9px;
  font-size: 14px;
  color: var(--muted)
}

.footer-grid ul a:hover {
  color: var(--ink)
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom .mono {
  font-size: 11.5px
}

/* ---------- MODAL (AUTH) ---------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(11, 34, 55, .6);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all .25s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible
}

.modal-box {
  background: var(--card);
  border-radius: var(--radius);
  width: 90%;
  max-width: 440px;
  padding: 32px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .3);
  transform: scale(.95);
  transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-box {
  transform: scale(1)
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--muted);
  cursor: pointer;
  transition: color .15s ease;
}

.modal-close:hover {
  color: var(--ink)
}

.modal-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 28px
}

.modal-tab {
  flex: 1;
  text-align: center;
  padding: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  cursor: pointer;
  background: #F5F9F8;
  color: var(--muted);
  border: 1.5px solid transparent;
  transition: all .15s ease;
}

.modal-tab.active {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .04)
}

.auth-form {
  display: none
}

.auth-form.active {
  display: block
}

.auth-form .field {
  margin-bottom: 18px
}

.auth-form label {
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  color: var(--ink)
}

.auth-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14.5px;
  background: #FBFDFC;
  color: var(--ink);
  transition: border-color .15s;
}

.auth-form input:focus {
  outline: none;
  border-color: var(--teal)
}

.auth-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin: 24px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--line)
}

.auth-divider span {
  padding: 0 12px;
  font-family: var(--font-mono)
}

.btn-google {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
  width: 100%;
  justify-content: center;
}

.btn-google:hover {
  border-color: var(--ink)
}

/* ---------- INNER PAGES HERO ---------- */
.page-hero {
  padding: 64px 0 48px;
  background: var(--paper);
  border-bottom: 1px solid var(--line)
}

.page-hero-inner {
  max-width: 720px
}

.page-hero h1 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  margin-bottom: 16px
}

.page-hero p.lead {
  font-size: 17.5px;
  color: var(--muted);
  max-width: 54ch
}

/* ---------- LEGAL CONTENT (KVKK vb.) ---------- */
.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  padding: 56px 0;
  align-items: start
}

.legal-toc {
  position: sticky;
  top: 90px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
}

.legal-toc h4 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: .08em;
  margin-bottom: 16px;
  text-transform: uppercase
}

.legal-toc ul {
  list-style: none;
  display: grid;
  gap: 12px;
  font-size: 13.5px
}

.legal-toc a {
  color: var(--muted);
  transition: color .15s
}

.legal-toc a:hover,
.legal-toc a.active {
  color: var(--teal-deep);
  font-weight: 500
}

.legal-content h2 {
  font-size: 24px;
  margin: 32px 0 16px;
  color: var(--ink)
}

.legal-content h3 {
  font-size: 18px;
  margin: 24px 0 12px;
  color: var(--ink)
}

.legal-content p {
  margin-bottom: 16px;
  color: #4A5E6D
}

.legal-content ul {
  margin: 0 0 16px 20px;
  color: #4A5E6D
}

.legal-content li {
  margin-bottom: 8px
}

/* ---------- ACCORDION (SSS) ---------- */
.faq-search {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  max-width: 480px;
  margin: 24px 0 40px;
}

.faq-search input {
  border: none;
  background: transparent;
  flex: 1;
  padding: 8px;
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
}

.faq-search i {
  color: var(--muted)
}

.accordion {
  display: grid;
  gap: 14px;
  max-width: 800px
}

.acc-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .2s;
}

.acc-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .04)
}

.acc-head {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--ink);
  cursor: pointer;
}

.acc-head i {
  color: var(--muted);
  transition: transform .3s ease
}

.acc-item.open .acc-head i {
  transform: rotate(180deg)
}

.acc-body {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  color: var(--muted);
  font-size: 15px;
}

.acc-item.open .acc-body {
  padding: 0 24px 24px;
  max-height: 400px
}

/* ---------- CONTACT & FORMS ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  padding: 64px 0
}

.contact-cards {
  display: grid;
  gap: 20px
}

.c-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.c-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(14, 159, 122, .1);
  color: var(--teal-deep);
  display: grid;
  place-items: center;
  font-size: 20px;
}

.c-card h4 {
  font-size: 16px;
  margin-bottom: 4px
}

.c-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5
}

.map-placeholder {
  width: 100%;
  height: 320px;
  background: #EAF0EE;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-family: var(--font-mono);
  margin-top: 24px;
  border: 1px dashed #C8D6D2;
}

/* ---------- TIMELINE ---------- */
.timeline {
  padding: 24px 0 24px 24px;
  border-left: 2px dashed var(--line);
  margin-left: 12px
}

.tl-item {
  position: relative;
  padding-bottom: 36px;
  padding-left: 32px
}

.tl-item:last-child {
  padding-bottom: 0
}

.tl-dot {
  position: absolute;
  left: -41px;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--line);
}

.tl-year {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--teal-deep);
  font-weight: 600;
  margin-bottom: 6px
}

.tl-item h4 {
  font-size: 18px;
  margin-bottom: 8px
}

.tl-item p {
  color: var(--muted);
  font-size: 14.5px;
  max-width: 500px
}

/* ---------- STATS GRID ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 48px 0
}

.s-card {
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px
}

.s-card .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 42px;
  color: var(--teal-deep);
  line-height: 1
}

.s-card .lbl {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
  font-weight: 500
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px
  }

  .services {
    grid-template-columns: 1fr
  }

  .rules {
    grid-template-columns: 1fr 1fr
  }

  .calc .container {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .nav-links {
    display: none
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width:520px) {
  .footer-grid {
    grid-template-columns: 1fr
  }

  .rules {
    grid-template-columns: 1fr
  }

  .calc-row2 {
    grid-template-columns: 1fr
  }

  .hero {
    padding: 48px 0 60px
  }

  section {
    padding: 56px 0
  }

  .countries,
  .calc {
    margin: 0 8px;
    border-radius: 20px
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .nav-cta .btn {
    padding: 8px 14px;
    font-size: 13px;
  }

  .hero h1 .hl {
    white-space: normal;
  }
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important
  }

  html {
    scroll-behavior: auto
  }
}