/* ============================================
   AjansKolay Funnel — Stylesheet
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green: #25D366;
  --green-dark: #128C7E;
  --green-deep: #075E54;
  --orange: #FF6B35;
  --orange-dark: #E85A24;
  --red: #E63946;
  --ink: #0B1F33;
  --ink-soft: #2D3E50;
  --muted: #6B7280;
  --line: #E5E7EB;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-dark: #0B1F33;
  --bg-warn: #FFF4ED;
  --shadow-sm: 0 1px 3px rgba(11,31,51,.06), 0 1px 2px rgba(11,31,51,.04);
  --shadow-md: 0 4px 12px rgba(11,31,51,.08), 0 2px 4px rgba(11,31,51,.04);
  --shadow-lg: 0 16px 48px rgba(11,31,51,.12), 0 4px 12px rgba(11,31,51,.06);
  --shadow-xl: 0 24px 80px rgba(11,31,51,.18);
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ TIPOGRAFI ============ */
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.25rem; font-weight: 700; }

.highlight {
  background: linear-gradient(180deg, transparent 60%, rgba(37,211,102,.35) 60%);
  padding: 0 4px;
}
.highlight-warn {
  background: linear-gradient(180deg, transparent 60%, rgba(255,107,53,.35) 60%);
  padding: 0 4px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green-dark);
  background: rgba(37,211,102,.1);
  padding: 6px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.eyebrow-light {
  color: #fff;
  background: rgba(255,255,255,.15);
}

/* ============ BUTONLAR ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255,107,53,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,107,53,.5); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--ink); background: var(--bg-soft); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { background: var(--bg-soft); }
.btn-light {
  background: #fff;
  color: var(--ink);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; border-radius: 10px; }
.btn-lg { padding: 18px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ============ URGENCY BAR ============ */
.urgency-bar {
  background: linear-gradient(90deg, var(--orange) 0%, var(--red) 100%);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 0;
  text-align: center;
  position: relative;
  z-index: 100;
}
.urgency-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.urgency-dot {
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: all .3s;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color: #fff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.logo-text { font-size: 1.05rem; }
.logo-text span { color: var(--green-dark); font-weight: 600; }

.nav-desktop {
  display: flex;
  gap: 28px;
}
.nav-desktop a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s;
}
.nav-desktop a:hover { color: var(--green-dark); }

@media (max-width: 860px) {
  .nav-desktop { display: none; }
}

/* ============ HERO ============ */
.hero {
  padding: 60px 0 80px;
  background:
    radial-gradient(900px 400px at 80% 20%, rgba(37,211,102,.1), transparent),
    radial-gradient(700px 300px at 10% 80%, rgba(255,107,53,.08), transparent),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,.1);
  color: var(--green-dark);
  padding: 8px 14px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero h1 {
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 520px;
}
.hero-trust div { font-size: 0.88rem; }
.hero-trust strong { color: var(--ink); display: block; font-size: 1rem; }
.hero-trust span { color: var(--muted); }

/* ============ PHONE MOCKUP ============ */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone {
  width: 320px;
  background: #fff;
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-xl);
  position: relative;
  border: 8px solid #1a1a1a;
}
.phone-notch {
  position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 22px;
  background: #1a1a1a;
  border-radius: 14px;
  z-index: 5;
}
.phone-header {
  background: var(--green-deep);
  color: #fff;
  border-radius: 24px 24px 0 0;
  padding: 36px 14px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-avatar {
  width: 36px; height: 36px;
  background: var(--green);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.1rem;
}
.phone-name { font-weight: 700; font-size: 0.92rem; }
.phone-status { font-size: 0.72rem; opacity: 0.85; display: flex; align-items: center; gap: 6px; }
.online-dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; }
.phone-icons { margin-left: auto; font-size: 0.85rem; opacity: 0.85; }

