/* ============================================================
   TALK UP — Design Tokens (v2)
   Direction: edu-SaaS, playful-corporate hybrid. Navy for trust,
   TalkUp orange for energy/CTA, cool light ground (not warm
   paper) so it reads as a modern learning platform, not a blog.
   ============================================================ */

:root{
  /* --- surface & text ---
     Values below come from the ui-ux-pro-max design-system run
     (query: "online english speaking education edu-saas playful
     corporate trustworthy") — a Trust-Authority / Hero+Testimonials
     pattern with a verified-contrast blue+orange palette. */
  --bg:           #F8FAFC;
  --bg-deep:      #E9EFF8;
  --surface:      #FFFFFF;
  --surface-2:    #EEF2F9;
  --border:       #E2E8F0;
  --ink:          #1E293B;
  --ink-soft:     #475569;
  /* was #7C8CA6 — 3.4:1 on white, below WCAG AA (4.5:1). This is used all
     over (captions, footer, price notes) so it needed a real fix, not a
     one-off. #64748E keeps the same blue-gray hue at 4.74:1. */
  --ink-faint:    #586882;

  /* --- brand ---
     Exact values from the client's official brand sheet (Talk Up K.K. /
     TalkUp Logo PDFs): blue #3871B1, orange #FF8913. The raw orange only
     hits ~2.4:1 contrast with white text, so buttons/badges pair it with
     dark ink text instead of white — see --on-accent. */
  --navy:         #3871B1;
  --navy-deep:    #274F7C;
  --navy-tint:    #E1EBF5;
  --orange:       #FF8913;
  --orange-deep:  #AD5D0D;
  --orange-darker:#E67A0A;
  --orange-tint:  #FFE9D2;
  --orange-rgb:   255,137,19;
  --brand-orange: #FF8913;
  --gold:         #E3A73A;
  --green:        #2FA366;
  --green-tint:   #DEF3E7;
  --on-accent:    #1E293B;

  --shadow-sm: 0 1px 2px rgba(16,32,55,.06), 0 1px 1px rgba(16,32,55,.04);
  --shadow-md: 0 10px 26px -10px rgba(16,32,55,.18);
  --shadow-lg: 0 30px 70px -24px rgba(16,32,55,.32);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --font-display: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --ease: cubic-bezier(.22,.9,.3,1);
  --dur-fast: 180ms;
  --dur-med: 320ms;
}

:root[data-theme="light"]{ color-scheme: light; }

