/* ============================================================
   selfÖğrenci — Tanıtım sitesi stilleri
   Renk ve ölçü değerleri Edudash tema token'larından türetilmiştir.
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

:root {
  /* Marka (Edudash primary skalası) */
  --primary-50:  #E6F7F5;
  --primary-100: #CCEFEA;
  --primary-200: #99DDD5;
  --primary-300: #66CBBF;
  --primary-400: #3DB9AB;
  --primary-500: #27A798;
  --primary-600: #25A194;
  --primary-700: #1C7F73;
  --primary-800: #145D55;
  --primary-900: #0D3C36;

  --neutral-40:  #F8F9FA;
  --neutral-50:  #EEF2F6;
  --neutral-100: #F3F4F6;
  --neutral-200: #EBECEF;
  --neutral-300: #D1D5DB;
  --neutral-400: #9CA3AF;
  --neutral-500: #6B7280;
  --neutral-600: #4B5563;
  --neutral-700: #374151;
  --neutral-800: #1F2937;
  --neutral-900: #111827;

  --warning-600: #FF7A2C;
  --success-600: #16A34A;
  --danger-600:  #DC2626;
  --info-600:    #04B4FF;

  --shadow-1: 0 4px 30px 0 rgba(52, 77, 75, .05);
  --shadow-2: 0 12px 40px 0 rgba(52, 77, 75, .10);
  --shadow-brand: 0 12px 28px -8px rgba(39, 167, 152, .45);

  --r-sm: .5rem;
  --r-md: .75rem;
  --r-lg: 1rem;
  --r-xl: 1.5rem;

  --header-h: 76px;
}

/* ---------- Temel ---------- */
* { box-sizing: border-box; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--neutral-600);
  background: #fff;
  line-height: 1.7;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { color: var(--neutral-900); font-weight: 700; line-height: 1.25; }
a { text-decoration: none; color: var(--primary-600); }
a:hover { color: var(--primary-700); }
img, svg { max-width: 100%; }
section { scroll-margin-top: calc(var(--header-h) + 12px); }

.text-brand   { color: var(--primary-600) !important; }
.bg-brand-50  { background: var(--primary-50) !important; }
.bg-soft      { background: var(--neutral-40) !important; }
.lead-txt     { font-size: 1.075rem; color: var(--neutral-500); }
.fw-800       { font-weight: 800; }

/* ---------- Bölüm başlıkları ---------- */
.section { padding: 88px 0; }
.section-sm { padding: 60px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--primary-50); color: var(--primary-700);
  font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: .4rem .9rem; border-radius: 999px; margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.75rem, 1.2rem + 1.8vw, 2.5rem); margin-bottom: .75rem; letter-spacing: -.02em; }
.section-sub { color: var(--neutral-500); max-width: 640px; margin: 0 auto; }

/* ---------- Butonlar ---------- */
.btn { border-radius: var(--r-sm); font-weight: 600; padding: .7rem 1.35rem; transition: all .18s ease; border: 1px solid transparent; }
.btn-lg-cta { padding: .9rem 1.8rem; font-size: 1.02rem; }