.phone-chat {
  background: #ECE5DD;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.3) 1px, transparent 1px),
    radial-gradient(circle at 60% 60%, rgba(0,0,0,.03) 1px, transparent 1px);
  background-size: 30px 30px;
  height: 380px;
  padding: 16px 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.phone-chat::-webkit-scrollbar { width: 4px; }
.phone-chat::-webkit-scrollbar-thumb { background: rgba(0,0,0,.1); border-radius: 4px; }

.bubble {
  max-width: 78%;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.4;
  position: relative;
  animation: bubble-in .35s cubic-bezier(.2,.8,.4,1);
  box-shadow: 0 1px 1px rgba(0,0,0,.08);
}
@keyframes bubble-in {
  from { opacity: 0; transform: translateY(8px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.bubble-customer {
  align-self: flex-start;
  background: #fff;
  border-top-left-radius: 2px;
}
.bubble-ai {
  align-self: flex-end;
  background: #DCF8C6;
  border-top-right-radius: 2px;
}
.bubble-time { font-size: 0.65rem; color: var(--muted); margin-top: 2px; text-align: right; }
.typing { display: inline-flex; gap: 3px; padding: 4px 0; }
.typing span {
  width: 6px; height: 6px;
  background: var(--muted);
  border-radius: 50%;
  animation: type 1.4s infinite;
}
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes type {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.phone-input {
  background: #f0f0f0;
  padding: 10px 14px;
  border-radius: 0 0 24px 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Floating cards over phone */
.floating-card {
  position: absolute;
  background: #fff;
  border-radius: var(--r);
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.card-time {
  top: 80px; left: -30px;
  animation-delay: 0s;
}
.card-money {
  bottom: 30px; right: -30px;
  animation-delay: 2s;
}
.ft-icon { font-size: 1.5rem; }
.ft-label { font-size: 0.7rem; color: var(--muted); font-weight: 600; }
.ft-value { font-size: 1.25rem; font-weight: 800; color: var(--ink); }
.ft-value.money { color: var(--green-dark); }
.ft-sub { font-size: 0.7rem; color: var(--muted); }

@media (max-width: 600px) {
  .floating-card { display: none; }
  .phone { width: 280px; }
}

/* ============ SEKTÖR ŞERİDİ (CHIP STRIP) ============ */
.sector-strip {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  position: relative;
}
.strip-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.strip-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 4px 2px;
  flex: 1;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--bg-soft);
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all .2s;
}
.chip:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,211,102,.25);
}
.chip.chip-active {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  border-color: var(--green-dark);
  box-shadow: 0 4px 12px rgba(37,211,102,.3);
}
@media (max-width: 700px) {
  .strip-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .chips { width: 100%; padding-bottom: 6px; }
}

/* ============ LOGO BAR ============ */
.logo-bar {
  padding: 40px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.logo-bar-title {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.logo-bar-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.logo-bar-icons > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: #fff;
  padding: 12px 18px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  font-size: 1.5rem;
  min-width: 80px;
  transition: all .2s;
}
.logo-bar-icons > div:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--green);
}
.logo-bar-icons span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ============ SECTION GENERICS ============ */
.section {
  padding: 80px 0;
}
.section-soft { background: var(--bg-soft); }
.section-dark {
  background: var(--bg-dark);
  color: #fff;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow {
  color: #FFB088;
  background: rgba(255,107,53,.15);
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.section-head h2 { margin-bottom: 16px; }
.section-lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.section-dark .section-lead { color: #C7D2DD; }

/* ============ PROBLEM / PAIN ============ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pain-grid { grid-template-columns: 1fr; } }

.pain-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all .3s;
}
.pain-card:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,107,53,.4);
  transform: translateY(-4px);
}
.pain-num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}
.pain-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}
.pain-card p {
  color: #C7D2DD;
  font-size: 0.95rem;
  line-height: 1.6;
}
.pain-card-cta {
  background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
  border-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pain-card-cta h3 { color: #fff; }
.pain-card-cta p { color: rgba(255,255,255,.95); margin-bottom: 20px; }

/* ============ ÇÖZÜM DEMO ============ */
.solution-demo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 860px) { .solution-demo { grid-template-columns: 1fr; gap: 30px; } }

.demo-chat {
  background: #ECE5DD;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 30px 30px;
  border-radius: var(--r-lg);
  padding: 24px 16px;
  height: 480px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-lg);
}
.demo-chat .bubble { font-size: 0.92rem; max-width: 85%; }

.result-card {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: 0 16px 48px rgba(37,211,102,.3);
}
.result-time {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 8px;
}
.result-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.result-amount {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.result-detail {
  background: rgba(0,0,0,.15);
  border-radius: var(--r);
  padding: 14px;
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.result-foot {
  font-size: 0.88rem;
  line-height: 1.8;
  opacity: 0.95;
}
.demo-caption {
  margin-top: 20px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

/* ============ STEPS ============ */
.steps {
  display: flex;
  align-items: stretch;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.step {
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green); }
.step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: var(--shadow-md);
}
.step-icon { font-size: 2.5rem; margin-bottom: 14px; }
.step h3 { margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }
.step-time {
  margin-top: 16px;
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-dark);
  background: rgba(37,211,102,.1);
  padding: 4px 12px;
  border-radius: 99px;
}
.step-arrow {
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--muted);
  font-weight: 800;
}
@media (max-width: 900px) {
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
}
.steps-foot {
  text-align: center;
  margin-top: 40px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.check {
  display: inline-block;
  width: 20px; height: 20px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 0.78rem;
  line-height: 20px;
  font-weight: 800;
  margin-right: 4px;
  vertical-align: middle;
}

/* ============ METRİKLER ============ */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 60px;
}
@media (max-width: 900px) { .metrics { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .metrics { grid-template-columns: 1fr; } }
.metric {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.metric-num {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--green-dark);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.metric-label {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 6px;
}
.metric-source {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }

.testi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.testi:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-stars {
  color: #FFB800;
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-size: 1.05rem;
}
.testi-text {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}
.testi-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.testi-avatar {
  width: 44px; height: 44px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.95rem; }
.testi-meta { font-size: 0.78rem; color: var(--muted); }
.testi-metric {
  margin-left: auto;
  text-align: right;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--green-dark);
  line-height: 1;
}
.testi-metric span { font-size: 0.7rem; color: var(--muted); font-weight: 500; }

/* ============ SEKTÖRLER ============ */
.sectors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 900px) { .sectors { grid-template-columns: repeat(2, 1fr); } }

.sector {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 18px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all .25s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}
.sector span { font-size: 1.6rem; }
.sector:hover {
  transform: translateY(-2px);
  border-color: var(--green);
  background: rgba(37,211,102,.05);
}
.sector.sector-active {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  border-color: var(--green-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
}
.sector.sector-active::after {
  content: " ← Senin sektörün";
  font-size: 0.72rem;
  font-weight: 700;
  margin-left: 6px;
  opacity: 0.9;
}

/* ============ PAKETLER ============ */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; } }

.plan {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  position: relative;
  transition: all .3s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.plan-popular {
  border-color: var(--green);
  box-shadow: 0 16px 48px rgba(37,211,102,.18);
  transform: scale(1.04);
}
@media (max-width: 900px) {
  .plan-popular { transform: scale(1); }
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  padding: 6px 18px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.plan-price {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 14px;
}
.plan-price .currency { font-size: 1.4rem; font-weight: 700; vertical-align: top; margin-right: 4px; }
.plan-price .per { font-size: 0.95rem; font-weight: 500; color: var(--muted); }
.plan-desc {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 24px;
  min-height: 50px;
}
.plan-features {
  list-style: none;
  margin-bottom: 28px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.plan-features li {
  padding: 8px 0 8px 28px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  position: relative;
}
.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 20px; height: 20px;
  background: rgba(37,211,102,.15);
  color: var(--green-dark);
  border-radius: 50%;
  text-align: center;
  font-weight: 800;
  font-size: 0.75rem;
  line-height: 20px;
  top: 10px;
}
.plan-foot {
  text-align: center;
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--muted);
}

.guarantee {
  max-width: 800px;
  margin: 50px auto 0;
  background: var(--bg-warn);
  border: 1px solid rgba(255,107,53,.2);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  display: flex;
  gap: 18px;
  align-items: center;
}
.guarantee-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}
.guarantee strong { color: var(--orange-dark); }

/* ============ SSS ============ */
.faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: all .25s;
}
.faq-item[open] { border-color: var(--green); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  list-style: none;
  user-select: none;
  padding-right: 50px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  background: var(--bg-soft);
  border-radius: 50%;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 28px;
  transition: all .25s;
  color: var(--green-dark);
}
.faq-item[open] summary::after {
  content: "−";
  background: var(--green);
  color: #fff;
}
.faq-item p {
  padding: 0 24px 22px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============ BONUS / HEDİYE ============ */
.section-bonus {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFEDDC 100%);
  position: relative;
  overflow: hidden;
}
.section-bonus::before {
  content: "🎁";
  position: absolute;
  font-size: 22rem;
  opacity: 0.04;
  top: -60px;
  right: -60px;
  pointer-events: none;
  z-index: 0;
}
.section-bonus .container { position: relative; z-index: 1; }
.eyebrow-orange { color: var(--orange-dark); background: rgba(255,107,53,.12); }

