/* ====================================================
   TarlaDefter — Tasarım Sistemi
   Renkler ve fontlar lib/utils/theme.dart ile birebir
   ==================================================== */

:root {
  --green: #2D6A4F;
  --green-light: #52B788;
  --green-dark: #1B4332;
  --toprak: #8B5E3C;
  --sari: #E9C46A;
  --cream: #F4F1E8;
  --red: #E63946;
  --blue: #1565C0;
  --text-dark: #1A1A2E;
  --text-grey: #6B7280;
  --white: #FFFFFF;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 6px 24px rgba(27, 67, 50, 0.08);
  --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.04);

  --font-head: "Lora", Georgia, serif;
  --font-body: "Source Sans 3", -apple-system, Segoe UI, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

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

.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--sari);
  display: inline-block;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 14px;
}
.section-title.center { text-align: center; }

.section-subtitle {
  font-size: 16px;
  color: var(--text-grey);
  max-width: 620px;
  line-height: 1.7;
}
.section-subtitle.center { margin: 0 auto; text-align: center; }

.center { text-align: center; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(45, 106, 79, 0.28);
}
.btn-primary:hover { background: var(--green-dark); }

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline:hover { background: rgba(45, 106, 79, 0.08); }

.btn-white {
  background: var(--white);
  color: var(--green);
}
.btn-white:hover { background: var(--cream); }

.btn-ghost-light {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.2); }

/* ====================================================
   HEADER / NAV
   ==================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 241, 232, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.06);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
}
.logo .logo-emoji { font-size: 26px; }

.nav-links {
  display: none;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
  transition: color 0.15s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  border-radius: 2px;
  background: var(--sari);
}

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-actions .btn { padding: 12px 22px; font-size: 14px; }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--green-dark);
  border-radius: 2px;
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 22px;
  background: var(--white);
  border-bottom: 1px solid rgba(27, 67, 50, 0.06);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 4px;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.mobile-menu a.active { color: var(--green); }
.mobile-menu .btn { margin-top: 10px; width: 100%; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
}

/* ====================================================
   HERO
   ==================================================== */
.hero {
  padding: 64px 0 40px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 60px; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45, 106, 79, 0.08);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(34px, 5.5vw, 56px);
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--green); }

.hero-lead {
  font-size: 18px;
  color: var(--text-grey);
  max-width: 520px;
  margin-bottom: 30px;
}

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

.hero-mini-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-mini-stats .mini-stat strong {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--green-dark);
  display: block;
}
.hero-mini-stats .mini-stat span {
  font-size: 13px;
  color: var(--text-grey);
}

/* ---------- Telefon mockup ---------- */
.hero-visual { display: flex; justify-content: center; }

.phone {
  width: 290px;
  background: #0D1B2A;
  border-radius: 38px;
  padding: 14px;
  box-shadow: 0 30px 60px -20px rgba(27, 67, 50, 0.45), 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
}
.phone::before {
  content: "";
  position: absolute;
  top: 26px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 18px;
  background: #0D1B2A;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-screen {
  background: var(--cream);
  border-radius: 26px;
  overflow: hidden;
  padding: 34px 12px 16px;
  min-height: 480px;
}

