/* ==========================================================================
   9771.help - Minimalist, High-Trust Pakistani Portal Stylesheet (v3.0)
   - Zero Blue & Zero Color Clutter (Refined Pakistan Green & Soft Neutrals)
   - Clean Light/Editorial Aesthetic (Crisp White, Soft Slate, Forest Green)
   - Human, Natural Typography (Plus Jakarta Sans & Noto Nastaliq Urdu)
   - Image-Rich & Mobile-First
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Noto+Nastaliq+Urdu:wght@400;500;600;700&display=swap');

:root {
  /* Clean, Minimalist Palette - Refined & Harmonious */
  --bg-page: #F9FAFB;
  --bg-surface: #FFFFFF;
  --bg-subtle: #F3F4F6;
  --bg-tint-green: #F0FDF4;

  /* Single Strong Accent: Pakistan Forest Green */
  --brand-green: #006837;
  --brand-green-hover: #04522B;
  --brand-green-light: #E8F5E9;
  --brand-green-border: #A7F3D0;
  
  /* Subtle Neutral Amber (Only for Token/Pump Highlight) */
  --brand-amber: #D97706;
  --brand-amber-light: #FEF3C7;

  /* Typography & Text */
  --text-heading: #111827;
  --text-body: #374151;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --text-white: #FFFFFF;

  /* Clean Borders & Shadows */
  --border-light: #E5E7EB;
  --border-focus: #006837;

  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 20px 25px -5px rgba(0, 0, 0, 0.06);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --font-urdu: 'Noto Nastaliq Urdu', 'Urdu Typesetting', Tahoma, sans-serif;

  --transition: 0.2s ease;
  --max-width: 1160px;
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-page);
  color: var(--text-body);
  font-family: var(--font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Authentic Urdu RTL Typography */
html[dir="rtl"] {
  font-family: var(--font-urdu);
  direction: rtl;
}

html[dir="rtl"] body {
  line-height: 2.1;
}

body {
  min-height: 100vh;
  background-color: var(--bg-page);
  color: var(--text-body);
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select {
  font-family: inherit;
  font-size: 0.95rem;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ==========================================================================
   Top Disclaimer Bar (Clean, Soft Charcoal / Grey)
   ========================================================================== */
.top-disclaimer-bar {
  background: #181C20;
  color: #E5E7EB;
  padding: 0.5rem 0;
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.disclaimer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.disclaimer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.12);
  color: #FBBF24;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.725rem;
}

.disclaimer-text {
  flex: 1;
  color: #D1D5DB;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  padding: 0.65rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-emblem {
  width: 36px;
  height: 36px;
  background: var(--brand-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}

.brand-emblem svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.brand-title-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.01em;
  direction: ltr !important;
  unicode-bidi: isolate;
}

.brand-tag {
  font-size: 0.65rem;
  color: var(--brand-green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Nav Container & Links */
.nav-container {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.85rem;
  color: var(--text-body);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link:hover {
  color: var(--brand-green);
}

.nav-cta-btn {
  background: var(--brand-green);
  color: #FFFFFF !important;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.825rem;
  transition: background var(--transition);
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-cta-btn:hover {
  background: var(--brand-green-hover);
}

/* Header Right Actions */
.header-right-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.lang-switch-btn {
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  color: #1F2937;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.lang-switch-btn:hover {
  background: #E5E7EB;
  color: var(--brand-green);
  border-color: #D1D5DB;
}

/* Modern Animated Hamburger Toggle */
.mobile-nav-toggle {
  display: none;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: background var(--transition), border-color var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-toggle:hover {
  background: #E5E7EB;
}

.mobile-nav-toggle .bar {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #1F2937;
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
  transform-origin: center;
}

/* Active Hamburger transforms into X */
.mobile-nav-toggle.active .bar-1 {
  transform: translateY(6px) rotate(45deg);
}

.mobile-nav-toggle.active .bar-2 {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-nav-toggle.active .bar-3 {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
}

/* Tablet & Mobile Nav Drawer (Clean switch at 1024px) */
@media (max-width: 1024px) {
  .mobile-nav-toggle {
    display: flex;
  }

  .nav-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    z-index: 60;
  }

  .nav-backdrop.active {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-top: 1px solid var(--border-light);
    border-bottom: 3px solid var(--brand-green);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1rem 1.25rem;
    z-index: 65;
    border-radius: 0 0 16px 16px;
  }

  .nav-links.mobile-open {
    display: flex;
    animation: slideNavDown 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid #F3F4F6;
  }

  .nav-links li:last-child {
    border-bottom: none;
    margin-top: 0.75rem;
  }

  .nav-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-heading);
    border-radius: 6px;
  }

  .nav-link:hover {
    background: var(--bg-subtle);
    color: var(--brand-green);
  }

  .nav-cta-item .nav-cta-btn {
    width: 100%;
    text-align: center;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
  }
}

@keyframes slideNavDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ==========================================================================
   Hero Section (2-Column with Real Photograph)
   ========================================================================== */
.hero-section {
  padding: 3rem 0 2.5rem;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--brand-green-light);
  color: var(--brand-green);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-pill-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--brand-green);
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.hero-title .highlight-text {
  color: var(--brand-green);
}

.hero-clarity-box {
  background: var(--bg-tint-green);
  border-left: 4px solid var(--brand-green);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  margin-bottom: 1.5rem;
}

html[dir="rtl"] .hero-clarity-box {
  border-left: none;
  border-right: 4px solid var(--brand-green);
}

.hero-clarity-lead {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-green-hover);
  margin-bottom: 0.2rem;
}

.hero-clarity-sub {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.btn-primary {
  background: var(--brand-green);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: background var(--transition);
}

.btn-primary:hover {
  background: var(--brand-green-hover);
}

.btn-secondary {
  background: var(--bg-subtle);
  color: var(--text-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: background var(--transition);
}

.btn-secondary:hover {
  background: #E5E7EB;
}

.hero-privacy-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-privacy-guarantee svg {
  width: 14px;
  height: 14px;
  fill: var(--brand-green);
}

/* Hero Media Column */
.hero-media-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}

.hero-media-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-media-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(17, 24, 39, 0.9);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.hero-badge-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #34D399;
}

.hero-badge-sub {
  font-size: 0.75rem;
  color: #D1D5DB;
}

/* ==========================================================================
   AT THE PUMP CARD (Clean, High-Contrast)
   ========================================================================== */
.pump-card-wrapper {
  margin: 2rem 0 0;
}

.pump-card {
  background: #FFFFFF;
  border: 1px solid #FCD34D;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .pump-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.pump-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--brand-amber-light);
  color: #92400E;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 0.4rem;
}

.pump-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.2rem;
}

.pump-card-desc {
  font-size: 0.875rem;
  color: var(--text-body);
}

.tok-bubble-btn {
  background: var(--brand-amber);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background var(--transition);
}

.tok-bubble-btn:hover {
  background: #B45309;
}

.tok-bubble-btn .tok-code {
  background: #FFFFFF;
  color: #92400E;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.9rem;
}

/* ==========================================================================
   Section Styling (Clean, Neutral, High Whitespace)
   ========================================================================== */
.section-wrapper {
  padding: 3.5rem 0;
}

.section-alt {
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 2.25rem;
}

.section-tag {
  color: var(--brand-green);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
  display: block;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Clean Stat Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}

.stat-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

.stat-card:hover {
  border-color: var(--brand-green-border);
  box-shadow: var(--shadow-hover);
}

.stat-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-green-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  color: var(--brand-green);
}

.stat-icon svg {
  width: 22px;
  height: 22px;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.15rem;
}

.stat-value .unit {
  font-size: 0.95rem;
  color: var(--brand-green);
  font-weight: 600;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.2rem;
}

.stat-sub {
  font-size: 0.775rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Section 3: Who Can Apply (With Real Photo Showcase)
   ========================================================================== */
.eligibility-photo-showcase {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  margin-bottom: 2rem;
}

.eligibility-photo-img {
  width: 100%;
  height: auto;
  display: block;
}

.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.eligibility-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: all var(--transition);
}

.eligibility-card:hover {
  border-color: var(--brand-green-border);
}

.eligibility-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--brand-green-light);
  color: var(--brand-green);
  font-size: 0.725rem;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
}