.bonuses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-bottom: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.bonus-card {
  background: #fff;
  border: 2px dashed rgba(255,107,53,.35);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.bonus-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  border-style: solid;
  box-shadow: var(--shadow-lg);
}
.bonus-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--orange);
  color: #fff;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(255,107,53,.4);
}
.bonus-mockup {
  height: 170px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
  padding: 14px;
  font-size: 0.78rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
}
.mock-h {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
/* mock-planner */
.mock-planner .mock-row {
  display: flex;
  gap: 8px;
  padding: 4px 6px;
  border-radius: 5px;
  font-size: 0.78rem;
}
.mock-planner .mock-row .mt { font-weight: 700; color: var(--ink-soft); min-width: 36px; }
.mock-planner .mock-row.done { color: var(--muted); text-decoration: line-through; }
.mock-planner .mock-row.active { background: rgba(37,211,102,.12); color: var(--green-deep); font-weight: 600; }
/* mock-plan */
.mock-plan .mock-cols { display: flex; gap: 8px; padding-top: 6px; }
.mock-plan .mock-col { flex: 1; text-align: center; }
.mock-plan .mock-col-h { font-size: 0.7rem; font-weight: 700; color: var(--muted); margin-bottom: 4px; }
.mock-plan .mock-bar { background: var(--line); height: 8px; border-radius: 4px; overflow: hidden; margin-bottom: 6px; }
.mock-plan .mock-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--green), var(--green-dark)); border-radius: 4px; }
.mock-plan .mock-col span { font-size: 0.72rem; color: var(--ink-soft); font-weight: 600; }
/* mock-diary */
.mock-diary .mock-d-row {
  font-size: 0.74rem;
  padding: 4px 6px;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-soft);
}
.mock-diary .mock-d-row:last-of-type { border-bottom: none; }
.mock-diary .mock-d-total {
  margin-top: auto;
  padding-top: 6px;
  font-size: 0.85rem;
  text-align: right;
  color: var(--green-dark);
  border-top: 2px solid var(--green);
}
/* mock-tally */
.mock-tally .mock-t-row {
  display: flex;
  gap: 12px;
  padding: 5px 6px;
  font-size: 0.85rem;
}
.mock-tally .mock-t-row span:first-child { font-weight: 700; min-width: 30px; color: var(--ink); }
.mock-tally .mock-t-row i { font-style: normal; color: var(--green-dark); letter-spacing: 2px; }
.mock-tally .mock-t-row.active { background: rgba(255,107,53,.1); border-radius: 5px; color: var(--orange-dark); }
.mock-tally .mock-t-row.active i { color: var(--orange); }
/* mock-dash */
.mock-dash .mock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.mock-dash .mock-mini {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  padding: 6px 8px;
  border-radius: 6px;
  text-align: center;
}
.mock-dash .mock-mini strong { display: block; font-size: 0.95rem; line-height: 1; margin-bottom: 2px; }
.mock-dash .mock-mini span { font-size: 0.68rem; opacity: 0.9; }

