﻿/* ================================================================
   DİL VE KONUŞMA ATLASI — Ana Stil Dosyası
   Tasarım: Derin Lacivert × Elektrik Mavi × Buz Beyazı | Outfit + Plus Jakarta Sans
   ================================================================ */

/* ── 1. DESIGN TOKENS ──────────────────────────────────────── */
:root {
  --petrol:       #0B1E3D;
  --petrol-light: #14295A;
  --petrol-mid:   #1D3A72;
  --petrol-pale:  #2E5296;

  --coral:        #2563EB;
  --coral-light:  #4F86F7;
  --coral-pale:   #A9C4FB;
  --coral-dim:    rgba(37,99,235,0.10);

  --mango:        #38BDF8;
  --mango-light:  #7DD3FC;

  --ivory:        #F7F9FC;
  --ivory-dark:   #EDF1F8;
  --ivory-border: #DCE3F0;

  --text-dark:    #0E1A2E;
  --text-mid:     #47546A;
  --text-light:   #5E6C82;
  --text-ghost:   #92A0B5;

  --white:        #FFFFFF;
  --danger:       #DC3D4C;
  --success:      #1B9C6E;
  --warning:      #E08B12;
  --info:         #2563EB;

  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    24px;
  --radius-xl:    36px;

  --shadow-sm:    0 2px 10px rgba(14,26,46,0.06);
  --shadow-md:    0 10px 30px rgba(14,26,46,0.09);
  --shadow-lg:    0 24px 64px rgba(14,26,46,0.14);
  --shadow-coral: 0 10px 34px rgba(37,99,235,0.25);

  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --transition:   0.25s var(--ease);

  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Legacy token aliases (used inline across pages) */
  --navy:         var(--petrol);
  --navy-light:   var(--petrol-light);
  --navy-mid:     var(--petrol-mid);
  --navy-pale:    var(--petrol-pale);
  --gold:         var(--coral);
  --gold-light:   var(--coral-light);
  --gold-pale:    var(--coral-pale);
  --gold-dim:     var(--coral-dim);
  --cream:        var(--ivory);
  --cream-dark:   var(--ivory-dark);
  --cream-border: var(--ivory-border);
}

/* ── 2. RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--ivory);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--coral); }

img { max-width: 100%; display: block; }

ul { list-style: none; }

::selection { background: var(--coral); color: var(--white); }

/* Fixed noise overlay for physical texture — never on scrolling containers */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── 3. LAYOUT ──────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.main-content {
  flex: 1;
  padding-top: 84px; /* navbar height */
}

/* Hero pages: video/hero must span the full first screen behind the transparent nav */
.main-content:has(.hero-framed),
.main-content-hero {
  padding-top: 0;
  background: var(--white);
}

body.page-hero-active {
  background-color: var(--white) !important;
}

.section { padding: 96px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 140px 0; }

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ── 4. NAVBAR — Floating Island ────────────────────────────── */
.navbar {
  position: fixed;
  top: 16px; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  transition: top var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 20px;
  width: 100%;
  max-width: 1220px;
  padding: 0 28px;
  background: rgba(11,30,61,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  box-shadow: 0 12px 40px rgba(11,30,61,0.22), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}

.navbar.scrolled .nav-inner {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0) 42%),
    linear-gradient(135deg, rgba(37,99,235,0.95) 0%, rgba(23,55,120,0.96) 55%, rgba(11,30,61,0.98) 100%);
  border-color: rgba(120,170,255,0.30);
  box-shadow:
    0 16px 48px rgba(23,70,160,0.40),
    0 0 0 1px rgba(120,170,255,0.12),
    inset 0 1px 0 rgba(255,255,255,0.28),
    inset 0 -8px 24px rgba(11,30,61,0.45);
}

/* On hero pages, nav starts fully transparent/invisible and reveals its pill on scroll */
.navbar.transparent-hero:not(.scrolled) .nav-inner {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.navbar.transparent-hero.scrolled::before { opacity: 0; }
.navbar.past-hero::before { display: none; }
.navbar .nav-inner { position: relative; z-index: 1001; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--mango) 100%);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--petrol);
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(37,99,235,0.4);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}

.logo-sub {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  color: var(--mango-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  padding: 8px 12px;
  border-radius: 100px;
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.09);
}

.nav-link.active {
  color: var(--mango-light);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-right .btn { flex-shrink: 0; }

.lang-switcher {
  position: relative;
  margin-right: 4px;
}

.lang-switch-current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 6px;
  background: rgba(255,255,255,0.06);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.3s var(--ease);
}

.lang-switch-current:hover { background: rgba(255,255,255,0.12); }

.lang-switcher .lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.9);
  flex-shrink: 0;
}

.lang-switcher .lang-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lang-code-sm {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(26,26,46,0.45);
  min-width: 20px;
}

.lang-chevron {
  transition: transform 0.25s var(--ease);
  opacity: 0.7;
}

.lang-switcher.open .lang-chevron { transform: rotate(180deg); }

.lang-switch-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 168px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 200;
}

.lang-switcher.open .lang-switch-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switch-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink, #1a1a2e);
  transition: background 0.2s var(--ease);
}

.lang-switch-item:hover { background: rgba(0,0,0,0.05); }
.lang-switch-item.active { background: rgba(0,0,0,0.05); }
.lang-switch-item.active .lang-name { color: var(--petrol); font-weight: 700; }

.hamburger {
  display: none;
  position: relative;
  width: 36px; height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.hamburger span:nth-child(1) { transform: translateY(-6px); }
.hamburger span:nth-child(2) { transform: translateY(0); }
.hamburger span:nth-child(3) { transform: translateY(6px); }

.hamburger.open span:nth-child(1) { transform: translateY(0) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(0) rotate(-45deg); }

/* ── 5. BUTTONS — Island Architecture ──────────────────────── */
.btn {
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 22px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.5s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  will-change: transform;
}

/* Radial sheen that follows the pointer — tracked via JS custom properties */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(120px circle at var(--mx) var(--my), rgba(255,255,255,0.35), transparent 70%);
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.btn:hover::before { opacity: 1; }

.btn:active { transform: scale(0.965) !important; transition-duration: 0.15s; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; }

/* Trailing icon nested in its own circular wrapper — button-in-button */
.btn-icon-wrap {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.08);
  transition: transform 0.5s var(--ease), background 0.4s var(--ease);
  flex-shrink: 0;
}

.btn:hover .btn-icon-wrap {
  transform: translate(3px, -2px) scale(1.1) rotate(8deg);
}

.btn:active .btn-icon-wrap {
  transform: translate(1px, 0) scale(0.95);
}

.btn-coral, .btn-gold {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
  color: var(--white);
  border-color: var(--coral);
  box-shadow: var(--shadow-coral);
}

.btn-coral .btn-icon-wrap, .btn-gold .btn-icon-wrap { background: rgba(255,255,255,0.22); }

.btn-coral:hover, .btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(37,99,235,0.42), 0 4px 10px rgba(37,99,235,0.3);
  color: var(--white);
}

.btn-petrol, .btn-navy {
  background: var(--petrol);
  color: var(--white);
  border-color: var(--petrol);
}

.btn-petrol .btn-icon-wrap, .btn-navy .btn-icon-wrap { background: rgba(255,255,255,0.14); }

.btn-petrol:hover, .btn-navy:hover {
  background: var(--petrol-light);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(11,30,61,0.32);
}

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(255,255,255,0.28);
}

.btn-outline .btn-icon-wrap { background: rgba(255,255,255,0.12); }

.btn-outline:hover {
  border-color: var(--mango-light);
  color: var(--mango-light);
  background: rgba(56,189,248,0.1);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(56,189,248,0.18);
}

.btn-outline-dark {
  background: transparent;
  color: var(--petrol);
  border-color: var(--ivory-border);
}

.btn-outline-dark .btn-icon-wrap { background: rgba(11,30,61,0.07); }

.btn-outline-dark:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(37,99,235,0.15);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.72);
  border-color: transparent;
}

.btn-ghost:hover {
  color: var(--white);
  background: rgba(255,255,255,0.09);
}

.btn-danger {
  background: var(--danger);
  color: var(--white);
  border-color: var(--danger);
}

.btn-danger:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(214,68,75,0.32);
}

.btn-success {
  background: var(--success);
  color: var(--white);
  border-color: var(--success);
}

.btn-success:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(31,154,110,0.32);
}

.btn-sm { padding: 8px 17px; font-size: 13px; gap: 6px; }
.btn-sm .btn-icon-wrap { width: 18px; height: 18px; }
.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* Magnetic pull — applied via JS to .btn[data-magnetic] using transform translate */
.btn[data-magnetic] { transition: transform 0.35s var(--ease), box-shadow 0.5s var(--ease), background 0.5s var(--ease); }

/* Ripple click effect — originates from exact pointer coordinates */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 70%);
  transform: scale(0);
  opacity: 1;
  pointer-events: none;
  animation: btn-ripple-expand 0.65s var(--ease) forwards;
  z-index: -1;
}

@keyframes btn-ripple-expand {
  to { transform: scale(1); opacity: 0; }
}

.text-gold, .text-coral { color: var(--coral) !important; }
.text-navy, .text-petrol { color: var(--petrol) !important; }
.text-light-color { color: var(--text-light); }

/* ── 6. CARDS — Double-Bezel ────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--ivory-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover { box-shadow: var(--shadow-md); }

.card-luxury {
  background: var(--white);
  border: 1px solid var(--ivory-border);
  border-radius: var(--radius-lg);
  padding: 4px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.card-luxury::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--mango) 50%, var(--coral) 100%);
}

.card-luxury > * { padding: 36px; }

.card-dark {
  background: var(--petrol);
  border: 1px solid var(--petrol-mid);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
}

/* ── 7. HERO SECTION ────────────────────────────────────────── */
.hero {
  background: var(--petrol);
  padding: 128px 0 88px;
  position: relative;
  overflow: hidden;
  min-height: 100dvh;
  display: flex;
  align-items: center;
}

.hero-centered {
  background: var(--white);
}

.hero-framed {
  margin: 12px;
  border-radius: 18px;
  min-height: calc(100dvh - 24px);
  box-shadow: none;
  background: var(--white);
  width: calc(100% - 24px);
  overflow: hidden;
}

.hero-framed .hero-video,
.hero-framed .hero-video-overlay {
  border-radius: 18px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  opacity: 0;                               /* onzichtbaar tot geladen */
  transition: opacity 0.9s ease;
}
.hero-video.is-loaded { opacity: 1; }

/* Poster (68 KB) — toont direct; video fade't eroverheen zodra geladen.
   Boven de gradient, onder de video. */
.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}
.hero-framed .hero-poster { border-radius: 18px; }

/* Merkgradient — diepste laag, zichtbaar tot de poster geladen is. */
.hero-video-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(120% 90% at 20% 15%, rgba(255,138,101,0.28) 0%, transparent 55%),
    radial-gradient(120% 100% at 85% 90%, rgba(21,94,117,0.55) 0%, transparent 60%),
    linear-gradient(155deg, var(--petrol) 0%, #123845 55%, #0d2a34 100%);
}
.hero-framed .hero-video-fallback { border-radius: 18px; }

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.10) 35%, rgba(0,0,0,0.28) 75%, rgba(0,0,0,0.55) 100%);
}

.hero .container { position: relative; z-index: 1; width: 100%; }

.hero-content { position: relative; z-index: 1; text-align: left; max-width: 720px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,0.14);
  border: 1px solid rgba(37,99,235,0.35);
  color: var(--coral-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}

.hero-title .gold-word { color: var(--mango-light); font-style: normal; }

.hero-subtitle {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.86);
  max-width: 560px;
  margin: 0 0 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 72px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 48px;
}

.hero-stat {
  text-align: left;
  padding: 0 40px 0 0;
  margin-right: 40px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.hero-stat:last-child { border-right: none; }

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--coral-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* ── 7b. HERO — Centered / Aura-style variant ───────────────── */
.hero-centered {
  padding: 0;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.hero-centered .container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(84px + 6vh);
  padding-bottom: 40px;
}

.hero-content-centered {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.hero-title-centered {
  font-size: clamp(34px, 4.8vw, 56px);
  text-shadow: 0 4px 28px rgba(0,0,0,0.35);
}

.hero-title-italic { font-style: italic; font-weight: 600; }

.hero-subtitle-centered {
  margin: 0 auto 36px;
  text-align: center;
  color: rgba(255,255,255,0.82);
}

.hero-actions-centered { justify-content: center; margin-bottom: 20px; }

.hero-mini-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 96px;
}

.hero-mini-note svg { color: var(--mango-light); flex-shrink: 0; }

/* Quote marquee pinned to the bottom edge of the hero — scrolls left-to-right, infinite loop */
.hero-quote-bar {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  background: transparent;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.hero-quote-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: hero-quote-scroll 38s linear infinite;
}

.hero-quote-bar:hover .hero-quote-track { animation-play-state: paused; }

@keyframes hero-quote-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero-quote {
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-quote-mark {
  color: var(--mango-light);
  font-style: normal;
}

.hero-quote-author {
  font-style: normal;
  font-weight: 600;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.stats-strip {
  background: linear-gradient(180deg, var(--ivory-dark) 0%, var(--ivory) 100%);
  padding: 56px 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 920px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.stat-item.is-visible { opacity: 1; transform: translateY(0); }

.stat-item::before {
  content: '';
  position: absolute;
  top: 6px; bottom: 6px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--ivory-border) 30%, var(--ivory-border) 70%, transparent);
}

.stat-item:first-child::before { display: none; }

.stat-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  background: radial-gradient(circle, var(--coral-dim) 0%, transparent 75%);
  margin-bottom: 14px;
  transition: transform 0.4s var(--ease);
}

.stat-item:hover .stat-icon { transform: scale(1.08); }

.stat-number {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: -0.01em;
}

.stat-label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .stat-item:nth-child(3)::before { display: none; }
  .stat-item:nth-child(1)::before, .stat-item:nth-child(2)::before { display: none; }
}

