/* ==========================================================================
   bgdbgb.com — statik landing (Flutter tasarımının birebir HTML karşılığı)
   Tasarım token'ları lib/utils/app_theme.dart ile aynı.
   ========================================================================== */

:root {
  --primary: #0a66c2;
  --primary-medium: #004182;
  --accent-light: #378fe9;
  --text-dark: #1d2226;
  --text-medium: #5f6b7a;
  --text-light: #7b8897;
  --bg-light: #f3f2ef;
  --white: #ffffff;
  --border: #dce6f1;
  --success: #057642;
  --danger: #dc3545;
  --indigo: #6366f1;
  --amber: #f59e0b;
  --red: #ef4444;
  --violet: #8b5cf6;
  --wa: #25d366;
  --hero-bg: #f7faff;
  --transform-bg: #f9fafb;
  --dark-900: #111827;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --shadow-card: 0 4px 12px rgba(0, 0, 0, .04);
  --shadow-soft: 0 3px 10px rgba(0, 0, 0, .03);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }

/* ---- Container (Bootstrap benzeri responsive genişlikler) ---- */
.container { width: 100%; margin-inline: auto; padding-inline: 16px; }
@media (min-width: 576px)  { .container { max-width: 540px;  padding-inline: 24px; } }
@media (min-width: 768px)  { .container { max-width: 720px; } }
@media (min-width: 992px)  { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }
@media (min-width: 1400px) { .container { max-width: 1320px; } }
.container--narrow { max-width: 800px !important; }
.container--md     { max-width: 900px !important; }

/* ---- Section ---- */
.section { padding-block: 48px; }
@media (min-width: 600px) { .section { padding-block: 80px; } }
.section--tight { padding-block: 40px; }
@media (min-width: 600px) { .section--tight { padding-block: 48px; } }
.section--hero  { background: var(--hero-bg); padding-block: 40px; }
@media (min-width: 600px) { .section--hero { padding-block: 72px; } }
.section--final { padding-block: 60px; }
.bg-white  { background: var(--white); }
.bg-light  { background: var(--bg-light); }
.bg-f9     { background: var(--transform-bg); }
.bg-dark   { background: var(--text-dark); }
.section--gradient { background: linear-gradient(135deg, var(--primary), var(--primary-medium)); }