.bonus-info {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bonus-info h3 { margin-bottom: 8px; font-size: 1.1rem; }
.bonus-info p {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}
.bonus-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.bonus-price .strike { color: var(--muted); text-decoration: line-through; font-size: 0.95rem; }
.bonus-price .free {
  color: var(--orange-dark);
  font-weight: 800;
  font-size: 1.05rem;
  background: rgba(255,107,53,.12);
  padding: 2px 10px;
  border-radius: 99px;
  letter-spacing: 0.05em;
}
.bonus-preview {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--green-dark);
  font-weight: 700;
  align-self: flex-start;
}
.bonus-preview:hover { text-decoration: underline; }

.bonus-stack {
  background: #fff;
  border: 2px solid var(--orange);
  border-radius: var(--r-lg);
  padding: 22px 28px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 12px 32px rgba(255,107,53,.18);
}
.stack-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.stack-row.stack-total {
  border-bottom: none;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 2px solid var(--orange);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}
.stack-row .strike { color: var(--muted); text-decoration: line-through; }
.stack-row .free { color: var(--orange-dark); font-weight: 800; margin-left: 6px; }

.bonus-foot {
  text-align: center;
  margin-top: 30px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ============ FİNAL CTA ============ */
.final-cta {
  background: linear-gradient(135deg, #0B1F33 0%, #1a3a5c 50%, #128C7E 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 70% 30%, rgba(37,211,102,.2), transparent),
              radial-gradient(600px 400px at 20% 80%, rgba(255,107,53,.12), transparent);
  pointer-events: none;
}
.final-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) { .final-grid { grid-template-columns: 1fr; gap: 40px; } }

.final-copy h2 { color: #fff; margin-bottom: 18px; }
.final-copy > p {
  font-size: 1.1rem;
  color: #C7D2DD;
  margin-bottom: 28px;
}
.final-perks {
  list-style: none;
  margin-bottom: 28px;
}
.final-perks li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 0.98rem;
}
.final-perks li span {
  width: 24px; height: 24px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.final-alt {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: 0.95rem;
  color: #C7D2DD;
  line-height: 2;
}
.final-alt a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

/* ============ LEAD FORM ============ */
.lead-form {
  background: #fff;
  color: var(--ink);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-xl);
}
.lead-form h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.form-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
  font-size: 0.95rem;
  transition: border-color .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
}
.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 0.88rem;
}
.checks label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
}
.checks input { width: auto; }
.form-foot {
  margin-top: 14px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}