@media (max-width: 768px) {
  .hero-centered { padding-top: calc(68px + 6vh); }
  .hero-quote-bar { grid-template-columns: 1fr; gap: 14px; padding: 18px 20px 20px; text-align: center; }
  .hero-mini-note { margin-bottom: 56px; }
}

/* ── 8. SECTION HEADER ──────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--petrol);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── 9. FEATURE CARDS ───────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

/* Double-bezel shell: outer wrapper carries the spotlight border, inner core holds content */
.feature-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  background: var(--ivory-border);
  border-radius: calc(var(--radius-lg) + 3px);
  padding: 1.5px;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.4s var(--ease);
  will-change: transform;
}

/* Spotlight border — illuminates precisely where the cursor sits */
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(240px circle at var(--mx) var(--my), rgba(37,99,235,0.55), transparent 70%);
  transition: opacity 0.4s var(--ease);
}

.feature-card:hover::before { opacity: 1; }

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(14,26,46,0.12);
}

.feature-card:active { transform: translateY(-3px) scale(0.99); }

/* Idle rotating conic edge-light — always faintly alive, blooms on hover */
.feature-card::after {
  content: '';
  position: absolute;
  inset: -70%;
  z-index: -1;
  background: conic-gradient(from 0deg, transparent 0%, rgba(37,99,235,0.35) 6%, transparent 16%, transparent 100%);
  opacity: 0.55;
  animation: feature-edge-spin 7s linear infinite;
  animation-delay: calc(var(--icon-delay, 0) * -1.6s);
  transition: opacity 0.4s var(--ease);
}
.feature-card:hover::after { opacity: 1; }

@keyframes feature-edge-spin {
  to { transform: rotate(360deg); }
}

/* Inner core — breathes gently on its own */
.feature-card-inner {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 8px 26px rgba(14,26,46,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  animation: feature-card-breathe 6s ease-in-out infinite;
  animation-delay: calc(var(--icon-delay, 0) * 0.5s);
}

@keyframes feature-card-breathe {
  0%, 100% { box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 8px 26px rgba(14,26,46,0.05); }
  50%      { box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 16px 38px rgba(37,99,235,0.1); }
}

/* Idle diagonal light pass — loops automatically, unaffected by hover to avoid flash */
.feature-card-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 35%;
  height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 2;
  animation: feature-shimmer-loop 6s ease-in-out infinite;
  animation-delay: calc(var(--icon-delay, 0) * 0.7s + 1.2s);
}

@keyframes feature-shimmer-loop {
  0%, 85%, 100% { left: -60%; }
  38%           { left: 130%; }
}

.feature-card-inner .feature-desc { flex: 1; }
.feature-card-inner .feature-link { margin-top: auto; }

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 24px;
  position: relative;
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.65),
    inset 0 -6px 10px -6px rgba(0,0,0,0.06);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s var(--ease);
  animation: feature-icon-float 3.4s ease-in-out infinite;
  animation-delay: calc(var(--icon-delay, 0) * 0.35s);
}

/* Glow pulse radiating from behind the tile */
.feature-icon::before {
  content: '';
  position: absolute;
  inset: -14px;
  z-index: -1;
  border-radius: 26px;
  background: radial-gradient(circle at 50% 50%, currentColor 0%, transparent 68%);
  opacity: 0.16;
  pointer-events: none;
  animation: feature-icon-glow 3.4s ease-in-out infinite;
  animation-delay: calc(var(--icon-delay, 0) * 0.35s);
}

/* Sheen sweeping across the glass surface */
.feature-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  background:
    linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.85) 48%, transparent 66%) no-repeat,
    linear-gradient(135deg, rgba(255,255,255,0.35) 0%, transparent 45%);
  background-size: 260% 100%, 100% 100%;
  background-position: 180% 0, 0 0;
  pointer-events: none;
  animation: feature-icon-sheen 4.6s ease-in-out infinite;
  animation-delay: calc(var(--icon-delay, 0) * 0.35s + 0.8s);
}

/* Perpetual halo rings expanding behind the icon — visible at rest */
.feature-icon-halo {
  content: '';
  position: absolute;
  inset: -9px;
  border-radius: 22px;
  border: 2px solid currentColor;
  opacity: 0.45;
  pointer-events: none;
  animation: feature-icon-halo-pulse 2.6s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
  animation-delay: calc(var(--icon-delay, 0) * 0.35s);
}
.feature-icon-halo.feature-icon-halo-2 {
  animation-delay: calc(var(--icon-delay, 0) * 0.35s + 1.3s);
}

@keyframes feature-icon-halo-pulse {
  0%   { transform: scale(0.86); opacity: 0.5; }
  60%  { opacity: 0.18; }
  100% { transform: scale(1.65); opacity: 0; }
}

@keyframes feature-icon-glow {
  0%, 100% { opacity: 0.12; transform: scale(0.94); }
  50%      { opacity: 0.32; transform: scale(1.08); }
}

@keyframes feature-icon-sheen {
  0%, 62%  { background-position: 180% 0, 0 0; }
  88%, 100% { background-position: -80% 0, 0 0; }
}

.feature-card:hover .feature-icon {
  transform: translateY(-7px) scale(1.14) rotate(-6deg);
  animation-play-state: paused;
}
.feature-card:hover .feature-icon-halo {
  animation-duration: 1.5s;
  opacity: 0.7;
}

@keyframes feature-icon-float {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  30%      { transform: translateY(-9px) rotate(-2.5deg) scale(1.03); }
  60%      { transform: translateY(-4px) rotate(1.5deg) scale(1.01); }
}

.feature-icon-gold, .feature-icon-coral {
  background: linear-gradient(160deg, #EAF1FF 0%, var(--coral-dim) 100%);
  color: var(--coral);
  border: 1px solid rgba(37,99,235,0.22);
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.65), inset 0 -6px 10px -6px rgba(37,99,235,0.12), 0 10px 24px -8px rgba(37,99,235,0.35);
}

.feature-icon-navy, .feature-icon-petrol {
  background: linear-gradient(160deg, #EEF1F6 0%, rgba(11,30,61,0.1) 100%);
  color: var(--petrol);
  border: 1px solid rgba(11,30,61,0.14);
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.65), inset 0 -6px 10px -6px rgba(11,30,61,0.1), 0 10px 24px -8px rgba(11,30,61,0.28);
}

.feature-icon-success {
  background: linear-gradient(160deg, #E9FBF3 0%, rgba(31,154,110,0.14) 100%);
  color: var(--success);
  border: 1px solid rgba(31,154,110,0.22);
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.65), inset 0 -6px 10px -6px rgba(31,154,110,0.12), 0 10px 24px -8px rgba(31,154,110,0.35);
}

.feature-icon-info {
  background: linear-gradient(160deg, #EAF6FB 0%, rgba(46,134,171,0.14) 100%);
  color: var(--info);
  border: 1px solid rgba(46,134,171,0.22);
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.65), inset 0 -6px 10px -6px rgba(46,134,171,0.12), 0 10px 24px -8px rgba(46,134,171,0.35);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--petrol);
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* Values section: ambient glow backdrop + slightly larger, richer icon badges */
.values-section {
  position: relative;
  overflow: hidden;
}

.values-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  width: 900px;
  height: 500px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(37,99,235,0.07), transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.values-section .container { position: relative; z-index: 1; }

.values-grid {
  max-width: 960px;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
}

.values-grid .feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 19px;
}

.values-grid .feature-card-inner {
  position: relative;
  padding-top: 36px;
}

.values-grid .feature-card-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, currentColor, transparent 85%);
  opacity: 0.28;
  color: inherit;
}

.values-grid .feature-card:nth-child(1) .feature-card-inner::before { color: var(--coral); }
.values-grid .feature-card:nth-child(2) .feature-card-inner::before { color: var(--petrol); }
.values-grid .feature-card:nth-child(3) .feature-card-inner::before { color: var(--info); }
.values-grid .feature-card:nth-child(4) .feature-card-inner::before { color: var(--success); }

.feature-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 26px;
}

/* Feature link — button-in-button pill instead of a flat text link */
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.01em;
  padding: 9px 9px 9px 16px;
  border-radius: 100px;
  background: var(--coral-dim);
  transition: background 0.4s var(--ease), padding-right 0.4s var(--ease), gap 0.4s var(--ease);
}

.feature-link-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.5s var(--ease);
}

.feature-card:hover .feature-link { background: var(--coral); color: var(--white); gap: 12px; padding-right: 8px; }
.feature-card:hover .feature-link-icon { transform: translateX(2px) rotate(-8deg); background: rgba(255,255,255,0.22); }

/* ── 9b. SELECT CARDS — Double-Bezel radio/option pattern ───── */
.select-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.select-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: block;
  text-decoration: none;
  cursor: pointer;
  isolation: isolate;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}

/* Border & shadow frame */
.select-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: calc(var(--radius-lg) + 1px);
  background: linear-gradient(135deg, rgba(37,99,235,0.25) 0%, rgba(37,99,235,0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  z-index: 1;
}

/* Inner core — the double-bezel content surface */
.select-card-inner {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  padding: 28px 26px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background-clip: padding-box;
  box-shadow: 0 8px 24px rgba(14,26,46,0.08);
  z-index: 2;
  position: relative;
}

/* Hover effect — radial light */
.select-card:hover .select-card-inner {
  border-color: rgba(37,99,235,0.15);
  box-shadow: 0 16px 48px rgba(37,99,235,0.14);
}

.select-card:hover::before { opacity: 1; }

.select-card:hover {
  transform: translateY(-8px);
}

.select-card:active { transform: translateY(-4px) scale(0.98); }

.select-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 3;
  padding-right: 40px;
}

.select-card-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  font-weight: 400;
  position: relative;
  z-index: 3;
}

/* Checkmark badge — large, glowing, with spring bounce */
.select-card-check {
  position: absolute;
  top: 18px; right: 18px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #F5A623 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0) rotate(-45deg);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s var(--ease), box-shadow 0.4s var(--ease);
  z-index: 4;
  box-shadow: 0 0 0 0 rgba(212,175,55,0.4);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  padding-left: 1px;
  padding-top: 1px;
}

.select-card-check svg {
  display: block;
  width: 18px;
  height: 18px;
  stroke-width: 3;
}

/* Selected state — vibrant, elevated, glowing */
.select-card.is-selected {
  transform: translateY(-2px);
}

.select-card.is-selected::before {
  background: linear-gradient(135deg, rgba(37,99,235,0.35) 0%, rgba(37,99,235,0.15) 100%);
  opacity: 1;
}

.select-card.is-selected .select-card-inner {
  background: linear-gradient(135deg, #F7FAFF 0%, #FFFFFF 100%);
  border-color: rgba(37,99,235,0.25);
  box-shadow: 0 24px 64px rgba(37,99,235,0.16);
}

.select-card.is-selected .select-card-check {
  transform: scale(1) rotate(0deg);
  opacity: 1;
  box-shadow: 0 0 24px rgba(212,175,55,0.5), 0 8px 20px rgba(212,175,55,0.25);
}

.select-card.is-selected .select-card-title {
  color: var(--petrol);
}

/* ── 10. STEPS / HOW IT WORKS ───────────────────────────────── */
.section-steps { position: relative; overflow: hidden; }

.steps-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  animation: steps-orb-drift 14s ease-in-out infinite;
}
.steps-bg-orb-1 {
  width: 380px; height: 380px;
  top: -120px; left: -100px;
  background: radial-gradient(circle, var(--coral) 0%, transparent 70%);
}
.steps-bg-orb-2 {
  width: 320px; height: 320px;
  bottom: -100px; right: -80px;
  background: radial-gradient(circle, var(--mango) 0%, transparent 70%);
  animation-delay: -7s;
}
@keyframes steps-orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(30px, -20px) scale(1.08); }
}

/* Ambient floating particles — pure decoration, always drifting */
.steps-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.steps-particles span {
  position: absolute;
  bottom: -20px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--mango) 0%, transparent 75%);
  opacity: 0;
  animation: steps-particle-rise 9s ease-in infinite;
}
.steps-particles span:nth-child(1) { left: 8%;  width: 5px; height: 5px; animation-duration: 8s;  animation-delay: 0s; }
.steps-particles span:nth-child(2) { left: 22%; width: 7px; height: 7px; animation-duration: 11s; animation-delay: 1.5s; }
.steps-particles span:nth-child(3) { left: 41%; width: 4px; height: 4px; animation-duration: 7s;  animation-delay: 3s; }
.steps-particles span:nth-child(4) { left: 63%; width: 6px; height: 6px; animation-duration: 10s; animation-delay: 0.8s; }
.steps-particles span:nth-child(5) { left: 79%; width: 5px; height: 5px; animation-duration: 9s;  animation-delay: 4s; }
.steps-particles span:nth-child(6) { left: 92%; width: 7px; height: 7px; animation-duration: 12s; animation-delay: 2.2s; }
.steps-particles span:nth-child(3n)   { background: radial-gradient(circle, var(--coral) 0%, transparent 75%); }

