/* ==========================================================================
   Zihin Kampüs — v11 (Çocuk-Dostu / Eğlenceli & Renkli / Maskotlu)
   Ağırlıklı çocuk: Hızlı Okuma + İngilizce. Maskot: Baykuş "Bilge".
   ========================================================================== */

/* ----------  1. Tokens  ---------- */
:root {
  --bg:      #FFFFFF;
  --cream:   #FFF8EC;
  --sky-bg:  #EEF3FF;
  --mint-bg: #E8FBF4;
  --ink:     #232A52;
  --ink-2:   #434A78;
  --cobalt:  #3457FF;
  --cobalt-d:#2342E6;
  --cobalt-soft:#E6EBFF;
  --yellow:  #FFC83C;
  --yellow-d:#F0B41F;
  --coral:   #FF6F61;
  --coral-d: #F0594A;
  --mint:    #2FD3A5;
  --mint-d:  #1FBB8E;
  --purple:  #9B6DFF;
  --purple-d:#854FF0;
  --sky:     #38C6F4;
  --pink:    #FF8AC2;
  --muted:   #6B7099;
  --muted-2: #9AA0C0;
  --line:    #ECEAF6;
  --line-2:  #DCDDEE;

  --ff-display: "Baloo 2", system-ui, sans-serif;
  --ff-sans:    "Nunito", system-ui, sans-serif;

  --container: 1180px;
  --r: 18px;
  --r-lg: 30px;
  --r-pill: 100px;
  --sh-sm: 0 4px 14px rgba(35,42,82,.07);
  --sh-md: 0 14px 30px rgba(53,87,255,.10), 0 8px 18px rgba(35,42,82,.06);
  --sh-lg: 0 26px 56px rgba(35,42,82,.14);
  --sh-cobalt: 0 12px 26px rgba(53,87,255,.34);
  --sh-yellow: 0 12px 26px rgba(255,200,60,.4);
}

