/* ═══════════════════════════════════════════════════
   BDGate Shared Stylesheet — Bangladesh Flag Theme
   Dark default · Light override · Full token system
═══════════════════════════════════════════════════ */

/* ── DESIGN TOKENS — DARK (default) ── */
:root {
  --green:       #059669;
  --green-light: #10b981;
  --green-dark:  #047857;
  --red:         #e53e3e;
  --red-light:   #fc5c5c;
  --red-dark:    #c53030;
  --green-glow:  rgba(5,150,105,0.28);
  --red-glow:    rgba(229,62,62,0.22);

  --bg:    #080d18;
  --bg2:   #0d1423;
  --bg3:   #111929;
  --card:  #141c2e;
  --card2: #192236;

  --border:  rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.13);

  --text:  #f0f4ff;
  --text2: #8fa3be;
  --text3: #52647e;

  --nav-bg:   rgba(8,13,24,0.92);
  --shadow:   0 4px 28px rgba(0,0,0,0.45);
  --radius:   14px;
  --radius-sm: 9px;
}

/* ── DESIGN TOKENS — LIGHT ── */
@media (prefers-color-scheme: light) {
  :root {
    --green:       #047857;
    --green-light: #059669;
    --green-dark:  #065f46;
    --red:         #c53030;
    --red-light:   #e53e3e;
    --red-dark:    #9b2c2c;
    --green-glow:  rgba(4,120,87,0.16);
    --red-glow:    rgba(197,48,48,0.13);
    --bg:    #f7faf7;
    --bg2:   #edf5f0;
    --bg3:   #e2efe8;
    --card:  #ffffff;
    --card2: #f2f9f5;
    --border:  rgba(0,0,0,0.09);
    --border2: rgba(0,0,0,0.16);
    --text:  #0d1f12;
    --text2: #3a5a47;
    --text3: #7a9e8a;
    --nav-bg:   rgba(247,250,247,0.96);
    --shadow:   0 4px 24px rgba(0,0,0,0.07);
  }
}

html[data-theme="dark"] {
  --green: #059669; --green-light: #10b981; --green-dark: #047857;
  --red: #e53e3e; --red-light: #fc5c5c; --red-dark: #c53030;
  --green-glow: rgba(5,150,105,0.28); --red-glow: rgba(229,62,62,0.22);
  --bg: #080d18; --bg2: #0d1423; --bg3: #111929;
  --card: #141c2e; --card2: #192236;
  --border: rgba(255,255,255,0.07); --border2: rgba(255,255,255,0.13);
  --text: #f0f4ff; --text2: #8fa3be; --text3: #52647e;
  --nav-bg: rgba(8,13,24,0.92); --shadow: 0 4px 28px rgba(0,0,0,0.45);
}