.lead-success {
  background: #fff;
  color: var(--ink);
  border-radius: var(--r-xl);
  padding: 50px 32px;
  text-align: center;
  box-shadow: var(--shadow-xl);
}
.success-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 3rem;
  margin: 0 auto 20px;
  box-shadow: 0 12px 36px rgba(37,211,102,.4);
  animation: pop .6s cubic-bezier(.2,1.4,.4,1);
}
@keyframes pop { from { transform: scale(0); } to { transform: scale(1); } }
.lead-success h3 { font-size: 1.8rem; margin-bottom: 12px; }
.lead-success p { color: var(--ink-soft); margin-bottom: 18px; }
.success-meta { font-size: 0.9rem; }

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-dark);
  color: #C7D2DD;
  padding: 60px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  font-size: 1.05rem;
}
.footer-desc { font-size: 0.92rem; line-height: 1.6; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer-cols h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-cols a {
  display: block;
  font-size: 0.88rem;
  padding: 5px 0;
  color: #C7D2DD;
  transition: color .2s;
}
.footer-cols a:hover { color: var(--green); }
.footer-copy {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  font-size: 0.82rem;
  text-align: center;
}

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 84px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  padding: 14px;
  border-radius: var(--r);
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 80;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 700px) { .sticky-cta { display: block; } }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 60px; height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(37,211,102,.5);
  z-index: 81;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--green);
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ====================================================
   MOBILE FINE-TUNING — kapsamlı responsive ayarlar
   ==================================================== */

/* Tablet ve altı */
@media (max-width: 900px) {
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }
  h1 { font-size: clamp(1.9rem, 6vw, 2.8rem); }
  h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .section-lead { font-size: 1rem; }
}