html[dir="rtl"] .eligibility-badge {
  right: auto;
  left: 1rem;
}

.eligibility-visual {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  display: block;
}

.eligibility-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.35rem;
}

.eligibility-desc {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.eligibility-quota-chip {
  display: inline-flex;
  align-items: center;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--brand-green);
  background: var(--brand-green-light);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
}

.eligibility-notice-box {
  background: var(--bg-subtle);
  border-left: 4px solid var(--brand-green);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.15rem;
  font-size: 0.875rem;
  color: var(--text-body);
}

html[dir="rtl"] .eligibility-notice-box {
  border-left: none;
  border-right: 4px solid var(--brand-green);
}

/* ==========================================================================
   Section 4: Interactive SMS Generator (Clean White Layout)
   ========================================================================== */
.tool-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .tool-two-col {
    grid-template-columns: 1fr;
  }
}

.sms-tool-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-card);
}

.tool-privacy-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--brand-green-light);
  color: var(--brand-green);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-label .hint {
  font-size: 0.725rem;
  color: var(--brand-green);
  font-weight: 500;
}

.form-input, .form-select {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  color: var(--text-heading);
  font-size: 0.925rem;
  transition: border-color var(--transition);
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(0, 104, 55, 0.12);
}

/* Phone Mockup Preview */
.phone-preview-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.phone-card-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
}