/* ---- Tipografi yardımcıları ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: 30px;
  background: rgba(10, 102, 194, .08);
  color: var(--primary); font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
}
.eyebrow svg { width: 14px; height: 14px; }
.eyebrow--ghost { background: rgba(255, 255, 255, .15); color: #fff; }
.section-title { font-size: clamp(26px, 4vw, 36px); font-weight: 800; color: var(--text-dark); text-align: center; line-height: 1.2; }
.section-sub { font-size: 16px; color: var(--text-medium); text-align: center; margin-top: 12px; }
.text-center { text-align: center; }
.stack { display: flex; flex-direction: column; align-items: center; }
.mt-8 { margin-top: 8px; } .mt-12 { margin-top: 12px; } .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-40 { margin-top: 40px; } .mt-48 { margin-top: 48px; }

/* ---- Butonlar ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 28px; border-radius: 10px; border: none; cursor: pointer;
  font-family: inherit; font-size: 15px; font-weight: 700; line-height: 1;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 2px 8px rgba(10, 102, 194, .3); }
.btn--primary:hover { background: #095aad; }
.btn--outline { background: transparent; color: var(--text-dark); border: 1.5px solid var(--border); }
.btn--outline:hover { border-color: var(--primary); color: var(--primary); }
.btn--white { background: #fff; color: var(--primary); box-shadow: 0 4px 12px rgba(0, 0, 0, .2); }
.btn--ghost-white { background: transparent; color: #fff; border: 1.5px solid #fff; }
.btn--sm { padding: 12px 20px; font-size: 14px; }
.btn--lg { padding: 18px 32px; font-size: 16px; }

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: #fff; border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; padding-block: 12px; }
.brand { font-size: 24px; font-weight: 800; color: var(--primary); }
@media (max-width: 600px) { .brand { font-size: 20px; } }
.nav { display: flex; align-items: center; gap: 24px; }
.nav__link { color: var(--text-dark); font-weight: 600; font-size: 15px; }
.nav__link:hover { color: var(--primary); }
.nav__actions { display: flex; gap: 8px; margin-left: 8px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: var(--text-dark); }
.nav-toggle svg { width: 28px; height: 28px; }
.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 12px 0 16px; border-bottom: 1px solid var(--border); background: #fff; }
.mobile-menu a { padding: 10px 4px; font-weight: 600; font-size: 16px; }
.mobile-menu .btn { width: 100%; }
.mobile-menu__row { display: flex; gap: 8px; margin-top: 8px; }
.mobile-menu__row .btn { flex: 1; }
@media (max-width: 860px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
  body.menu-open .mobile-menu { display: flex; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero-h1 { font-size: clamp(30px, 6vw, 48px); font-weight: 800; line-height: 1.2; max-width: 800px; text-align: center; }
.hero-h1 .accent { color: var(--primary); }
.hero-sub { max-width: 620px; text-align: center; color: var(--text-medium); font-size: clamp(15px, 2vw, 17px); line-height: 1.6; margin-top: 16px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }
.platform-cards { display: grid; gap: 14px; max-width: 960px; margin: 40px auto 0; grid-template-columns: 1fr; }
@media (min-width: 600px) { .platform-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 961px) { .platform-cards { grid-template-columns: repeat(4, 1fr); } }
.platform-card {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 18px 14px; box-shadow: var(--shadow-soft);
}
.platform-card__icon { flex: none; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 8px; background: rgba(10, 102, 194, .08); color: var(--primary); }
.platform-card__icon svg { width: 22px; height: 22px; }
.platform-card__title { font-weight: 700; font-size: 13px; color: var(--text-dark); }
.platform-card__desc { font-size: 11px; color: var(--text-medium); }
.photo-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 900px; margin: 40px auto 0; }
.photo-card { position: relative; border-radius: 12px; overflow: hidden; height: 180px; background: #eef3f8; }
@media (max-width: 600px) { .photo-card { height: 130px; } }
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-card__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .6)); }
.photo-card__cap { position: absolute; left: 14px; right: 14px; bottom: 14px; color: #fff; }
.photo-card__cap b { display: block; font-size: 15px; font-weight: 700; }
.photo-card__cap span { font-size: 12px; color: rgba(255, 255, 255, .85); }
@media (max-width: 600px) { .photo-card__cap { left: 10px; right: 10px; bottom: 10px; } .photo-card__cap b { font-size: 12px; } .photo-card__cap span { font-size: 10px; } }

/* ==========================================================================
   TRANSFORMATION
   ========================================================================== */