@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]){
    --bg:           #0E1622;
    --bg-deep:      #0A121C;
    --surface:      #16202E;
    --surface-2:    #1C2838;
    --border:       #29374A;
    --ink:          #EEF2F8;
    --ink-soft:     #B7C1D2;
    --ink-faint:    #7E8AA0;

    --navy:         #6FA0D4;
    --navy-deep:    #2C5883;
    --navy-tint:    #1B2A3E;
    --orange:       #FF8913;
    --orange-deep:  #FFA24C;
    --orange-darker:#FFB86B;
    --orange-rgb:   255,137,19;
    --brand-orange: #FF8913;
    --orange-tint:  #3A2712;
    --gold:         #E9C078;
    --green:        #58C793;
    --green-tint:   #163024;
    --on-accent:    #1D1006;
    color-scheme: dark;
  }
}
:root[data-theme="dark"]{
  --bg:           #0E1622;
  --bg-deep:      #0A121C;
  --surface:      #16202E;
  --surface-2:    #1C2838;
  --border:       #29374A;
  --ink:          #EEF2F8;
  --ink-soft:     #B7C1D2;
  --ink-faint:    #7E8AA0;

  --navy:         #6FA0D4;
  --navy-deep:    #2C5883;
  --navy-tint:    #1B2A3E;
  --orange:       #FF8913;
  --orange-deep:  #FFA24C;
  --orange-darker:#FFB86B;
  --orange-rgb:   255,137,19;
  --brand-orange: #FF8913;
  --orange-tint:  #3A2712;
  --gold:         #E9C078;
  --green:        #58C793;
  --green-tint:   #163024;
  --on-accent:    #1D1006;
  color-scheme: dark;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after{ box-sizing: border-box; }
/* header.site sticky (top:0) her #anchor scroll'unda hedef bölümün
   üstünü kapatıyordu (nav linkleri, ?view=grup#paketler gibi harici
   yönlendirmeler dahil) — her bölüme tek tek scroll-margin-top eklemek
   yerine (yeni bir bölüm eklenince unutulur), tarayıcının scroll
   hedeflemesine tek noktadan, kalıcı bir pay veriyoruz. */
html{ scroll-behavior: smooth; scroll-padding-top: 78px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg{ display:block; max-width: 100%; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin:0; padding:0; }
h1,h2,h3,h4,p,figure{ margin:0; }
button{ font: inherit; color: inherit; background:none; border:none; cursor:pointer; }
input, textarea{ font: inherit; color: inherit; }
:focus-visible{ outline: 2.5px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

.wrap{ width: min(1200px, 100% - 48px); margin-inline: auto; }
@media (max-width: 640px){ .wrap{ width: min(1200px, 100% - 32px); } }
section{ position: relative; }

/* Section kicker — a bold color word led by an arrow mark, echoing the
   forward-motion arrows used on buttons elsewhere. Deliberately not the
   generic muted-pill/tracked-caps chip pattern. */
.eyebrow{
  font-family: var(--font-display);
  font-size: .98rem;
  color: var(--orange-deep);
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 800;
}
.eyebrow::before{
  content: "→";
  color: var(--navy);
  font-weight: 800;
  transform: translateY(-1px);
}

h1, h2, h3{ font-family: var(--font-display); text-wrap: balance; color: var(--ink); }
h2.section-title{
  font-size: clamp(1.9rem, 1.5rem + 1.8vw, 2.7rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.section-sub{ color: var(--ink-soft); font-size: 1.04rem; max-width: 48ch; line-height: 1.65; }
.section-head{ display:flex; flex-direction: column; gap: 16px; margin-bottom: 50px; }
.section-head.center{ align-items:center; text-align:center; margin-inline:auto; }

/* ============================================================
   Buttons
   ============================================================ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap: .55em;
  padding: 15px 28px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: .96rem; white-space: nowrap; cursor: pointer;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  min-height: 44px;
}
.btn:disabled, .btn-ghost:disabled{ opacity:.45; cursor:not-allowed; }
.btn svg{ width:16px; height:16px; flex-shrink:0; }
.btn-primary{ background: var(--orange); color: var(--on-accent); box-shadow: 0 10px 24px -8px rgba(var(--orange-rgb),.5); }
.btn-primary:hover{ background: var(--orange-darker); transform: translateY(-2px); box-shadow: 0 16px 32px -10px rgba(var(--orange-rgb),.55); }
.btn-primary:active{ transform: translateY(0); }
.btn-outline{ background: var(--surface); color: var(--ink); border: 1.5px solid var(--border); }
.btn-outline:hover{ border-color: var(--orange); color: var(--orange-deep); }

/* Marka mavisi (#3871B1) dolu buton — turuncu birincil CTA'nın yanında
   ikinci bir "dolu, önemli" aksiyon lazım olduğunda (ör. hesabım'daki
   "kalan hakkım kadar tekrarla" butonu), beyaz/outline'dan ayrışsın diye. */
.btn-navy{ background: var(--navy); color:#fff; }
.btn-navy:hover{ background: var(--navy-deep); transform: translateY(-2px); }
.btn-ghost{ color: var(--orange-deep); padding: 8px 4px; min-height: auto; font-weight:700; }
.btn-ghost .arrow{ transition: transform var(--dur-fast) var(--ease); }
.btn-ghost:hover .arrow{ transform: translateX(4px); }
.btn-sm{ padding: 11px 20px; font-size: .88rem; }
.btn-block{ width: 100%; }

/* ============================================================
   Top announcement bar
   ============================================================ */
/* navy-deep instead of navy: #EAF1FB on navy was ~3.9:1, below WCAG AA
   (4.5:1) for normal text — navy-deep pushes it comfortably past 7:1. */
.announce{ background: var(--navy-deep); color: #EAF1FB; }
.announce .wrap{ display:flex; align-items:center; justify-content:center; gap:10px; padding: 10px 48px 10px 16px; font-size: .84rem; font-weight:600; text-align:center; position: relative; }
.announce svg{ width:15px; height:15px; color: var(--orange); flex-shrink:0; }
.announce-close{ position:absolute; right: 12px; top:50%; transform: translateY(-50%); width: 26px; height:26px; display:flex; align-items:center; justify-content:center; border-radius:50%; color: #B9C8DE; transition: background var(--dur-fast); }
.announce-close:hover{ background: rgba(255,255,255,.12); }
.announce-close svg{ width:13px; height:13px; color: inherit; }

/* ============================================================
   Header / nav
   ============================================================ */
header.site{
  position: sticky; top:0; z-index: 100;
  backdrop-filter: blur(14px) saturate(1.4);
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-med), box-shadow var(--dur-med);
}
header.site.scrolled{ border-bottom-color: var(--border); box-shadow: 0 2px 20px -10px rgba(16,32,55,.14); }
.nav{ display:flex; align-items:center; justify-content:space-between; padding: 16px 0; }
.brand{ display:flex; align-items:center; gap:10px; font-family: var(--font-display); font-weight:700; font-size:1.3rem; }
.brand-mark{ width:38px; height:38px; }
.brand-word b{ color: var(--navy); }
/* --orange (#FF8913) is 2.4:1 on white — fine for icons/backgrounds, not
   for text. --orange-deep already exists and passes at 4.8:1. */
.brand-word .up{ color: var(--orange-deep); }

.nav-links{ display:flex; align-items:center; gap: 24px; flex-wrap: nowrap; }
.nav-links a{ font-size: .93rem; font-weight: 700; color: var(--ink-soft); position: relative; padding: 6px 0; transition: color var(--dur-fast); white-space: nowrap; flex-shrink: 0; }
.nav-links a::after{ content:""; position:absolute; left:0; right:100%; bottom:0; height:2.5px; background: var(--orange); border-radius:2px; transition: right var(--dur-med) var(--ease); }
.nav-links a:hover{ color: var(--ink); }
.nav-links a:hover::after{ right:0; }

.nav-actions{ display:flex; align-items:center; gap:14px; }
.theme-toggle{ width:40px; height:40px; border-radius:50%; border:1.5px solid var(--border); display:flex; align-items:center; justify-content:center; transition: border-color var(--dur-fast); background: var(--surface); }
.theme-toggle:hover{ border-color: var(--orange); }
.theme-toggle svg{ width:18px; height:18px; }
.theme-toggle .sun{ display:none; }
:root[data-theme="dark"] .theme-toggle .moon{ display:none; }
:root[data-theme="dark"] .theme-toggle .sun{ display:block; }

.nav-burger{ display:none; width:42px; height:42px; border-radius: 50%; border:1.5px solid var(--border); align-items:center; justify-content:center; background: var(--surface); }
.nav-burger svg{ width:19px; height:19px; }

/* Mobil hesabım ikonu: masaüstünde metinli "Giriş Yap / Hesabım" butonu
   yeterince yer kaplıyor ama daralan başlıkta sadece ikon daha temiz duruyor. */
.nav-account-icon{ display:none; width:40px; height:40px; border-radius:50%; border:1.5px solid var(--border); align-items:center; justify-content:center; background: var(--surface); color: var(--ink-soft); flex-shrink:0; }
.nav-account-icon svg{ width:19px; height:19px; }

/* Gece modu artık mobilde başlıkta ayrı bir düğme değil, burger menünün
   içinde bir satır — küçük ekranda başlığı sadeleştirmek için. */
.theme-toggle-row{ display:none; }

.mobile-only{ display:none; }

@media (max-width: 940px){
  .nav-links{
    position: fixed; inset: 68px 16px auto 16px;
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
    flex-direction: column; align-items: stretch; padding: 10px; gap: 2px;
    box-shadow: var(--shadow-lg);
    transform-origin: top center; transform: scaleY(.9) translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
  }
  .nav-links.open{ opacity:1; transform: scaleY(1) translateY(0); pointer-events: auto; }
  .nav-links a{ padding: 12px 14px; border-radius: 10px; }
  .nav-links a:hover{ background: var(--surface-2); }
  .nav-links a::after{ display:none; }
  .nav-burger{ display:flex; }
  .desktop-only{ display:none !important; }
  .mobile-only{ display:flex; }
  .nav-account-icon{ display:flex; }

  .theme-toggle-row{ display:block; margin-top: 6px; padding-top: 8px; border-top: 1px solid var(--border); width:100%; text-align:left; }
  .theme-toggle-row-label{ display:flex; align-items:center; gap:10px; padding:10px 14px; border-radius:10px; color: var(--ink-soft); font-size:.93rem; font-weight:700; }
  .theme-toggle-row-label:hover{ background: var(--surface-2); }
  .theme-toggle-row svg{ width:18px; height:18px; flex-shrink:0; }
  .theme-toggle-row .sun{ display:none; }
  :root[data-theme="dark"] .theme-toggle-row .moon{ display:none; }
  :root[data-theme="dark"] .theme-toggle-row .sun{ display:block; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero{ padding: 64px 0 0; overflow: clip; background: var(--bg); }
.hero .wrap{ display:grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items:center; padding-bottom: 90px; }

.hero-copy h1{
  font-size: clamp(2.4rem, 1.8rem + 2.6vw, 3.6rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -0.01em; margin: 20px 0 22px;
}
.hero-copy h1 .hl{ position:relative; color: var(--orange-deep); white-space:nowrap; }
.hero-copy h1 .hl svg{ position:absolute; left:-2%; right:-2%; bottom:-16px; width:104%; height:auto; overflow:visible; color: var(--orange); z-index:-1; }
.hero-copy p.lede{ font-size: 1.13rem; color: var(--ink-soft); max-width: 46ch; margin-bottom: 32px; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom: 40px; }

.hero-trust{ display:flex; align-items:center; gap:14px; flex-wrap: wrap; }
.avatar-stack{ display:flex; }
.avatar-stack span{
  width:38px; height:38px; border-radius:50%; border:3px solid var(--bg);
  display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700; font-size:.76rem;
  margin-left:-12px;
}
.avatar-stack span:first-child{ margin-left:0; }
.hero-trust .trust-text b{ display:block; font-size:.86rem; }
.hero-trust .trust-text span{ font-size:.78rem; color: var(--ink-faint); }
.hero-trust .stars{ display:flex; gap:2px; color: var(--gold); margin-bottom:2px; }
.hero-trust .stars svg{ width:13px; height:13px; }

/* --- hero visual --- */
.hero-visual{ position:relative; padding: 20px; }
.hero-blob{ position:absolute; z-index:0; width: 120%; height:120%; top:-10%; left:-10%; background: radial-gradient(circle at 60% 30%, var(--orange-tint), transparent 60%), radial-gradient(circle at 20% 80%, var(--navy-tint), transparent 55%); pointer-events:none; }

.room-card{ background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-lg); position: relative; z-index: 2; }
.room-card-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; }
.room-title{ display:flex; align-items:center; gap:9px; font-weight:700; font-size:.92rem; }
.room-dot{ width:8px; height:8px; border-radius:50%; background: var(--green); box-shadow:0 0 0 3px var(--green-tint); }
.room-timer{ font-family: var(--font-mono); font-size:.78rem; color: var(--ink-faint); }

.room-grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap:12px; margin-bottom:16px; }
.tile{ aspect-ratio: 4/3; border-radius: var(--radius-sm); position:relative; display:flex; align-items:flex-end; padding:10px; overflow:hidden; color:#fff; font-weight:700; font-size:.82rem; }
.tile span{ position:relative; z-index:2; text-shadow: 0 1px 6px rgba(0,0,0,.35); }
.tile::before{ content:""; position:absolute; inset:0; }
.tile.t1::before{ background: linear-gradient(150deg, var(--orange), var(--orange-deep)); }
.tile.t2::before{ background: linear-gradient(150deg, var(--navy), var(--navy-deep)); }
.tile.t3::before{ background: linear-gradient(150deg, var(--gold), #A9762A); }
.tile.t4{ background: var(--surface-2); color: var(--ink); display:flex; align-items:center; justify-content:center; }
.tile.t4 span{ color: var(--ink-faint); font-weight:700; text-shadow:none; }
/* Static instead of animated — these two infinite-loop effects (expanding
   ring, bouncing wave bars) never settle, which kept Lighthouse's Speed
   Index counting the hero as "still changing" long after it's actually
   done loading. Same look, frozen mid-motion, zero ongoing repaint cost. */
.tile.speaking::after{ content:""; position:absolute; inset:0; border: 2.5px solid var(--orange); border-radius: var(--radius-sm); }
.wave{ position:absolute; top:10px; left:10px; display:flex; align-items:flex-end; gap:2.5px; height:16px; z-index:2; }
.wave i{ width:3px; background: #fff; border-radius:2px; }
.wave i:nth-child(1){ height:40%; }
.wave i:nth-child(2){ height:100%; }
.wave i:nth-child(3){ height:60%; }
.wave i:nth-child(4){ height:80%; }
.wave i:nth-child(5){ height:35%; }

.room-caption{ font-size:.84rem; color: var(--ink-soft); display:flex; align-items:center; gap:8px; }
.room-caption svg{ width:15px; height:15px; color: var(--orange); flex-shrink:0; }

@media (max-width: 980px){
  .hero .wrap{ grid-template-columns: 1fr; }
  .hero-visual{ max-width:480px; margin-inline:auto; width:100%; }
}

/* wave divider between hero and next section */
.wave-divider{ display:block; width:100%; line-height:0; }
.wave-divider svg{ width:100%; height:auto; display:block; }

/* ============================================================
   Stats band
   ============================================================ */
.stats{ background: var(--navy); color: #ECF3FA; padding: 56px 0; margin-top:-2px; }
.stats-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align:center; }
.stat-item b{ display:block; font-family: var(--font-display); font-size: clamp(1.7rem, 1.4rem + 1vw, 2.3rem); font-weight:700; font-variant-numeric: tabular-nums; color:#fff; }
.stat-item span{ font-size:.86rem; color:#ECF3FA; }
@media (max-width: 800px){ .stats-grid{ grid-template-columns: 1fr 1fr; row-gap: 32px; } }

/* ============================================================
   About / programs (Wellearn-style numbered image cards)
   ============================================================ */
.about{ padding: 100px 0; position:relative; overflow:hidden; }
.about-checker{
  position:absolute; top:-30px; left:-40px; width:380px; height:380px; z-index:0; pointer-events:none;
  background-image:
    linear-gradient(45deg, var(--surface-2) 25%, transparent 25%),
    linear-gradient(-45deg, var(--surface-2) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--surface-2) 75%),
    linear-gradient(-45deg, transparent 75%, var(--surface-2) 75%);
  background-size: 46px 46px;
  background-position: 0 0, 0 23px, 23px -23px, -23px 0;
  -webkit-mask-image: radial-gradient(circle at 30% 30%, #000 35%, transparent 72%);
  mask-image: radial-gradient(circle at 30% 30%, #000 35%, transparent 72%);
}
.eyebrow-squiggle{ display:inline-flex; flex-direction:column; align-items:stretch; color: var(--orange-deep); font-weight:800; font-size:1rem; margin-bottom:10px; white-space:nowrap; }
.eyebrow-squiggle svg{ width:100%; height:10px; margin-top:-4px; }
.about-head{ display:grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items:end; margin-bottom: 46px; position:relative; z-index:1; }
.about-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position:relative; z-index:1; margin-bottom: 32px; }
/* Skeleton shimmer while the lazy-loaded photo is still downloading — pure
   CSS, no JS needed to show it. Animating `transform` only (not
   background-position, which is main-thread/non-composited and was
   dragging the Performance score back down) keeps this on the GPU. */
@keyframes skeleton-shimmer{ 0%{ transform: translateX(-100%); } 100%{ transform: translateX(100%); } }
.about-card{
  position:relative; border-radius: var(--radius-lg); overflow:hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-md); transition: transform var(--dur-med) var(--ease);
  background: var(--surface-2);
}
.about-card::before{
  content:""; position:absolute; inset:0;
  background: linear-gradient(100deg, transparent 30%, var(--border) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: skeleton-shimmer 1.6s ease-in-out infinite;
}
/* script.js flips this on once the <img> actually finishes loading, so the
   shimmer stops running (invisibly, forever) once it's pointless. */
.about-card.is-loaded::before{ animation:none; display:none; }
.about-card:hover{ transform: translateY(-6px); }
/* position:relative (no z-index) is enough to paint this above ::before —
   both are auto-stacked, in tree order, and ::before comes first. */
.about-card img{ position:relative; width:100%; height:100%; object-fit:cover; display:block; }
.about-card::after{ content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(14,22,34,.85) 100%); }
.about-num{ position:absolute; top:14px; left:14px; z-index:2; width:34px; height:34px; border-radius:50%; background: var(--orange-deep); color:#fff; display:flex; align-items:center; justify-content:center; font-family: var(--font-mono); font-weight:700; font-size:.8rem; }
.about-card:nth-child(even) .about-num{ background: var(--navy-deep); }
.about-card-text{ position:absolute; left:16px; right:16px; bottom:14px; z-index:2; color:#fff; }
.about-card-text h3{ font-size:1.05rem; font-weight:700; color:#fff; margin-bottom:2px; }
.about-card-text span{ font-size:.78rem; color:#D7E0EE; }

.info-bar{ background: var(--surface); border:1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 28px; display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; box-shadow: var(--shadow-md); position:relative; z-index:1; }
.info-bar-left{ display:flex; align-items:center; gap:16px; }
.info-bar-icon{ width:52px; height:52px; border-radius:50%; background: var(--green-tint); color: var(--green); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.info-bar-icon svg{ width:24px; height:24px; }
.info-bar h4{ font-size:1.05rem; font-weight:700; }
.info-bar p{ font-size:.86rem; color: var(--ink-soft); margin-top:2px; }
@media (max-width: 980px){ .about-head{ grid-template-columns: 1fr; } .about-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .about-grid{ grid-template-columns: 1fr; } .info-bar{ flex-direction:column; align-items:flex-start; } }

/* ============================================================
   How it works
   ============================================================ */
.how{ padding: 100px 0; }
.steps{ display:grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; column-gap: 14px; align-items:stretch; }
.step-arrow{ display:flex; align-items:center; justify-content:center; color: var(--ink-faint); }
.step-arrow svg{ width:20px; height:20px; }
.step{
  background: var(--surface); border: 3px solid var(--accent-c); border-radius: var(--radius-lg);
  padding: 28px 24px 26px; display:flex; flex-direction:column; gap:12px; min-height: 240px;
  position:relative;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.step:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num{
  width:38px; height:38px; border-radius: 50%; background: var(--accent-c); color: var(--accent-ink-c);
  display:flex; align-items:center; justify-content:center; font-family: var(--font-mono); font-weight:700; font-size:.86rem;
  box-shadow: 0 8px 18px -8px var(--accent-c);
}
.step-icon{ position:absolute; top:26px; right:24px; width:40px; height:40px; border-radius: var(--radius-sm); background: var(--accent-c); color: var(--accent-ink-c); display:flex; align-items:center; justify-content:center; box-shadow: 0 8px 16px -8px var(--accent-c); }
.step-icon svg{ width:20px; height:20px; }
.step h3{ font-size:1.12rem; font-weight:700; margin-top:6px; }
.step p{ color: var(--ink-soft); font-size:.92rem; line-height:1.6; }
/* --accent-ink-c is chosen per swatch for real contrast, not a blanket white */
.step-c1{ --accent-c: var(--brand-orange); --accent-tint-c: var(--orange-tint); --accent-ink-c: #1E293B; }
.step-c2{ --accent-c: var(--navy); --accent-tint-c: var(--navy-tint); --accent-ink-c: #fff; }
.step-c3{ --accent-c: var(--gold); --accent-tint-c: #FBF0DA; --accent-ink-c: #1E293B; }
.step-c4{ --accent-c: var(--green); --accent-tint-c: var(--green-tint); --accent-ink-c: #1E293B; }
@media (max-width: 900px){ .steps{ grid-template-columns: 1fr 1fr; gap:22px; } .step-arrow{ display:none; } }
@media (max-width: 560px){ .steps{ grid-template-columns: 1fr; } }

/* ============================================================
   Services
   ============================================================ */
.services{ padding: 20px 0 100px; background: var(--bg-deep); }
.service-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card{
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), border-color var(--dur-med);
}
.service-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange-tint); }
.service-media{ position:relative; aspect-ratio: 16/11; }
.service-photo{ position:absolute; inset:0; overflow:hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.service-photo img{ width:100%; height:100%; object-fit:cover; transition: transform 500ms var(--ease); }
.service-card:hover .service-photo img{ transform: scale(1.06); }
.service-photo::after{ content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(14,22,34,.55) 100%); }
.service-icon{
  position:absolute; left:20px; bottom:-24px; z-index:2; width:56px; height:56px; border-radius: var(--radius-sm);
  background: var(--surface); color: var(--orange-deep); display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-md);
}
.service-icon svg{ width:26px; height:26px; }
.service-body{ padding: 40px 28px 28px; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.service-card h3{ font-size:1.28rem; font-weight:700; margin-bottom:10px; }
.service-card p{ color: var(--ink-soft); font-size:.95rem; line-height:1.65; margin-bottom:18px; }
@media (max-width: 900px){ .service-grid{ grid-template-columns: 1fr; } }

/* ============================================================
   Corporate references — logo slider. Real fetched logos sit on a
   fixed-white tile so brand colors stay correct in both themes; the
   few brands without a clean source logo get a matching text tile
   instead of a lower-quality or fabricated mark.
   ============================================================ */
.clients{ padding: 46px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.clients-label{ text-align:center; font-size:.8rem; font-weight:700; color: var(--ink-faint); text-transform:uppercase; letter-spacing:.06em; margin-bottom: 30px; }
.clients-marquee{ overflow:hidden; position:relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.clients-track{ display:flex; align-items:center; gap:20px; width:max-content; animation: scrollX 46s linear infinite; }
.clients-marquee:hover .clients-track{ animation-play-state: paused; }
.client-tile{
  flex-shrink:0; width:168px; height:76px; background:#FFFFFF; border:1px solid var(--border);
  border-radius: var(--radius-md); display:flex; align-items:center; justify-content:center; padding:16px 22px;
  box-shadow: var(--shadow-sm);
}
.client-tile img{ max-width:100%; max-height:34px; width:auto; height:auto; object-fit:contain; }
.client-tile.text-tile span{ font-family: var(--font-display); font-weight:800; font-size:1.05rem; color:#1B2430; letter-spacing:.01em; white-space:nowrap; }
.client-tile.text-tile span i{ font-style:normal; font-weight:600; color:#6B7280; }
@media (max-width:640px){ .client-tile{ width:140px; height:64px; padding:12px 16px; } .client-tile img{ max-height:26px; } .client-tile.text-tile span{ font-size:.92rem; } }

/* ============================================================
   Instructors
   ============================================================ */
.team{ padding: 20px 0 110px; }
.team-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.team-card{
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow:hidden;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.team-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo{ aspect-ratio: 1/1; position:relative; overflow:hidden; }
.team-photo img{ width:100%; height:100%; object-fit:cover; }
.tm1 .team-photo{ background: var(--orange-tint); }
.tm2 .team-photo{ background: var(--navy-tint); }
.tm3 .team-photo{ background: #FBF0DA; }
.tm4 .team-photo{ background: var(--green-tint); }
.team-body{ padding: 18px 20px 22px; }
.team-body h3{ font-size:1.05rem; font-weight:700; }
.team-role{ font-size:.8rem; color: var(--orange-deep); font-weight:700; margin: 3px 0 10px; }
.team-body p{ font-size:.86rem; color: var(--ink-soft); line-height:1.55; }
.team-note{ margin-top: 26px; font-size:.82rem; color: var(--ink-faint); text-align:center; }
@media (max-width: 980px){ .team-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .team-grid{ grid-template-columns: 1fr; } }

/* ============================================================
   Mission / wide photo (Wellearn-style)
   ============================================================ */
.mission-wide{ padding: 20px 0 110px; }
.mission-top{ display:grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items:center; margin-bottom: 40px; }
.mission-copy .section-sub{ margin-bottom: 20px; }
.check-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; }
.check-grid li{ display:flex; align-items:center; gap:9px; font-size:.92rem; font-weight:700; color: var(--ink); }
.check-grid svg{ width:19px; height:19px; color: var(--navy); flex-shrink:0; }
.mission-heading .section-title .hl{ position:relative; color: var(--orange-deep); white-space:nowrap; }
.mission-heading .section-title .hl svg{ position:absolute; left:-2%; right:-2%; bottom:-10px; width:104%; height:auto; color: var(--orange); z-index:-1; }
.mission-actions{ display:flex; align-items:center; gap:22px; margin-top:24px; flex-wrap:wrap; }
.mission-rating{ display:flex; align-items:baseline; gap:8px; }
.mission-rating b{ font-family: var(--font-display); font-size:1.7rem; font-weight:700; color: var(--orange-deep); }
.mission-rating span{ font-size:.82rem; color: var(--ink-faint); }

.mission-photo{ position:relative; border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/8; }
.mission-photo img{ width:100%; height:100%; object-fit:cover; }
.mission-photo-scrim{ position:absolute; inset:0; background: linear-gradient(100deg, rgba(14,22,34,.82) 0%, rgba(14,22,34,.5) 40%, transparent 68%); }
.mission-photo-overlay{ position:absolute; left:36px; bottom:36px; max-width:440px; color:#fff; }
.pill-tag{ display:inline-block; background: var(--orange-deep); color:#fff; font-size:.72rem; font-weight:800; letter-spacing:.03em; text-transform:uppercase; padding:6px 14px; border-radius: var(--radius-pill); margin-bottom:14px; }
.mission-photo-overlay h3{ font-family: var(--font-display); font-size:1.7rem; font-weight:700; color:#fff; margin-bottom:10px; }
.mission-photo-overlay p{ font-size:.92rem; color:#E7ECF4; line-height:1.6; margin-bottom:20px; }
.mission-photo-actions{ display:flex; gap:12px; flex-wrap:wrap; }
.btn-outline.light{ background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); color:#fff; }
.btn-outline.light:hover{ background: rgba(255,255,255,.18); border-color:#fff; color:#fff; }
@media (max-width: 900px){
  .mission-top{ grid-template-columns: 1fr; }
  .mission-photo{ aspect-ratio: 4/5; }
  .mission-photo-overlay{ left:24px; right:24px; bottom:24px; max-width:none; }
}
@media (max-width: 560px){ .check-grid{ grid-template-columns: 1fr; } }

/* ============================================================
   Featured testimonial (Wellearn-style)
   ============================================================ */
.feature-testi{ padding: 20px 0 110px; background: var(--bg-deep); }
.feature-testi-grid{ display:grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items:center; }
.partner-stat{ display:flex; align-items:center; gap:16px; margin-top:28px; }
.partner-stat p{ font-size:.92rem; color: var(--ink-soft); }
.partner-stat b{ color: var(--ink); }

.feature-testi-card{ position:relative; display:grid; grid-template-columns: 150px 1fr; grid-template-rows: auto auto; column-gap: 22px; row-gap: 14px; align-items:start; }
.ftc-photo{ grid-column:1; grid-row:1; width:150px; height:150px; border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-md); background: var(--orange-tint); }
.ftc-photo img{ width:100%; height:100%; object-fit:cover; }
.ftc-dots{ grid-column:1; grid-row:2; display:flex; justify-content:center; gap:8px; }
.ftc-dots button{ width:9px; height:9px; border-radius:50%; background: var(--border); cursor:pointer; transition: background var(--dur-fast), transform var(--dur-fast); }
.ftc-dots button.active{ background: var(--orange-deep); transform: scale(1.2); }
.ftc-quote{ grid-column:2; grid-row: 1/3; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 30px; position:relative; box-shadow: var(--shadow-sm); align-self:stretch; display:flex; flex-direction:column; justify-content:center; }
.ftc-mark{ position:absolute; top:6px; right:22px; font-family: var(--font-display); font-size:5rem; line-height:1; color: var(--surface-2); z-index:0; }
.ftc-quote h4, .ftc-quote .ftc-role, .ftc-quote p, .ftc-quote .stars{ position:relative; z-index:1; }
.ftc-quote h4{ font-size:1.05rem; font-weight:700; }
.ftc-role{ display:block; font-size:.78rem; color: var(--orange-deep); font-weight:700; margin: 2px 0 12px; }
.ftc-quote p{ font-size:.92rem; color: var(--ink-soft); line-height:1.65; margin-bottom:14px; min-height: 3.3em; }
@media (max-width: 980px){ .feature-testi-grid{ grid-template-columns: 1fr; } }
@media (max-width: 560px){
  .feature-testi-card{ grid-template-columns: 1fr; }
  .ftc-photo{ grid-column:1; grid-row: 1; width:100%; height:180px; }
  .ftc-dots{ grid-column:1; grid-row:2; margin-bottom:6px; }
  .ftc-quote{ grid-column:1; grid-row:3; }
}

/* ============================================================
   Pricing
   ============================================================ */
.pricing{ padding: 20px 0 110px; background: var(--bg-deep); }
/* Başlık bölümü (eyebrow+başlık+alt yazı+sekme) fazla yer kaplayıp
   #paketler'e scroll edince kartlar ekranın altında kalıyordu — alt
   yazı da 48ch sınırına takılıp 2 satıra bölünüyordu, tek satıra
   sığdırıyoruz. */
.pricing .section-head{ margin-bottom: 30px; gap: 10px; }
/* ch birimiyle tahmin yürütmek yerine sınırı tamamen kaldırıyoruz — bu
   cümlenin tek satıra sığması garanti olsun; dar (mobil) ekranlarda
   zaten .wrap'in kendisi darlaşınca doğal olarak sarıyor, sorun değil. */
.pricing .section-sub{ max-width: none; }
.pricing .pricing-toggle{ margin-top: 2px; }
.pricing-toggle{ display:inline-flex; padding:5px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-pill); gap:4px; margin-top: 6px; }
.pricing-toggle button{ padding: 10px 22px; border-radius: var(--radius-pill); font-size:.88rem; font-weight:700; color: var(--ink-soft); transition: background var(--dur-fast), color var(--dur-fast), box-shadow var(--dur-fast); }
.pricing-toggle button.active{ background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }

.plan-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan-grid-5{ grid-template-columns: repeat(3, 1fr); }
.plan-grid-5 .plan{ min-width: 0; }
@media (min-width: 981px){ .plan-grid-5{ grid-template-columns: repeat(5, 1fr); } .plan-grid-5 .plan{ padding: 26px 20px; } .plan-grid-5 .plan-name{ font-size: 1.1rem; } .plan-grid-5 .price b{ font-size: 1.7rem; } }
/* "Grup Dersi" sekmesi az sayıda (bugün tek) paket taşıyor — sabit
   repeat(N,1fr) grid'i tek kartı sola yapışık, dar bırakıyordu. Kart
   sayısına göre kendi genişliğinde ortalanan bir düzene geçiyoruz. */
.plan-grid[data-view="grup"]{ grid-template-columns: repeat(auto-fit, minmax(260px, 340px)); justify-content: center; }
.plan{ background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px 30px; display:flex; flex-direction:column; position:relative; transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease); }
/* .plan sets its own `display`, which — per the cascade — beats the
   browser's default [hidden]{display:none} even though that rule has
   equal specificity, because author CSS always outranks the UA
   stylesheet. Without this line, toggling data-plan-view via JS did
   nothing visible: every plan stayed on screen regardless of the
   `hidden` attribute JS was setting correctly. */
.plan[hidden]{ display:none; }
.plan:hover{ transform: translateY(-4px); }
.plan.featured{ background: var(--navy); color: #F1F6FC; border-color: var(--navy); box-shadow: var(--shadow-lg); }
.plan.featured .plan-desc, .plan.featured .price small, .plan.featured .feat li{ color: #ECF3FA; }
.plan.featured .feat svg{ color: var(--orange); }
.plan-badge{ position:absolute; top:-13px; left:30px; background: var(--orange); color: var(--on-accent); font-size:.72rem; font-weight:800; letter-spacing:.03em; padding: 6px 14px; border-radius: var(--radius-pill); text-transform:uppercase; }
/* "featured" rozetiyle çakışmasın diye ayrı bir renk/konum — bir paket
   ikisini de taşıyabilir (öne çıkan VE grup dersine dahil). */
.plan-group-tag{ display:inline-block; margin-bottom:14px; padding:5px 12px; border-radius: var(--radius-pill); background: var(--green-tint); color: var(--green); font-size:.76rem; font-weight:800; }
.plan.featured .plan-group-tag{ background: rgba(255,255,255,.14); color: #ECF3FA; }
.plan-name{ font-family: var(--font-display); font-size:1.35rem; font-weight:700; margin-bottom:6px; }
.plan-desc{ font-size:.88rem; color: var(--ink-faint); margin-bottom:22px; min-height:38px; }
/* Fiyat notu (taksit, "kişi başı") fiyatın yanına değil altına iner:
   yan yana dizilince uzun notlar sarıp kartların hizasını bozuyordu. */
.price{ display:flex; flex-direction:column; align-items:flex-start; gap:2px; margin-bottom: 26px; min-height:66px; }
.price b{ font-family: var(--font-display); font-size:2.3rem; font-weight:700; font-variant-numeric: tabular-nums; line-height:1.1; }
.price small{ font-size:.85rem; color: var(--ink-faint); line-height:1.4; }
/* Uzun paket adları da kartı bozmasın. */
.plan-name{ overflow-wrap:anywhere; }
.feat{ display:flex; flex-direction:column; gap:12px; margin-bottom: 30px; flex:1; }
.feat li{ display:flex; gap:10px; font-size:.9rem; color: var(--ink-soft); align-items:flex-start; }
.feat svg{ width:18px; height:18px; color: var(--orange-deep); flex-shrink:0; margin-top:1px; }
.plan.featured .btn-outline{ border-color: rgba(255,255,255,.3); color:#fff; background:transparent; }
.plan.featured .btn-outline:hover{ background: rgba(255,255,255,.12); border-color:#fff; }

.pricing-note{ margin-top: 22px; font-size:.82rem; color: var(--ink-faint); text-align:center; }
@media (max-width: 980px){ .plan-grid{ grid-template-columns: 1fr; } }

/* ---------- Generic confirm/checkout modal (also used by hesabim.html) ---------- */
.confirm-modal{ position:fixed; inset:0; z-index:200; display:none; align-items:center; justify-content:center; padding:20px; background: rgba(14,22,34,.5); }
.confirm-modal.show{ display:flex; }
.confirm-box{ background: var(--surface); border-radius: var(--radius-lg); padding:28px; width:min(400px,100%); box-shadow: var(--shadow-lg); }
.confirm-box h3{ font-size:1.1rem; font-weight:700; margin-bottom:10px; }
.confirm-box p{ font-size:.9rem; color: var(--ink-soft); margin-bottom:22px; line-height:1.6; }
.confirm-actions{ display:flex; gap:12px; }
.confirm-actions .btn{ flex:1; }

.checkout-box{ width:min(440px,100%); }
.checkout-summary{ display:flex; align-items:center; justify-content:space-between; background: var(--surface-2); border-radius: var(--radius-sm); padding:14px 16px; margin-bottom:18px; font-weight:700; }
.checkout-summary b{ font-family: var(--font-display); color: var(--orange-deep); }
.checkout-box .field{ margin-bottom:14px; }
.auth-row-2{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
@media (max-width:480px){ .auth-row-2{ grid-template-columns: 1fr; } }
.checkout-note{ font-size:.78rem; color: var(--ink-faint); margin-bottom:20px; line-height:1.5; }
.checkout-success-icon{ width:56px; height:56px; border-radius:50%; background: var(--green-tint); color: var(--green); display:flex; align-items:center; justify-content:center; margin: 0 auto 18px; }
.checkout-success-icon svg{ width:28px; height:28px; }
#checkoutStepSuccess{ text-align:center; }
#checkoutStepSuccess p{ margin-bottom:20px; }

/* ============================================================
   Blog
   ============================================================ */
.blog{ padding: 20px 0 110px; }
.blog-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
.post{ background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display:flex; flex-direction:column; transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease); }
.post:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post-media{ aspect-ratio: 16/10; position:relative; display:flex; align-items:center; justify-content:center; padding: 26px; overflow:hidden; }
.post-media h4{ position:relative; z-index:2; color:#fff; font-family: var(--font-display); font-size:1.4rem; line-height:1.25; text-align:center; font-weight:700; text-wrap:balance; }
.post-media::before{ content:""; position:absolute; inset:0; opacity:.95; }
/* Gerçek kapak görseli varsa (bkz. script.js — ana sayfa blog şeridi)
   dekoratif gradient katmanı çekiliyor, yoksa görselin üstünü örterdi. */
.post-media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:1; }
.post-media:has(img)::before{ opacity:0; }
.post1 .post-media::before{ background: linear-gradient(155deg, var(--orange), var(--orange-deep)); }
.post2 .post-media::before{ background: linear-gradient(155deg, var(--navy), var(--navy-deep)); }
.post3 .post-media::before{ background: linear-gradient(155deg, var(--gold), #8A6420); }
.post-body{ padding: 22px 24px 26px; display:flex; flex-direction:column; gap:12px; flex:1; }
.post-tag{ font-family: var(--font-mono); font-size:.7rem; letter-spacing:.08em; text-transform:uppercase; color: var(--orange-deep); font-weight:700; }
.post-body h3{ font-size:1.1rem; font-weight:700; line-height:1.35; }
.post-body p{ color: var(--ink-soft); font-size:.88rem; line-height:1.6; flex:1; }
.post-meta{ display:flex; align-items:center; justify-content:space-between; padding-top:6px; border-top:1px solid var(--border); font-size:.78rem; color: var(--ink-faint); }
@media (max-width: 900px){ .blog-grid{ grid-template-columns: 1fr; } }

/* ============================================================
   Testimonials
   ============================================================ */
.reviews{ padding: 20px 0 110px; background: var(--bg-deep); }
.review-summary{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin-bottom: 44px; font-family: var(--font-display); font-weight:700; font-size:1.15rem; }
.stars{ display:flex; gap:3px; color: var(--gold); }
.stars svg{ width:18px; height:18px; }
.review-source{ display:inline-flex; align-items:center; gap:7px; font-size:.78rem; font-weight:700; color: var(--ink-soft); background: var(--surface); border:1px solid var(--border); padding:7px 13px; border-radius: var(--radius-pill); margin-left:auto; font-family: var(--font-body); }
.review-source svg{ width:15px; height:15px; }

.marquee{ overflow:hidden; position:relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track{ display:flex; gap:20px; width:max-content; animation: scrollX 62s linear infinite; }
.marquee:hover .marquee-track{ animation-play-state: paused; }
@keyframes scrollX{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

.review-card{ width: 340px; flex-shrink:0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; display:flex; flex-direction:column; gap:14px; }
.review-top{ display:flex; align-items:center; gap:12px; }
.avatar{ width:42px; height:42px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700; font-size:.9rem; flex-shrink:0; }
.review-who{ display:flex; flex-direction:column; }
.review-who b{ font-size:.9rem; }
.review-who span{ font-size:.76rem; color: var(--ink-faint); }
.review-card p{ font-size:.9rem; color: var(--ink-soft); line-height:1.65; flex:1; }
.review-card .stars{ margin-top:auto; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band{
  background: var(--navy); color: #F1F6FC; border-radius: var(--radius-lg); margin: 0 auto 110px;
  padding: 60px 48px; display:flex; align-items:center; justify-content:space-between; gap: 30px; flex-wrap:wrap;
  position:relative; overflow:hidden;
}
.cta-band::before{ content:""; position:absolute; width:340px; height:340px; border-radius:50%; background: radial-gradient(circle, rgba(var(--orange-rgb),.35), transparent 70%); top:-120px; right:-80px; }
.cta-band h2{ color:#fff; font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.2rem); font-weight:700; max-width: 22ch; position:relative; z-index:1; }
.cta-band p{ color:#ECF3FA; margin-top:10px; max-width:40ch; position:relative; z-index:1; }
.cta-actions{ display:flex; gap:14px; position:relative; z-index:1; flex-wrap:wrap; }
.cta-band .btn-outline{ border-color: rgba(255,255,255,.32); color:#fff; background:transparent; }
.cta-band .btn-outline:hover{ background: rgba(255,255,255,.12); border-color:#fff; }

/* ============================================================
   Contact
   ============================================================ */
.contact{ padding: 0 0 110px; }
.contact-grid{ display:grid; grid-template-columns: 1fr 1.1fr; gap: 56px; }
.contact-info{ display:flex; flex-direction:column; gap:26px; }
.contact-heading{ display:flex; flex-direction:column; gap:14px; margin-bottom:6px; }
.info-row{ display:flex; gap:14px; align-items:flex-start; }
.info-icon{ width:44px; height:44px; border-radius: var(--radius-sm); background: var(--surface-2); color: var(--orange-deep); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.info-icon svg{ width:20px; height:20px; }
.info-row h4{ font-size:.95rem; font-weight:700; margin-bottom:3px; }
.info-row p, .info-row a{ font-size:.9rem; color: var(--ink-soft); }
.info-row a:hover{ color: var(--orange-deep); }
.socials{ display:flex; gap:10px; }
.socials a{ width:42px; height:42px; border-radius:50%; border:1.5px solid var(--border); display:flex; align-items:center; justify-content:center; transition: border-color var(--dur-fast), color var(--dur-fast), transform var(--dur-fast); background: var(--surface); }
.socials a:hover{ border-color: var(--orange); color: var(--orange-deep); transform: translateY(-3px); }
.socials svg{ width:18px; height:18px; }

.contact-form{ background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-md); }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; margin-bottom:16px; }
.field{ display:flex; flex-direction:column; gap:7px; }
.field.full{ grid-column: 1/-1; }
.field label{ font-size:.8rem; font-weight:700; color: var(--ink-soft); }
.field input, .field textarea{ background: var(--surface-2); border: 1.5px solid transparent; border-radius: var(--radius-sm); padding: 13px 15px; font-size:.92rem; transition: border-color var(--dur-fast), background var(--dur-fast); }
.field input:focus, .field textarea:focus{ border-color: var(--orange); background: var(--surface); outline:none; }
.field textarea{ resize: vertical; min-height:100px; }
.form-note{ font-size:.78rem; color: var(--ink-faint); margin-top:14px; text-align:center; }
.form-success{ display:none; align-items:center; gap:10px; background: var(--green-tint); color: var(--green); padding:14px 16px; border-radius: var(--radius-sm); font-size:.88rem; font-weight:700; margin-bottom:16px; }
.form-success.show{ display:flex; }
.form-success svg{ width:18px; height:18px; flex-shrink:0; }
.map-card{ grid-column: 1/-1; border-radius: var(--radius-lg); overflow:hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); margin-top: 8px; }
.map-card iframe{ display:block; filter: grayscale(.15) contrast(1.02); }
/* Facade: Google's map iframe is a genuinely heavy third-party embed (its
   own JS bundle + tiles), so it only loads once someone actually asks for
   it — not automatically on every page view. Styled to read as a real
   "open the map" card rather than an inert gray placeholder box: a soft
   grid pattern stands in for map tiles, a pin marks the spot, and the
   label is an actual pill button rather than plain text. */
.map-facade{
  position:relative; width:100%; height:320px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px;
  border:0; cursor:pointer; font: inherit; overflow:hidden;
  background:
    radial-gradient(circle at 1px 1px, var(--border) 1.5px, transparent 0) 0 0/28px 28px,
    linear-gradient(160deg, var(--navy-tint), var(--surface-2) 70%);
  transition: filter var(--dur-fast);
}
.map-facade:hover{ filter: brightness(0.97); }
.map-facade-pin{
  width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background: var(--orange); color:#fff; box-shadow: 0 10px 24px -8px rgba(var(--orange-rgb),.55);
}
.map-facade-pin svg{ width:26px; height:26px; }
.map-facade b{ font-family: var(--font-display); font-size:1rem; color: var(--ink); font-weight:700; }
.map-facade-cta{
  font-size:.82rem; font-weight:700; color: var(--navy-deep); background: var(--surface);
  padding:8px 18px; border-radius: var(--radius-pill); border:1px solid var(--border); box-shadow: var(--shadow-sm);
}
.map-facade:hover .map-facade-cta{ border-color: var(--navy); }
@media (max-width: 900px){ .contact-grid{ grid-template-columns: 1fr; } }
@media (max-width: 560px){ .form-row{ grid-template-columns: 1fr; } }

/* ============================================================
   Footer
   ============================================================ */
footer.site{ border-top: 1px solid var(--border); padding: 54px 0 30px; background: var(--bg-deep); }
.footer-grid{ display:grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; margin-bottom: 44px; }
.footer-brand p{ color: var(--ink-faint); font-size:.88rem; margin-top:14px; max-width:32ch; line-height:1.6; }
.footer-col h5{ font-size:.78rem; text-transform:uppercase; letter-spacing:.08em; color: var(--ink-faint); margin-bottom:16px; font-weight:700; }
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:.9rem; color: var(--ink-soft); transition: color var(--dur-fast); }
.footer-col a:hover{ color: var(--orange-deep); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:26px; border-top:1px solid var(--border); font-size:.82rem; color: var(--ink-faint); flex-wrap:wrap; gap:12px; }
.footer-bottom .tag{ font-family: var(--font-mono); }
@media (max-width: 800px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .footer-grid{ grid-template-columns: 1fr; } }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal{ opacity:0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity:1; transform: translateY(0); }
.reveal-stagger > *{ transition-delay: calc(var(--i, 0) * 70ms); }

/* ---------- Checkout: ödeme yöntemi seçimi ---------- */
.pay-methods{ display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:18px; }
.pay-method{
  padding:13px 14px; cursor:pointer; text-align:left;
  background: var(--surface-2); border:1.5px solid transparent; border-radius: var(--radius-sm);
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.pay-method b{ display:block; font-size:.9rem; }
.pay-method small{ display:block; font-size:.74rem; color: var(--ink-faint); margin-top:2px; }
.pay-method.is-active{ border-color: var(--orange); background: var(--orange-tint); }
.pay-method.is-active b{ color: var(--orange-deep); }
.pay-method:focus-visible{ outline:2px solid var(--orange); outline-offset:2px; }
@media (max-width:400px){ .pay-methods{ grid-template-columns:1fr; } }

.bank-box{
  background: var(--surface-2); border:1px solid var(--border);
  border-radius: var(--radius-sm); padding:16px; margin-bottom:14px;
  font-size:.86rem; color: var(--ink-faint);
}
.bank-row{ display:flex; justify-content:space-between; gap:14px; padding:6px 0; }
.bank-row span{ color: var(--ink-faint); }
.bank-row b{ color: var(--ink); text-align:right; overflow-wrap:anywhere; }
.bank-iban{ font-family: var(--font-mono); letter-spacing:.02em; }

.bank-copy{ display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:14px; }
.bank-copy .btn{ width:100%; }
.bank-copy .btn.is-copied{ border-color: var(--green); color: var(--green); }
@media (max-width:400px){ .bank-copy{ grid-template-columns:1fr; } }