.sms-display-box {
  background: #181C20;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: #FFFFFF;
}

.sms-display-header {
  font-size: 0.75rem;
  color: #9CA3AF;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.sms-display-content {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  color: #34D399;
  font-weight: 700;
  word-break: break-all;
  min-height: 1.8rem;
}

.sms-display-tip {
  font-size: 0.75rem;
  color: #9CA3AF;
  margin-top: 0.5rem;
}

.tool-action-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.btn-send-sms {
  background: var(--brand-green);
  color: #FFFFFF;
  font-weight: 600;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: background var(--transition);
}

.btn-send-sms:hover {
  background: var(--brand-green-hover);
}

.btn-copy-sms {
  background: var(--bg-subtle);
  color: var(--text-heading);
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: background var(--transition);
}

.btn-copy-sms:hover {
  background: #E5E7EB;
}

.btn-reset-form {
  background: transparent;
  color: var(--text-muted);
  border: none;
  font-size: 0.825rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0.4rem;
}

/* ==========================================================================
   Visual Examples Section (Card & SMS Simulator)
   ========================================================================== */
.visual-guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 800px) {
  .visual-guide-grid {
    grid-template-columns: 1fr;
  }
}

.visual-example-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.visual-example-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.visual-example-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.15rem;
}

.excise-card-mockup {
  background: #F9FAFB;
  border: 2px dashed var(--brand-green-border);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}

.excise-field-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid #E5E7EB;
}

.excise-field-row:last-child {
  border-bottom: none;
}

.excise-field-key {
  color: var(--text-muted);
}

.excise-field-val {
  color: var(--text-heading);
  font-weight: 600;
}

.excise-field-val.target-date {
  background: var(--brand-green-light);
  color: var(--brand-green);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-weight: 700;
}

/* SMS Mockup Phone Screen */
.phone-sms-mockup {
  background: #F3F4F6;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.sms-chat-bubble {
  max-width: 85%;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  line-height: 1.45;
}

.bubble-outgoing {
  background: var(--brand-green);
  color: #FFFFFF;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

html[dir="rtl"] .bubble-outgoing {
  align-self: flex-start;
  border-bottom-right-radius: var(--radius-md);
  border-bottom-left-radius: 2px;
}

.bubble-incoming {
  background: #FFFFFF;
  color: var(--text-heading);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  border: 1px solid var(--border-light);
}

html[dir="rtl"] .bubble-incoming {
  align-self: flex-end;
  border-bottom-left-radius: var(--radius-md);
  border-bottom-right-radius: 2px;
}

.bubble-meta {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
  text-align: right;
}

.bubble-incoming .bubble-meta {
  color: var(--text-muted);
}

/* ==========================================================================
   Video Tutorial Section (Clean 16:9 Embed)
   ========================================================================== */
.video-container-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.video-embed-wrapper {
  position: relative;
  width: 100%;
  max-width: 840px;
  margin: 1.25rem auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111827;
}

.video-embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-fallback-box {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Infographic Poster Section
   ========================================================================== */
.infographic-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.infographic-preview-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  margin-top: 1.25rem;
}

.infographic-img {
  width: 100%;
  height: auto;
  max-width: 960px;
  display: block;
  margin: 0 auto;
}

.infographic-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.infographic-zoom-btn {
  background: var(--brand-green-light);
  color: var(--brand-green);
  border: 1px solid var(--brand-green-border);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all var(--transition);
}

.infographic-zoom-btn:hover {
  background: var(--brand-green);
  color: #FFFFFF;
}

/* ==========================================================================
   Section 5: Roadmap Timeline
   ========================================================================== */
.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .timeline-track {
    grid-template-columns: 1fr;
  }
}