@keyframes steps-particle-rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.55; }
  50%  { transform: translateY(-160px) translateX(14px); }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-320px) translateX(-10px); opacity: 0; }
}

.section-steps .container { position: relative; z-index: 1; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}

/* Animated connecting progress line */
.steps-progress-line {
  position: absolute;
  top: 76px;
  left: 16.5%;
  right: 16.5%;
  height: 2px;
  background: var(--ivory-border);
  border-radius: 2px;
  overflow: hidden;
  z-index: 0;
}
.steps-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--coral) 0%, var(--mango) 100%);
  border-radius: 2px;
  transition: width 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.steps-progress-line.is-filled .steps-progress-fill { width: 100%; }

/* Traveling glow dot that rides the fill as it completes */
.steps-progress-fill::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--mango);
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(56,189,248,0.22), 0 0 16px 4px rgba(56,189,248,0.55);
  opacity: 0;
  transition: opacity 0.3s ease 1.1s;
}
.steps-progress-line.is-filled .steps-progress-fill::after { opacity: 1; }

@media (max-width: 768px) {
  .steps-progress-line { display: none; }
}

/* Double-bezel shell w/ rotating conic gradient border + 3D tilt */
.step-card {
  --mx: 50%;
  --my: 0%;
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  background: linear-gradient(160deg, var(--ivory-border), rgba(37,99,235,0.18));
  border-radius: calc(var(--radius-lg) + 3px);
  padding: 1.5px;
  isolation: isolate;
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateZ(0);
  transition: transform 0.5s var(--ease), box-shadow 0.6s var(--ease);
  will-change: transform;
}

/* Conic "chasing light" border, dormant until hover */
.step-card::after {
  content: '';
  position: absolute;
  inset: -60%;
  z-index: -1;
  background: conic-gradient(from 0deg, transparent 0%, var(--mango) 8%, var(--coral) 16%, transparent 28%, transparent 100%);
  opacity: 0;
  animation: step-border-spin 3.2s linear infinite;
  animation-play-state: paused;
  transition: opacity 0.5s var(--ease);
}
.step-card:hover::after { opacity: 1; animation-play-state: running; }

@keyframes step-border-spin {
  to { transform: rotate(360deg); }
}

.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(220px circle at var(--mx) var(--my), rgba(37,99,235,0.5), transparent 70%);
  transition: opacity 0.4s var(--ease);
}

.step-card:hover::before { opacity: 1; }

.step-card:hover {
  box-shadow: 0 34px 70px rgba(14,26,46,0.18), 0 6px 20px rgba(37,99,235,0.14);
}

/* Idle "breathing" shadow — alive even without interaction */
.step-card-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 44px 28px 36px;
  background: linear-gradient(180deg, var(--white) 0%, #FBFCFF 100%);
  border-radius: var(--radius-lg);
  height: 100%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 10px 30px rgba(14,26,46,0.06);
  overflow: hidden;
  animation: step-card-breathe 5s ease-in-out infinite;
  animation-delay: calc(var(--step-i, 0) * 0.4s);
  transition: background 0.4s var(--ease);
}

@keyframes step-card-breathe {
  0%, 100% { box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 10px 30px rgba(14,26,46,0.06); }
  50%      { box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 18px 42px rgba(37,99,235,0.11); }
}

/* Diagonal shimmer sweep — plays automatically on a loop, unaffected by hover to avoid flash */
.step-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 2;
  animation: step-shimmer-loop 5s ease-in-out infinite;
  animation-delay: calc(var(--step-i, 0) * 0.6s + 1s);
}

@keyframes step-shimmer-loop {
  0%, 88%, 100% { left: -60%; }
  40%           { left: 130%; }
}

.step-number {
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 800;
  line-height: 1;
  position: absolute;
  top: 10px;
  right: 22px;
  user-select: none;
  background: linear-gradient(160deg, var(--ivory-dark) 0%, var(--ivory-border) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background 0.4s var(--ease), transform 0.5s var(--ease);
}

.step-card:hover .step-number {
  background: linear-gradient(160deg, var(--coral) 0%, var(--mango) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: scale(1.06) translateY(-2px);
}

/* Icon: perpetual float animation + spring pop on hover */
.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--mango) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--white);
  box-shadow: 0 10px 28px rgba(37,99,235,0.38), inset 0 1px 0 rgba(255,255,255,0.35);
  font-size: 22px;
  position: relative;
  animation: step-icon-float 3.6s ease-in-out infinite;
  animation-delay: calc(var(--step-i, 0) * 0.2s);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s var(--ease);
}

.step-card:hover .step-icon {
  transform: scale(1.14) rotate(-6deg);
  box-shadow: 0 16px 38px rgba(37,99,235,0.5), inset 0 1px 0 rgba(255,255,255,0.4);
  animation-play-state: paused;
}

@keyframes step-icon-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Faint ring pulse around the icon for perpetual "alive" feel */
.step-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(37,99,235,0.25);
  animation: step-icon-ring 2.8s ease-out infinite;
  animation-delay: calc(var(--step-i, 0) * 0.2s);
}

/* Second, slower counter-pulse ring for extra depth */
.step-icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(56,189,248,0.3);
  animation: step-icon-ring 2.8s ease-out infinite;
  animation-delay: calc(var(--step-i, 0) * 0.2s + 1.4s);
  z-index: -1;
}

@keyframes step-icon-ring {
  0%   { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}

.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--petrol);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.step-card:hover .step-title { color: var(--coral); transform: translateY(-1px); }

.step-desc {
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 400;
  line-height: 1.65;
}

/* Eyebrow + title entrance flourish */
.section-steps .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section-steps .section-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--mango));
  box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
  animation: eyebrow-pulse 2.4s ease-in-out infinite;
}
@keyframes eyebrow-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.3); opacity: 0.7; }
}

.section-steps .gold-line {
  position: relative;
  overflow: hidden;
}
.section-steps .gold-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
  animation: gold-line-shine 2.6s ease-in-out infinite;
}
@keyframes gold-line-shine {
  0%   { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

@media (hover: none) {
  .step-card { transform: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .steps-bg-orb,
  .steps-particles span,
  .step-card-inner,
  .step-card-inner::before,
  .step-icon,
  .step-icon::after,
  .step-icon::before,
  .step-card::after,
  .section-steps .gold-line::after,
  .section-steps .section-eyebrow::before,
  .feature-card::after,
  .feature-card-inner,
  .feature-card-inner::after,
  .feature-icon,
  .feature-icon::before,
  .feature-icon::after,
  .feature-icon-halo { animation: none; }
  .step-card { transition: none; }
  .step-card-inner::before { display: none; }
  .feature-card-inner::after { display: none; }
}

/* ── 11. DISCLAIMER BANNER ──────────────────────────────────── */
.banner-disclaimer {
  background: linear-gradient(135deg, #EAF1FF 0%, #DCE9FF 100%);
  border: 1px solid rgba(37,99,235,0.28);
  border-left: 4px solid var(--coral);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.banner-disclaimer-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--coral-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  font-size: 20px;
}

.banner-disclaimer-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--petrol);
  margin-bottom: 6px;
}

.banner-disclaimer-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 400;
}

/* ── 12. FORMS ──────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.form-label .required { color: var(--danger); margin-left: 3px; }

.form-control {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--ivory);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  appearance: none;
}

.form-control:hover { background: var(--ivory-dark); }

.form-control:focus {
  background: var(--white);
  border-color: var(--coral);
  box-shadow: 0 0 0 4px var(--coral-dim);
}

.form-control::placeholder { color: var(--text-ghost); }

textarea.form-control { resize: vertical; min-height: 120px; }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2371857E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-hint { font-size: 12px; color: var(--text-ghost); margin-top: 5px; }
.form-error { font-size: 12px; color: var(--danger); margin-top: 5px; font-weight: 600; }

/* Auth forms */
.auth-page {
  min-height: calc(100dvh - 84px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: linear-gradient(160deg, var(--ivory) 0%, var(--ivory-dark) 100%);
}

.auth-card {
  width: 100%;
  max-width: 460px;
  background: var(--white);
  border: 1px solid var(--ivory-border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.auth-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--mango), var(--coral));
}

.auth-header { text-align: center; margin-bottom: 36px; }

.auth-icon {
  width: 64px; height: 64px;
  background: var(--coral-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--coral);
  font-size: 28px;
  border: 2px solid rgba(37,99,235,0.25);
}

.auth-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--petrol);
  margin-bottom: 6px;
}

.auth-subtitle {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 400;
}

.auth-divider {
  text-align: center;
  position: relative;
  margin: 24px 0;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: var(--ivory-border);
}

.auth-divider span {
  position: relative;
  background: var(--white);
  padding: 0 12px;
  font-size: 12px;
  color: var(--text-ghost);
}

/* ── 13. ALERTS / FLASH MESSAGES ────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.alert-success { background: #E9F8F1; border: 1px solid #A9E3C7; color: #0F6B45; }
.alert-danger  { background: #FDEDEC; border: 1px solid #F5B7B7; color: #922B26; }
.alert-warning { background: #FEF6E7; border: 1px solid #F6D998; color: #8A5A0B; }
.alert-info    { background: #EAF4F9; border: 1px solid #B6DCEB; color: #1D5C79; }

/* ── 14. ANALYSIS / TEST PAGE ───────────────────────────────── */
.test-hero {
  background: linear-gradient(135deg, var(--petrol) 0%, var(--petrol-light) 100%);
  padding: 68px 0 52px;
  color: var(--white);
}

.test-progress-bar {
  width: 100%;
  height: 7px;
  background: rgba(255,255,255,0.15);
  border-radius: 100px;
  overflow: hidden;
  margin: 20px 0;
}

.test-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--mango));
  border-radius: 100px;
  transition: width 0.5s var(--ease);
}

.test-container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px;
}

.test-container--wide { max-width: 880px; }

@media (max-width: 640px) {
  .test-container { padding: 32px 16px; }
}

.question-card {
  background: var(--white);
  border: 1px solid var(--ivory-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  animation: fadeSlideIn 0.5s var(--ease);
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.question-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.question-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--coral-dim);
  color: var(--coral);
  border: 1px solid rgba(37,99,235,0.25);
}

.question-text {
  font-size: 17px;
  font-weight: 400;
  color: var(--petrol);
  line-height: 1.65;
  margin-bottom: 28px;
}

.options-list { display: flex; flex-direction: column; gap: 12px; }

.option-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border: 1.5px solid var(--ivory-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
  font-size: 14.5px;
  color: var(--text-dark);
  line-height: 1.55;
}

.option-label:hover {
  border-color: var(--coral);
  background: #EDF3FF;
}

.option-label input[type="radio"] {
  width: 18px; height: 18px;
  accent-color: var(--coral);
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
}

.option-label.selected {
  border-color: var(--coral);
  background: #EDF3FF;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.12);
}

/* Results */
.result-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.result-header {
  padding: 48px 40px;
  text-align: center;
  color: var(--white);
}

.result-header.risk-low    { background: linear-gradient(135deg, #0F6B45, #1F9A6E); }
.result-header.risk-medium { background: linear-gradient(135deg, #8A5A0B, #E8930F); }
.result-header.risk-high   { background: linear-gradient(135deg, #7A2420, #D6444B); }

.result-score-circle {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 3px solid rgba(255,255,255,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.result-score-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.result-score-max {
  font-size: 13px;
  opacity: 0.75;
}

.result-body {
  background: var(--white);
  padding: 40px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.category-item {
  background: var(--ivory);
  border-radius: var(--radius-md);
  padding: 20px;
}

.category-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.category-bar-wrap {
  height: 7px;
  background: var(--ivory-dark);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}

.category-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--coral), var(--mango));
}

.category-score {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--petrol);
}

/* ── 15. VIDEO GALLERY ──────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.video-card {
  background: var(--white);
  border: 1px solid var(--ivory-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
}

.video-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: rgba(37,99,235,0.4);
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--petrol);
  overflow: hidden;
}

.video-thumbnail img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; position: relative; z-index: 1; }

/* "Görsel yok" yedegi — yalnizca kucuk resim yuklenemezse */
.video-thumb-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  pointer-events: none;
}

.video-thumb-ph svg { width: 30px; height: 30px; }

.video-thumb-ph-text {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.video-thumbnail.is-empty {
  background: linear-gradient(160deg, var(--petrol), var(--petrol-light));
}

.video-thumbnail.is-empty .video-thumb-ph { opacity: 1; }
.video-thumbnail.is-empty .video-play-btn { opacity: 0; pointer-events: none; }

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,30,61,0.35);
  transition: background var(--transition);
}

.video-card:hover .video-play-btn { background: rgba(11,30,61,0.55); }

.play-circle {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.96);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  font-size: 20px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.28);
  transition: transform var(--transition);
}

.video-card:hover .play-circle { transform: scale(1.12); }

.video-category-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--coral);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.video-info { padding: 24px; }

.video-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--petrol);
  margin-bottom: 10px;
  line-height: 1.3;
}

.video-desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,20,18,0.86);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}

.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--petrol);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 840px;
  overflow: hidden;
  box-shadow: 0 40px 96px rgba(0,0,0,0.5);
  transform: scale(0.94);
  transition: transform 0.3s var(--ease);
}

.modal-overlay.active .modal-box { transform: scale(1); }

.modal-video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}

.modal-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

.modal-footer {
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}