html[data-theme="light"] {
  --green: #047857; --green-light: #059669; --green-dark: #065f46;
  --red: #c53030; --red-light: #e53e3e; --red-dark: #9b2c2c;
  --green-glow: rgba(4,120,87,0.16); --red-glow: rgba(197,48,48,0.13);
  --bg: #f7faf7; --bg2: #edf5f0; --bg3: #e2efe8;
  --card: #ffffff; --card2: #f2f9f5;
  --border: rgba(0,0,0,0.09); --border2: rgba(0,0,0,0.16);
  --text: #0d1f12; --text2: #3a5a47; --text3: #7a9e8a;
  --nav-bg: rgba(247,250,247,0.96); --shadow: 0 4px 24px rgba(0,0,0,0.07);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.6;
  overflow-x: hidden; transition: background .3s, color .3s;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ── NAVBAR ── */
nav {
  position: sticky; top: 0; z-index: 100; padding: 0 24px;
  background: var(--nav-bg); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-brand { display: flex; align-items: center; }
.nav-logo  { height: 38px; width: auto; background: #fff; border-radius: 6px; padding: 3px 8px; display: block; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: 14px; color: var(--text2); font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-links a.nav-accent { color: var(--red-light); font-weight: 600; }
.nav-links a.nav-active { color: var(--green-light); font-weight: 600; }
.nav-actions { display: flex; gap: 8px; align-items: center; }

/* ── THEME TOGGLE ── */
.theme-toggle {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid var(--border); background: transparent;
  cursor: pointer; font-size: 16px; display: flex; align-items: center;
  justify-content: center; transition: background .2s, border-color .2s;
  flex-shrink: 0;
}
.theme-toggle:hover { background: var(--card); border-color: var(--green); }

/* ── FLAG STRIPE ── */
.flag-stripe {
  height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green) 50%, var(--red) 50%, var(--red) 100%);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; padding: 9px 20px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: all .2s; border: none; font-family: inherit; text-decoration: none;
}
.btn-green  { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-light); transform: translateY(-1px); box-shadow: 0 4px 16px var(--green-glow); }
.btn-red    { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-light); transform: translateY(-1px); box-shadow: 0 4px 16px var(--red-glow); }
.btn-ghost  { background: transparent; color: var(--text2); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--card); color: var(--text); }
.btn-outline { background: transparent; color: var(--green-light); border: 1.5px solid var(--green); }
.btn-outline:hover { background: var(--green-glow); }
.btn-outline-red { background: transparent; color: var(--red-light); border: 1.5px solid var(--red); }
.btn-outline-red:hover { background: var(--red-glow); }
.btn-lg  { padding: 12px 28px; font-size: 15px; border-radius: 11px; }
.btn-xl  { padding: 15px 36px; font-size: 16px; border-radius: 13px; }
.btn-sm  { padding: 6px 14px; font-size: 12px; border-radius: 7px; }
.btn-full { width: 100%; }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 12px 24px; background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.breadcrumb-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text3);
}
.breadcrumb-inner a { color: var(--text3); transition: color .2s; }
.breadcrumb-inner a:hover { color: var(--green-light); }
.breadcrumb-sep { color: var(--text3); font-size: 11px; }
.breadcrumb-current { color: var(--text2); }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 24px; }
.section.alt { background: var(--bg2); }
.section-inner { max-width: 1200px; margin: 0 auto; }

/* ── SECTION HEADERS ── */
.section-tag {
  display: inline-block; background: rgba(5,150,105,0.1); color: var(--green-light);
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px; margin-bottom: 14px;
  border: 1px solid rgba(5,150,105,0.2);
}
.section-tag.red { background: rgba(229,62,62,0.1); color: var(--red-light); border-color: rgba(229,62,62,0.22); }
h2.section-head {
  font-size: clamp(26px, 3.5vw, 44px); font-weight: 800;
  letter-spacing: -1px; line-height: 1.2; margin-bottom: 14px; text-wrap: balance;
}
.section-sub { font-size: 16px; color: var(--text2); max-width: 560px; line-height: 1.75; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  padding: 64px 24px 56px; text-align: center; background: var(--bg2);
  border-bottom: 1px solid var(--border); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -80px; left: 40%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(5,150,105,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 52px); font-weight: 900;
  letter-spacing: -1.5px; line-height: 1.15; margin: 14px 0 16px; text-wrap: balance;
}
.page-hero .sub { font-size: 17px; color: var(--text2); max-width: 580px; margin: 0 auto; line-height: 1.75; }

/* ── CARDS ── */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; background: rgba(5,150,105,0.12); }
.card-icon.red { background: rgba(229,62,62,0.1); }
.card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.card p  { font-size: 14px; color: var(--text2); line-height: 1.7; }

/* ── FEATURE GRID ── */
.feat-grid   { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin-top: 48px; }
.feat-grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 48px; }
.feat-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 20px; margin-top: 48px; }