.timeline-step-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.step-num-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-green);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.step-highlight {
  border-color: #FCD34D;
  background: #FFFDF5;
}

.step-highlight .step-num-badge {
  background: var(--brand-amber);
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.4rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.step-code-pill {
  margin-top: auto;
  background: #F3F4F6;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-heading);
  font-weight: 600;
  text-align: center;
}

/* ==========================================================================
   Section 6: Monthly Fuel Relief Calculator
   ========================================================================== */
.calculator-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.calc-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

@media (max-width: 600px) {
  .calc-selector {
    grid-template-columns: 1fr;
  }
}

.calc-option-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 1rem;
}

html[dir="rtl"] .calc-option-btn {
  text-align: right;
}

.calc-option-btn.active {
  background: var(--brand-green-light);
  border-color: var(--brand-green);
}

.calc-option-icon {
  font-size: 2rem;
}

.calc-option-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  display: block;
}

.calc-option-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.calc-result-box {
  background: #181C20;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  text-align: center;
  align-items: center;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .calc-result-box {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
}

.calc-result-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.calc-res-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9CA3AF;
}

.calc-res-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #FFFFFF;
}

.calc-res-value.highlight {
  color: #34D399;
}

.calc-operator {
  font-size: 1.4rem;
  color: #6B7280;
}

@media (max-width: 768px) {
  .calc-operator {
    display: none;
  }
}

/* ==========================================================================
   Section 7: Anti-Scam Banner (Clean, Muted Red Notice)
   ========================================================================== */
.scam-warning-card {
  background: #FFF5F5;
  border: 1px solid #FECACA;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.scam-warning-icon {
  width: 44px;
  height: 44px;
  background: #FEE2E2;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #DC2626;
}

.scam-warning-icon svg {
  width: 24px;
  height: 24px;
}

.scam-warning-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #991B1B;
  margin-bottom: 0.35rem;
}

.scam-warning-desc {
  font-size: 0.875rem;
  color: #7F1D1D;
  line-height: 1.55;
  margin-bottom: 0.5rem;
}

.scam-warning-strong {
  font-size: 0.825rem;
  color: #991B1B;
  font-weight: 600;
}

/* ==========================================================================
   Section 8: Official Source Notice
   ========================================================================== */
.official-source-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  box-shadow: var(--shadow-card);
}

.source-info {
  max-width: 620px;
}

.source-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--brand-green-light);
  color: var(--brand-green);
  font-size: 0.725rem;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.35rem;
}

.source-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.25rem;
}

.source-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.btn-official-link {
  background: var(--brand-green);
  color: #FFFFFF;
  font-weight: 600;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  transition: background var(--transition);
  white-space: nowrap;
}

.btn-official-link:hover {
  background: var(--brand-green-hover);
}

/* ==========================================================================
   Section 9: FAQ Accordion
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq-item[open] {
  border-color: var(--brand-green);
}

.faq-question {
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-heading);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 18px;
  height: 18px;
  color: var(--brand-green);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.25rem 1.15rem;
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.6;
  border-top: 1px solid var(--border-light);
  padding-top: 0.75rem;
}

/* ==========================================================================
   Section 10: Viral WhatsApp Share Card
   ========================================================================== */
.whatsapp-share-card {
  background: #FFFFFF;
  border: 1px solid #BBF7D0;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.whatsapp-icon-big {
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
}

.whatsapp-icon-big svg {
  width: 28px;
  height: 28px;
  fill: #FFFFFF;
}

.share-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.35rem;
}

.share-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  max-width: 520px;
  margin: 0 auto 1.25rem;
}

.btn-whatsapp-share {
  background: #25D366;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.btn-whatsapp-share:hover {
  background: #1EBE5D;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
  position: relative;
  z-index: 65;
  background: #111827;
  color: #D1D5DB;
  padding: 3.5rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.25rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: #9CA3AF;
  line-height: 1.6;
  margin-top: 0.75rem;
  max-width: 400px;
}

.footer-heading {
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.85rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  font-size: 0.85rem;
  color: #9CA3AF;
  transition: color var(--transition);
}

.footer-link:hover {
  color: #34D399;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-size: 0.8rem;
  color: #9CA3AF;
}