/* ── 16. CONTACT PAGE ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background:
    radial-gradient(circle at 85% 10%, rgba(37,99,235,0.28) 0%, transparent 55%),
    linear-gradient(135deg, var(--petrol) 0%, var(--petrol-light) 100%);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  color: var(--white);
  position: sticky;
  top: 104px;
  box-shadow: 0 30px 60px -20px rgba(11,30,61,0.5);
  overflow: hidden;
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}

.contact-info-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  margin-bottom: 36px;
  font-weight: 400;
  line-height: 1.65;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.contact-detail-icon {
  width: 42px; height: 42px;
  background: rgba(37,99,235,0.18);
  border: 1px solid rgba(37,99,235,0.32);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral-light);
  flex-shrink: 0;
  font-size: 16px;
  box-shadow: 0 6px 16px -4px rgba(37,99,235,0.35);
  transition: transform 0.35s var(--ease);
}

.contact-detail:hover .contact-detail-icon { transform: scale(1.06); }

.contact-detail-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mango-light);
  margin-bottom: 3px;
}

.contact-detail-value {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}

/* ── 17. DASHBOARD ──────────────────────────────────────────── */
.dashboard-header {
  background: linear-gradient(135deg, var(--petrol) 0%, var(--petrol-light) 100%);
  padding: 60px 0 44px;
  color: var(--white);
}

.dashboard-greeting {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.dashboard-greeting span { color: var(--coral); font-weight: 700; }

.dashboard-date {
  font-size: 14px;
  color: rgba(255,255,255,0.52);
  font-weight: 400;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: -28px 0 0;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--ivory-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--mango));
}

.stat-value {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--petrol);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.reports-table-wrap { overflow-x: auto; border-radius: var(--radius-md); }

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.data-table th {
  background: var(--ivory-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  padding: 12px 16px;
  text-align: left;
  white-space: nowrap;
}

.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--ivory-border);
  color: var(--text-dark);
  vertical-align: middle;
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover td { background: #F5F8FD; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.badge-low    { background: #DCF7E9; color: #0F6B45; }
.badge-medium { background: #FDECC6; color: #7A4C0A; }
.badge-high   { background: #FBDCDA; color: #7A2420; }
.badge-new    { background: #D9EEFA; color: #1D5C79; }
.badge-read   { background: #F1EEE4; color: #435650; }
.badge-contacted { background: #DCF7E9; color: #0F6B45; }
.badge-gold, .badge-coral { background: var(--coral-dim); color: var(--coral); border: 1px solid rgba(37,99,235,0.3); }
.badge-navy, .badge-petrol { background: rgba(11,30,61,0.08); color: var(--petrol); }

/* ── 18. ADMIN PANEL ────────────────────────────────────────── */
.admin-layout {
  display: flex;
  min-height: calc(100dvh - 84px);
}

.admin-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: var(--petrol);
  padding: 32px 0;
  position: sticky;
  top: 84px;
  height: calc(100dvh - 84px);
  overflow-y: auto;
}

.admin-sidebar-header {
  padding: 0 24px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}

.admin-sidebar-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 4px;
}

.admin-sidebar-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.admin-nav-group { margin-bottom: 8px; }

.admin-nav-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  padding: 8px 24px 4px;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  transition: all var(--transition);
  border-left: 3px solid transparent;
  text-decoration: none;
}

.admin-nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
  border-left-color: rgba(37,99,235,0.45);
}

.admin-nav-link.active {
  color: var(--white);
  background: rgba(37,99,235,0.12);
  border-left-color: var(--coral);
  font-weight: 600;
}

.admin-nav-link svg { flex-shrink: 0; opacity: 0.75; }
.admin-nav-link.active svg { opacity: 1; color: var(--coral-light); }

.admin-badge-count {
  margin-left: auto;
  background: var(--danger);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  min-width: 20px;
  text-align: center;
}

.admin-main {
  flex: 1;
  padding: 40px 48px;
  background: var(--ivory);
  overflow: auto;
}

.admin-page-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ivory-border);
}

.admin-page-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--petrol);
  margin-bottom: 4px;
}

.admin-page-subtitle {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 400;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.admin-stat-card {
  background: var(--white);
  border: 1px solid var(--ivory-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-stat-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.admin-stat-icon-gold, .admin-stat-icon-coral  { background: var(--coral-dim); color: var(--coral); }
.admin-stat-icon-navy, .admin-stat-icon-petrol  { background: rgba(11,30,61,0.07); color: var(--petrol); }
.admin-stat-icon-green { background: rgba(31,154,110,0.1); color: var(--success); }
.admin-stat-icon-red   { background: rgba(214,68,75,0.1); color: var(--danger); }

.admin-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--petrol);
  line-height: 1;
}

.admin-stat-label {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 3px;
  font-weight: 400;
}

.admin-table-card {
  background: var(--white);
  border: 1px solid var(--ivory-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}

.admin-table-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--ivory-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.admin-table-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--petrol);
}

/* ── 19. FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--petrol);
  color: var(--white);
  margin-top: auto;
  border-top: 1px solid rgba(37,99,235,0.22);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 68px 0 48px;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.52);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--mango-light); }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.footer-contact-list svg { flex-shrink: 0; margin-top: 1px; color: var(--coral-light); }
.footer-contact-list a { color: rgba(255,255,255,0.55); }
.footer-contact-list a:hover { color: var(--mango-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.32);
}

.footer-love {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── 20. PAGE HERO ──────────────────────────────────────────── */
.page-hero {
  background:
    radial-gradient(circle at 78% 20%, rgba(37,99,235,0.22) 0%, transparent 55%),
    linear-gradient(135deg, var(--petrol) 0%, var(--petrol-light) 100%);
  padding: 76px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 0%, #000 0%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 0%, #000 0%, transparent 90%);
  pointer-events: none;
}

.page-hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 14px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.page-hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.62);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── 20b. FAQ PAGE ──────────────────────────────────────────── */
.faq-hero { padding-bottom: 48px; }

.faq-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.faq-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mango-light);
  box-shadow: 0 0 0 0 rgba(125,211,252,0.6);
  animation: faq-eyebrow-pulse 2.2s ease-out infinite;
}

@keyframes faq-eyebrow-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(125,211,252,0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(125,211,252,0); }
  100% { box-shadow: 0 0 0 0 rgba(125,211,252,0); }
}

.faq-search-wrap {
  position: relative;
  max-width: 480px;
  margin: 32px auto 0;
  display: flex;
  align-items: center;
}

.faq-search-wrap svg {
  position: absolute;
  left: 20px;
  color: rgba(255,255,255,0.45);
  pointer-events: none;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.faq-search-wrap:focus-within .faq-search-icon {
  color: var(--mango-light);
  transform: scale(1.08);
}

.faq-search-input {
  width: 100%;
  padding: 17px 22px 17px 52px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 16px 40px -12px rgba(0,0,0,0.35);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.faq-search-input::placeholder { color: rgba(255,255,255,0.45); }

.faq-search-input:focus {
  outline: none;
  border-color: rgba(120,170,255,0.55);
  background: rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 16px 40px -12px rgba(0,0,0,0.35), 0 0 0 4px rgba(37,99,235,0.22);
}

.faq-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

.faq-hero-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }

.faq-hero-stat-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, var(--coral-pale) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
  line-height: 1;
}

.faq-hero-stat-label {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

.faq-hero-stat-divider { width: 1px; height: 32px; background: linear-gradient(180deg, transparent, rgba(255,255,255,0.2), transparent); }

.faq-section { padding-top: 64px; position: relative; overflow: hidden; }

.faq-section::before {
  content: '';
  position: absolute;
  top: -8%;
  right: -6%;
  width: 640px;
  height: 640px;
  background: radial-gradient(closest-side, rgba(37,99,235,0.06), transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.faq-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 264px 1fr; gap: 48px; align-items: start; }

.faq-toc {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--white) 0%, #FBFCFF 100%);
  border: 1px solid var(--ivory-border);
  box-shadow: 0 20px 48px -24px rgba(14,26,46,0.16), inset 0 1px 0 rgba(255,255,255,0.7);
}

.faq-toc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-ghost);
  margin: 2px 10px 12px;
}

.faq-toc-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.3s var(--ease);
}

.faq-toc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--ivory-dark);
  color: var(--text-ghost);
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
  flex-shrink: 0;
}

.faq-toc-link:hover { background: var(--ivory-dark); color: var(--petrol); transform: translateX(2px); }
.faq-toc-link:hover .faq-toc-icon { color: var(--coral); }

.faq-toc-link.active {
  background: linear-gradient(135deg, var(--coral) 0%, var(--mango) 100%);
  color: var(--white);
  box-shadow: 0 10px 28px -10px rgba(37,99,235,0.55);
}
.faq-toc-link.active .faq-toc-icon { background: rgba(255,255,255,0.22); color: var(--white); }

.faq-toc-count {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-ghost);
  background: var(--ivory-dark);
  border-radius: 100px;
  padding: 3px 9px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.faq-toc-link.active .faq-toc-count { background: rgba(255,255,255,0.25); color: var(--white); }

.faq-groups { display: flex; flex-direction: column; gap: 64px; min-width: 0; }

.faq-group-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.faq-group-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, var(--coral) 0%, var(--mango) 100%);
  color: var(--white);
  box-shadow: 0 12px 28px -10px rgba(37,99,235,0.45), inset 0 1.5px 0 rgba(255,255,255,0.35);
  flex-shrink: 0;
}

.faq-group-title {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  color: var(--petrol);
  letter-spacing: -0.01em;
}

.faq-list { display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  --mx: 50%;
  --my: 50%;
  position: relative;
  border-radius: 20px;
  background: linear-gradient(160deg, var(--ivory-border), rgba(37,99,235,0.16));
  padding: 1.5px;
  overflow: hidden;
  isolation: isolate;
  transition: box-shadow 0.45s var(--ease), transform 0.45s var(--ease);
}

.faq-item:hover { transform: translateY(-3px); }
.faq-item:active { transform: translateY(-1px) scale(0.995); }

.faq-item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(240px circle at var(--mx) var(--my), rgba(37,99,235,0.45), transparent 70%);
  transition: opacity 0.4s var(--ease);
}

.faq-item:hover::before { opacity: 1; }

.faq-item:has(.faq-question[aria-expanded="true"]) {
  box-shadow: 0 26px 56px -18px rgba(37,99,235,0.32);
}

.faq-item:has(.faq-question[aria-expanded="true"])::before { opacity: 1; }

.faq-item-body {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 18.5px;
  overflow: hidden;
}

.faq-question {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  padding: 23px 26px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}

.faq-question-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--coral-pale);
  letter-spacing: 0.03em;
  min-width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--coral-dim);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.faq-question[aria-expanded="true"] .faq-question-num {
  color: var(--white);
  background: linear-gradient(135deg, var(--coral) 0%, var(--mango) 100%);
}

.faq-question-text { flex: 1; }

.faq-toggle-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  background: var(--ivory-dark);
  transition: transform 0.45s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.faq-question[aria-expanded="true"] .faq-toggle-icon {
  transform: rotate(180deg);
  background: linear-gradient(135deg, var(--coral) 0%, var(--mango) 100%);
  color: var(--white);
  box-shadow: 0 8px 20px -4px rgba(37,99,235,0.5);
}

.faq-answer {
  position: relative;
  z-index: 1;
  max-height: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: 0 0 18.5px 18.5px;
  transition: max-height 0.5s var(--ease);
}

.faq-question[aria-expanded="true"] + .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 2px 26px 26px 72px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.4s var(--ease) 0s, transform 0.4s var(--ease) 0s;
  position: relative;
}

.faq-answer-inner::before {
  content: '';
  position: absolute;
  left: 34px;
  top: 2px;
  bottom: 26px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--coral) 0%, transparent 100%);
  opacity: 0.35;
}

.faq-question[aria-expanded="true"] + .faq-answer .faq-answer-inner {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}

.faq-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 64px 20px;
  color: var(--text-ghost);
  text-align: center;
}

.faq-empty p { font-size: 14.5px; }

.faq-cta { margin-top: 80px; position: relative; z-index: 1; }