.eyebrow--plain { background: none; color: var(--gray-500); font-size: 12px; letter-spacing: 2px; padding: 0; }
.transform-table { width: 100%; border: 1px solid var(--gray-300); border-radius: 8px; overflow: hidden; background: #fff; margin-top: 48px; }
.transform-row { display: grid; grid-template-columns: 3fr 2fr 2fr; align-items: center; padding-block: 12px; border-bottom: 1px solid var(--gray-200); }
.transform-row:last-child { border-bottom: none; }
.transform-row--head { background: var(--dark-900); color: #fff; font-weight: 700; }
.transform-row--gray { background: var(--gray-100); }
.transform-row > div { font-size: 14px; padding-inline: 8px; }
.transform-row > div:first-child { padding-left: 20px; font-weight: 600; }
.transform-row .col-c { text-align: center; }
.transform-row__before { color: var(--gray-500); }
.transform-row__after { color: var(--dark-900); font-weight: 600; }
@media (max-width: 600px) { .transform-row > div { font-size: 12px; } .transform-row .col-c { font-size: 11px; } }
.stat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
@media (max-width: 600px) { .stat-cards { grid-template-columns: repeat(2, 1fr); gap: 8px; } .stat-cards .hide-mobile { display: none; } }
.stat-card { background: #fff; border: 1px solid var(--gray-300); border-radius: 8px; padding: 20px 12px; text-align: center; }
.stat-card b { font-size: 24px; font-weight: 800; color: var(--dark-900); }
.stat-card span { display: block; margin-top: 4px; font-size: 12px; color: var(--gray-500); font-weight: 500; }

/* ==========================================================================
   NETWORK
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step-card { display: flex; gap: 14px; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.step-num { flex: none; width: 36px; height: 36px; border-radius: 10px; color: #fff; font-weight: 800; font-size: 16px; display: grid; place-items: center; }
.step-card h3 { font-size: 16px; font-weight: 700; }
.step-card p { color: var(--text-medium); font-size: 14px; margin-top: 4px; line-height: 1.4; }
.panel { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 28px; margin-top: 32px; }
.tree { display: flex; flex-direction: column; align-items: center; }
.tree__row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.tree__line { width: 2px; height: 20px; background: var(--border); margin-block: 6px; }
.node { color: #fff; font-weight: 700; border-radius: 8px; padding: 6px 10px; font-size: 11px; }
.node--main { padding: 10px 20px; font-size: 14px; }
.bg-primary { background: var(--primary); }
.bg-success { background: var(--success); }
.bg-indigo  { background: var(--indigo); }
.level-badges { display: flex; gap: 16px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
.level-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 8px; font-size: 12px; color: var(--text-medium); }
.level-badge b { font-size: 13px; font-weight: 800; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.earn-table { margin-top: 20px; }
.earn-head, .earn-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; align-items: center; padding: 10px 16px; font-size: 13px; }
.earn-head { background: rgba(10, 102, 194, .06); border-radius: 8px; font-weight: 700; }
.earn-row { border-bottom: 1px solid var(--border); }
.earn-row .c { text-align: center; font-weight: 700; }
.earn-row .e { text-align: right; font-weight: 700; }
.earn-total { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; margin-top: 8px; border-radius: 8px; background: linear-gradient(90deg, rgba(10, 102, 194, .08), rgba(5, 118, 66, .08)); font-weight: 800; }
.earn-total b { font-size: 18px; color: var(--primary); }
.sys-features { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.sys-feature { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 500; }
.sys-feature svg { width: 16px; height: 16px; color: var(--success); }
.panel-title { display: flex; align-items: center; gap: 8px; font-size: 17px; font-weight: 700; }
.panel-title svg { width: 20px; height: 20px; color: var(--primary); }

/* ==========================================================================
   CALCULATOR
   ========================================================================== */
.calc-card { background: #fff; border-radius: 16px; padding: 32px; box-shadow: 0 8px 20px rgba(0, 0, 0, .1); margin-top: 40px; }
.calc-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.calc-row + input { margin-top: 8px; }
.pill { padding: 4px 12px; border-radius: 8px; font-weight: 700; font-size: 14px; }
.pill--primary { background: rgba(10, 102, 194, .1); color: var(--primary); }
.pill--success { background: rgba(5, 118, 66, .1); color: var(--success); }
input[type="range"] { width: 100%; -webkit-appearance: none; appearance: none; height: 6px; border-radius: 3px; background: rgba(10, 102, 194, .15); outline: none; margin: 8px 0; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--primary); cursor: pointer; box-shadow: 0 1px 4px rgba(0,0,0,.3); }
input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border: none; border-radius: 50%; background: var(--primary); cursor: pointer; }
input.range--success { background: rgba(5, 118, 66, .15); }
input.range--success::-webkit-slider-thumb { background: var(--success); }
input.range--success::-moz-range-thumb { background: var(--success); }
.calc-hr { height: 1px; background: var(--border); margin-block: 20px; }
.calc-result { display: flex; justify-content: space-between; align-items: center; }
.calc-result__label b { font-weight: 600; display: block; }
.calc-result__label span { font-size: 13px; color: var(--text-medium); }
.calc-result__amount { font-size: 20px; font-weight: 800; }
.calc-total { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-radius: 12px; background: linear-gradient(90deg, rgba(10, 102, 194, .06), rgba(5, 118, 66, .06)); }
.calc-total span { font-size: 16px; font-weight: 800; }
.calc-total b { font-size: 28px; font-weight: 800; color: var(--primary); }

/* ==========================================================================
   URGENCY (countdown)
   ========================================================================== */
.badge-warn { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 20px; background: var(--amber); color: #fff; font-weight: 800; font-size: 13px; letter-spacing: 1px; box-shadow: 0 3px 12px rgba(245, 158, 11, .4); }
.badge-warn svg { width: 16px; height: 16px; }
.countdown { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 28px; }
.cd-block { width: 85px; padding: 16px 0; text-align: center; border-radius: 12px; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .2); }
.cd-block b { display: block; font-size: 34px; font-weight: 800; color: #fff; line-height: 1; }
.cd-block span { font-size: 11px; font-weight: 600; color: rgba(255, 255, 255, .7); }
.cd-sep { font-size: 32px; font-weight: 800; color: rgba(255, 255, 255, .5); }
@media (max-width: 600px) { .cd-block { width: 64px; padding: 12px 0; } .cd-block b { font-size: 26px; } .cd-sep { font-size: 24px; } }

/* ==========================================================================
   FEATURES
   ========================================================================== */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 960px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; gap: 16px; } }
.feature-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px; box-shadow: var(--shadow-card); }
.feature-card__icon { width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px; }
.feature-card__icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 18px; font-weight: 700; }
.feature-card p { font-size: 14px; color: var(--text-medium); line-height: 1.5; margin-top: 8px; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 48px; }
@media (max-width: 760px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }
.about-photo { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); height: 320px; }
@media (max-width: 600px) { .about-photo { height: 240px; } }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo__cap { position: absolute; inset: auto 0 0 0; padding: 16px 20px; background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .7)); color: #fff; }
.about-photo__cap b { font-size: 18px; font-weight: 700; }
.about-photo__tag { display: inline-block; margin-top: 4px; padding: 3px 10px; border-radius: 12px; background: rgba(255, 255, 255, .2); font-size: 12px; font-weight: 600; }
.about-content h3 { font-size: 24px; font-weight: 800; }
.about-content p { font-size: 16px; color: var(--text-medium); line-height: 1.6; margin-top: 16px; }
.note-box { padding: 16px; border-radius: 12px; background: rgba(10, 102, 194, .05); border: 1px solid rgba(10, 102, 194, .1); font-size: 14px; font-weight: 500; line-height: 1.5; margin-top: 16px; }
.check-row { display: flex; flex-wrap: wrap; gap: 12px 16px; margin-top: 24px; }
.check-item { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.check-item svg { width: 20px; height: 20px; color: var(--success); }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.about-stat { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 16px 12px; text-align: center; }
.about-stat b { font-size: 24px; font-weight: 800; }
.about-stat span { display: block; margin-top: 4px; font-size: 13px; color: var(--text-medium); }

/* ==========================================================================
   INSTRUCTOR (quote)
   ========================================================================== */
.quote-box { background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .15); border-radius: 16px; padding: 36px; margin-top: 32px; color: rgba(255, 255, 255, .9); }
@media (max-width: 600px) { .quote-box { padding: 24px; } }
.quote-box svg.q { width: 40px; height: 40px; color: rgba(255, 255, 255, .3); }
.quote-box p { font-size: clamp(15px, 2vw, 17px); line-height: 1.8; margin-top: 16px; }
.quote-cta { padding: 16px; border-radius: 12px; background: rgba(255, 255, 255, .1); color: #fff; font-weight: 700; font-size: clamp(16px, 2vw, 18px); line-height: 1.6; margin-top: 24px; }
.title-white { color: #fff; }
.sub-white { color: rgba(255, 255, 255, .7); font-size: 16px; font-weight: 600; margin-top: 8px; text-align: center; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 960px) { .testi-grid { grid-template-columns: 1fr; gap: 20px; } }
.testi-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px; box-shadow: var(--shadow-card); }
.stars { display: flex; gap: 2px; color: var(--amber); }
.stars svg { width: 20px; height: 20px; }
.testi-text { font-size: 15px; line-height: 1.5; font-style: italic; margin-top: 16px; }
.testi-hr { height: 1px; background: var(--border); margin-block: 16px; }
.testi-foot { display: flex; align-items: center; gap: 12px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--primary); }
.testi-name { display: flex; align-items: center; gap: 8px; font-weight: 700; }
.tag-success { padding: 2px 8px; border-radius: 10px; background: rgba(5, 118, 66, .1); color: var(--success); font-size: 11px; font-weight: 700; }
.tag-earn { margin-left: auto; padding: 4px 10px; border-radius: 8px; background: rgba(10, 102, 194, .08); color: var(--primary); font-size: 12px; font-weight: 700; }
.testi-city { color: var(--text-medium); font-size: 13px; margin-top: 2px; }