.footer-legal-notice {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin-top: 1rem;
  font-size: 0.775rem;
  line-height: 1.5;
  color: #9CA3AF;
}

/* ==========================================================================
   Sticky Mobile Action Bar
   ========================================================================== */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  padding: 0.5rem 0.75rem;
  z-index: 95;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .sticky-mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
  }

  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }
}

.sticky-btn-apply {
  flex: 1 1 0;
  background: var(--brand-green);
  color: #FFFFFF !important;
  font-weight: 600;
  font-size: 0.825rem;
  height: 46px;
  min-height: 46px;
  max-height: 46px;
  padding: 0 0.5rem;
  border-radius: 12px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 2px 6px rgba(0, 104, 55, 0.2);
  border: none;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.15s ease, background var(--transition);
}

.sticky-btn-apply:active {
  background: var(--brand-green-hover);
  transform: scale(0.98);
}

.sticky-btn-tok {
  flex: 1 1 0;
  background: var(--brand-amber);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.825rem;
  height: 46px;
  min-height: 46px;
  max-height: 46px;
  padding: 0 0.5rem;
  border-radius: 12px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 2px 6px rgba(217, 119, 6, 0.2);
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.15s ease, background var(--transition);
}

.sticky-btn-tok:active {
  background: var(--brand-amber-hover);
  transform: scale(0.98);
}


/* Modal & Toast */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 120;
  padding: 1rem;
}

.modal-backdrop.active {
  display: flex;
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  max-width: 460px;
  width: 100%;
  box-shadow: var(--shadow-hover);
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

html[dir="rtl"] .modal-close-btn {
  right: auto;
  left: 0.85rem;
}

.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 130;
}

html[dir="rtl"] .toast-container {
  right: auto;
  left: 1.5rem;
}