/* Mobil (640px ve altı) — ana mobil tweaks */
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .section-head { margin-bottom: 32px; }

  /* Üst urgency bar */
  .urgency-bar { font-size: 0.74rem; padding: 7px 0; }
  .urgency-inner { padding: 0 12px; gap: 6px; flex-wrap: wrap; justify-content: center; }
  #countdown { font-variant-numeric: tabular-nums; }

  /* Header */
  .header-inner { padding: 11px 14px; gap: 8px; }
  .logo { gap: 8px; }
  .logo-mark { width: 32px; height: 32px; font-size: 0.95rem; }
  .logo-text { font-size: 0.92rem; }
  .logo-text span { display: none; }
  .header .btn-sm { padding: 8px 12px; font-size: 0.78rem; }

  /* Hero */
  .hero { padding: 24px 0 36px; }
  .hero-grid { gap: 32px; }
  .hero-badge { font-size: 0.78rem; padding: 6px 11px; margin-bottom: 16px; }
  .hero h1 { font-size: 2rem; line-height: 1.18; margin-bottom: 14px; }
  .hero-sub { font-size: 0.98rem; margin-bottom: 22px; }
  .hero-ctas { flex-direction: column; gap: 10px; margin-bottom: 26px; }
  .hero-ctas .btn { width: 100%; padding: 14px 20px; }
  .hero-trust {
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px;
    padding-top: 18px;
    font-size: 0.78rem;
  }
  .hero-trust div { line-height: 1.35; }
  .hero-trust div:nth-child(3) { grid-column: 1 / -1; text-align: center; }
  .hero-trust strong { font-size: 0.92rem; }

  /* Phone mockup */
  .phone { width: 260px; }
  .phone-chat { height: 320px; padding: 12px 10px; }
  .bubble { font-size: 0.8rem; }
  .floating-card { display: none; }

  /* Sector strip */
  .sector-strip { padding: 12px 0; }
  .strip-inner { gap: 10px; }
  .strip-title { font-size: 0.78rem; }
  .chip { padding: 6px 11px; font-size: 0.78rem; gap: 4px; }

  /* Logo bar */
  .logo-bar { padding: 28px 0; }
  .logo-bar-title { font-size: 0.74rem; margin-bottom: 14px; }
  .logo-bar-icons { gap: 6px; }
  .logo-bar-icons > div {
    padding: 7px 10px;
    min-width: 60px;
    font-size: 1.2rem;
  }
  .logo-bar-icons span { font-size: 0.62rem; }

  /* Problem / pain cards */
  .pain-grid { gap: 14px; }
  .pain-card { padding: 24px 22px; border-radius: 16px; }
  .pain-card h3 { font-size: 1rem; }
  .pain-card p { font-size: 0.88rem; }
  .pain-num { font-size: 0.72rem; margin-bottom: 10px; }

  /* Çözüm demo */
  .solution-demo { gap: 22px; }
  .demo-chat { height: 380px; padding: 16px 10px; border-radius: 16px; }
  .demo-chat .bubble { font-size: 0.85rem; }
  .result-card { padding: 24px; border-radius: 16px; }
  .result-title { font-size: 1.25rem; }
  .result-amount { font-size: 2.4rem; }
  .result-detail { font-size: 0.85rem; padding: 12px; }
  .result-foot { font-size: 0.82rem; }
  .demo-caption { font-size: 0.95rem; padding: 0 6px; }

  /* Steps */
  .steps { gap: 12px; }
  .step { padding: 28px 22px; }
  .step h3 { font-size: 1.1rem; }
  .step p { font-size: 0.9rem; }
  .steps-foot { font-size: 0.82rem; line-height: 1.8; }

  /* Metrics */
  .metrics { gap: 12px; margin-bottom: 36px; }
  .metric { padding: 22px 16px; border-radius: 16px; }
  .metric-num { font-size: 2.2rem; }
  .metric-label { font-size: 0.85rem; }
  .metric-source { font-size: 0.74rem; }

  /* Testimonials */
  .testi { padding: 22px 20px; border-radius: 16px; }
  .testi-text { font-size: 0.92rem; margin-bottom: 18px; }
  .testi-name { font-size: 0.9rem; }
  .testi-meta { font-size: 0.74rem; }
  .testi-metric { font-size: 1.2rem; }

  /* Sectors big grid */
  .sectors { gap: 10px; }
  .sector { padding: 18px 12px; font-size: 0.88rem; gap: 6px; }
  .sector span { font-size: 1.4rem; }
  .sector.sector-active::after { font-size: 0.65rem; }

  /* Bonus */
  .section-bonus::before { font-size: 14rem; }
  .bonuses { gap: 14px; margin-bottom: 32px; }
  .bonus-card { border-radius: 16px; }
  .bonus-mockup { height: 150px; padding: 12px; font-size: 0.74rem; }
  .bonus-info { padding: 18px 18px 22px; }
  .bonus-info h3 { font-size: 1.02rem; }
  .bonus-info p { font-size: 0.84rem; }
  .bonus-tag { font-size: 0.62rem; padding: 3px 8px; }
  .bonus-stack { padding: 18px 20px; border-radius: 16px; }
  .stack-row { font-size: 0.86rem; padding: 8px 0; }
  .stack-row.stack-total { font-size: 0.95rem; padding-top: 14px; }
  .bonus-foot { font-size: 0.82rem; margin-top: 22px; }

  /* Plans */
  .plans { gap: 16px; }
  .plan { padding: 28px 22px; border-radius: 24px; }
  .plan-popular { transform: scale(1); }
  .plan-name { font-size: 1rem; }
  .plan-price { font-size: 2.2rem; }
  .plan-price .currency { font-size: 1.1rem; }
  .plan-price .per { font-size: 0.85rem; }
  .plan-desc { font-size: 0.88rem; min-height: 0; margin-bottom: 18px; }
  .plan-features li { font-size: 0.88rem; }
  .plan-badge { font-size: 0.65rem; padding: 5px 14px; }
  .guarantee {
    padding: 18px 20px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
    margin-top: 36px;
    font-size: 0.88rem;
    border-radius: 16px;
  }
  .guarantee-icon { font-size: 2rem; }

  /* SSS */
  .faq-item summary {
    padding: 16px 18px;
    padding-right: 46px;
    font-size: 0.92rem;
  }
  .faq-item summary::after { right: 16px; width: 24px; height: 24px; line-height: 24px; font-size: 1.1rem; }
  .faq-item p { padding: 0 18px 18px; font-size: 0.88rem; }

  /* Final CTA */
  .final-cta { padding: 50px 0; }
  .final-grid { gap: 32px; }
  .final-copy h2 { font-size: 1.7rem; }
  .final-copy > p { font-size: 1rem; margin-bottom: 22px; }
  .final-perks li { font-size: 0.92rem; }
  .final-alt { font-size: 0.88rem; line-height: 1.9; }
  .lead-form { padding: 26px 22px; border-radius: 22px; }
  .lead-form h3 { font-size: 1.3rem; }
  .form-sub { font-size: 0.85rem; margin-bottom: 18px; }
  .field input, .field select { padding: 11px 13px; font-size: 0.92rem; }
  .checks { grid-template-columns: 1fr 1fr; font-size: 0.82rem; }

  /* Footer */
  .footer { padding: 44px 0 24px; }
  .footer-inner { gap: 26px; margin-bottom: 28px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 18px; }
  .footer-cols h4 { font-size: 0.85rem; margin-bottom: 10px; }
  .footer-cols a { font-size: 0.82rem; padding: 4px 0; }
  .footer-copy { font-size: 0.76rem; padding-top: 18px; }

  /* Sticky CTA + WhatsApp float — çakışmayacak şekilde */
  .sticky-cta {
    bottom: 12px;
    left: 12px;
    right: 76px;
    padding: 13px 14px;
    font-size: 0.9rem;
    border-radius: 12px;
  }
  .wa-float {
    bottom: 12px;
    right: 12px;
    width: 54px;
    height: 54px;
    font-size: 1.6rem;
  }
}

/* Çok küçük ekran (380px ve altı — küçük telefonlar) */
@media (max-width: 380px) {
  .container { padding: 0 12px; }
  .section { padding: 40px 0; }
  .hero h1 { font-size: 1.7rem; }
  .hero-sub { font-size: 0.92rem; }
  h2 { font-size: 1.45rem !important; }
  .phone { width: 240px; }
  .footer-cols { grid-template-columns: 1fr; }
  .hero-trust { grid-template-columns: 1fr; }
  .hero-trust div { text-align: center; }
  .hero-trust div:nth-child(3) { grid-column: auto; }
  .checks { grid-template-columns: 1fr; }
  .plan-price { font-size: 1.9rem; }
  .result-amount { font-size: 2rem; }
  .metric-num { font-size: 2rem; }
}

/* iOS Safari — input zoom önle (16px+ font) */
@media (max-width: 640px) {
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="number"],
  input[type="time"],
  input[type="date"],
  select,
  textarea { font-size: 16px !important; }
}