.faq-cta-inner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 48px 52px;
  background:
    radial-gradient(circle at 85% 15%, rgba(56,189,248,0.28) 0%, transparent 55%),
    radial-gradient(circle at 10% 100%, rgba(37,99,235,0.22) 0%, transparent 50%),
    linear-gradient(135deg, var(--petrol) 0%, var(--petrol-light) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 80px -30px rgba(11,30,61,0.55);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.faq-cta-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.faq-cta-desc { color: rgba(255,255,255,0.62); font-size: 14.5px; }

@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-toc {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 4px;
  }
  .faq-toc-label { display: none; }
  .faq-toc-link { flex-shrink: 0; white-space: nowrap; }
  .faq-cta-inner { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ── 22. PAGINATION ─────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 32px 0;
}

.page-btn {
  width: 38px; height: 38px;
  border: 1.5px solid var(--ivory-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-mid);
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
  background: var(--white);
  text-decoration: none;
}

.page-btn:hover { border-color: var(--coral); color: var(--coral); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(37,99,235,0.18); }
.page-btn:active { transform: scale(0.94); }
.page-btn.active { background: var(--petrol); border-color: var(--petrol); color: var(--white); }

/* ── 23. UTILITY ────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.gap-4  { gap: 1rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.w-full { width: 100%; }

.gold-line, .coral-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--mango));
  border-radius: 2px;
  margin: 14px auto 0;
}

.empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--text-light);
}

.empty-state-icon {
  font-size: 40px;
  margin-bottom: 16px;
  opacity: 0.4;
}

.empty-state-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.divider {
  height: 1px;
  background: var(--ivory-border);
  margin: 32px 0;
}

.bg-cream, .bg-ivory { background: var(--ivory); }
.bg-cream-d, .bg-ivory-d  { background: var(--ivory-dark); }
.bg-white    { background: var(--white); }
.bg-navy, .bg-petrol { background: var(--petrol); }

.rounded-xl { border-radius: var(--radius-xl); }
.rounded-lg { border-radius: var(--radius-lg); }

/* ── 24. FILTER CHIPS ───────────────────────────────────────── */
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.filter-chip {
  padding: 8px 18px;
  border: 1.5px solid var(--ivory-border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--white);
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
  text-decoration: none;
}

.filter-chip:hover { border-color: var(--coral); color: var(--coral); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(37,99,235,0.16); }
.filter-chip:active { transform: scale(0.96); }
.filter-chip.active { background: var(--petrol); border-color: var(--petrol); color: var(--white); }

/* ── 25. RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar { top: 0; padding: 0; }
  .nav-inner { border-radius: 0; height: 68px; }

  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--petrol);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 8px 0 20px;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  }
  .nav-links.open .nav-link { padding: 12px 24px; border-radius: 0; }
  .hamburger { display: flex; }
  .nav-right .btn-coral, .nav-right .btn-ghost:not(.hamburger) { display: none; }

  .main-content { padding-top: 68px; }

  .hero:not(.hero-centered) { padding: 56px 0 48px; }
  .hero-content { text-align: left; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-stat { border-right: none; padding: 0; margin-right: 0; }

  .features-grid { grid-template-columns: 1fr; }
  .steps-grid    { grid-template-columns: 1fr; }
  .video-grid    { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; height: auto; position: static; padding: 16px 0; }
  .admin-nav-link { padding: 10px 16px; }
  .admin-main { padding: 24px 16px; }
  .admin-stats-grid { grid-template-columns: 1fr 1fr; }

  .section { padding: 56px 0; }
  .card-luxury > * { padding: 24px; }
  .auth-card { padding: 36px 24px; }

  .banner-disclaimer { flex-direction: column; }
  .contact-info-card { position: static; }
}

@media (max-width: 480px) {
  .admin-stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .question-card { padding: 24px 20px; }
  .result-body { padding: 24px 20px; }
}

/* ── 26. ANIMATIONS ─────────────────────────────────────────── */
@keyframes pulse-coral {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,99,235,0.35); }
  50%       { box-shadow: 0 0 0 10px rgba(37,99,235,0); }
}

.animate-pulse-gold, .animate-pulse-coral { animation: pulse-coral 2.2s infinite; }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-in { animation: fadeIn 0.5s var(--ease); }

/* ── 27. PRINT ──────────────────────────────────────────────── */
@media print {
  .navbar, .site-footer, .btn, .admin-sidebar { display: none !important; }
  .main-content { padding-top: 0; }
  body { background: white; }
}

/* ── 28. WHATSAPP FLOATING BUTTON — two-part icon + label ────── */
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  background: none;
  border: none;
  padding: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.whatsapp-fab.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.whatsapp-fab-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 28px rgba(37,211,102,0.4);
  z-index: 2;
  transition: transform 0.4s var(--ease);
}

.whatsapp-fab-label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--white);
  color: var(--text-dark);
  font-size: 13.5px;
  font-weight: 600;
  height: 44px;
  display: flex;
  align-items: center;
  padding: 0;
  margin-left: -22px;
  padding-left: 26px;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(14,26,46,0.14);
  transition: max-width 0.45s var(--ease), padding 0.45s var(--ease);
}

.whatsapp-fab:hover .whatsapp-fab-label {
  max-width: 200px;
  padding-right: 20px;
}

.whatsapp-fab:hover .whatsapp-fab-icon { transform: scale(1.06); }
.whatsapp-fab:active .whatsapp-fab-icon { transform: scale(0.95); }

@media (max-width: 768px) {
  .whatsapp-fab { right: 16px; bottom: 16px; }
  .whatsapp-fab-label { display: none; }
}

/* ── 28b. WHATSAPP PRE-CHAT POPUP ─────────────────────────────── */
.whatsapp-popup {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 901;
  width: 340px;
  max-width: calc(100vw - 32px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(14,26,46,0.22);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}

.whatsapp-popup.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.whatsapp-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--text-mid);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.whatsapp-popup-close:hover { background: var(--ivory-dark); color: var(--text-dark); }

.whatsapp-popup-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.whatsapp-popup-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-popup-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
}

.whatsapp-popup-subtitle {
  font-size: 13px;
  color: var(--text-mid);
  margin-top: 2px;
}

.whatsapp-popup-text {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 20px;
}

.whatsapp-popup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--petrol);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 15px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.whatsapp-popup-btn:hover { background: var(--petrol-light); color: var(--white); transform: translateY(-2px); }

.whatsapp-popup-footer {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-mid);
  margin-top: 16px;
}
.whatsapp-popup-footer strong { color: var(--text-dark); }

@media (max-width: 768px) {
  .whatsapp-popup { right: 16px; bottom: 84px; }
}

/* ================================================================
   BLOG
   ================================================================ */
.blog-hero { padding-bottom: 40px; }

.blog-search-wrap {
  position: relative;
  max-width: 480px;
  margin: 32px auto 0;
}
.blog-search-icon {
  position: absolute;
  left: 20px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-ghost);
  pointer-events: none;
  transition: color 0.3s var(--ease);
}
.blog-search-input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-dark);
  outline: none;
  box-shadow: 0 14px 40px -10px rgba(11,30,61,0.35);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.blog-search-input::placeholder { color: var(--text-ghost); }
.blog-search-input:focus { border-color: var(--coral); box-shadow: 0 14px 40px -10px rgba(11,30,61,0.35), 0 0 0 4px var(--coral-dim); }
.blog-search-input:focus + .blog-search-icon,
.blog-search-wrap:has(.blog-search-input:focus) .blog-search-icon { color: var(--coral); }

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.blog-main { min-width: 0; }

/* Featured card */
.blog-featured-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  margin-bottom: 40px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.blog-featured-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.blog-featured-media { position: relative; min-height: 280px; overflow: hidden; }
.blog-featured-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured-media-fallback,
.blog-card-media-fallback {
  width: 100%; height: 100%; min-height: 220px;
  background: linear-gradient(135deg, var(--petrol) 0%, var(--coral) 100%);
}
.blog-featured-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,0.94);
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.blog-featured-body { padding: 36px 36px 32px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 14px 0 12px;
}
.blog-featured-excerpt { font-size: 14.5px; color: var(--text-mid); line-height: 1.7; font-weight: 300; margin-bottom: 18px; }

.blog-cat-chip {
  display: inline-flex;
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--coral);
  background: var(--coral-dim);
  padding: 5px 13px;
  border-radius: 100px;
}
.blog-cat-chip.sm { font-size: 10.5px; padding: 4px 11px; margin-bottom: 10px; }

.blog-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-light);
  flex-wrap: wrap;
}
.blog-meta-row.sm { font-size: 12px; margin-top: auto; padding-top: 12px; }
.blog-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-ghost); }
.blog-meta-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--petrol), var(--coral));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.blog-meta-avatar.lg { width: 44px; height: 44px; font-size: 15px; }

/* Grid of cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--ivory-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }

.blog-card-media { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover .blog-card-media img { transform: scale(1.06); }

.blog-card-body { padding: 22px 22px 20px; display: flex; flex-direction: column; flex: 1; }
.blog-card-title {
  font-family: var(--font-display);
  font-size: 17.5px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 8px;
}
.blog-card-excerpt { font-size: 13.5px; color: var(--text-mid); line-height: 1.6; font-weight: 300; }

/* Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 20px; }
.blog-sidebar-card {
  background: var(--white);
  border: 1px solid var(--ivory-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.blog-sidebar-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; }

/* Kategori başlığı + yönetici kısayolu (yalnızca adminlere görünür) */
.blog-sidebar-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 16px; }
.blog-cat-manage {
  display: inline-flex; align-items: center; gap: 5px; flex-shrink: 0;
  padding: 5px 10px; border: 1px solid var(--border, #e2e8f0); border-radius: 999px;
  font-size: 12px; font-weight: 600; color: var(--text-light); text-decoration: none;
  transition: all .15s ease;
}
.blog-cat-manage:hover { color: var(--coral); border-color: var(--coral); background: rgba(255,107,107,.06); }
.blog-cat-manage svg { opacity: .7; }

.blog-cat-list { display: flex; flex-direction: column; gap: 2px; }
.blog-cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.blog-cat-link:hover { background: var(--ivory-dark); color: var(--text-dark); }
.blog-cat-link.active { background: var(--coral-dim); color: var(--coral); font-weight: 600; }
.blog-cat-count { font-size: 11.5px; color: var(--text-ghost); }
.blog-cat-link.active .blog-cat-count { color: var(--coral); }

.blog-sidebar-cta { text-align: center; background: linear-gradient(135deg, #fff9ec, #fff); border-color: var(--gold); }
.blog-sidebar-cta svg { color: var(--gold); margin-bottom: 10px; }
.blog-sidebar-cta h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.blog-sidebar-cta p { font-size: 13px; color: var(--text-mid); line-height: 1.6; margin-bottom: 16px; }

/* Blog detail */
.blog-detail-hero { padding-bottom: 24px; }
/* Kapak görseli varsa başlık ile görsel arasında nefes payı bırakılır. */
.blog-detail-hero.has-cover { padding-bottom: 52px; }
.blog-detail-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-ghost); margin-bottom: 18px; }
.blog-detail-breadcrumb a { color: var(--text-light); text-decoration: none; }
.blog-detail-breadcrumb a:hover { color: var(--coral); }

.blog-detail-cover-wrap { max-width: 900px; margin: 44px auto 8px; }
.blog-detail-cover { width: 100%; max-height: 460px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); }
@media (max-width: 768px) {
  .blog-detail-hero.has-cover { padding-bottom: 32px; }
  .blog-detail-cover-wrap { margin: 26px auto 4px; }
  .blog-detail-cover { max-height: 300px; }
}

.blog-detail-content {
  font-size: 16.5px;
  line-height: 1.9;
  color: var(--text-mid);
  font-weight: 300;
}
.blog-detail-content h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 40px 0 16px;
  letter-spacing: -0.01em;
}
.blog-detail-content h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 28px 0 12px;
}
.blog-detail-content p { margin-bottom: 20px; }
.blog-detail-content ul, .blog-detail-content ol { margin: 0 0 20px; padding-left: 22px; }
.blog-detail-content li { margin-bottom: 8px; }
.blog-detail-content strong { color: var(--text-dark); font-weight: 600; }
.blog-detail-content blockquote {
  border-left: 3px solid var(--coral);
  padding: 4px 0 4px 20px;
  margin: 28px 0;
  font-style: italic;
  color: var(--text-dark);
}

.blog-detail-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--ivory-border);
}
.blog-author-card { display: flex; align-items: center; gap: 12px; }
.blog-author-name { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.blog-author-role { font-size: 12.5px; color: var(--text-light); }

@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   KONU / ALT KONU NAVİGASYONU (analiz sayfası)
   Çift kenarlı (double-bezel) mimari + yay fiziği geçişleri
   ═══════════════════════════════════════════════════════════ */

.topic-browse { --bezel-r: 26px; }

/* ── Başlık bloğu ── */
.topic-browse-head {
  max-width: 660px;
  margin: 0 auto 44px;
  text-align: center;
}

.topic-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px 6px 11px;
  border-radius: 999px;
  background: var(--coral-dim);
  color: var(--coral);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}

.topic-eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
}

.topic-browse-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 40px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.028em;
  color: var(--petrol);
  margin-bottom: 12px;
}

.topic-browse-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

/* ── Ana konu: dış kabuk ── */
.topic-block {
  position: relative;
  padding: 6px;
  margin-bottom: 18px;
  border-radius: var(--bezel-r);
  background: linear-gradient(170deg, rgba(255,255,255,0.9), rgba(237,241,248,0.55));
  box-shadow:
    0 1px 2px rgba(14, 26, 46, 0.04),
    0 12px 34px -18px rgba(14, 26, 46, 0.28);
  transition: box-shadow 0.7s cubic-bezier(0.32, 0.72, 0, 1),
              transform 0.7s cubic-bezier(0.32, 0.72, 0, 1);
}

.topic-block::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(255,255,255,0.95), rgba(220,227,240,0.5) 45%, rgba(37,99,235,0.14));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.topic-block:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 2px rgba(14, 26, 46, 0.05),
    0 26px 56px -24px rgba(14, 26, 46, 0.34);
}

.topic-block[open] {
  box-shadow:
    0 1px 2px rgba(14, 26, 46, 0.05),
    0 30px 68px -26px rgba(29, 58, 114, 0.4);
}

/* ── İç çekirdek: details icinde ayri katman ── */
.topic-block::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: calc(var(--bezel-r) - 6px);
  background: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  pointer-events: none;
  z-index: 0;
}

.topic-summary,
.subtopic-list { position: relative; z-index: 1; }

.topic-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 26px;
  margin: 6px 6px 0;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

.topic-summary::-webkit-details-marker { display: none; }
.topic-summary::marker { content: ''; }