/* ── PRICING GRID ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px;
}
.price-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
  transition: all .25s; position: relative; overflow: hidden;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-card.popular { border-color: var(--green); box-shadow: 0 0 0 1px var(--green), 0 8px 28px var(--green-glow); }
.price-card.enterprise-tier { border-color: rgba(229,62,62,0.32); }
.price-badge { position: absolute; top: 0; right: 0; color: #fff; font-size: 9px; font-weight: 800; padding: 4px 14px; border-bottom-left-radius: 10px; letter-spacing: 1px; text-transform: uppercase; }
.price-badge.green { background: var(--green); }
.price-badge.red   { background: var(--red); }
.price-name   { font-size: 16px; font-weight: 700; }
.price-amount { display: flex; align-items: baseline; gap: 3px; }
.price-cur    { font-size: 18px; color: var(--text2); }
.price-num    { font-size: 38px; font-weight: 900; letter-spacing: -1px; font-variant-numeric: tabular-nums; }
.price-per    { font-size: 12px; color: var(--text3); }
.price-meta   { font-size: 12px; color: var(--text3); }
.price-divider { border: none; border-top: 1px solid var(--border); }
.price-features { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pf   { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text2); }
.pf .ck { color: var(--green-light); flex-shrink: 0; font-weight: 800; font-size: 11px; margin-top: 2px; }
.pf .x  { color: var(--text3); flex-shrink: 0; font-size: 11px; margin-top: 2px; }

/* ── COMPARISON TABLE ── */
.compare-wrap { overflow-x: auto; margin-top: 48px; border-radius: var(--radius); border: 1px solid var(--border); }
table.compare-table {
  width: 100%; border-collapse: collapse; font-size: 14px;
  background: var(--card); min-width: 640px;
}
table.compare-table th {
  padding: 16px 20px; text-align: left; font-size: 13px; font-weight: 700;
  background: var(--card2); color: var(--text2); border-bottom: 1px solid var(--border);
  letter-spacing: .3px;
}
table.compare-table th.col-bdgate { color: var(--green-light); background: rgba(5,150,105,0.07); }
table.compare-table td {
  padding: 13px 20px; border-bottom: 1px solid var(--border); color: var(--text2); vertical-align: top;
}
table.compare-table td:first-child { color: var(--text); font-weight: 500; }
table.compare-table tr:last-child td { border-bottom: none; }
table.compare-table tr:hover td { background: rgba(255,255,255,0.02); }
.cmp-yes { color: var(--green-light); font-weight: 700; }
.cmp-no  { color: var(--text3); }
.cmp-partial { color: #f59e0b; }

/* ── STEPS ── */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px; margin-top: 48px; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 28px; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent); opacity: .3;
}
.step-item { text-align: center; padding: 32px 16px; }
.step-num {
  width: 56px; height: 56px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: #fff;
  margin: 0 auto 20px; box-shadow: 0 4px 16px var(--green-glow);
}
.step-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step-item p  { font-size: 14px; color: var(--text2); line-height: 1.65; }

/* ── FAQ ACCORDION ── */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; padding: 18px 22px; font-size: 15px; font-weight: 600;
  color: var(--text); background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: background .2s;
}
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-icon { font-size: 18px; color: var(--green-light); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 22px; max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease; color: var(--text2); font-size: 14px; line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 600px; padding: 0 22px 18px; }