/* ==========================================================================
   REGISTRATION (tabs)
   ========================================================================== */
.reg-tabs { display: flex; background: var(--bg-light); border-radius: 12px; padding: 4px; margin-top: 32px; }
.reg-tab { flex: 1; padding: 12px; border: none; background: none; cursor: pointer; font-family: inherit; font-weight: 600; font-size: 14px; color: var(--text-medium); border-radius: 9px; }
.reg-tab.active { background: #fff; color: var(--primary); box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.reg-panel { display: none; margin-top: 24px; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 32px; }
.reg-panel.active { display: block; }
.reg-circle { width: 72px; height: 72px; border-radius: 50%; background: rgba(10, 102, 194, .08); display: grid; place-items: center; margin: 0 auto; }
.reg-circle svg { width: 40px; height: 40px; color: var(--primary); }
.reg-panel h3 { font-size: 20px; font-weight: 700; text-align: center; margin-top: 16px; }
.reg-panel p.muted { text-align: center; color: var(--text-medium); margin-top: 8px; }
.faq-item { padding-bottom: 16px; }
.faq-item__q { display: flex; align-items: start; gap: 8px; font-weight: 700; font-size: 15px; }
.faq-item__q svg { width: 18px; height: 18px; color: var(--primary); flex: none; margin-top: 2px; }
.faq-item__a { padding-left: 26px; color: var(--text-medium); font-size: 14px; line-height: 1.4; margin-top: 4px; }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-card { background: linear-gradient(135deg, var(--primary), var(--primary-medium)); border-radius: 20px; padding: 48px; text-align: center; box-shadow: 0 10px 30px rgba(10, 102, 194, .3); }
@media (max-width: 600px) { .final-card { padding: 32px; } }
.final-card__icon { width: 68px; height: 68px; border-radius: 50%; background: rgba(255, 255, 255, .15); display: grid; place-items: center; margin: 0 auto 20px; }
.final-card__icon svg { width: 36px; height: 36px; color: #fff; }
.final-card h2 { font-size: clamp(24px, 4vw, 32px); font-weight: 800; color: #fff; line-height: 1.3; }
.final-card p { color: rgba(255, 255, 255, .85); font-size: 16px; line-height: 1.5; margin-top: 16px; }
.final-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }
.final-tags { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: center; margin-top: 24px; }
.final-tag { display: inline-flex; align-items: center; gap: 6px; color: rgba(255, 255, 255, .8); font-size: 14px; font-weight: 600; }
.final-tag svg { width: 16px; height: 16px; color: rgba(255, 255, 255, .7); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { color: rgba(255, 255, 255, .7); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 24px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.footer .brand { color: #fff; font-size: 22px; }
.footer p { font-size: 14px; line-height: 1.5; margin-top: 12px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 8px; }
.footer a { font-size: 14px; }
.footer a:hover { color: #fff; }
.footer-contact { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 14px; }
.footer-contact svg { width: 16px; height: 16px; flex: none; }
.wa-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 8px; background: var(--wa); color: #fff; font-weight: 600; margin-top: 12px; }
.wa-btn svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 13px; color: rgba(255, 255, 255, .5); }
.footer-social { display: flex; gap: 12px; }
.footer-social span { width: 32px; height: 32px; border-radius: 8px; background: rgba(255, 255, 255, .1); display: grid; place-items: center; }
.footer-social svg { width: 16px; height: 16px; }

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal { padding: 32px 0; }
@media (max-width: 600px) { .legal { padding: 16px 0; } }
.legal-card { max-width: 900px; margin-inline: auto; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 40px; }
@media (max-width: 600px) { .legal-card { padding: 20px; } }
.legal-card h1 { font-size: clamp(24px, 4vw, 32px); font-weight: 800; }
.legal-card .updated { color: var(--text-medium); font-size: 13px; margin-top: 8px; }
.legal-card hr { border: none; border-top: 1px solid var(--border); margin-block: 24px; }
.legal-body { font-size: 15px; line-height: 1.8; white-space: pre-wrap; }
.legal-back { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 600; margin-bottom: 16px; }
.legal-back svg { width: 18px; height: 18px; }

.icon-inline { width: 1em; height: 1em; vertical-align: -0.125em; }