/* İkon kapsülü */
.topic-icon {
  position: relative;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 120% at 30% 10%, rgba(255,255,255,.95), rgba(255,255,255,0) 55%),
    linear-gradient(155deg, #E8F0FF 0%, #DCE8FE 55%, #EAF4FF 100%);
  box-shadow:
    inset 0 0 0 1px rgba(37, 99, 235, 0.16),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.95),
    inset 0 -2px 6px rgba(37, 99, 235, 0.09),
    0 6px 16px -8px rgba(29, 58, 114, 0.55);
  transition: transform 0.7s cubic-bezier(0.32, 0.72, 0, 1),
              box-shadow 0.55s cubic-bezier(0.32, 0.72, 0, 1);
}

.topic-summary:hover .topic-icon {
  box-shadow:
    inset 0 0 0 1px rgba(37, 99, 235, 0.26),
    inset 0 1.5px 0 rgba(255, 255, 255, 1),
    inset 0 -2px 6px rgba(37, 99, 235, 0.12),
    0 14px 28px -9px rgba(29, 58, 114, 0.75);
  transform: translateY(-3px) scale(1.06) rotate(-3deg);
}

.topic-block[open] .topic-summary:not(:hover) .topic-icon {
  transform: translateY(-1px) scale(1.03);
}

.topic-icon .dka-ico { width: 30px; height: 30px; }

.topic-summary-main { flex: 1; min-width: 0; }

.topic-title {
  display: block;
  font-family: var(--font-display);
  font-size: 19.5px;
  font-weight: 700;
  letter-spacing: -0.019em;
  color: var(--petrol);
  transition: color 0.4s var(--ease);
  margin-bottom: 5px;
}

.topic-summary:hover .topic-title { color: var(--coral); }

.topic-desc {
  display: block;
  font-size: 13.5px;
  line-height: 1.62;
  color: var(--text-light);
  max-width: 62ch;
}

.topic-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.topic-count {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--petrol-mid);
  background: var(--ivory-dark);
  border-radius: 999px;
  padding: 6px 13px;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(220, 227, 240, 0.9);
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

.topic-summary:hover .topic-count {
  background: var(--coral-dim);
  color: var(--coral);
}

/* Chevron kendi dairesel kabuğunda */
.topic-chevron-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ivory-dark);
  color: var(--text-mid);
  transition: transform 0.7s cubic-bezier(0.32, 0.72, 0, 1),
              background 0.45s cubic-bezier(0.32, 0.72, 0, 1),
              color 0.45s cubic-bezier(0.32, 0.72, 0, 1),
              box-shadow 0.45s cubic-bezier(0.32, 0.72, 0, 1);
}

.topic-chevron-wrap svg { width: 15px; height: 15px; stroke-width: 1.75; }
.topic-summary:hover .topic-chevron-wrap {
  background: var(--coral-dim);
  color: var(--coral);
  box-shadow: 0 6px 14px -6px rgba(37, 99, 235, 0.55);
}
.topic-block[open] .topic-chevron-wrap { transform: rotate(180deg); }
.topic-block[open] .topic-summary:hover .topic-chevron-wrap { transform: rotate(180deg) scale(1.08); }
.topic-block:not([open]) .topic-summary:hover .topic-chevron-wrap { transform: translateY(2px) scale(1.08); }

/* ── Açılış animasyonu ── */
.subtopic-list {
  padding: 6px 26px 26px 26px;
  margin: 0 6px 6px;
  border-top: 1px solid rgba(220, 227, 240, 0.75);
}

.topic-block[open] .subtopic-list { animation: topicReveal 0.6s var(--ease) both; }

@keyframes topicReveal {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Alt konu ── */
.subtopic-item { padding-top: 22px; }

.subtopic-head { margin-bottom: 13px; }

.subtopic-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.011em;
  color: var(--petrol);
}

.subtopic-title::before {
  content: '';
  width: 18px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--coral), var(--mango));
  box-shadow: 0 1px 6px -1px rgba(37, 99, 235, 0.5);
  flex-shrink: 0;
  transform-origin: left center;
  transition: transform 0.6s cubic-bezier(0.32, 0.72, 0, 1);
}

.subtopic-item:hover .subtopic-title::before { transform: scaleX(1.45); }

.subtopic-desc {
  display: block;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-ghost);
  margin-top: 4px;
  padding-left: 25px;
}

.subtopic-tests {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 13px;
  padding-left: 25px;
}

/* ── Test kartı ── */
.test-link-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 18px 17px 22px;
  border-radius: 17px;
  background: var(--ivory);
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(220, 227, 240, 0.85);
  transition: transform 0.7s cubic-bezier(0.32, 0.72, 0, 1),
              background 0.5s cubic-bezier(0.32, 0.72, 0, 1),
              box-shadow 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}

/* Sol kenarda beliren gradyan ray */
.test-link-card::before {
  content: '';
  position: absolute;
  z-index: 1;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--coral), var(--mango));
  transform: scaleY(0);
  transform-origin: 50% 50%;
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.32, 0.72, 0, 1),
              opacity 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  pointer-events: none;
}

/* Yüzeyi tarayan ışık huzmesi */
.test-link-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(115deg, transparent 38%, rgba(37, 99, 235, 0.07) 50%, transparent 62%);
  background-size: 260% 100%;
  background-position: 160% 0;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.3s linear;
  pointer-events: none;
}

.test-link-card:hover {
  transform: translateY(-4px);
  background: var(--white);
  box-shadow:
    inset 0 0 0 1px rgba(37, 99, 235, 0.28),
    0 22px 42px -18px rgba(29, 58, 114, 0.45);
}

.test-link-card:hover::before { transform: scaleY(1); opacity: 1; }

.test-link-card:hover::after {
  opacity: 1;
  animation: testCardSheen 0.9s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}

@keyframes testCardSheen {
  from { background-position: 160% 0; }
  to   { background-position: -60% 0; }
}

.test-link-card:active { transform: translateY(-1px) scale(0.993); }

.test-link-body { flex: 1; min-width: 0; position: relative; z-index: 1; }

.test-link-title {
  display: block;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
  text-wrap: balance;
  letter-spacing: -0.012em;
  color: var(--petrol);
  margin-bottom: 4px;
  transition: color 0.45s cubic-bezier(0.32, 0.72, 0, 1),
              transform 0.6s cubic-bezier(0.32, 0.72, 0, 1);
}

.test-link-card:hover .test-link-title {
  color: var(--coral);
  transform: translateX(3px);
}

.test-link-desc,
.test-link-meta { transition: transform 0.6s cubic-bezier(0.32, 0.72, 0, 1); }
.test-link-card:hover .test-link-desc { transform: translateX(2px); }
.test-link-card:hover .test-link-meta { transform: translateX(2px); }

.test-link-desc {
  display: block;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-light);
  margin-bottom: 8px;
}

/* Soru sayısı rozeti */
.test-link-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 650;
  color: var(--petrol-pale);
  letter-spacing: 0.015em;
  padding: 4px 11px 4px 9px;
  border-radius: 999px;
  background: rgba(237, 241, 248, 0.75);
  box-shadow: inset 0 0 0 1px rgba(220, 227, 240, 0.9);
}

.test-link-meta::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mango);
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5);
  transition: box-shadow 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}

.test-link-card:hover .test-link-meta {
  background: var(--coral-dim);
  color: var(--coral);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.2);
}

.test-link-card:hover .test-link-meta::before {
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

/* Ok: buton içinde buton */
.test-link-arrow {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--petrol-mid);
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(220, 227, 240, 0.95);
  transition: transform 0.6s cubic-bezier(0.32, 0.72, 0, 1),
              background 0.5s cubic-bezier(0.32, 0.72, 0, 1),
              color 0.5s cubic-bezier(0.32, 0.72, 0, 1),
              box-shadow 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}

.test-link-arrow svg {
  width: 15px; height: 15px; stroke-width: 1.75;
  transition: transform 0.6s cubic-bezier(0.32, 0.72, 0, 1);
}

.test-link-card:hover .test-link-arrow {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 8px 20px -6px rgba(37, 99, 235, 0.7);
  transform: translateX(4px) translateY(-2px) scale(1.09);
}

.test-link-card:hover .test-link-arrow svg { transform: translateX(1.5px); }

/* Kartların kademeli girişi */
.subtopic-tests .test-link-card {
  animation: testCardEnter 0.75s cubic-bezier(0.32, 0.72, 0, 1) both;
}
.subtopic-tests .test-link-card:nth-child(1) { animation-delay: 0.05s; }
.subtopic-tests .test-link-card:nth-child(2) { animation-delay: 0.12s; }
.subtopic-tests .test-link-card:nth-child(3) { animation-delay: 0.19s; }
.subtopic-tests .test-link-card:nth-child(n+4) { animation-delay: 0.26s; }