.toast {
  background: #065F46;
  color: #FFFFFF;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsive Optimizations
   ========================================================================== */

/* Prevent iOS input auto-zoom */
@media screen and (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
  }

  .container {
    padding: 0 1rem;
  }

  .section-wrapper {
    padding: 2.25rem 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .hero-section {
    padding: 2rem 0 1.75rem;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    font-size: 0.95rem;
  }

  /* 2-Column Stats on Mobile */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .stat-card {
    padding: 1rem;
  }

  .stat-value {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.825rem;
  }

  /* Full-width tool buttons */
  .tool-action-row {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
  }

  .btn-send-sms,
  .btn-copy-sms,
  .btn-reset-form {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .btn-reset-form {
    text-align: center;
    min-height: 36px;
  }

  /* Word wrap prevention */
  .sms-display-content {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  /* Visual guides on mobile */
  .visual-example-card {
    padding: 1.15rem;
  }

  .excise-field-row {
    font-size: 0.8rem;
  }

  .sms-chat-bubble {
    max-width: 92%;
    font-size: 0.825rem;
  }

  /* Calculator on mobile */
  .calculator-card {
    padding: 1.25rem;
  }

  .calc-res-value {
    font-size: 1.45rem;
  }

  /* Pump card */
  .pump-card {
    padding: 1.15rem;
    gap: 1rem;
  }

  .tok-bubble-btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  /* Official source card */
  .official-source-card {
    padding: 1.25rem;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .btn-official-link {
    width: 100%;
    justify-content: center;
    min-height: 46px;
  }

  /* Video wrapper */
  .video-container-card {
    padding: 1.15rem;
  }

  .video-fallback-box {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .video-fallback-box .btn-primary {
    width: 100%;
    justify-content: center;
  }

  /* Footer on mobile */
  .main-footer {
    padding: 2.5rem 0 1.5rem;
    margin-top: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media screen and (max-width: 360px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 1.55rem;
  }

  .disclaimer-inner {
    text-align: center;
  }

  .disclaimer-text {
    font-size: 0.6875rem;
  }

  .header-inner {
    gap: 0.35rem;
  }

  .brand-logo {
    gap: 0.45rem;
  }

  .brand-emblem {
    width: 32px;
    height: 32px;
  }

  .brand-emblem svg {
    width: 16px;
    height: 16px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-tag {
    font-size: 0.6rem;
  }

  .header-right-actions {
    gap: 0.35rem;
  }

  .lang-switch-btn {
    padding: 0.3rem 0.55rem;
    font-size: 0.75rem;
    gap: 0.25rem;
  }

  .mobile-nav-toggle {
    width: 36px;
    height: 36px;
  }

  .sticky-btn-apply,
  .sticky-btn-tok {
    font-size: 0.775rem;
    height: 44px;
    min-height: 44px;
    max-height: 44px;
    padding: 0 0.35rem;
  }
}

/* ==========================================================================
   Responsive Ad Units (728x90, 468x60, 160x600)
   ========================================================================== */
.ad-banner-section {
  padding: 1.25rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.ad-card {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-md);
  padding: 0.5rem 0.75rem 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  max-width: 100%;
  box-sizing: border-box;
}

.ad-disclaimer-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9CA3AF;
  font-weight: 600;
  margin-bottom: 0.35rem;
  user-select: none;
}

/* 728x90 Leaderboard Frame */
.ad-card-728 {
  max-width: 760px;
}

.ad-frame-728x90 {
  width: 728px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 100%;
}

.ad-frame-728x90 iframe {
  max-width: 100%;
}

@media (max-width: 768px) {
  .ad-frame-728x90 {
    transform: scale(0.92);
    transform-origin: center center;
    margin: -4px 0;
  }
}

@media (max-width: 680px) {
  .ad-frame-728x90 {
    transform: scale(0.82);
    transform-origin: center center;
    margin: -8px 0;
  }
}

@media (max-width: 580px) {
  .ad-frame-728x90 {
    transform: scale(0.68);
    transform-origin: center center;
    margin: -14px 0;
  }
}

@media (max-width: 480px) {
  .ad-frame-728x90 {
    transform: scale(0.58);
    transform-origin: center center;
    margin: -18px 0;
  }
}

@media (max-width: 380px) {
  .ad-frame-728x90 {
    transform: scale(0.44);
    transform-origin: center center;
    margin: -25px 0;
  }
}

/* 468x60 Banner Frame */
.ad-card-468 {
  max-width: 500px;
}

.ad-frame-468x60 {
  width: 468px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 100%;
}

.ad-frame-468x60 iframe {
  max-width: 100%;
}

@media (max-width: 500px) {
  .ad-frame-468x60 {
    transform: scale(0.85);
    transform-origin: center center;
    margin: -5px 0;
  }
}

@media (max-width: 420px) {
  .ad-frame-468x60 {
    transform: scale(0.72);
    transform-origin: center center;
    margin: -8px 0;
  }
}

@media (max-width: 360px) {
  .ad-frame-468x60 {
    transform: scale(0.62);
    transform-origin: center center;
    margin: -12px 0;
  }
}

/* 160x600 Skyscraper Frame */
.ad-card-160 {
  max-width: 200px;
}

.ad-frame-160x600 {
  width: 160px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 100%;
}

.ad-frame-160x600 iframe {
  max-width: 100%;
}

/* ==========================================================================
   Fixed Left Sticky Skyscraper Ad (160x600 - "Static / Sticky on Left")
   ========================================================================== */
.fixed-left-skyscraper {
  position: fixed;
  left: 10px;
  top: 90px;
  z-index: 60;
  width: 174px;
  transition: opacity 0.2s ease;
}

.fixed-left-skyscraper .ad-card {
  padding: 0.35rem;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.ad-card-top-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
  padding: 0 2px;
  box-sizing: border-box;
}

.ad-card-top-bar .ad-disclaimer-label {
  margin-bottom: 0;
  font-size: 0.58rem;
  color: #9CA3AF;
  line-height: 1;
}

.ad-close-btn {
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  font-size: 0.75rem;
  line-height: 1;
  color: #6B7280;
  cursor: pointer;
  padding: 2px 5px;
  border-radius: 4px;
  transition: all 0.15s ease;
}

.ad-close-btn:hover {
  background: #E5E7EB;
  color: #111827;
}

/* Wide screens (>= 1520px): align gracefully in left gutter */
@media (min-width: 1520px) {
  .fixed-left-skyscraper {
    left: max(10px, calc((100vw - 1140px) / 2 - 184px));
  }
}

/* Medium desktops (1200px - 1519px) */
@media (min-width: 1200px) and (max-width: 1519px) {
  .fixed-left-skyscraper {
    left: 8px;
  }
}

/* Mobile & Tablet (< 1200px): Flow naturally in page without blocking phone reading */
@media (max-width: 1200px) {
  .fixed-left-skyscraper {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 200px;
    margin: 1.5rem auto;
    z-index: 10;
  }

  .ad-close-btn {
    display: none;
  }
}