.app-card {
  background: linear-gradient(135deg, #1B4332, #2D6A4F);
  border-radius: 20px;
  padding: 20px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.app-card::after {
  content: "";
  position: absolute;
  right: -30px; top: -30px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.app-card-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
.app-card-greet { font-size: 12px; color: rgba(255,255,255,0.65); }
.app-card-month { font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-top: 2px; }
.app-card-badge {
  background: rgba(233, 196, 106, 0.18);
  border: 1px solid rgba(233, 196, 106, 0.5);
  color: var(--sari);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}
.app-card-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.app-card-amount {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.app-card-amount.neg { color: #ffb4a8; }

.app-card-stats { display: flex; gap: 10px; margin-bottom: 16px; }
.app-card-stat {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 9px 12px;
}
.app-card-stat .stat-k { font-size: 10px; letter-spacing: 0.5px; color: rgba(255,255,255,0.5); display: block; margin-bottom: 2px; }
.app-card-stat .stat-v { font-size: 15px; font-weight: 700; }
.app-card-stat.income .stat-v { color: #95f5c4; }
.app-card-stat.expense .stat-v { color: #ffcfa3; }

.app-card-divider { border-top: 1px solid rgba(255,255,255,0.1); margin: 14px 0 10px; }
.app-card-section-label {
  font-size: 10.5px;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.35);
  font-weight: 700;
  margin-bottom: 8px;
}
.app-field-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 9px 11px;
  margin-bottom: 6px;
  font-size: 12.5px;
}
.app-field-row .field-name { font-weight: 600; }
.app-field-row .field-sub { font-size: 10.5px; color: rgba(255,255,255,0.45); }
.app-field-row .field-net { font-weight: 700; color: #95f5c4; }
.app-field-row .field-net.neg { color: #ffb4a8; }

.phone-quickgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 14px;
}
.phone-quick {
  background: var(--white);
  border-radius: 12px;
  padding: 10px 4px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.phone-quick .q-emoji { font-size: 18px; display: block; margin-bottom: 4px; }
.phone-quick .q-label { font-size: 9px; font-weight: 700; color: var(--green-dark); }

/* ====================================================
   ÖZELLİK SÜTUNLARI (01/02/03)
   ==================================================== */
.features-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(27, 67, 50, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(27,67,50,0.12); }

.feature-number {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--sari);
  background: var(--green-dark);
  width: 44px; height: 44px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 19px; margin-bottom: 10px; }
.feature-card p { color: var(--text-grey); font-size: 14.5px; }

/* ====================================================
   CHECKLIST + İSTATİSTİK
   ==================================================== */
.checklist-section {
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 36px;
  margin: 0 auto;
}
.checklist-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 900px) {
  .checklist-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}
.checklist-section .section-eyebrow { color: var(--sari); }
.checklist-section .section-eyebrow::before { background: var(--green-light); }
.checklist-section h2 { color: var(--white); }
.checklist-section .section-subtitle { color: rgba(255,255,255,0.65); }

.checklist { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 600;
}
.checklist li .check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.stat-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
}
.stat-box .stat-num {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  color: var(--sari);
  margin-bottom: 6px;
}
.stat-box .stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* ====================================================
   MODÜL VİTRİNİ
   ==================================================== */
.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (min-width: 700px) {
  .module-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .module-grid { grid-template-columns: repeat(4, 1fr); }
}

.module-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(27,67,50,0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.module-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: rgba(45,106,79,0.18);
}
.module-card .m-emoji {
  font-size: 26px;
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(45,106,79,0.08);
  margin-bottom: 14px;
}
.module-card h4 { font-size: 15.5px; margin-bottom: 6px; }
.module-card p { font-size: 13px; color: var(--text-grey); }

/* ====================================================
   PREMIUM TEASER
   ==================================================== */
.premium-teaser {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  color: var(--white);
  text-align: center;
}
.premium-teaser .crown { font-size: 38px; margin-bottom: 12px; }
.premium-teaser h2 { color: var(--white); margin-bottom: 12px; }
.premium-teaser p {
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 26px;
  font-size: 15.5px;
}

/* ====================================================
   İNDİR / CTA
   ==================================================== */
.cta-download {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 36px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.cta-download h2 { margin-bottom: 12px; }
.cta-download p {
  color: var(--text-grey);
  max-width: 540px;
  margin: 0 auto 30px;
  font-size: 15.5px;
}

.store-badges {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-dark);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 14px;
  font-size: 13px;
  text-align: left;
  opacity: 0.55;
  cursor: default;
  position: relative;
}
.store-badge .store-emoji { font-size: 22px; }
.store-badge .store-text small { display: block; font-size: 10px; color: rgba(255,255,255,0.6); }
.store-badge .store-text strong { font-size: 14px; }
.store-badge .soon-tag {
  position: absolute;
  top: -9px; right: -9px;
  background: var(--sari);
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}

.cta-email {
  font-size: 14px;
  color: var(--text-grey);
}
.cta-email a { color: var(--green); font-weight: 700; }

/* ====================================================
   FOOTER
   ==================================================== */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer .logo { color: var(--white); margin-bottom: 14px; }
.footer-about p { font-size: 14px; color: rgba(255,255,255,0.55); max-width: 320px; }
.footer h5 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--sari);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14.5px; color: rgba(255,255,255,0.7); transition: color 0.15s ease; }
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: 14.5px; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.footer-contact a { color: var(--sari); font-weight: 600; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  padding: 24px 0 32px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ====================================================
   ALT SAYFA BAŞLIK (page header)
   ==================================================== */
.page-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  padding: 72px 0 56px;
  text-align: center;
}
.page-header .section-eyebrow { color: var(--sari); justify-content: center; }
.page-header .section-eyebrow::before { background: var(--green-light); }
.page-header h1 { color: var(--white); font-size: clamp(30px, 5vw, 46px); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; font-size: 16px; }

/* ====================================================
   ÖZELLİKLER SAYFASI
   ==================================================== */
.feature-detail-grid {
  display: grid;
  gap: 20px;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .feature-detail-grid { grid-template-columns: repeat(2, 1fr); }
}
.feature-detail {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(27,67,50,0.05);
  display: flex;
  gap: 16px;
}
.feature-detail .fd-icon {
  flex-shrink: 0;
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(45,106,79,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.feature-detail h3 { font-size: 17px; margin-bottom: 6px; }
.feature-detail p { font-size: 14px; color: var(--text-grey); }

/* ====================================================
   PREMIUM SAYFASI
   ==================================================== */
.pricing-tier-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-grey);
  text-transform: uppercase;
  margin: 48px 0 18px;
}
.pricing-tier-label:first-of-type { margin-top: 8px; }

.pricing-grid {
  display: grid;
  gap: 22px;
}
@media (min-width: 700px) {
  .pricing-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  border: 1.5px solid rgba(27,67,50,0.08);
  box-shadow: var(--shadow-soft);
}
.pricing-card.popular {
  border-color: var(--green);
  border-width: 2px;
  box-shadow: var(--shadow-card);
}
.pricing-card .popular-tag {
  position: absolute;
  top: -13px; right: 22px;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 5px 14px;
  border-radius: 999px;
}
.pricing-card.corp.popular .popular-tag { background: var(--blue); }
.pricing-card.corp .price { color: var(--blue); }
.pricing-card.corp.max .price { color: #7C3AED; }

.pricing-card h3 { font-size: 18px; margin-bottom: 4px; }
.pricing-card .pricing-sub { font-size: 12.5px; color: var(--green); font-weight: 600; margin-bottom: 14px; }
.pricing-card .price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.pricing-card .price { font-family: var(--font-head); font-size: 32px; font-weight: 700; color: var(--green); }
.pricing-card .price-period { font-size: 13px; color: var(--text-grey); }
.pricing-card hr { border: none; border-top: 1px solid rgba(0,0,0,0.06); margin: 18px 0; }
.pricing-card .pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 4px; }
.pricing-card .pricing-features li { display: flex; align-items: center; gap: 9px; font-size: 14px; }
.pricing-card .pricing-features li::before {
  content: "✓";
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(45,106,79,0.1);
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.pricing-card.corp .pricing-features li::before { background: rgba(21,101,192,0.1); color: var(--blue); }
.pricing-card.corp.max .pricing-features li::before { background: rgba(124,58,237,0.1); color: #7C3AED; }

/* Karşılaştırma tablosu */
.compare-table-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 28px;
  margin-top: 56px;
  overflow-x: auto;
}
.compare-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.compare-table th, .compare-table td {
  padding: 14px 12px;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.compare-table th:first-child, .compare-table td:first-child { text-align: left; }
.compare-table thead th {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-grey);
  font-weight: 800;
}
.compare-table thead th:nth-child(3) { color: var(--green); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table .yes { color: var(--green); font-weight: 800; }
.compare-table .no { color: var(--red); }

.premium-cta-note {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: rgba(45,106,79,0.06);
  border-radius: var(--radius-md);
}
.premium-cta-note p { color: var(--text-grey); margin-bottom: 6px; }
.premium-cta-note a { color: var(--green); font-weight: 800; font-size: 17px; }

/* ====================================================
   GİZLİLİK POLİTİKASI
   ==================================================== */
.policy-content {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.policy-block { margin-bottom: 26px; }
.policy-block h3 { font-size: 16px; color: var(--green); margin-bottom: 8px; }
.policy-block p { font-size: 14.5px; color: var(--text-dark); line-height: 1.8; }
.policy-meta {
  margin-top: 32px;
  padding: 16px 18px;
  background: rgba(45,106,79,0.06);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-grey);
}

/* ====================================================
   İLETİŞİM
   ==================================================== */
.contact-wrap { display: flex; justify-content: center; }
.contact-card {
  max-width: 520px;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.contact-card .c-emoji { font-size: 40px; margin-bottom: 14px; }
.contact-card h2 { margin-bottom: 10px; }
.contact-card p { color: var(--text-grey); margin-bottom: 26px; font-size: 15px; }
.contact-detail-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.contact-detail-list .row {
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px; color: var(--text-dark);
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  text-align: left;
}
.contact-detail-list .row .icon { font-size: 20px; }

/* ====================================================
   SCROLL REVEAL
   ==================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ====================================================
   YARDIMCI
   ==================================================== */
.mt-lg { margin-top: 48px; }
.text-grey { color: var(--text-grey); }
@media (max-width: 599px) {
  .section { padding: 64px 0; }
}