@keyframes testCardEnter {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Kırıntı yolu ── */
.test-crumb {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  padding: 9px 16px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(220, 227, 240, 0.9),
              0 2px 8px -4px rgba(14, 26, 46, 0.14);
  font-size: 12.5px;
  font-weight: 550;
}

.test-crumb a {
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.35s var(--ease);
}

.test-crumb a:hover { color: var(--coral); }
.test-crumb-sep { color: var(--text-ghost); font-size: 11px; }
.test-crumb-current { color: var(--petrol); font-weight: 700; }

/* ── Kademeli giriş animasyonu ── */
.topic-block {
  opacity: 0;
  transform: translateY(24px);
  animation: topicEnter 0.9s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}

.topic-block:nth-of-type(1) { animation-delay: 0.04s; }
.topic-block:nth-of-type(2) { animation-delay: 0.12s; }
.topic-block:nth-of-type(3) { animation-delay: 0.2s; }
.topic-block:nth-of-type(4) { animation-delay: 0.28s; }
.topic-block:nth-of-type(n+5) { animation-delay: 0.34s; }

@keyframes topicEnter {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .topic-block { animation: none; opacity: 1; transform: none; }
  .topic-block[open] .subtopic-list { animation: none; }
  .subtopic-tests .test-link-card { animation: none; opacity: 1; transform: none; }
  .test-link-card:hover::after { animation: none; }
  .test-link-card:hover .test-link-title,
  .test-link-card:hover .test-link-desc,
  .test-link-card:hover .test-link-meta,
  .subtopic-item:hover .subtopic-title::before { transform: none; }
  .topic-summary:hover .topic-icon { transform: none; }
  .test-link-card:hover, .topic-block:hover { transform: none; }
}

/* ── Mobil ── */
@media (max-width: 768px) {
  .topic-browse { --bezel-r: 22px; }
  .topic-summary { padding: 18px 17px; gap: 14px; }
  .topic-icon { width: 46px; height: 46px; border-radius: 14px; }
  .topic-icon .dka-ico { width: 26px; height: 26px; }
  .topic-title { font-size: 17px; }
  .topic-desc { font-size: 12.5px; }
  .topic-meta { flex-direction: column-reverse; gap: 8px; align-items: flex-end; }
  .subtopic-list { padding: 2px 17px 20px; }
  .subtopic-tests, .subtopic-desc { padding-left: 0; }
  .subtopic-tests { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .topic-count { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   SAHNE İKONLARI — degrade katmanlar + konuya özel hareket
   ═══════════════════════════════════════════════════════════ */

.dka-ico {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
}

/* ── Katmanlar ── */
.dka-ico .ico-halo {           /* arka plan halkası */
  fill: url(#dkaG2);
  opacity: .13;
}

.dka-ico .ico-glow {           /* yumuşak ışıma */
  fill: url(#dkaGlow);
}

.dka-ico .ico-body {           /* ana biçim */
  fill: url(#dkaG1);
  stroke: none;
}

.dka-ico .ico-body--alt {      /* ikincil biçim (daha açık) */
  fill: url(#dkaG2);
}

.dka-ico .ico-line {           /* ince çizgi detay */
  stroke: #1D3A72;
  stroke-width: 1.5;
  fill: none;
  opacity: .85;
}

/* Beyaz üstü detaylar (gövdenin içinde) */
.dka-ico .ico-dots circle,
.dka-ico .ico-bars rect,
.dka-ico .ico-face path,
.dka-ico .ico-check path,
.dka-ico .ico-pagelines path,
.dka-ico .ico-mic-lines path,
.dka-ico .ico-rows {
  fill: #fff;
  stroke: #fff;
}

.dka-ico .ico-dots circle,
.dka-ico .ico-bars rect { stroke: none; }

.dka-ico .ico-face path,
.dka-ico .ico-check path,
.dka-ico .ico-pagelines path,
.dka-ico .ico-mic-lines path,
.dka-ico .ico-rows {
  fill: none;
  stroke-width: 1.7;
}

.dka-ico .ico-face .ico-eye   { stroke-width: 2.2; }
.dka-ico .ico-face .ico-smile { stroke-width: 1.9; }

.dka-ico .ico-pagelines path,
.dka-ico .ico-mic-lines path { stroke-width: 1.3; opacity: .62; }
.dka-ico .ico-rows { opacity: .55; }

/* Dışa taşan ses dalgaları */
.dka-ico .ico-wave path {
  stroke: url(#dkaG3);
  stroke-width: 1.7;
  fill: none;
  opacity: .75;
}

/* Akış çizgileri */
.dka-ico .ico-flow path {
  stroke: url(#dkaG1);
  stroke-width: 1.9;
  fill: none;
}
.dka-ico .ico-flow .flow-2 { stroke: url(#dkaG3); }
.dka-ico .ico-flow .flow-3 { stroke: url(#dkaG2); opacity: .8; }

/* Nöron ağı */
.dka-ico .ico-neuron circle { fill: #fff; stroke: none; }
.dka-ico .ico-neuron path   { stroke: #fff; stroke-width: 1.2; fill: none; opacity: .7; }

/* Kalp + nabız */
.dka-ico .ico-heart { fill: url(#dkaGWarm); }
.dka-ico .ico-pulse {
  stroke: #fff;
  stroke-width: 1.7;
  fill: none;
}

/* ═══ HAREKET — yalnızca konu bloğu görünürken ═══ */

/* Konuşma sesleri: seviye basamakları yükselir */
.dka-ico--waveform .ico-steps rect {
  fill: url(#dkaG2);
  stroke: none;
}
.dka-ico--waveform .ico-steps rect:nth-child(3) { fill: url(#dkaG1); }

@keyframes dkaGrow {
  0%, 100% { transform: scaleY(.78); opacity: .82; }
  45%      { transform: scaleY(1);   opacity: 1;   }
}
.dka-ico--waveform .ico-steps rect {
  animation: dkaGrow 3.2s var(--ease) infinite;
  transform-box: fill-box;
  transform-origin: bottom center;
}
.dka-ico--waveform .ico-steps rect:nth-child(1) { animation-delay: 0s;   }
.dka-ico--waveform .ico-steps rect:nth-child(2) { animation-delay: .22s; }
.dka-ico--waveform .ico-steps rect:nth-child(3) { animation-delay: .44s; }

/* Dil gelişimi: harf küpleri üst üste diziliyor */
.dka-ico--speech .ico-letters path {
  stroke: #fff;
  stroke-width: 1.15;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .92;
}

@keyframes dkaStack {
  0%, 100% { transform: translateY(-1.4px); }
  50%      { transform: translateY(0); }
}
.dka-ico--speech .ico-blocks-top rect {
  animation: dkaStack 3.4s var(--ease) infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.dka-ico--speech .ico-blocks-top rect:nth-child(1) { animation-delay: .1s;  }
.dka-ico--speech .ico-blocks-top rect:nth-child(2) { animation-delay: .38s; }

/* Ses dalgaları dışa yayılır */
@keyframes dkaRipple {
  0%   { opacity: 0;   transform: translateX(-1.5px); }
  35%  { opacity: .85; }
  100% { opacity: 0;   transform: translateX(1.5px); }
}
.dka-ico .ico-wave path {
  animation: dkaRipple 2.4s var(--ease) infinite;
  transform-box: fill-box;
  transform-origin: left center;
}
.dka-ico .ico-wave path:nth-child(2) { animation-delay: .35s; }
.ico-wave--left { transform-origin: right center; }

/* Akıcılık: çizgiler kayar */
@keyframes dkaFlow {
  0%, 100% { transform: translateX(0);     opacity: .85; }
  50%      { transform: translateX(1.6px); opacity: 1; }
}
.dka-ico--fluency .ico-flow path {
  animation: dkaFlow 3s var(--ease) infinite;
}
.dka-ico--fluency .flow-2 { animation-delay: .3s; }
.dka-ico--fluency .flow-3 { animation-delay: .6s; }

/* Kalp atışı */
@keyframes dkaBeat {
  0%, 100%  { transform: scale(1); }
  14%       { transform: scale(1.07); }
  28%       { transform: scale(1); }
  42%       { transform: scale(1.045); }
}
.dka-ico--care .ico-heart {
  animation: dkaBeat 2.6s var(--ease) infinite;
  transform-box: fill-box;
  transform-origin: center;
}

/* Nöron parıltısı */
@keyframes dkaSpark {
  0%, 100% { opacity: .55; }
  50%      { opacity: 1; }
}
.dka-ico--mind .ico-neuron circle {
  animation: dkaSpark 2.2s var(--ease) infinite;
}
.dka-ico--mind .ico-neuron circle:nth-child(2) { animation-delay: .4s; }
.dka-ico--mind .ico-neuron circle:nth-child(3) { animation-delay: .8s; }

/* Mikrofon ışıması */
@keyframes dkaBreathe {
  0%, 100% { opacity: .5;  transform: scale(.94); }
  50%      { opacity: .95; transform: scale(1.04); }
}
.dka-ico--voice .ico-glow,
.dka-ico--child .ico-glow,
.dka-ico--care  .ico-glow {
  animation: dkaBreathe 3.4s var(--ease) infinite;
  transform-box: fill-box;
  transform-origin: center;
}

/* Onay işareti çizilir */
@keyframes dkaDraw {
  0%, 12%  { stroke-dashoffset: 12; }
  38%,100% { stroke-dashoffset: 0; }
}
.dka-ico--assessment .ico-check path {
  stroke-dasharray: 12;
  animation: dkaDraw 3.2s var(--ease) infinite;
}

/* Halo hafifçe nefes alır (tüm ikonlar) */
@keyframes dkaHalo {
  0%, 100% { transform: scale(1);    opacity: .13; }
  50%      { transform: scale(1.05); opacity: .2; }
}
.dka-ico .ico-halo {
  animation: dkaHalo 4.5s var(--ease) infinite;
  transform-box: fill-box;
  transform-origin: center;
}

/* Konu açıkken hareket biraz canlanır */
.topic-block[open] .dka-ico .ico-halo { animation-duration: 3.2s; }

@media (prefers-reduced-motion: reduce) {
  .dka-ico *, .dka-ico { animation: none !important; }
}

/* ══════════════════════════════════════════════════════════
   EKIP — Projede emegi gecen ogrenciler
   Imza ogesi: her uyeye ait ses dalgasi (konu = dil & konusma)
   ══════════════════════════════════════════════════════════ */

.team-section {
  --team-ink: #2B4C99;
  --team-soft: #6C8FD6;
  --team-tint: rgba(43, 76, 153, 0.07);
  --team-line: rgba(43, 76, 153, 0.22);
}

.team-intro {
  max-width: 48ch;
  margin: 14px auto 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-light);
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 20px;
  margin-top: 52px;
  text-align: left;
}

/* ── Kart govdesi ── */
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(120% 90% at 100% 0%, var(--team-tint), transparent 62%),
    var(--white);
  box-shadow:
    inset 0 0 0 1px rgba(223, 230, 242, 0.9),
    0 12px 30px -22px rgba(14, 26, 46, 0.3);
  transition: transform 0.8s cubic-bezier(0.32, 0.72, 0, 1),
              box-shadow 0.8s cubic-bezier(0.32, 0.72, 0, 1);
  animation: teamEnter 0.9s cubic-bezier(0.32, 0.72, 0, 1) both;
  animation-delay: calc(var(--team-delay, 0) * 0.09s);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 0 0 1px var(--team-line),
    0 34px 60px -30px rgba(14, 26, 46, 0.42);
}

@keyframes teamEnter {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.team-card-inner {
  position: relative;
  height: 100%;
  padding: 26px 24px 22px;
  border-radius: inherit;
  display: flex;
  flex-direction: column;
}

/* Ust kenarda renk izi — hover'da soldan saga cizilir */
.team-card-inner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--team-ink), var(--team-soft), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.9s cubic-bezier(0.32, 0.72, 0, 1);
}

.team-card:hover .team-card-inner::after { transform: scaleX(1); }

/* ── Avatar + rol simgesi ── */
.team-portrait {
  position: relative;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
}

.team-avatar {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--team-ink), var(--team-soft));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 10px 22px -10px var(--team-ink);
  transition: transform 0.8s cubic-bezier(0.32, 0.72, 0, 1),
              box-shadow 0.7s cubic-bezier(0.32, 0.72, 0, 1);
}

/* Avatar cevresinde genisleyen ses halkasi */
.team-avatar::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid var(--team-ink);
  opacity: 0;
  transform: scale(0.86);
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(0.32, 0.72, 0, 1),
              transform 0.7s cubic-bezier(0.32, 0.72, 0, 1);
}

.team-card:hover .team-avatar {
  transform: scale(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 18px 32px -11px var(--team-ink);
}

.team-card:hover .team-avatar::after { opacity: 0.32; transform: scale(1.08); }

.team-avatar-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
}

/* Rol simgesi: avatarin kosesinde kucuk madalyon */
.team-role-icon {
  position: absolute;
  right: -6px;
  bottom: -4px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: var(--team-ink);
  background: var(--white);
  box-shadow:
    0 0 0 3.5px var(--white),
    0 4px 10px -4px rgba(14, 26, 46, 0.4);
  transition: transform 0.7s cubic-bezier(0.32, 0.72, 0, 1),
              color 0.5s cubic-bezier(0.32, 0.72, 0, 1),
              background 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}

.team-role-icon svg { width: 14px; height: 14px; display: block; }

.team-card:hover .team-role-icon {
  transform: scale(1.12) rotate(-8deg);
  color: var(--white);
  background: var(--team-ink);
}

/* ── Isim & rol ── */
.team-name {
  font-family: var(--font-display);
  font-size: 17.5px;
  font-weight: 650;
  letter-spacing: -0.022em;
  line-height: 1.26;
  color: var(--petrol);
  margin: 0 0 7px;
  text-wrap: balance;
}

.team-role {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 5px 12px 5px 9px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: -0.002em;
  line-height: 1.4;
  color: var(--team-ink);
  background: var(--team-tint);
  box-shadow: inset 0 0 0 1px var(--team-line);
  transition: background 0.6s cubic-bezier(0.32, 0.72, 0, 1);
}

.team-role::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  background: currentColor;
}

.team-card:hover .team-role { background: var(--team-tint-strong, var(--team-tint)); }

/* ── IMZA: ses dalgasi ── */
/* ── Mail ── */
.team-mail {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(223, 230, 242, 0.95);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-decoration: none;
  transition: border-color 0.7s cubic-bezier(0.32, 0.72, 0, 1);
}

.team-card:hover .team-mail { border-top-color: var(--team-line); }

.team-mail-text {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: -0.003em;
  color: var(--text-light);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.6s cubic-bezier(0.32, 0.72, 0, 1);
}

.team-mail:hover .team-mail-text,
.team-mail:focus-visible .team-mail-text { color: var(--team-ink); }

.team-mail-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--team-soft);
  box-shadow: inset 0 0 0 1px rgba(223, 230, 242, 0.95);
  transition: transform 0.7s cubic-bezier(0.32, 0.72, 0, 1),
              color 0.5s cubic-bezier(0.32, 0.72, 0, 1),
              background 0.5s cubic-bezier(0.32, 0.72, 0, 1),
              box-shadow 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}

.team-mail-icon svg { width: 13px; height: 13px; display: block; }

.team-mail:hover .team-mail-icon,
.team-mail:focus-visible .team-mail-icon {
  color: var(--white);
  background: var(--team-ink);
  box-shadow: inset 0 0 0 1px var(--team-ink),
              0 8px 16px -7px var(--team-ink);
  transform: translate(2px, -2px);
}

.team-mail:active .team-mail-icon { transform: translate(1px, -1px) scale(0.94); }

.team-mail:focus-visible {
  outline: 2px solid var(--team-ink);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ── Kisisel renk kimlikleri ── */
.team-tone-indigo {
  --team-ink: #2B4C99;
  --team-soft: #6C8FD6;
  --team-tint: rgba(43, 76, 153, 0.07);
  --team-line: rgba(43, 76, 153, 0.24);
  --team-tint-strong: rgba(43, 76, 153, 0.13);
}

.team-tone-slate {
  --team-ink: #1F6C78;
  --team-soft: #6BAEB8;
  --team-tint: rgba(31, 108, 120, 0.07);
  --team-line: rgba(31, 108, 120, 0.24);
  --team-tint-strong: rgba(31, 108, 120, 0.13);
}

.team-tone-rose {
  --team-ink: #A8446E;
  --team-soft: #DE96B4;
  --team-tint: rgba(168, 68, 110, 0.07);
  --team-line: rgba(168, 68, 110, 0.24);
  --team-tint-strong: rgba(168, 68, 110, 0.13);
}

.team-tone-plum {
  --team-ink: #7A4C9E;
  --team-soft: #B490D2;
  --team-tint: rgba(122, 76, 158, 0.07);
  --team-line: rgba(122, 76, 158, 0.24);
  --team-tint-strong: rgba(122, 76, 158, 0.13);
}

@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 34px; }
  .team-card-inner { padding: 22px 20px 18px; }
  .team-name { font-size: 16.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .team-card { animation: none; opacity: 1; transform: none; }
  .team-card:hover { transform: none; }
  .team-card:hover .team-avatar,
  .team-card:hover .team-avatar::after,
  .team-card:hover .team-role-icon,
  .team-mail:hover .team-mail-icon { transform: none; }
  .team-card-inner::after { transition: none; }
}
/* ═══════════════════════════════════════════════════════════════
   MUSTERI PANOSU — premium (Editorial Luxury + Soft Structuralism)
   Bestaande merk-tokens: --navy(petrol) --gold(coral) --cream(ivory)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --dash-ease: cubic-bezier(0.32, 0.72, 0, 1);
  --dash-hair: color-mix(in srgb, var(--navy) 10%, transparent);
}

/* Verificatie-banner */
.dash-verify-banner { background: color-mix(in srgb, var(--warning) 10%, #fff); border-bottom: 1px solid color-mix(in srgb, var(--warning) 24%, transparent); }
.dash-verify-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 12px; padding-bottom: 12px; }
.dash-verify-txt { display: flex; align-items: center; gap: 10px; font-size: 14px; color: color-mix(in srgb, var(--warning) 70%, #3a2c00); }
.dash-verify-btn { background: var(--warning); color: #fff; border: none; padding: 8px 16px; border-radius: 999px; cursor: pointer; font-size: 13px; }

/* HERO */
.dash-hero {
  position: relative;
  padding: 56px 0 88px;
  background:
    radial-gradient(120% 100% at 15% 0%, color-mix(in srgb, var(--gold) 9%, transparent) 0%, transparent 55%),
    radial-gradient(90% 80% at 100% 0%, color-mix(in srgb, var(--navy) 8%, transparent) 0%, transparent 60%),
    var(--cream);
  overflow: hidden;
}
.dash-hero-top { position: relative; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.dash-hi { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); font-weight: 600; letter-spacing: -0.02em; color: var(--navy); line-height: 1.1; }
.dash-hi span { color: var(--gold); }
.dash-sub { margin-top: 8px; font-size: 14px; color: var(--text-light); }
.dash-hero-cta { align-items: center; gap: 9px; }

/* Stat-tegels: double-bezel */
.dash-stats { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dash-stat {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--dash-hair);
  border-radius: 22px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 18px 40px -28px color-mix(in srgb, var(--navy) 60%, transparent);
  backdrop-filter: blur(6px);
  transition: transform 0.6s var(--dash-ease), box-shadow 0.6s var(--dash-ease);
}
.dash-stat:hover { transform: translateY(-3px); box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 26px 50px -26px color-mix(in srgb, var(--navy) 55%, transparent); }
.dash-stat-ic { width: 44px; height: 44px; flex-shrink: 0; display: grid; place-items: center; border-radius: 14px; }
.dash-stat-ic.ic-total { background: color-mix(in srgb, var(--navy) 10%, #fff); color: var(--navy); }
.dash-stat-ic.ic-low { background: color-mix(in srgb, var(--success) 12%, #fff); color: var(--success); }
.dash-stat-ic.ic-mid { background: color-mix(in srgb, var(--warning) 13%, #fff); color: var(--warning); }
.dash-stat-ic.ic-high { background: color-mix(in srgb, var(--danger) 12%, #fff); color: var(--danger); }
.dash-stat-v { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--navy); line-height: 1; }
.dash-stat-l { font-size: 12px; color: var(--text-light); margin-top: 4px; }

/* Body & tabs */
.dash-body { background: var(--cream-dark); }
.dash-tabs { display: flex; gap: 4px; margin-bottom: 32px; padding: 5px; background: rgba(255,255,255,0.6); border: 1px solid var(--dash-hair); border-radius: 999px; width: max-content; max-width: 100%; overflow-x: auto; }
.dash-tab {
  padding: 10px 20px; font-size: 13.5px; font-weight: 500; white-space: nowrap;
  text-decoration: none; color: var(--text-mid); border-radius: 999px;
  transition: color 0.4s var(--dash-ease), background 0.4s var(--dash-ease), box-shadow 0.4s var(--dash-ease);
}
.dash-tab:hover { color: var(--navy); }
.dash-tab.active { background: #fff; color: var(--navy); box-shadow: 0 2px 10px -4px color-mix(in srgb, var(--navy) 40%, transparent); }

.dash-h2 { font-family: var(--font-display); font-size: 24px; font-weight: 600; letter-spacing: -0.01em; color: var(--navy); }
.dash-list-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; flex-wrap: wrap; gap: 12px; }

/* Overzicht-grid (asymmetrische bento) */
.dash-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 18px; align-items: stretch; }
.dash-panel {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--dash-hair);
  border-radius: 26px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 24px 50px -34px color-mix(in srgb, var(--navy) 55%, transparent);
}
.dash-panel-hl { background: linear-gradient(180deg, #fff, color-mix(in srgb, var(--gold) 4%, #fff)); }
.dash-panel-h { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.dash-panel-t { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--navy); }

.dash-last { display: flex; align-items: center; gap: 22px; }
.dash-last-info { min-width: 0; }
.dash-last-name { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--navy); }
.dash-last-meta { font-size: 13px; color: var(--text-light); margin-top: 4px; }
.dash-detail-link { display: inline-block; margin-top: 12px; font-size: 13.5px; font-weight: 600; color: var(--gold); text-decoration: none; transition: transform 0.4s var(--dash-ease); }
.dash-detail-link:hover { transform: translateX(4px); }

/* Skor-ring: conic-gradient */
.dash-ring {
  --pct: 0; --sz: 92px;
  position: relative; width: var(--sz); height: var(--sz); flex-shrink: 0;
  border-radius: 50%;
  background: conic-gradient(var(--gold) calc(var(--pct) * 1%), color-mix(in srgb, var(--navy) 10%, #fff) 0);
  display: grid; place-items: center;
}
.dash-ring::before { content: ''; position: absolute; inset: 9px; background: #fff; border-radius: 50%; box-shadow: 0 2px 8px -4px color-mix(in srgb, var(--navy) 50%, transparent) inset; }
.dash-ring > span { position: relative; font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy); }
.dash-ring > span small { font-size: 12px; font-weight: 600; color: var(--text-light); }
.dash-ring-lg { --sz: 120px; }
.dash-ring-lg > span { font-size: 28px; }

/* Gemiddelde-paneel */
.dash-avg { text-align: center; padding: 8px 0; }
.dash-avg-num { font-family: var(--font-display); font-size: 46px; font-weight: 700; color: var(--navy); line-height: 1; }
.dash-avg-num small { font-size: 20px; color: var(--text-light); }
.dash-avg-bar { height: 8px; border-radius: 999px; background: color-mix(in srgb, var(--navy) 10%, #fff); margin: 18px 0 10px; overflow: hidden; }
.dash-avg-bar span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--gold), color-mix(in srgb, var(--gold) 60%, var(--navy))); transition: width 1s var(--dash-ease); }
.dash-avg-l { font-size: 12.5px; color: var(--text-light); }

/* Rapport-kaarten */
.dash-cards { display: grid; gap: 14px; }
.dash-card {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 20px 16px 16px;
  background: #fff; border: 1px solid var(--dash-hair); border-radius: 22px;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 16px 36px -30px color-mix(in srgb, var(--navy) 55%, transparent);
  transition: transform 0.6s var(--dash-ease), box-shadow 0.6s var(--dash-ease), border-color 0.6s var(--dash-ease);
}
.dash-card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--gold) 30%, transparent); box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 28px 50px -28px color-mix(in srgb, var(--navy) 50%, transparent); }
.dash-card-ring { --sz: 62px; }
.dash-card-ring > span { font-size: 15px; }
.dash-card-ring > span small { font-size: 9px; }
.dash-card-body { flex: 1; min-width: 0; }
.dash-card-name { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-card-meta { font-size: 12.5px; color: var(--text-light); margin-top: 3px; }
.dash-card-side { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.dash-card-arrow { font-size: 18px; color: var(--gold); transition: transform 0.5s var(--dash-ease); }
.dash-card:hover .dash-card-arrow { transform: translateX(4px); }

/* Detailweergave */
.dash-back { display: inline-block; margin-bottom: 18px; font-size: 13.5px; font-weight: 500; color: var(--text-mid); text-decoration: none; transition: color 0.4s var(--dash-ease), transform 0.4s var(--dash-ease); }
.dash-back:hover { color: var(--navy); transform: translateX(-3px); }
.dash-detail { padding: 30px; }
.dash-detail-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-bottom: 22px; border-bottom: 1px solid var(--dash-hair); }
.dash-detail-title { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--navy); letter-spacing: -0.01em; }
.dash-detail-sub { font-size: 13.5px; color: var(--text-light); margin-top: 5px; }
.dash-detail-score { display: flex; align-items: center; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--dash-hair); }
.dash-score-big { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--navy); line-height: 1; }
.dash-score-big small { font-size: 18px; color: var(--text-light); font-weight: 600; }
.dash-score-l { font-size: 13px; color: var(--text-light); margin-top: 6px; }

.dash-cats { padding: 24px 0; border-bottom: 1px solid var(--dash-hair); }
.dash-cats-t { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 16px; }
.dash-cat { margin-bottom: 16px; }
.dash-cat:last-child { margin-bottom: 0; }
.dash-cat-head { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--text-mid); margin-bottom: 7px; }
.dash-cat-val { font-weight: 600; color: var(--navy); }
.dash-cat-bar { height: 9px; border-radius: 999px; background: color-mix(in srgb, var(--navy) 8%, #fff); overflow: hidden; }
.dash-cat-bar span { display: block; height: 100%; border-radius: 999px; transition: width 0.9s var(--dash-ease); }
.dash-cat-bar .pct-hi { background: linear-gradient(90deg, var(--success), color-mix(in srgb, var(--success) 70%, #fff)); }
.dash-cat-bar .pct-mid { background: linear-gradient(90deg, var(--warning), color-mix(in srgb, var(--warning) 70%, #fff)); }
.dash-cat-bar .pct-lo { background: linear-gradient(90deg, var(--danger), color-mix(in srgb, var(--danger) 70%, #fff)); }

.dash-block { padding: 22px 0; border-bottom: 1px solid var(--dash-hair); }
.dash-block-t { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.dash-block-p { font-size: 14.5px; line-height: 1.75; color: var(--text-mid); }
.dash-detail-foot { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 22px; }

.badge-lg { font-size: 13px; padding: 7px 14px; }

/* Responsief */
@media (max-width: 860px) {
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .dash-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .dash-hero { padding: 40px 0 64px; }
  .dash-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .dash-stat { padding: 14px; }
  .dash-last { flex-direction: column; text-align: center; }
  .dash-detail-score { flex-direction: column; text-align: center; gap: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .dash-stat, .dash-card, .dash-detail-link, .dash-back, .dash-card-arrow, .dash-avg-bar span, .dash-cat-bar span { transition: none; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBİL İYİLEŞTİRMELER — 2026-08-03
   Mobile-first dokunuşlar: yatay taşma engeli, hero ölçekleme,
   dokunma hedefleri, güvenli alanlar (çentik). Video mobilde JS ile
   yüklenmez; burada yalnızca görünüm ayarları.
   ═══════════════════════════════════════════════════════════════ */

/* ── Yatay taşmayı kökten engelle ───────────────────────────── */
/* overflow-x:clip kullanılır; :hidden bir üst öğede position:sticky'yi
   bozar, clip bozmaz. Desteklemeyen eski tarayıcılar için body'de
   yedek olarak :hidden kalır (body sticky içermez). */
html { max-width: 100%; overflow-x: clip; }
body { max-width: 100%; overflow-x: hidden; }
@supports (overflow: clip) { body { overflow-x: clip; } }
img, video, svg, iframe { max-width: 100%; }
img, video { height: auto; }

/* Güvenli alan (çentikli telefonlar): yatay iç boşluğa ekle */
@supports (padding: max(0px)) {
  .container {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
}

/* ── Tablet ve altı (≤900px) ────────────────────────────────── */
@media (max-width: 900px) {
  /* Hero-video zaten yüklenmez; çerçeve boşluğunu küçült */
  .hero-framed {
    margin: 8px;
    width: calc(100% - 16px);
    min-height: calc(100dvh - 16px);
    border-radius: 14px;
  }
  .hero-framed .hero-video,
  .hero-framed .hero-video-overlay,
  .hero-framed .hero-poster,
  .hero-framed .hero-video-fallback { border-radius: 14px; }
}

/* ── Telefon (≤768px) ───────────────────────────────────────── */
@media (max-width: 768px) {
  /* Hero: dikey nefes + okunur tipografi */
  .hero {
    padding: 96px 0 64px;
    min-height: 88vh;              /* tam ekran zorlama yok → iOS zıplaması yok */
    align-items: center;
  }
  .hero-framed { min-height: calc(88vh - 16px); }
  .hero-content, .hero-content-centered { max-width: 100%; }

  /* Hero-butonları tam genişlik, kolay dokunulur */
  .hero-actions, .hero-actions-centered {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }
  .hero-actions .btn,
  .hero-actions-centered .btn { width: 100%; justify-content: center; }

  /* Dokunma hedefleri: min 44px (WCAG/Apple) */
  .btn, .btn-sm { min-height: 44px; }
  a.btn, button.btn { display: inline-flex; align-items: center; }

  /* Bölüm boşlukları: masaüstünde geniş, mobilde makul */
  section { padding-top: 56px; padding-bottom: 56px; }
  .section-header { margin-bottom: 36px; }

  /* Kart ızgaraları tek sütuna */
  .features-grid,
  .stats-row,
  .dash-stats { grid-template-columns: 1fr; }

  /* Tablolar yatay kaydırılabilir (taşma yerine) */
  .data-table, .adm-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Formlar: iOS zoom'unu engellemek için min 16px input */
  input, select, textarea, .form-control, .adm-input, .adm-select, .adm-textarea {
    font-size: 16px;
  }
}

/* ── Küçük telefon (≤480px) ─────────────────────────────────── */
@media (max-width: 480px) {
  .hero { padding: 84px 0 52px; }
  .hero-title, .hero-title-centered { font-size: clamp(28px, 8.5vw, 40px); line-height: 1.15; }
  .hero-subtitle, .hero-subtitle-centered { font-size: 15px; }
  section { padding-top: 44px; padding-bottom: 44px; }
}

/* ── Dokunmatik cihazlar: hover-efektlerini sadeleştir ──────── */
@media (hover: none) {
  /* Hover'a bağlı dönüşümler dokunmada takılı kalmasın */
  [data-magnetic] { transform: none !important; }
}

/* ── Alt güvenli alan: sabit alt öğeler (WhatsApp vb.) ──────── */
@supports (padding: max(0px)) {
  .whatsapp-fab, .wa-fab, [class*="whatsapp"] {
    margin-bottom: max(0px, env(safe-area-inset-bottom));
  }
}