/* ── BLOG / ARTICLE ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-top: 40px; }
.blog-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all .25s; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green-dark); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-tag { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green-light); }
.blog-card h3 { font-size: 16px; font-weight: 700; line-height: 1.4; }
.blog-card p  { font-size: 13px; color: var(--text2); line-height: 1.65; flex: 1; }
.blog-meta { font-size: 12px; color: var(--text3); margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); display: flex; gap: 12px; }

.article-hero { padding: 64px 24px 48px; background: var(--bg2); border-bottom: 1px solid var(--border); text-align: center; }
.article-hero .a-tag { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green-light); margin-bottom: 16px; display: block; }
.article-hero h1 { font-size: clamp(26px, 4vw, 48px); font-weight: 900; letter-spacing: -1.5px; line-height: 1.15; max-width: 760px; margin: 0 auto 16px; text-wrap: balance; }
.article-hero .a-meta { font-size: 13px; color: var(--text3); display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.article-layout { max-width: 760px; margin: 0 auto; padding: 56px 24px; }
.article-body h2 { font-size: 26px; font-weight: 800; letter-spacing: -.5px; margin: 48px 0 18px; }
.article-body h3 { font-size: 19px; font-weight: 700; margin: 32px 0 14px; color: var(--green-light); }
.article-body p  { font-size: 16px; color: var(--text2); line-height: 1.8; margin-bottom: 18px; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 18px; }
.article-body li { font-size: 16px; color: var(--text2); line-height: 1.75; margin-bottom: 8px; }
.article-body strong { color: var(--text); font-weight: 700; }
.article-body a { color: var(--green-light); text-decoration: underline; text-decoration-color: rgba(16,185,129,0.4); }
.article-body a:hover { text-decoration-color: var(--green-light); }
.article-body .callout { background: rgba(5,150,105,0.08); border-left: 3px solid var(--green); border-radius: 0 8px 8px 0; padding: 16px 20px; margin: 24px 0; }
.article-body .callout p { margin: 0; }
.article-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.article-body table th { background: var(--card2); padding: 12px 16px; text-align: left; font-size: 13px; font-weight: 700; border-bottom: 1px solid var(--border); }
.article-body table td { padding: 11px 16px; border-bottom: 1px solid var(--border); color: var(--text2); }

/* ── CODE BLOCKS ── */
.code-block {
  background: var(--bg); border: 1px solid var(--border2);
  border-radius: 10px; padding: 20px 22px; font-family: 'Courier New', Consolas, monospace;
  font-size: 13px; color: #a8d8b9; overflow-x: auto; margin: 20px 0;
  line-height: 1.65;
}
.code-block .kw  { color: #10b981; }
.code-block .str { color: #fbbf24; }
.code-block .cmt { color: var(--text3); font-style: italic; }

/* ── GLOSSARY ── */
.glossary-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; margin-top: 40px; }
.gloss-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px 22px; }
.gloss-term { font-size: 16px; font-weight: 800; color: var(--green-light); margin-bottom: 8px; letter-spacing: -.2px; }
.gloss-def  { font-size: 14px; color: var(--text2); line-height: 1.7; }
.gloss-tag  { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text3); margin-top: 8px; background: var(--card2); padding: 2px 8px; border-radius: 4px; }

/* ── MFS CHIP STRIP ── */
.mfs-strip { padding: 28px 24px; background: var(--bg2); border-bottom: 1px solid var(--border); }
.mfs-label { text-align: center; font-size: 11px; color: var(--text3); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; }
.mfs-chips { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.mfs-chip {
  display: flex; align-items: center; gap: 7px; background: var(--card);
  border: 1px solid var(--border); padding: 7px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600; transition: all .2s;
}
.mfs-chip:hover { border-color: var(--green); transform: translateY(-2px); }

/* ── PLUGIN GRID ── */
.plugin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; margin-top: 40px; }
.plugin-chip {
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  padding: 16px 12px; text-align: center; font-size: 12px; font-weight: 600;
  color: var(--text2); transition: all .2s; cursor: default;
}
.plugin-chip:hover { border-color: var(--green); color: var(--text); transform: translateY(-2px); }
.plugin-chip .pi { font-size: 22px; display: block; margin-bottom: 6px; }

/* ── STAT STRIP ── */
.stat-strip {
  display: flex; justify-content: center;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--card); overflow: hidden; flex-wrap: wrap;
}
.stat-item { padding: 22px 40px; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 30px; font-weight: 900; color: var(--green-light); font-variant-numeric: tabular-nums; }
.stat-lbl { font-size: 12px; color: var(--text3); text-transform: uppercase; letter-spacing: .8px; margin-top: 3px; }