/* ----------  2. Base  ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--ff-sans); color: var(--ink-2); background: var(--bg); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; font-weight: 500; }
h1,h2,h3,h4 { font-family: var(--ff-display); font-weight: 600; line-height: 1.18; letter-spacing: 0; color: var(--ink); }
a { text-decoration: none; color: inherit; transition: color .2s ease; }
img,svg { max-width: 100%; }
ul { list-style: none; }
strong { color: var(--ink); font-weight: 700; }
em { font-style: normal; color: var(--cobalt); font-weight: 700; }
::selection { background: var(--yellow); color: var(--ink); }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: 100px 0; }
.section.tight { padding: 64px 0; }
.bg-cream { background: var(--cream); }
.bg-sky { background: var(--sky-bg); }

/* başlık bloğu */
.sec-head { max-width: 700px; margin: 0 auto 56px; text-align: center; }
.kicker { display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-display); font-weight: 600; font-size: .92rem; color: var(--cobalt); background: var(--cobalt-soft); padding: 8px 18px; border-radius: var(--r-pill); margin-bottom: 18px; }
.kicker.k-yellow { color: var(--yellow-d); background: #FFF3D4; }
.kicker.k-coral { color: var(--coral-d); background: #FFE7E3; }
.kicker.k-mint { color: var(--mint-d); background: var(--mint-bg); }
.kicker.k-purple { color: var(--purple-d); background: #F0E9FF; }
.sec-title { font-size: clamp(1.9rem, 3.8vw, 2.85rem); line-height: 1.18; }
.sec-title .c { color: var(--cobalt); } .sec-title .y { color: var(--yellow-d); } .sec-title .co { color: var(--coral); } .sec-title .m { color: var(--mint-d); }
.sec-lead { color: var(--muted); font-size: 1.12rem; margin-top: 14px; }

/* ----------  3. Butonlar  ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--ff-display); font-weight: 600; font-size: 1.04rem; padding: 15px 28px; border-radius: var(--r-pill); border: none; cursor: pointer; transition: transform .16s ease, box-shadow .2s, background .2s, color .2s; line-height: 1; white-space: nowrap; }
.btn .ar { transition: transform .25s ease; }
.btn:hover .ar { transform: translateX(4px); }
.btn-primary { background: var(--cobalt); color: #fff; box-shadow: var(--sh-cobalt); }
.btn-primary:hover { background: var(--cobalt-d); color: #fff; transform: translateY(-3px); box-shadow: 0 18px 34px rgba(53,87,255,.42); }
.btn-yellow { background: var(--yellow); color: var(--ink); box-shadow: var(--sh-yellow); }
.btn-yellow:hover { background: var(--yellow-d); color: var(--ink); transform: translateY(-3px); }
.btn-coral { background: var(--coral); color: #fff; box-shadow: 0 12px 26px rgba(255,111,97,.38); }
.btn-coral:hover { background: var(--coral-d); color: #fff; transform: translateY(-3px); }
.btn-white { background: #fff; color: var(--cobalt); box-shadow: var(--sh-sm); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--sh-md); color: var(--cobalt-d); }
.btn-ghost { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 2px var(--line-2); }
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--cobalt); color: var(--cobalt); transform: translateY(-3px); }
.btn-ghost.on-dark { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.4); }
.btn-ghost.on-dark:hover { background: rgba(255,255,255,.12); color: #fff; box-shadow: inset 0 0 0 2px #fff; }
.btn-lg { padding: 18px 34px; font-size: 1.12rem; }
.btn-block { width: 100%; }
.txtlink { font-family: var(--ff-display); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; color: var(--cobalt); }
.txtlink .ar { transition: transform .25s; } .txtlink:hover { color: var(--cobalt-d); } .txtlink:hover .ar { transform: translateX(4px); }

/* ----------  4. Üst şerit  ---------- */
.topbar { background: var(--ink); color: #b9bee0; font-size: .85rem; font-weight: 600; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding-block: 9px; gap: 16px; }
.topbar a { color: #cfd3ee; } .topbar a:hover { color: var(--yellow); }
.topbar .tb-left { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.topbar .tb-left i { color: var(--yellow); margin-right: 7px; }
.topbar .tb-right { display: flex; gap: 14px; align-items: center; }
.topbar .tb-phone { font-weight: 700; color: #fff; } .topbar .tb-phone i { color: var(--yellow); }
.topbar .tb-right .so { display: flex; gap: 9px; }

/* ----------  5. Navbar  ---------- */
.nav { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.92); backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid var(--line); transition: padding .3s, box-shadow .3s; }
.nav.scrolled { box-shadow: var(--sh-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; transition: padding .3s; }
.nav.scrolled .nav-inner { padding: 9px 0; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand .mk { width: 46px; height: 46px; border-radius: 15px; background: var(--cobalt); display: grid; place-items: center; box-shadow: var(--sh-cobalt); transform: rotate(-4deg); transition: transform .25s; }
.brand:hover .mk { transform: rotate(0deg) scale(1.05); }
.brand .mk svg { width: 30px; height: 30px; }
.brand .bt { line-height: 1.05; }
.brand .bt b { font-family: var(--ff-display); font-weight: 700; font-size: 1.34rem; color: var(--ink); letter-spacing: -.02em; display: block; }
.brand .bt span { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; }
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu a { font-weight: 700; font-size: .96rem; color: var(--ink-2); padding: 9px 15px; border-radius: var(--r-pill); }
.nav-menu a:hover { color: var(--cobalt); background: var(--cobalt-soft); }
.nav-menu a.active { color: var(--cobalt); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-family: var(--ff-display); font-weight: 600; font-size: .96rem; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.nav-phone i { color: var(--cobalt); }
.nav-toggle { display: none; width: 48px; height: 48px; border: none; background: var(--cobalt-soft); border-radius: 14px; font-size: 1.2rem; color: var(--cobalt); cursor: pointer; }

/* ----------  6. Hero  ---------- */
.hero { position: relative; padding: 64px 0 86px; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background:
  radial-gradient(760px 420px at 88% 8%, #FFF1CF 0%, transparent 60%),
  radial-gradient(640px 420px at 4% 30%, #E4ECFF 0%, transparent 58%); }
/* dekor şekiller */
.hero .blob { position: absolute; border-radius: 50%; z-index: -1; filter: blur(2px); opacity: .5; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 40px; align-items: center; }
.hero-pill { display: inline-flex; align-items: center; gap: 9px; font-family: var(--ff-display); font-weight: 600; font-size: .92rem; color: var(--ink-2); background: #fff; padding: 7px 16px 7px 8px; border-radius: var(--r-pill); box-shadow: var(--sh-sm); }
.hero-pill .tg { font-size: .72rem; font-weight: 700; color: #fff; background: var(--coral); padding: 4px 11px; border-radius: var(--r-pill); }
.hero h1 { font-size: clamp(2.4rem, 4.8vw, 3.9rem); line-height: 1.12; letter-spacing: 0; margin: 18px 0 0; font-weight: 700; }
.hero h1 .c { color: var(--cobalt); } .hero h1 .y { color: var(--yellow-d); }
.hero h1 .wig { position: relative; white-space: nowrap; }
.hero h1 .wig svg { position: absolute; left: 0; right: 0; bottom: -.18em; width: 100%; height: .26em; }
.hero-sub { font-size: 1.18rem; color: var(--muted); max-width: 48ch; margin: 22px 0 0; font-weight: 600; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 0; align-items: center; }
.hero-note { font-size: .92rem; color: var(--muted); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; }
.hero-note i { color: var(--mint-d); }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 32px; padding-top: 26px; border-top: 2px dashed var(--line-2); }
.hero-trust .avs { display: flex; }
.hero-trust .avs span { width: 42px; height: 42px; border-radius: 50%; margin-left: -12px; border: 3px solid #fff; display: grid; place-items: center; font-family: var(--ff-display); font-weight: 700; font-size: .82rem; color: #fff; }
.hero-trust .avs span:nth-child(1){background:var(--coral);} .hero-trust .avs span:nth-child(2){background:var(--mint);} .hero-trust .avs span:nth-child(3){background:var(--purple);} .hero-trust .avs span:nth-child(4){background:var(--cobalt);} .hero-trust .avs span:first-child{margin-left:0;}
.hero-trust .stars { color: var(--yellow); font-size: .95rem; letter-spacing: 1px; }
.hero-trust small { color: var(--muted); display: block; font-size: .88rem; font-weight: 600; }
.hero-trust strong { color: var(--ink); }

/* hero maskot alanı */
.hero-art { position: relative; display: grid; place-items: center; }
.hero-art .mascot { width: 100%; max-width: 520px; height: auto; display: block; }
.mascot-arm { transform-box: fill-box; transform-origin: 50% 12%; animation: wave 2.6s ease-in-out infinite; }
@keyframes wave { 0%,100%{ transform: rotate(0deg);} 50%{ transform: rotate(18deg);} }
.float-bubble { position: absolute; background: #fff; border-radius: 18px; padding: 11px 16px; box-shadow: var(--sh-md); font-family: var(--ff-display); font-weight: 600; display: flex; align-items: center; gap: 10px; z-index: 4; }
.float-bubble .ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; color: #fff; font-size: 1rem; flex: 0 0 auto; }
.float-bubble b { display: block; font-size: 1.06rem; line-height: 1; color: var(--ink); }
.float-bubble small { color: var(--muted); font-size: .76rem; font-weight: 600; }
.fb-a { top: 8%; left: -2%; animation: floaty 5s ease-in-out infinite; }
.fb-a .ic { background: var(--mint); }
.fb-b { bottom: 12%; right: -3%; animation: floaty 5s ease-in-out infinite 1.6s; }
.fb-b .ic { background: var(--coral); }
@keyframes floaty { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-12px);} }

/* ----------  7. Trust / mini istatistik şeridi  ---------- */
.trust { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; padding: 26px 0; }
.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-item .ic { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; font-size: 1.2rem; color: #fff; flex: 0 0 auto; }
.trust-item:nth-child(1) .ic{background:var(--cobalt);} .trust-item:nth-child(2) .ic{background:var(--coral);} .trust-item:nth-child(3) .ic{background:var(--mint);} .trust-item:nth-child(4) .ic{background:var(--purple);}
.trust-item strong { display: block; font-family: var(--ff-display); font-size: 1.02rem; color: var(--ink); }
.trust-item small { color: var(--muted); font-size: .84rem; font-weight: 600; }

/* ----------  8. İstatistik kartları  ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat { text-align: center; padding: 34px 18px; border-radius: var(--r-lg); background: #fff; box-shadow: var(--sh-sm); border: 2px solid var(--line); }
.stat:nth-child(1){ background: var(--cobalt-soft); border-color: transparent; }
.stat:nth-child(2){ background: #FFF3D4; border-color: transparent; }
.stat:nth-child(3){ background: var(--mint-bg); border-color: transparent; }
.stat:nth-child(4){ background: #F0E9FF; border-color: transparent; }
.stat .n { font-family: var(--ff-display); font-weight: 700; font-size: clamp(2.3rem,4vw,3rem); line-height: 1; color: var(--ink); }
.stat:nth-child(1) .n .s{color:var(--cobalt);} .stat:nth-child(2) .n .s{color:var(--yellow-d);} .stat:nth-child(3) .n .s{color:var(--mint-d);} .stat:nth-child(4) .n .s{color:var(--purple-d);}
.stat .l { color: var(--muted); font-size: .96rem; margin-top: 8px; font-weight: 700; }

/* ----------  9. Programlar  ---------- */
.prog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.prog-card { border-radius: var(--r-lg); padding: 40px; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.prog-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.prog-card.c1 { background: linear-gradient(160deg, #EEF2FF, #fff); box-shadow: var(--sh-md); }
.prog-card.c2 { background: linear-gradient(160deg, #FFF3E6, #fff); box-shadow: var(--sh-md); }
.prog-card .deco { position: absolute; right: -30px; top: -30px; width: 150px; height: 150px; border-radius: 50%; opacity: .5; }
.prog-card.c1 .deco { background: var(--cobalt-soft); } .prog-card.c2 .deco { background: #FFE7CF; }
.prog-illo { width: 96px; height: 96px; margin-bottom: 18px; position: relative; }
.prog-card h3 { font-size: 1.65rem; margin-bottom: 10px; position: relative; }
.prog-card .pd { color: var(--muted); margin-bottom: 22px; position: relative; font-weight: 600; }
.prog-feats { display: grid; gap: 12px; margin-bottom: 28px; position: relative; }
.prog-feats li { display: flex; gap: 11px; align-items: flex-start; font-size: .99rem; color: var(--ink-2); font-weight: 600; }
.prog-feats li i { margin-top: 3px; flex: 0 0 auto; }
.prog-card.c1 .prog-feats li i { color: var(--cobalt); } .prog-card.c2 .prog-feats li i { color: var(--coral); }
.prog-card .pc-foot { margin-top: auto; position: relative; }

/* ----------  10. Yöntem / Neden  ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feat-card { background: #fff; border-radius: var(--r-lg); padding: 32px; box-shadow: var(--sh-sm); border: 2px solid var(--line); transition: transform .25s, box-shadow .25s, border-color .25s; }
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.feat-card .ic { width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; font-size: 1.45rem; color: #fff; margin-bottom: 18px; transform: rotate(-4deg); }
.feat-card:nth-child(1) .ic{background:var(--cobalt);} .feat-card:nth-child(2) .ic{background:var(--coral);} .feat-card:nth-child(3) .ic{background:var(--mint);} .feat-card:nth-child(4) .ic{background:var(--purple);} .feat-card:nth-child(5) .ic{background:var(--sky);} .feat-card:nth-child(6) .ic{background:var(--yellow);color:var(--ink);}
.feat-card h4 { font-size: 1.22rem; margin-bottom: 8px; }
.feat-card p { color: var(--muted); font-size: .97rem; margin: 0; font-weight: 600; }

/* ----------  11. Nasıl İşler  ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.steps::before { content:""; position:absolute; top:38px; left:11%; right:11%; height:3px; background: repeating-linear-gradient(90deg, var(--line-2) 0 9px, transparent 9px 18px); z-index:0; }
.step { text-align: center; position: relative; z-index: 1; }
.step .sn { width: 76px; height: 76px; margin: 0 auto 20px; border-radius: 24px; display: grid; place-items: center; font-family: var(--ff-display); font-weight: 700; font-size: 1.6rem; color: #fff; box-shadow: var(--sh-md); transition: .25s; transform: rotate(-5deg); }
.step:nth-child(1) .sn{background:var(--cobalt);} .step:nth-child(2) .sn{background:var(--coral);} .step:nth-child(3) .sn{background:var(--mint);} .step:nth-child(4) .sn{background:var(--purple);}
.step:hover .sn { transform: rotate(0deg) translateY(-4px) scale(1.05); }
.step h4 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; font-weight: 600; }

/* ----------  12. Kurucu  ---------- */
.founder { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center; }
.founder-photo { position: relative; }
.founder-photo .frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); aspect-ratio: 1/1.06; background: linear-gradient(160deg, var(--mint), var(--cobalt)); }
.founder-photo .badge { position: absolute; bottom: -16px; left: -16px; background: var(--yellow); border-radius: 18px; padding: 12px 18px; box-shadow: var(--sh-md); font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); transform: rotate(-4deg); }
.founder-photo .badge small { display: block; font-family: var(--ff-sans); font-weight: 600; font-size: .76rem; color: var(--ink-2); }
.founder .qmark { font-family: var(--ff-display); font-size: 3.6rem; color: var(--yellow); line-height: .4; display: block; }
.founder blockquote { display: block; font-family: var(--ff-display); font-weight: 500; font-size: clamp(1.4rem,2.3vw,1.95rem); line-height: 1.36; color: var(--ink); margin-top: 16px; }
.founder blockquote .u { background: linear-gradient(transparent 62%, #FFE08A 62%); padding: 0 .05em; }
.founder-sign { display: flex; align-items: center; gap: 18px; margin-top: 28px; }
.founder-sign svg { width: 124px; height: 46px; }
.founder-sign .who strong { font-family: var(--ff-display); font-size: 1.1rem; display: block; }
.founder-sign .who small { color: var(--muted); font-weight: 600; }

/* ----------  13. Yorumlar (veliler)  ---------- */
.testi-card { background: #fff; border-radius: var(--r-lg); padding: 32px; margin: 10px; box-shadow: var(--sh-sm); border: 2px solid var(--line); transition: transform .25s, box-shadow .25s; }
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: transparent; }
.testi-card .stars { color: var(--yellow); letter-spacing: 1px; font-size: .98rem; margin-bottom: 14px; }
.testi-card .q { font-size: 1.06rem; line-height: 1.6; color: var(--ink-2); margin-bottom: 22px; font-weight: 600; }
.testi-card .q b { color: var(--cobalt); }
.testi-card .person { display: flex; align-items: center; gap: 13px; padding-top: 18px; border-top: 2px dashed var(--line-2); }
.testi-card .person .av { width: 48px; height: 48px; border-radius: 50%; color: #fff; display: grid; place-items: center; font-family: var(--ff-display); font-weight: 700; font-size: .92rem; }
.testi-card:nth-child(3n+1) .av{background:var(--cobalt);} .testi-card:nth-child(3n+2) .av{background:var(--coral);} .testi-card:nth-child(3n) .av{background:var(--mint);}
.testi-card .person strong { display: block; font-size: 1rem; font-family: var(--ff-display); }
.testi-card .person small { color: var(--muted); font-size: .84rem; font-weight: 600; }
.owl-theme .owl-dots { margin-top: 38px !important; }
.owl-theme .owl-dots .owl-dot span { width: 9px; height: 9px; background: var(--line-2); margin: 5px; transition: .25s; }
.owl-theme .owl-dots .owl-dot.active span { background: var(--cobalt); width: 28px; border-radius: var(--r-pill); }

/* ----------  14. Fiyatlar  ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.price-card { background: #fff; border-radius: var(--r-lg); padding: 36px 30px; display: flex; flex-direction: column; box-shadow: var(--sh-sm); border: 2px solid var(--line); transition: transform .25s, box-shadow .25s; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.price-card.feat { background: linear-gradient(170deg, var(--cobalt), var(--cobalt-d)); color: #dfe6ff; border-color: transparent; box-shadow: var(--sh-lg); position: relative; }
.price-card.feat h3 { color: #fff; }
.pc-badge { display: inline-flex; align-items: center; gap: 6px; font-family: var(--ff-display); font-weight: 700; font-size: .78rem; color: var(--ink); background: var(--yellow); padding: 6px 14px; border-radius: var(--r-pill); margin-bottom: 16px; width: fit-content; }
.pc-name { font-family: var(--ff-display); font-weight: 600; font-size: .96rem; color: var(--muted-2); margin-bottom: 2px; }
.price-card.feat .pc-name { color: #aebfff; }
.price-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.pc-desc { color: var(--muted); font-size: .92rem; min-height: 44px; font-weight: 600; }
.price-card.feat .pc-desc { color: #b9c4ff; }
.pc-price { display: flex; align-items: baseline; gap: 4px; margin: 14px 0 2px; }
.pc-price .cur { font-family: var(--ff-display); font-weight: 700; font-size: 1.4rem; color: var(--cobalt); }
.price-card.feat .pc-price .cur { color: var(--yellow); }
.pc-price .amt { font-family: var(--ff-display); font-weight: 700; font-size: 3rem; line-height: 1; color: var(--ink); }
.price-card.feat .pc-price .amt { color: #fff; }
.pc-price .per { color: var(--muted); font-size: .9rem; font-weight: 600; }
.price-card.feat .pc-price .per { color: #b9c4ff; }
.pc-old { font-size: .92rem; color: var(--muted-2); text-decoration: line-through; margin-bottom: 22px; font-weight: 700; }
.pc-feats { display: grid; gap: 12px; margin-bottom: 26px; }
.pc-feats li { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; font-weight: 600; }
.pc-feats li i { color: var(--mint-d); margin-top: 4px; flex: 0 0 auto; }
.price-card.feat .pc-feats li i { color: var(--yellow); }
.pc-feats li.off { opacity: .42; } .pc-feats li.off i { color: var(--muted); }
.pc-cta { margin-top: auto; }
.price-note { text-align: center; color: var(--muted); font-size: .92rem; margin-top: 26px; font-weight: 600; }

/* ----------  15. SSS  ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: var(--r); margin-bottom: 12px; box-shadow: var(--sh-sm); border: 2px solid var(--line); transition: border-color .25s; }
.faq-item.open { border-color: var(--cobalt); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 24px; cursor: pointer; font-family: var(--ff-display); font-weight: 600; font-size: 1.12rem; color: var(--ink); }
.faq-q .qi { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 11px; background: var(--cobalt-soft); position: relative; transition: .3s; }
.faq-q .qi::before, .faq-q .qi::after { content: ""; position: absolute; background: var(--cobalt); border-radius: 2px; transition: .3s; }
.faq-q .qi::before { top: 50%; left: 8px; right: 8px; height: 2.5px; transform: translateY(-50%); }
.faq-q .qi::after { left: 50%; top: 8px; bottom: 8px; width: 2.5px; transform: translateX(-50%); }
.faq-item.open .qi { background: var(--cobalt); }
.faq-item.open .qi::before, .faq-item.open .qi::after { background: #fff; }
.faq-item.open .qi::after { transform: translateX(-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 24px 24px; color: var(--muted); margin: 0; font-weight: 600; }

/* ----------  16. CTA + form  ---------- */
.cta { background: linear-gradient(160deg, var(--cobalt) 0%, var(--cobalt-d) 60%, #1B2DB0 100%); color: #dfe6ff; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; top: -120px; right: -40px; width: 360px; height: 360px; border-radius: 50%; background: rgba(255,255,255,.08); }
.cta::after { content: ""; position: absolute; bottom: -150px; left: -60px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,200,60,.16); }
.cta-grid { display: grid; grid-template-columns: 1fr .82fr; gap: 50px; align-items: center; position: relative; z-index: 1; }
.cta .kicker { background: rgba(255,255,255,.16); color: #fff; }
.cta h2 { color: #fff; font-size: clamp(2rem,4vw,3rem); line-height: 1.12; margin: 6px 0 0; }
.cta h2 .y { color: var(--yellow); }
.cta-lead { color: #c8d1ff; font-size: 1.12rem; margin-top: 16px; max-width: 46ch; font-weight: 600; }
.cta-points { display: grid; gap: 13px; margin-top: 26px; }
.cta-points li { display: flex; align-items: center; gap: 13px; color: #eef1ff; font-weight: 700; }
.cta-points li i { width: 30px; height: 30px; border-radius: 10px; background: rgba(255,255,255,.16); color: var(--yellow); display: grid; place-items: center; font-size: .82rem; flex: 0 0 auto; }
.lead-form { background: #fff; color: var(--ink-2); border-radius: var(--r-lg); padding: 36px; box-shadow: var(--sh-lg); }
.lead-form h3 { font-family: var(--ff-display); font-size: 1.5rem; margin-bottom: 4px; }
.lf-sub { color: var(--muted); font-size: .94rem; margin-bottom: 22px; font-weight: 600; }
.field { margin-bottom: 14px; }
.field label { display: block; font-family: var(--ff-display); font-weight: 600; font-size: .92rem; color: var(--ink); margin-bottom: 7px; }
.field input, .field select { width: 100%; padding: 14px 16px; border: 2px solid var(--line-2); border-radius: 14px; font-family: var(--ff-sans); font-weight: 600; font-size: .98rem; color: var(--ink); background: var(--cream); transition: border-color .2s, box-shadow .2s, background .2s; }
.field input:focus, .field select:focus { outline: none; border-color: var(--cobalt); box-shadow: 0 0 0 4px var(--cobalt-soft); background: #fff; }
.form-note { font-size: .82rem; color: var(--muted); text-align: center; margin-top: 14px; font-weight: 600; }
.form-note i { color: var(--mint-d); }
.form-success { display: none; background: var(--mint-bg); border: 2px solid var(--mint); color: var(--mint-d); padding: 14px; border-radius: 14px; margin-bottom: 18px; font-weight: 700; align-items: center; gap: 10px; font-size: .94rem; }
.form-success.show { display: flex; }

/* ----------  17. Footer  ---------- */
.footer { background: var(--ink); color: #a7adcf; padding: 80px 0 0; position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 44px; padding-bottom: 48px; position: relative; z-index: 1; }
.footer .brand .bt b { color: #fff; } .footer .brand .bt span { color: #7077a3; }
.footer .f-about { margin: 20px 0; max-width: 34ch; color: #a7adcf; font-weight: 600; }
.footer h5 { font-family: var(--ff-display); font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 18px; }
.footer ul li { margin-bottom: 11px; } .footer ul li a { color: #a7adcf; font-size: .95rem; font-weight: 600; } .footer ul li a:hover { color: var(--yellow); }
.f-contact li { display: flex; gap: 12px; align-items: flex-start; color: #a7adcf; font-size: .95rem; font-weight: 600; }
.f-contact li i { color: var(--yellow); margin-top: 4px; }
.f-social { display: flex; gap: 9px; margin-top: 20px; }
.f-social a { width: 42px; height: 42px; border-radius: 13px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #cfd3ee; }
.f-social a:hover { background: var(--cobalt); color: #fff; transform: translateY(-3px); }
.f-news { display: flex; gap: 8px; margin-top: 16px; }
.f-news input { flex: 1; padding: 13px 14px; border-radius: 13px; border: 2px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05); color: #fff; font-family: var(--ff-sans); font-weight: 600; font-size: .92rem; }
.f-news input::placeholder { color: #7077a3; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .86rem; color: #7077a3; font-weight: 600; position: relative; z-index: 1; }
.footer-bottom a:hover { color: var(--yellow); }

/* ----------  18. Yüzen + mobil  ---------- */
.wa { position: fixed; right: 24px; bottom: 24px; z-index: 900; width: 58px; height: 58px; border-radius: 50%; background: #25af5a; color: #fff; display: grid; place-items: center; font-size: 1.7rem; box-shadow: 0 10px 26px rgba(37,175,90,.4); }
.wa:hover { color: #fff; transform: scale(1.07); }
.totop { position: fixed; right: 28px; bottom: 92px; z-index: 900; width: 46px; height: 46px; border-radius: 14px; background: var(--cobalt); color: #fff; border: none; display: grid; place-items: center; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: .3s; box-shadow: var(--sh-cobalt); }
.totop.show { opacity: 1; visibility: visible; transform: translateY(0); }
.totop:hover { background: var(--cobalt-d); }
.mobile-cta { display: none; }

/* ----------  19. Mobil drawer  ---------- */
.nav-overlay { position: fixed; inset: 0; background: rgba(35,42,82,.5); z-index: 1100; opacity: 0; visibility: hidden; transition: .3s; }
.nav-overlay.open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; right: -100%; width: min(86%,350px); height: 100%; background: #fff; z-index: 1200; padding: 24px; transition: right .35s ease; display: flex; flex-direction: column; box-shadow: -20px 0 60px rgba(35,42,82,.18); }
.drawer.open { right: 0; }
.drawer .dh { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.drawer .dc { width: 46px; height: 46px; border: none; background: var(--cobalt-soft); border-radius: 14px; font-size: 1.1rem; cursor: pointer; color: var(--cobalt); }
.drawer nav a { display: block; padding: 15px 6px; border-bottom: 2px solid var(--line); font-family: var(--ff-display); font-weight: 600; font-size: 1.12rem; color: var(--ink-2); }
.drawer nav a:hover { color: var(--cobalt); padding-left: 10px; }
.drawer .dcta { margin-top: auto; display: grid; gap: 12px; }

/* ==========================================================================
   ALT SAYFA BİLEŞENLERİ
   ========================================================================== */
/* --- page hero / banner --- */
.page-hero { position: relative; padding: 54px 0 62px; overflow: hidden; background: var(--sky-bg); }
.page-hero.ph-cobalt { background: linear-gradient(160deg,#E9EFFF,#F7F9FF); }
.page-hero.ph-coral  { background: linear-gradient(160deg,#FFEFEB,#FFF8F5); }
.page-hero.ph-mint   { background: linear-gradient(160deg,#E6FAF1,#F3FFFB); }
.page-hero.ph-purple { background: linear-gradient(160deg,#F1EAFF,#FAF7FF); }
.page-hero .pdot { position: absolute; border-radius: 50%; opacity: .5; z-index: 0; }
.page-hero .container { position: relative; z-index: 1; }
.crumb { display: flex; gap: 9px; align-items: center; font-weight: 700; font-size: .86rem; color: var(--muted); margin-bottom: 18px; }
.crumb a:hover { color: var(--cobalt); } .crumb i { font-size: .62rem; opacity: .55; }
.crumb .cur { color: var(--ink); }
.ph-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 44px; align-items: center; }
.page-hero h1 { font-size: clamp(2.1rem, 4.2vw, 3.3rem); line-height: 1.16; }
.page-hero h1 .c { color: var(--cobalt); } .page-hero h1 .co { color: var(--coral); } .page-hero h1 .m { color: var(--mint-d); } .page-hero h1 .p { color: var(--purple-d); } .page-hero h1 .y { color: var(--yellow-d); }
.ph-sub { color: var(--muted); font-size: 1.14rem; max-width: 54ch; margin-top: 16px; font-weight: 600; }
.ph-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; align-items: center; }
.ph-badges { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 28px; padding-top: 24px; border-top: 2px dashed var(--line-2); }
.ph-badges .b { display: flex; align-items: center; gap: 11px; }
.ph-badges .b i { width: 40px; height: 40px; border-radius: 12px; background: #fff; box-shadow: var(--sh-sm); display: grid; place-items: center; color: var(--cobalt); font-size: 1.05rem; flex: 0 0 auto; }
.ph-badges .b b { font-family: var(--ff-display); display: block; font-size: 1.05rem; line-height: 1; color: var(--ink); }
.ph-badges .b small { color: var(--muted); font-size: .8rem; font-weight: 600; }

/* illüstrasyon kutusu */
.illo-box { border-radius: var(--r-lg); padding: 30px; display: grid; place-items: center; box-shadow: var(--sh-md); position: relative; aspect-ratio: 1/.92; }
.illo-box.bc { background: linear-gradient(160deg,#fff,#EEF2FF); } .illo-box.br { background: linear-gradient(160deg,#fff,#FFEFE9); } .illo-box.bm { background: linear-gradient(160deg,#fff,#E6FAF1); }
.illo-box svg { width: 86%; height: auto; }
.illo-chip { position: absolute; background: #fff; border-radius: 16px; padding: 10px 15px; box-shadow: var(--sh-md); font-family: var(--ff-display); font-weight: 600; display: flex; align-items: center; gap: 9px; }
.illo-chip .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: #fff; font-size: .95rem; }
.illo-chip b { display: block; font-size: .98rem; line-height: 1; color: var(--ink); } .illo-chip small { font-size: .72rem; color: var(--muted); font-weight: 600; }

/* --- split (metin + görsel) --- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split + .split { margin-top: 70px; }
.split .s-media.right { order: 2; }
.split h2 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); margin-bottom: 14px; }
.split p { color: var(--muted); font-weight: 600; }
.checklist { display: grid; gap: 13px; margin-top: 20px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--ink-2); }
.checklist li i { color: var(--mint-d); margin-top: 4px; flex: 0 0 auto; }

/* --- yaş / kimler için kartları --- */
.age-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.age-card { background: #fff; border: 2px solid var(--line); border-radius: var(--r-lg); padding: 30px; text-align: center; transition: transform .25s, box-shadow .25s, border-color .25s; }
.age-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: transparent; }
.age-card .em { font-size: 2.4rem; line-height: 1; margin-bottom: 14px; }
.age-card .rng { display: inline-block; font-family: var(--ff-display); font-weight: 700; font-size: .82rem; color: var(--cobalt); background: var(--cobalt-soft); padding: 5px 14px; border-radius: var(--r-pill); margin-bottom: 12px; }
.age-card h4 { font-size: 1.18rem; margin-bottom: 8px; }
.age-card p { color: var(--muted); font-size: .94rem; margin: 0; font-weight: 600; }

/* --- müfredat / modüller --- */
.modules { display: grid; gap: 14px; margin-top: 48px; max-width: 880px; margin-inline: auto; }
.module { display: flex; gap: 20px; background: #fff; border: 2px solid var(--line); border-radius: var(--r); padding: 24px 26px; align-items: flex-start; transition: border-color .25s, box-shadow .25s; }
.module:hover { border-color: transparent; box-shadow: var(--sh-md); }
.module .mn { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem; color: #fff; flex: 0 0 auto; background: var(--cobalt); }
.module:nth-child(2n) .mn { background: var(--coral); }
.module h4 { font-size: 1.16rem; margin-bottom: 5px; }
.module p { color: var(--muted); font-size: .96rem; margin: 0; font-weight: 600; }

/* --- ekip --- */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 48px; }
.team-card { text-align: center; }
.team-card .av { width: 100%; aspect-ratio: 1/1; border-radius: var(--r-lg); display: grid; place-items: center; font-family: var(--ff-display); font-weight: 700; font-size: 2.6rem; color: #fff; box-shadow: var(--sh-sm); margin-bottom: 16px; }
.team-card:nth-child(4n+1) .av{background:linear-gradient(150deg,#5573ff,var(--cobalt));} .team-card:nth-child(4n+2) .av{background:linear-gradient(150deg,#ff8a7d,var(--coral));} .team-card:nth-child(4n+3) .av{background:linear-gradient(150deg,#56e0bd,var(--mint));} .team-card:nth-child(4n) .av{background:linear-gradient(150deg,#b694ff,var(--purple));}
.team-card h4 { font-size: 1.12rem; margin-bottom: 2px; }
.team-card small { color: var(--cobalt); font-weight: 700; font-size: .86rem; }

/* --- timeline --- */
.timeline { max-width: 760px; margin: 48px auto 0; position: relative; padding-left: 38px; }
.timeline::before { content: ""; position: absolute; left: 11px; top: 6px; bottom: 6px; width: 3px; background: var(--line-2); border-radius: 3px; }
.tl-item { position: relative; padding-bottom: 32px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -33px; top: 4px; width: 18px; height: 18px; border-radius: 50%; background: var(--cobalt); border: 4px solid #fff; box-shadow: 0 0 0 2px var(--cobalt); }
.tl-item:nth-child(2n)::before { background: var(--coral); box-shadow: 0 0 0 2px var(--coral); }
.tl-item .yr { font-family: var(--ff-display); font-weight: 700; color: var(--cobalt); font-size: 1.05rem; }
.tl-item:nth-child(2n) .yr { color: var(--coral); }
.tl-item h4 { font-size: 1.16rem; margin: 2px 0 5px; }
.tl-item p { color: var(--muted); font-weight: 600; margin: 0; }

/* --- iletişim --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.ci-cards { display: grid; gap: 16px; margin-bottom: 26px; }
.ci-card { display: flex; gap: 16px; align-items: center; background: #fff; border: 2px solid var(--line); border-radius: var(--r); padding: 20px 22px; }
.ci-card .ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; color: #fff; font-size: 1.2rem; flex: 0 0 auto; }
.ci-card:nth-child(1) .ic{background:var(--cobalt);} .ci-card:nth-child(2) .ic{background:var(--coral);} .ci-card:nth-child(3) .ic{background:var(--mint);}
.ci-card small { color: var(--muted); font-weight: 700; font-size: .82rem; display: block; }
.ci-card strong { font-family: var(--ff-display); font-size: 1.12rem; color: var(--ink); }
.ci-card a { color: var(--ink); } .ci-card a:hover { color: var(--cobalt); }
.map-box { border-radius: var(--r-lg); overflow: hidden; border: 2px solid var(--line); box-shadow: var(--sh-sm); margin-top: 36px; }
.map-box iframe { width: 100%; height: 340px; border: 0; display: block; }
.branch-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px; }
.branch { background: #fff; border: 2px solid var(--line); border-radius: var(--r); padding: 24px; }
.branch h4 { font-size: 1.14rem; margin-bottom: 10px; display: flex; align-items: center; gap: 9px; } .branch h4 i { color: var(--cobalt); }
.branch p { color: var(--muted); font-weight: 600; font-size: .94rem; margin: 0 0 6px; }

/* --- karşılaştırma tablosu --- */
.compare-wrap { overflow-x: auto; margin-top: 48px; border-radius: var(--r-lg); border: 2px solid var(--line); }
.compare { width: 100%; border-collapse: collapse; min-width: 620px; background: #fff; }
.compare th, .compare td { padding: 16px 20px; text-align: center; border-bottom: 1px solid var(--line); font-weight: 600; }
.compare thead th { font-family: var(--ff-display); font-size: 1.05rem; color: var(--ink); background: var(--sky-bg); }
.compare thead th.hot { background: var(--cobalt); color: #fff; border-radius: 0; }
.compare td:first-child, .compare th:first-child { text-align: left; color: var(--ink-2); }
.compare tbody tr:last-child td { border-bottom: none; }
.compare .yes { color: var(--mint-d); } .compare .no { color: var(--muted-2); }
.compare .cprice { font-family: var(--ff-display); font-weight: 700; font-size: 1.3rem; color: var(--ink); }

/* --- blog --- */
.blog-cats { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.blog-cats a { font-family: var(--ff-display); font-weight: 600; font-size: .9rem; padding: 8px 18px; border-radius: var(--r-pill); background: #fff; border: 2px solid var(--line); color: var(--ink-2); }
.blog-cats a:hover, .blog-cats a.active { background: var(--cobalt); border-color: var(--cobalt); color: #fff; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.post-card { background: #fff; border: 2px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.post-img { aspect-ratio: 16/10; display: grid; place-items: center; font-size: 2.6rem; color: #fff; }
.post-card:nth-child(3n+1) .post-img{background:linear-gradient(150deg,#5573ff,var(--cobalt));} .post-card:nth-child(3n+2) .post-img{background:linear-gradient(150deg,#ff8a7d,var(--coral));} .post-card:nth-child(3n) .post-img{background:linear-gradient(150deg,#56e0bd,var(--mint));}
.post-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-meta { display: flex; gap: 12px; font-size: .8rem; font-weight: 700; color: var(--muted); margin-bottom: 10px; }
.post-meta .cat { color: var(--cobalt); }
.post-body h4 { font-size: 1.2rem; margin-bottom: 8px; line-height: 1.3; }
.post-body p { color: var(--muted); font-size: .94rem; font-weight: 600; margin: 0 0 16px; }
.post-body .txtlink { margin-top: auto; }

/* alt sayfa intro */
.lead-block { max-width: 720px; margin: 0 auto 10px; text-align: center; }

/* ----------  20. Responsive  ---------- */
/* küçük laptop: navbar taşmasın diye telefonu gizle */
@media (max-width: 1199px) { .nav-phone { display: none; } }

@media (max-width: 991px) {
  .section { padding: 76px 0; }
  .nav-menu, .nav-phone { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .hero { padding: 44px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-art { order: -1; max-width: 440px; margin: 0 auto; }
  .trust-grid { grid-template-columns: repeat(2,1fr); gap: 22px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .prog-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); gap: 40px 24px; }
  .steps::before { display: none; }
  .founder { grid-template-columns: 1fr; gap: 44px; }
  .founder-photo { max-width: 330px; }
  .price-grid, .cta-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 34px; }
}
@media (max-width: 767px) {
  .mobile-cta { display: grid; grid-template-columns: auto 1fr; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 950; padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px)); background: rgba(255,255,255,.97); backdrop-filter: blur(10px); border-top: 1px solid var(--line); box-shadow: 0 -8px 26px rgba(35,42,82,.1); }
  .mobile-cta .btn { padding: 14px 16px; }
  .mobile-cta .ara { font-size: 0; gap: 0; } .mobile-cta .ara i { font-size: 1.1rem; }
  body { padding-bottom: 78px; }
  .totop { display: none; }
  .wa { bottom: 88px; right: 16px; width: 52px; height: 52px; font-size: 1.5rem; }
}
@media (max-width: 575px) {
  .section { padding: 58px 0; }
  .section.tight { padding: 44px 0; }
  .sec-head { margin-bottom: 40px; }
  .topbar .tb-left { display: none; }
  .topbar .container { justify-content: center; }
  .topbar .tb-right { gap: 16px; }
  .hero h1 { font-size: 2.25rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-item .ic { width: 40px; height: 40px; font-size: 1.05rem; }
  .trust-item strong { font-size: .92rem; } .trust-item small { font-size: .76rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat { padding: 24px 12px; }
  .feat-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .feat-card { padding: 20px; }
  .feat-card .ic { width: 48px; height: 48px; font-size: 1.2rem; margin-bottom: 14px; }
  .feat-card h4 { font-size: 1.04rem; } .feat-card p { font-size: .87rem; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px 14px; }
  .step .sn { width: 64px; height: 64px; font-size: 1.35rem; }
  .float-bubble { padding: 9px 12px; } .float-bubble b { font-size: .96rem; }
  .fb-a { left: -2%; top: 4%; } .fb-b { right: -2%; }
  .prog-card, .lead-form, .testi-card, .price-card { padding: 26px; }
}

/* --- alt sayfa responsive --- */
@media (max-width: 991px) {
  .ph-grid { grid-template-columns: 1fr; gap: 36px; }
  .ph-grid .ph-media { order: -1; max-width: 420px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split .s-media.right { order: -1; }
  .age-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .branch-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 575px) {
  .page-hero { padding: 38px 0 46px; }
  .page-hero h1 { font-size: 2rem; }
  .ph-cta { flex-direction: column; align-items: stretch; }
  .ph-cta .btn { width: 100%; }
  .ph-badges { gap: 16px; }
  .age-grid, .team-grid, .blog-grid { grid-template-columns: 1fr; }
  .module { padding: 20px; gap: 14px; }
  .ci-card { padding: 18px; }
  .map-box iframe { height: 280px; }
}