.btn-brand { background: var(--primary-600); color: #fff; box-shadow: var(--shadow-brand); }
.btn-brand:hover { background: var(--primary-700); color: #fff; transform: translateY(-1px); }

.btn-outline-brand { border-color: var(--primary-200); color: var(--primary-700); background: #fff; }
.btn-outline-brand:hover { background: var(--primary-50); border-color: var(--primary-400); color: var(--primary-800); }

.btn-ghost { color: var(--neutral-700); background: transparent; }
.btn-ghost:hover { background: var(--neutral-100); color: var(--neutral-900); }

.btn-white { background: #fff; color: var(--primary-700); }
.btn-white:hover { background: var(--primary-50); color: var(--primary-800); }

.btn-outline-white { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }

/* ---------- Üst şerit ---------- */
.topbar { background: var(--primary-800); color: rgba(255,255,255,.82); font-size: .82rem; padding: .5rem 0; }
.topbar a, .topbar span { color: rgba(255,255,255,.82); }
.topbar a:hover { color: #fff; }

/* ---------- Menü ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1030;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--neutral-200);
  min-height: var(--header-h); display: flex; align-items: center;
}
.site-header.scrolled { box-shadow: var(--shadow-1); }

.navbar-brand { font-size: 1.35rem; font-weight: 800; color: var(--neutral-900); letter-spacing: -.02em; }
.navbar-brand:hover { color: var(--neutral-900); }
.navbar-brand { padding: 0; margin: 0; display: flex; align-items: center; }
.brand-logo { height: 34px; width: auto; display: block; }
.footer-logo { height: 46px; width: auto; display: block; }

@media (max-width: 575.98px) {
  .brand-logo { height: 28px; }
}

.navbar-nav .nav-link {
  color: var(--neutral-700); font-weight: 600; font-size: .95rem; padding: .5rem .9rem; border-radius: var(--r-sm);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--primary-700); background: var(--primary-50); }
.navbar-toggler:focus { box-shadow: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1000px 480px at 88% -8%, var(--primary-50), transparent 60%),
    radial-gradient(760px 420px at -6% 12%, #F5FBFA, transparent 62%),
    #fff;
  padding: 72px 0 88px;
}
.hero h1 {
  font-size: clamp(2rem, 1.25rem + 3vw, 3.4rem);
  letter-spacing: -.03em; line-height: 1.12; margin-bottom: 1.1rem;
}
.hero .hero-sub { font-size: 1.12rem; color: var(--neutral-500); max-width: 560px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; border: 1px solid var(--primary-200); color: var(--primary-700);
  font-size: .85rem; font-weight: 600; padding: .45rem 1rem; border-radius: 999px;
  box-shadow: var(--shadow-1); margin-bottom: 1.25rem;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success-600); }

.hero-checks { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; }
.hero-checks li { display: flex; align-items: center; gap: .45rem; font-size: .9rem; color: var(--neutral-600); font-weight: 500; }
.hero-checks i { color: var(--primary-600); font-size: 1.05rem; }

/* Panel önizleme (CSS ile kurgulanmış mockup) */
.mock {
  background: #fff; border: 1px solid var(--neutral-200); border-radius: var(--r-xl);
  box-shadow: 0 30px 70px -20px rgba(13, 60, 54, .28); overflow: hidden;
}
.mock-bar { display: flex; align-items: center; gap: .4rem; padding: .7rem 1rem; background: var(--neutral-40); border-bottom: 1px solid var(--neutral-200); }
.mock-bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--neutral-300); }
.mock-bar .url { margin-left: .6rem; font-size: .72rem; color: var(--neutral-400); background: #fff; border: 1px solid var(--neutral-200); border-radius: 6px; padding: .15rem .6rem; }
.mock-body { display: flex; min-height: 330px; }
.mock-side { width: 34%; max-width: 168px; background: var(--primary-900); padding: 1rem .75rem; }
.mock-side i { color: rgba(255,255,255,.55); font-size: .95rem; }
.mock-side .mi { display: flex; align-items: center; gap: .5rem; padding: .45rem .55rem; border-radius: 8px; font-size: .74rem; color: rgba(255,255,255,.6); font-weight: 500; }
.mock-side .mi.on { background: var(--primary-600); color: #fff; }
.mock-side .mi.on i { color: #fff; }
.mock-main { flex: 1; padding: 1rem; background: var(--neutral-40); min-width: 0; }
.mock-kpi { background: #fff; border: 1px solid var(--neutral-200); border-radius: 10px; padding: .6rem .7rem; }
.mock-kpi b { display: block; font-size: 1.05rem; color: var(--neutral-900); line-height: 1.2; }
.mock-kpi small { font-size: .64rem; color: var(--neutral-400); }
.mock-card { background: #fff; border: 1px solid var(--neutral-200); border-radius: 10px; padding: .75rem; }
.mock-chart { display: flex; align-items: flex-end; gap: 5px; height: 88px; }
.mock-chart i { flex: 1; background: var(--primary-200); border-radius: 3px 3px 0 0; display: block; }
.mock-chart i:nth-child(3n) { background: var(--primary-500); }
.mock-row { display: flex; align-items: center; gap: .5rem; padding: .35rem 0; border-bottom: 1px dashed var(--neutral-200); font-size: .7rem; color: var(--neutral-500); }
.mock-row:last-child { border-bottom: 0; }
.mock-av { width: 20px; height: 20px; border-radius: 50%; background: var(--primary-100); flex: none; }
.mock-pill { margin-left: auto; font-size: .6rem; font-weight: 700; padding: .1rem .45rem; border-radius: 999px; background: #E7F8EC; color: var(--success-600); }
.mock-pill.no { background: #FDECEC; color: var(--danger-600); }

/* Yüzen rozet */
.float-card {
  position: absolute; background: #fff; border: 1px solid var(--neutral-200); border-radius: var(--r-md);
  box-shadow: var(--shadow-2); padding: .65rem .9rem; display: flex; align-items: center; gap: .6rem;
}
.float-card i { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; font-size: 1.05rem; }
.float-card b { display: block; font-size: .92rem; color: var(--neutral-900); line-height: 1.2; }
.float-card small { font-size: .72rem; color: var(--neutral-400); }
.float-1 { bottom: 26px; left: -22px; }
.float-2 { top: 42px; right: -18px; }

/* ---------- İstatistik bandı ---------- */
.stat-band { background: var(--primary-900); color: #fff; padding: 44px 0; }
.stat-band .num { font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.35rem); font-weight: 800; color: #fff; line-height: 1.1; }
.stat-band .lbl { color: rgba(255,255,255,.65); font-size: .88rem; }

/* ---------- Sorun / çözüm ---------- */
.pain {
  background: #fff; border: 1px solid var(--neutral-200); border-left: 3px solid var(--danger-600);
  border-radius: var(--r-md); padding: 1rem 1.15rem; height: 100%;
}
.pain i { color: var(--danger-600); }
.gain {
  background: var(--primary-50); border: 1px solid var(--primary-200); border-left: 3px solid var(--primary-600);
  border-radius: var(--r-md); padding: 1rem 1.15rem; height: 100%;
}
.gain i { color: var(--primary-600); }
.pain p, .gain p { margin: 0; font-size: .93rem; }

/* ---------- Özellik kartları ---------- */
.feature {
  background: #fff; border: 1px solid var(--neutral-200); border-radius: var(--r-lg);
  padding: 1.6rem; height: 100%; transition: all .2s ease;
}
.feature:hover { border-color: var(--primary-300); box-shadow: var(--shadow-2); transform: translateY(-3px); }
.feature .ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--primary-50); color: var(--primary-600); font-size: 1.5rem; margin-bottom: 1rem;
}
.feature h3 { font-size: 1.08rem; margin-bottom: .45rem; }
.feature p { font-size: .92rem; color: var(--neutral-500); margin: 0; }

/* ---------- Branşlar ---------- */
.brans {
  background: #fff; border: 1px solid var(--neutral-200); border-radius: var(--r-lg);
  padding: 1.4rem .9rem; text-align: center; height: 100%; transition: all .2s ease;
}
.brans:hover { border-color: var(--primary-400); background: var(--primary-50); transform: translateY(-3px); }
.brans i { font-size: 1.9rem; color: var(--primary-600); display: block; margin-bottom: .55rem; }
.brans span { font-size: .88rem; font-weight: 600; color: var(--neutral-700); }

/* ---------- Veli portalı ---------- */
.veli-panel { background: linear-gradient(160deg, var(--primary-800), var(--primary-900)); border-radius: var(--r-xl); padding: 2.5rem; color: rgba(255,255,255,.8); }
.veli-panel h2 { color: #fff; }
.phone-mock { background: #fff; border-radius: 26px; padding: .7rem; box-shadow: 0 24px 60px -18px rgba(0,0,0,.45); max-width: 268px; margin: 0 auto; }
.phone-screen { background: var(--neutral-40); border-radius: 20px; padding: .9rem .8rem; }
.phone-head { display: flex; align-items: center; gap: .55rem; margin-bottom: .8rem; }
.phone-head .av { width: 34px; height: 34px; border-radius: 50%; background: var(--primary-100); color: var(--primary-700); display: grid; place-items: center; font-weight: 700; font-size: .8rem; }
.phone-head b { font-size: .85rem; color: var(--neutral-900); display: block; line-height: 1.2; }
.phone-head small { font-size: .68rem; color: var(--neutral-400); }
.phone-item { background: #fff; border: 1px solid var(--neutral-200); border-radius: 10px; padding: .6rem .7rem; margin-bottom: .5rem; }
.phone-item .t { font-size: .72rem; color: var(--neutral-400); }
.phone-item .v { font-size: .85rem; font-weight: 700; color: var(--neutral-900); }
.veli-list { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.veli-list li { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .8rem; font-size: .94rem; }
.veli-list i { color: var(--primary-300); font-size: 1.15rem; margin-top: .1rem; }

/* ---------- Adımlar ---------- */
.step { text-align: center; padding: 0 1rem; position: relative; }
.step .no {
  width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 1.1rem; display: grid; place-items: center;
  background: #fff; border: 2px solid var(--primary-200); color: var(--primary-600);
  font-size: 1.15rem; font-weight: 800; box-shadow: var(--shadow-1);
}
.step h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.step p { font-size: .93rem; color: var(--neutral-500); margin: 0; }

/* ---------- Fiyatlandırma ---------- */
.bill-toggle { display: inline-flex; background: var(--neutral-100); border-radius: 999px; padding: .3rem; gap: .25rem; }
.bill-toggle button {
  border: 0; background: transparent; border-radius: 999px; padding: .5rem 1.35rem;
  font-weight: 600; font-size: .9rem; color: var(--neutral-600); cursor: pointer; transition: all .18s;
}
.bill-toggle button.on { background: #fff; color: var(--primary-700); box-shadow: var(--shadow-1); }
.bill-save { background: var(--primary-50); color: var(--primary-700); font-size: .74rem; font-weight: 700; padding: .1rem .5rem; border-radius: 999px; margin-left: .35rem; }

.price-card {
  background: #fff; border: 1px solid var(--neutral-200); border-radius: var(--r-xl);
  padding: 2rem 1.75rem; height: 100%; display: flex; flex-direction: column; transition: all .2s ease;
}
.price-card:hover { box-shadow: var(--shadow-2); }
.price-card.vurgu { border: 2px solid var(--primary-500); box-shadow: var(--shadow-2); position: relative; }
.price-card .rozet {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--primary-600); color: #fff; font-size: .72rem; font-weight: 700;
  padding: .3rem .9rem; border-radius: 999px; white-space: nowrap;
}
.price-card h3 { font-size: 1.25rem; margin-bottom: .25rem; }
.price-card .desc { font-size: .87rem; color: var(--neutral-500); min-height: 42px; }
.price-amount { font-size: 2.5rem; font-weight: 800; color: var(--neutral-900); letter-spacing: -.03em; line-height: 1; }
.price-cur { font-size: 1.25rem; font-weight: 700; color: var(--neutral-900); }
.price-per { font-size: .85rem; color: var(--neutral-400); }
.price-limit { display: inline-block; background: var(--neutral-100); color: var(--neutral-600); font-size: .78rem; font-weight: 600; padding: .25rem .7rem; border-radius: 999px; }
.price-list { list-style: none; padding: 0; margin: 1.25rem 0; flex: 1; }
.price-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; margin-bottom: .6rem; color: var(--neutral-600); }
.price-list i { color: var(--primary-600); font-size: 1.05rem; margin-top: .08rem; flex: none; }

/* ---------- S.S.S. ---------- */
.accordion-item { border: 1px solid var(--neutral-200); border-radius: var(--r-md) !important; margin-bottom: .75rem; overflow: hidden; }
.accordion-button { font-weight: 600; color: var(--neutral-900); background: #fff; font-size: 1rem; padding: 1.05rem 1.25rem; }
.accordion-button:not(.collapsed) { background: var(--primary-50); color: var(--primary-800); box-shadow: none; }
.accordion-button:focus { box-shadow: none; border-color: var(--primary-200); }
.accordion-body { color: var(--neutral-500); font-size: .95rem; padding-top: .25rem; }

/* ---------- CTA / demo formu ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-900));
  border-radius: var(--r-xl); padding: 3rem; color: rgba(255,255,255,.85); position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; width: 420px; height: 420px; right: -140px; top: -180px;
  background: rgba(255,255,255,.06); border-radius: 50%;
}
.cta-band h2 { color: #fff; }
.form-card { background: #fff; border-radius: var(--r-lg); padding: 1.75rem; box-shadow: var(--shadow-2); position: relative; z-index: 1; }
.form-label { font-size: .85rem; font-weight: 600; color: var(--neutral-700); margin-bottom: .3rem; }
.form-control, .form-select {
  border: 1px solid var(--neutral-300); border-radius: var(--r-sm); padding: .65rem .85rem; font-size: .93rem; color: var(--neutral-800);
}
.form-control:focus, .form-select:focus { border-color: var(--primary-400); box-shadow: 0 0 0 3px var(--primary-50); }
.form-note { font-size: .78rem; color: var(--neutral-400); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ---------- Görsel çerçevesi ---------- */
.sise {
  background: #fff; border: 1px solid var(--neutral-200); border-radius: var(--r-lg);
  padding: .5rem; box-shadow: var(--shadow-1); margin: 0; overflow: hidden;
}
.sise img { display: block; width: 100%; height: auto; border-radius: .65rem; }
.sise figcaption { font-size: .8rem; color: var(--neutral-400); padding: .6rem .4rem .2rem; text-align: center; }

/* ---------- Blog ---------- */
.page-hero { background: linear-gradient(180deg, var(--primary-50), #fff); padding: 56px 0 40px; border-bottom: 1px solid var(--neutral-200); }
.page-hero h1 { font-size: clamp(1.75rem, 1.2rem + 2vw, 2.75rem); letter-spacing: -.02em; }
.crumb { font-size: .85rem; color: var(--neutral-400); }
.crumb a { color: var(--neutral-500); }

.post-card {
  background: #fff; border: 1px solid var(--neutral-200); border-radius: var(--r-lg);
  overflow: hidden; height: 100%; display: flex; flex-direction: column; transition: all .2s ease;
}
.post-card:hover { box-shadow: var(--shadow-2); transform: translateY(-3px); border-color: var(--primary-200); }
.post-card .cover { aspect-ratio: 16/9; background: var(--primary-50); overflow: hidden; }
.post-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.post-card .body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.post-card h3 { font-size: 1.05rem; margin: .5rem 0 .5rem; line-height: 1.4; }
.post-card h3 a { color: var(--neutral-900); }
.post-card h3 a:hover { color: var(--primary-600); }
.post-card p { font-size: .89rem; color: var(--neutral-500); flex: 1; }
.post-meta { font-size: .78rem; color: var(--neutral-400); display: flex; gap: .9rem; align-items: center; }
.cat-tag { display: inline-block; background: var(--primary-50); color: var(--primary-700); font-size: .73rem; font-weight: 700; padding: .2rem .65rem; border-radius: 999px; }

/* Yazı içeriği */
.post-body { font-size: 1.03rem; color: var(--neutral-700); line-height: 1.85; }
.post-body h2 { font-size: 1.5rem; margin: 2rem 0 .85rem; letter-spacing: -.01em; }
.post-body h3 { font-size: 1.2rem; margin: 1.5rem 0 .6rem; }
.post-body p { margin-bottom: 1.1rem; }
.post-body ul, .post-body ol { margin: 0 0 1.2rem; padding-left: 1.3rem; }
.post-body li { margin-bottom: .5rem; }
.post-body img { border-radius: var(--r-md); margin: 1.2rem 0; width: 100%; height: auto; }
.post-body figure {
  margin: 1.75rem 0; background: var(--neutral-40); border: 1px solid var(--neutral-200);
  border-radius: var(--r-lg); padding: .55rem;
}
.post-body figure img { margin: 0; border-radius: .65rem; }
.post-body figcaption {
  font-size: .82rem; color: var(--neutral-500); text-align: center; padding: .65rem .5rem .25rem;
}
.post-body blockquote {
  border-left: 3px solid var(--primary-500); background: var(--primary-50);
  padding: 1rem 1.25rem; border-radius: 0 var(--r-md) var(--r-md) 0; margin: 1.4rem 0; color: var(--neutral-700);
}
.post-body table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; font-size: .93rem; }
.post-body th, .post-body td { border: 1px solid var(--neutral-200); padding: .6rem .8rem; text-align: left; }
.post-body th { background: var(--neutral-40); color: var(--neutral-800); font-weight: 700; }

.sidebar-box { background: #fff; border: 1px solid var(--neutral-200); border-radius: var(--r-lg); padding: 1.35rem; margin-bottom: 1.25rem; }
.sidebar-box h4 { font-size: 1rem; margin-bottom: .9rem; }
.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list li { padding: .5rem 0; border-bottom: 1px dashed var(--neutral-200); font-size: .9rem; }
.sidebar-list li:last-child { border-bottom: 0; }
.sidebar-list a { color: var(--neutral-700); }
.sidebar-list a:hover { color: var(--primary-600); }

/* ---------- Uyarı kutuları ---------- */
.alert-ok { background: #E7F8EC; border: 1px solid #B7E9C6; color: #14663A; border-radius: var(--r-sm); padding: .85rem 1rem; font-size: .92rem; }
.alert-err { background: #FDECEC; border: 1px solid #F7C6C6; color: #A02121; border-radius: var(--r-sm); padding: .85rem 1rem; font-size: .92rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--neutral-900); color: rgba(255,255,255,.6); padding: 64px 0 0; margin-top: 0; }
.site-footer h5 { color: #fff; font-size: .95rem; margin-bottom: 1.1rem; letter-spacing: .02em; }
.site-footer a { color: rgba(255,255,255,.6); font-size: .9rem; }
.site-footer a:hover { color: var(--primary-400); }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: .55rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding: 20px 0; font-size: .84rem; }
.soc { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: rgba(255,255,255,.7); }
.soc:hover { background: var(--primary-600); color: #fff; }

/* ---------- WhatsApp balonu ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 1040;
  width: 54px; height: 54px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; font-size: 1.6rem; box-shadow: 0 10px 26px rgba(37,211,102,.42);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.07); color: #fff; }

/* ---------- Duyarlılık ---------- */
@media (max-width: 991.98px) {
  .section { padding: 62px 0; }
  .navbar-collapse { background: #fff; border: 1px solid var(--neutral-200); border-radius: var(--r-md); padding: 1rem; margin-top: .75rem; box-shadow: var(--shadow-2); }
  .float-1, .float-2 { display: none; }
  .cta-band, .veli-panel { padding: 2rem 1.5rem; }
}
@media (max-width: 575.98px) {
  .hero { padding: 48px 0 62px; }
  .price-card { padding: 1.5rem 1.25rem; }
  .form-card { padding: 1.25rem; }
}

/* Yazdırma */
@media print {
  .site-header, .topbar, .site-footer, .wa-float, .cta-band { display: none !important; }
}