/* ── RESELLER / CTA BANNER ── */
.reseller-wrap {
  background: linear-gradient(135deg, rgba(229,62,62,0.08) 0%, rgba(229,62,62,0.02) 50%, rgba(5,150,105,0.06) 100%);
  border: 1px solid rgba(229,62,62,0.22); border-radius: 22px; padding: 56px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  position: relative; overflow: hidden;
}
.reseller-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--green) 100%);
}
.rb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rb-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 15px 16px; display: flex; align-items: flex-start; gap: 11px;
  transition: border-color .2s, transform .2s;
}
.rb-card:hover { border-color: rgba(229,62,62,0.3); transform: translateY(-2px); }
.rb-icon { font-size: 20px; flex-shrink: 0; }
.rb-card h4 { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.rb-card p  { font-size: 12px; color: var(--text3); line-height: 1.5; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, rgba(5,150,105,0.12), rgba(229,62,62,0.05));
  border: 1px solid rgba(5,150,105,0.2); border-radius: 24px;
  padding: 72px 48px; text-align: center; margin: 0 24px;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--red));
}
.cta-section h2 { margin-bottom: 14px; }
.cta-section .sub { color: var(--text2); margin-bottom: 32px; font-size: 17px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 56px 24px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { height: 36px; width: auto; background: #fff; border-radius: 6px; padding: 3px 8px; }
.footer-brand p { font-size: 13px; color: var(--text3); margin-top: 14px; max-width: 240px; line-height: 1.7; }
.footer-offices { font-size: 12px; color: var(--text3); margin-top: 12px; line-height: 1.8; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text2); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: var(--text3); margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: var(--green-light); }
.footer-bottom {
  max-width: 1200px; margin: 36px auto 0; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text3); }
.footer-flag { display: flex; gap: 6px; align-items: center; font-size: 12px; color: var(--text3); }
.footer-flag .g { color: var(--green-light); font-size: 16px; }
.footer-flag .r { color: var(--red-light); font-size: 16px; }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 998; }
.wa-btn {
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all .25s;
  text-decoration: none; position: relative;
}
.wa-btn:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }
.wa-btn svg { width: 30px; height: 30px; fill: #fff; }
.wa-pulse {
  position: absolute; top: 0; right: 0; width: 13px; height: 13px;
  background: var(--red); border-radius: 50%; border: 2px solid var(--bg);
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.3)} }

/* ── PULSE ANIMATION ── */
.pulse { width: 7px; height: 7px; background: var(--green-light); border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

/* ── HERO BADGE ── */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(5,150,105,0.1); border: 1px solid rgba(5,150,105,0.28);
  color: var(--green-light); padding: 6px 16px; border-radius: 50px;
  font-size: 12px; font-weight: 600; margin-bottom: 28px;
}

/* ── UTILITY ── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.gap-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.green { color: var(--green-light); }
.red   { color: var(--red-light); }
.muted { color: var(--text3); font-size: 13px; }

/* ── OFFICE CARDS ── */
.office-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 32px; }
.office-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px 26px; display: flex; gap: 16px; align-items: flex-start;
  transition: all .25s;
}
.office-card:hover { border-color: rgba(5,150,105,0.3); transform: translateY(-2px); }
.office-pin { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.office-city { font-size: 11px; color: var(--green-light); font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 5px; }
.office-addr { font-size: 13px; color: var(--text2); line-height: 1.6; margin-bottom: 7px; }
.office-phone { font-size: 13px; font-weight: 600; color: var(--text); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .reseller-wrap { grid-template-columns: 1fr; padding: 36px 28px; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 48px 24px; margin: 0; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 28px; }
  .stat-strip { flex-direction: column; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .nav-actions .btn-ghost { display: none; }
  .rb-grid { grid-template-columns: 1fr; }
}

/* ── SPINNER / LOADING ── */
.spinner { width: 14px; height: 14px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── FORM ELEMENTS ── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text2); margin-bottom: 7px; }
.form-input {
  width: 100%; padding: 11px 14px; background: var(--card2);
  border: 1px solid var(--border); border-radius: 10px; color: var(--text);
  font-size: 14px; outline: none; transition: border-color .2s; font-family: inherit;
}
.form-input:focus { border-color: var(--green); }
.form-input::placeholder { color: var(--text3); }
textarea.form-input { resize: vertical; min-height: 120px; }

/* ── THEME TOGGLE SCRIPT (inline small) ── */
