/* =====================================================================
   QRelya — Premium Pazarlama Sitesi Tasarım Sistemi
   Font: Montserrat
   ===================================================================== */

:root {
  --ink: #10131c;
  --ink-2: #1b2030;
  --paper: #ffffff;
  --paper-2: #f6f7fb;
  --paper-3: #eef0f7;
  --muted: #5b6478;
  --muted-2: #838ca0;
  --line: #e6e9f2;
  --brand: #6d4bff;
  --brand-2: #4d84ff;
  --brand-ink: #2a1d6b;
  --accent: #12c6a4;
  --amber: #f5a623;
  --red: #ff5470;
  --grad: linear-gradient(135deg, #6d4bff 0%, #4d84ff 100%);
  --grad-soft: linear-gradient(135deg, rgba(109,75,255,.12), rgba(77,132,255,.12));
  --shadow-sm: 0 2px 8px rgba(20, 24, 44, .06);
  --shadow: 0 18px 50px rgba(28, 30, 70, .10);
  --shadow-lg: 0 40px 90px rgba(24, 26, 60, .18);
  --radius: 18px;
  --radius-lg: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.center { text-align: center; }

/* ---- Tipografi ---- */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.12; letter-spacing: -.02em; }
h2.title { font-size: clamp(30px, 4vw, 46px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand); background: var(--grad-soft);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
.lead { font-size: clamp(16px, 1.6vw, 19px); color: var(--muted); max-width: 640px; }
.section-head { max-width: 720px; margin: 0 auto 56px; }
.section-head.center { text-align: center; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---- Butonlar ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-weight: 700; font-size: 15px; cursor: pointer;
  padding: 14px 26px; border-radius: 12px; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 12px 30px rgba(93, 80, 255, .35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(93, 80, 255, .45); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.22); }
.btn-ghost:hover { background: rgba(255,255,255,.16); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: saturate(180%) blur(14px);
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 21px; letter-spacing: -.03em; }
.logo .mark {
  width: 34px; height: 34px; border-radius: 10px; background: var(--grad);
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 17px;
  box-shadow: 0 6px 16px rgba(93,80,255,.4);
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15px; font-weight: 600; color: var(--muted); transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .25s; }

/* ---- Hero ---- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1100px 600px at 78% -8%, rgba(109,75,255,.18), transparent 60%),
              radial-gradient(900px 500px at 8% 12%, rgba(77,132,255,.14), transparent 55%),
              #0e1018;
  color: #fff; padding: 96px 0 110px;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(600px 400px at 70% 0%, #000, transparent 75%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero .eyebrow { color: #c8bcff; background: rgba(124,92,255,.16); }
.hero h1 { font-size: clamp(34px, 5vw, 58px); margin-bottom: 22px; }
.hero h1 span { background: linear-gradient(120deg,#c3b3ff,#7fd8ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p.sub { font-size: clamp(16px, 1.7vw, 19px); color: #b7bdd0; max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; color: #99a0b8; font-size: 13.5px; font-weight: 600; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* Hero telefon mock */
.phone-wrap { position: relative; display: flex; justify-content: center; }
.phone {
  width: 300px; background: #fff; border-radius: 40px; padding: 12px;
  box-shadow: 0 50px 120px rgba(0,0,0,.55), 0 0 0 10px rgba(255,255,255,.05);
  transform: rotate(2deg);
}
.phone-screen { background: var(--paper-2); border-radius: 30px; overflow: hidden; }
.phone-top { background: var(--grad); color: #fff; padding: 22px 18px 16px; }
.phone-top .ph-brand { font-weight: 800; font-size: 16px; }
.phone-top .ph-sub { font-size: 11px; opacity: .85; }
.phone-chips { display: flex; gap: 6px; margin-top: 14px; flex-wrap: wrap; }
.phone-chips .chip { font-size: 10px; font-weight: 700; padding: 5px 9px; border-radius: 999px; background: rgba(255,255,255,.22); }
.phone-chips .chip.on { background: #fff; color: var(--brand); }
.phone-body { padding: 14px; }
.ph-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 11px 12px; margin-bottom: 10px; display: flex; gap: 11px; align-items: center; }
.ph-thumb { width: 42px; height: 42px; border-radius: 10px; background: linear-gradient(135deg,#ffd9a8,#ffb27a); flex: none; }
.ph-thumb.b { background: linear-gradient(135deg,#bdf3d8,#84e0bd); }
.ph-thumb.c { background: linear-gradient(135deg,#c9d4ff,#a7b8ff); }
.ph-info b { font-size: 12.5px; display: block; }
.ph-info small { font-size: 10.5px; color: var(--muted-2); }
.ph-tag { margin-left: auto; font-size: 9px; font-weight: 800; padding: 4px 8px; border-radius: 999px; }
.ph-tag.ok { background: #e2f8ef; color: #0e9d73; }
.ph-tag.mod { background: #fff2dc; color: #c07d10; }
.badge-float {
  position: absolute; background: #fff; color: var(--ink); border-radius: 14px;
  padding: 12px 14px; box-shadow: var(--shadow-lg); font-size: 12.5px; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
}
.badge-float .ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; color: #fff; font-size: 15px; }
.badge-float.one { top: 40px; left: -10px; }
.badge-float.one .ic { background: var(--accent); }
.badge-float.two { bottom: 46px; right: -14px; }
.badge-float.two .ic { background: var(--grad); }
.badge-float small { display: block; font-weight: 600; color: var(--muted-2); font-size: 10.5px; }

/* ---- Logolar / güven şeridi ---- */
.trustbar { border-bottom: 1px solid var(--line); padding: 30px 0; background: var(--paper); }
.trustbar .container { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.trustbar p { font-size: 13px; font-weight: 700; color: var(--muted-2); letter-spacing: .04em; text-transform: uppercase; }
.trust-logos { display: flex; gap: 34px; flex-wrap: wrap; align-items: center; }
.trust-logos span { font-weight: 800; font-size: 18px; color: #b9c0d0; letter-spacing: -.02em; }

/* ---- İstatistik ---- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; text-align: center; }
.stat .v { font-size: 38px; font-weight: 800; letter-spacing: -.03em; }
.stat .v { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .l { font-size: 13.5px; color: var(--muted); font-weight: 600; margin-top: 4px; }

/* ---- Problem/JTBD ---- */
.jtbd-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.jtbd {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.jtbd:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.jtbd .who { font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--brand); margin-bottom: 12px; }
.jtbd .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--grad-soft); display: grid; place-items: center; font-size: 22px; margin-bottom: 16px; }
.jtbd p { font-size: 14.5px; color: var(--muted); }
.jtbd b { color: var(--ink); font-weight: 700; }

/* ---- Wedge / kapalı sistem ---- */
.wedge { background: #0e1018; color: #fff; }
.wedge .eyebrow { color: #c8bcff; background: rgba(124,92,255,.16); }
.wedge h2 { color: #fff; }
.wedge .lead { color: #aab0c6; }
.loop { display: flex; align-items: stretch; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 46px; }
.loop-step {
  flex: 1 1 150px; min-width: 150px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 20px 18px; text-align: center;
}
.loop-step .n { width: 34px; height: 34px; border-radius: 10px; background: var(--grad); display: grid; place-items: center; font-weight: 800; margin: 0 auto 12px; }
.loop-step b { font-size: 14px; display: block; margin-bottom: 4px; }
.loop-step small { font-size: 12px; color: #99a0b8; }
.loop-arrow { display: flex; align-items: center; color: var(--brand-2); font-size: 22px; }

/* ---- Özellikler ---- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.feature .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--grad); color: #fff; display: grid; place-items: center; font-size: 24px; margin-bottom: 18px; box-shadow: 0 10px 24px rgba(93,80,255,.28); }
.feature h3 { font-size: 18px; margin-bottom: 9px; }
.feature p { font-size: 14.5px; color: var(--muted); }
.feature .tagpill { display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }

/* ---- Temalar ---- */
.themes { background: var(--paper-2); }
.theme-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.theme-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.theme-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.theme-prev { height: 150px; position: relative; }
.theme-prev .pill { position: absolute; bottom: 12px; left: 12px; background: rgba(255,255,255,.9); color: var(--ink); font-size: 11px; font-weight: 800; padding: 5px 11px; border-radius: 999px; }
.theme-body { padding: 18px 20px; }
.theme-body b { font-size: 15px; }
.theme-body p { font-size: 13px; color: var(--muted); margin-top: 3px; }
.t1{background:linear-gradient(135deg,#1c1c22,#3a3a45)} .t2{background:linear-gradient(135deg,#0e5c4a,#12c6a4)}
.t3{background:linear-gradient(135deg,#7a2c3a,#e0637a)} .t4{background:linear-gradient(135deg,#213a7a,#4d84ff)}
.t5{background:linear-gradient(135deg,#8a5a1a,#f5b942)} .t6{background:linear-gradient(135deg,#4a2c7a,#9d6bff)}

/* ---- Fiyatlandırma ---- */
.pricing { background: #fff; }
.billing-toggle { display: inline-flex; align-items: center; gap: 12px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; padding: 6px; margin: 0 auto 12px; }
.billing-toggle button { border: 0; background: transparent; font-family: inherit; font-weight: 700; font-size: 14px; padding: 9px 20px; border-radius: 999px; cursor: pointer; color: var(--muted); transition: .2s; }
.billing-toggle button.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.save-hint { font-size: 13px; color: var(--accent); font-weight: 700; margin-bottom: 44px; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  position: relative; background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan.featured { border-color: transparent; background: #0e1018; color: #fff; box-shadow: var(--shadow-lg); transform: scale(1.03); }
.plan.featured:hover { transform: scale(1.03) translateY(-4px); }
.plan .badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .06em; padding: 6px 16px; border-radius: 999px; box-shadow: 0 8px 20px rgba(93,80,255,.4); }
.plan h3 { font-size: 22px; margin-bottom: 5px; }
.plan .tagline { font-size: 13.5px; color: var(--muted); margin-bottom: 22px; }
.plan.featured .tagline { color: #aab0c6; }
.plan .price { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 4px; }
.plan .price .cur { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.plan .price .amt { font-size: 46px; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.plan .price .suf { font-size: 13px; color: var(--muted); font-weight: 600; margin-bottom: 6px; }
.plan.featured .price .suf { color: #99a0b8; }
.plan .job { font-size: 12.5px; color: var(--muted-2); min-height: 34px; margin-bottom: 22px; }
.plan.featured .job { color: #9aa1b8; }
.plan ul { margin-bottom: 26px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.plan li { font-size: 13.8px; display: flex; gap: 10px; align-items: flex-start; }
.plan li .tick { color: var(--accent); font-weight: 800; flex: none; margin-top: 1px; }
.plan li.hl b { color: inherit; }
.plan.featured li .tick { color: #6fe9c6; }
.plan .btn { margin-top: auto; }
.per-year-note { font-size: 11.5px; color: var(--muted-2); margin-top: 10px; text-align: center; }

/* ---- Modüller ---- */
.modules { background: var(--paper-2); }
.module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.module {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
  display: flex; flex-direction: column; gap: 12px; transition: transform .2s, box-shadow .2s;
  position: relative;
}
.module:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.module .top { display: flex; align-items: center; gap: 13px; }
.module .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--grad-soft); color: var(--brand); display: grid; place-items: center; font-size: 22px; flex: none; }
.module h4 { font-size: 16px; }
.module .cat { font-size: 11px; font-weight: 700; color: var(--muted-2); text-transform: uppercase; letter-spacing: .04em; }
.module p { font-size: 13.5px; color: var(--muted); flex: 1; }
.module .pricerow { display: flex; align-items: baseline; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 13px; }
.module .mp { font-weight: 800; font-size: 20px; }
.module .mp small { font-size: 12px; color: var(--muted); font-weight: 600; }
.module .addbtn { font-size: 13px; font-weight: 700; color: var(--brand); }
.module .pop { position: absolute; top: 16px; right: 16px; font-size: 10px; font-weight: 800; color: var(--accent); background: #e2f8ef; padding: 4px 9px; border-radius: 999px; }
.modules-note { text-align: center; margin-top: 34px; font-size: 14px; color: var(--muted); }

/* ---- Karşılaştırma ---- */
.compare { background: #fff; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
table.cmp { width: 100%; border-collapse: collapse; min-width: 760px; }
table.cmp thead th { background: var(--paper-2); padding: 18px 16px; font-size: 14px; text-align: center; border-bottom: 1px solid var(--line); }
table.cmp thead th:first-child { text-align: left; }
table.cmp thead th.us { background: var(--grad); color: #fff; }
table.cmp thead th.us:first-of-type { border-radius: 0; }
table.cmp .cat-row td { background: #fbfbfe; font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--muted-2); padding: 12px 16px; }
table.cmp tbody td { padding: 14px 16px; font-size: 14px; text-align: center; border-bottom: 1px solid var(--line); }
table.cmp tbody td:first-child { text-align: left; font-weight: 600; color: var(--ink); }
table.cmp td.us { background: rgba(109,75,255,.05); font-weight: 700; }
table.cmp td .yes { color: var(--accent); font-weight: 800; }
table.cmp td .no { color: #cdd2df; }
.cmp-legend { text-align: center; font-size: 12.5px; color: var(--muted-2); margin-top: 16px; }

/* ---- Referanslar ---- */
.testimonials { background: var(--paper-2); }
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tst { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.tst .stars { color: var(--amber); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.tst p { font-size: 15px; color: var(--ink); margin-bottom: 20px; }
.tst .who { display: flex; align-items: center; gap: 12px; }
.tst .av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 800; }
.tst .who b { font-size: 14.5px; display: block; }
.tst .who small { font-size: 12.5px; color: var(--muted); }

/* ---- SSS ---- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; overflow: hidden; background: #fff; transition: box-shadow .2s; }
.faq-item.open { box-shadow: var(--shadow); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; cursor: pointer; font-weight: 700; font-size: 16px; }
.faq-q .plus { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--grad-soft); color: var(--brand); display: grid; place-items: center; font-size: 18px; transition: transform .25s; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; padding: 0 22px; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 22px; }
.faq-a p { color: var(--muted); font-size: 14.5px; }

/* ---- CTA bandı ---- */
.cta-band { background: #0e1018; color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(700px 400px at 80% 20%, rgba(109,75,255,.25), transparent 60%); }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 760px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; color: #fff; }
.cta-inner p { color: #aab0c6; font-size: 18px; margin-bottom: 30px; }

/* ---- Lead formu ---- */
.lead-form-sec { background: #fff; }
.lead-box { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 46px; }
.lead-box .left h2 { font-size: 30px; margin-bottom: 14px; }
.lead-box .left p { color: var(--muted); margin-bottom: 24px; }
.lead-bullets li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 12px; font-size: 14.5px; }
.lead-bullets .tick { color: var(--accent); font-weight: 800; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 11px;
  font-family: inherit; font-size: 14.5px; background: #fff; color: var(--ink); transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(109,75,255,.12); }
.field textarea { resize: vertical; min-height: 90px; }
.form-note { font-size: 12px; color: var(--muted-2); margin-top: 12px; }
.alert { padding: 14px 16px; border-radius: 12px; font-size: 14px; font-weight: 600; margin-bottom: 18px; }
.alert.ok { background: #e2f8ef; color: #0d8f68; border: 1px solid #b6ecd5; }
.alert.err { background: #ffe9ee; color: #d63a5b; border: 1px solid #ffc9d5; }

/* ---- Footer ---- */
.site-footer { background: #0b0d14; color: #aab0c6; padding: 64px 0 32px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.foot-brand .logo { color: #fff; margin-bottom: 14px; }
.foot-brand p { font-size: 14px; max-width: 280px; }
.foot-col h5 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.foot-col a { display: block; font-size: 14px; margin-bottom: 10px; color: #99a0b8; transition: color .15s; }
.foot-col a:hover { color: #fff; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #7d8496; }

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .phone-wrap { order: -1; }
  .stats, .feature-grid, .theme-grid, .plans, .module-grid, .tst-grid, .jtbd-grid { grid-template-columns: 1fr 1fr; }
  .plan.featured { transform: none; }
  .lead-box { grid-template-columns: 1fr; padding: 32px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 68px 0; }
  .nav-links, .nav-actions .btn-outline { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open { display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; background: #fff; padding: 20px 24px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); gap: 18px; }
  .stats, .feature-grid, .theme-grid, .plans, .module-grid, .tst-grid, .jtbd-grid, .foot-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .loop-arrow { transform: rotate(90deg); }
}

/* ---- Multipage eklentileri ---- */
.nav-links a.active { color: var(--brand); }
.pagehead {
  background: radial-gradient(800px 380px at 80% -20%, rgba(109,75,255,.14), transparent 60%),
              radial-gradient(700px 360px at 5% 0%, rgba(77,132,255,.10), transparent 55%),
              var(--paper-2);
  border-bottom: 1px solid var(--line);
  padding: 74px 0 60px; text-align: center;
}
.pagehead h1 { font-size: clamp(30px, 4.4vw, 50px); margin-bottom: 16px; }
.pagehead h1 span { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.pagehead .lead { margin: 0 auto; }
.richtext { font-size: 16px; color: var(--muted); }
.richtext h3 { color: var(--ink); margin: 22px 0 10px; }
.richtext p { margin-bottom: 14px; }
.contact-lines { margin-top: 22px; display: flex; flex-direction: column; gap: 6px; }
.contact-lines a { font-weight: 700; color: var(--brand); font-size: 15px; }
