/**
 * Strimo IPTV - Master Design System & Stylesheet
 * Palette: Emerald Stream (#080E0B canvas, #10B981 vivid emerald)
 * Typography: Outfit (Google Fonts Bold & Modern Display)
 * Strictly adheres to MASTER-BRANDED-WEBSITE-BLUEPRINT-V2.md
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* 1. SEMANTIC COLOR TOKENS (Emerald Stream) */
  --color-bg:               #080E0B;
  --color-bg-elevated:      #0D1510;
  --color-surface:          #121E17;
  --color-surface-hover:    #1A2C22;
  --color-surface-card:     #0F1B14;
  --color-border:           rgba(16, 185, 129, 0.14);
  --color-border-hover:     rgba(16, 185, 129, 0.38);

  /* Brand Accent Tokens */
  --color-primary:          #10B981;
  --color-primary-hover:    #34D399;
  --color-primary-soft:     rgba(16, 185, 129, 0.12);
  --color-primary-glow:     rgba(16, 185, 129, 0.28);
  --color-primary-rgb:      16, 185, 129;

  /* High-Conversion WhatsApp Green */
  --color-whatsapp:         #25D366;
  --color-whatsapp-hover:   #20BA5A;

  /* Text Contrast Tokens (WCAG 2.1 AA Compliant) */
  --color-text:             #F5F7FA;
  --color-text-secondary:   #A3B0A8;
  --color-text-muted:       #6B7C72;

  /* Feedback & Accessibility Tokens */
  --color-success:          #10B981;
  --color-warning:          #F59E0B;
  --color-error:            #EF4444;
  --color-focus:            #38BDF8;

  /* 2. TYPOGRAPHY HIERARCHY TOKENS */
  --font-primary:           'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Fluid Responsive Font Sizes using clamp() */
  --text-xs:                0.75rem;              /* 12px */
  --text-sm:                0.875rem;             /* 14px */
  --text-base:              1.00rem;              /* 16px */
  --text-lg:                1.125rem;             /* 18px */
  --text-xl:                1.25rem;              /* 20px */
  --text-2xl:               clamp(1.25rem, 2vw + 0.5rem, 1.50rem);   /* 20px–24px */
  --text-3xl:               clamp(1.50rem, 2.5vw + 0.5rem, 2.00rem); /* 24px–32px */
  --text-4xl:               clamp(1.85rem, 3.5vw + 0.5rem, 2.65rem); /* 30px–42px */
  --text-hero:              clamp(2.25rem, 5vw + 1.0rem, 3.75rem);   /* 36px–60px */

  --weight-regular:         400;
  --weight-medium:          500;
  --weight-semibold:        600;
  --weight-bold:            700;
  --weight-extrabold:       800;

  --leading-tight:          1.15;
  --leading-snug:           1.30;
  --leading-normal:         1.60;
  --leading-loose:          1.75;

  /* 3. CONSISTENT SPACING SCALE */
  --space-1:                0.25rem;  /* 4px */
  --space-2:                0.50rem;  /* 8px */
  --space-3:                0.75rem;  /* 12px */
  --space-4:                1.00rem;  /* 16px */
  --space-5:                1.25rem;  /* 20px */
  --space-6:                1.50rem;  /* 24px */
  --space-8:                2.00rem;  /* 32px */
  --space-10:               2.50rem;  /* 40px */
  --space-12:               3.00rem;  /* 48px */
  --space-16:               4.00rem;  /* 64px */
  --space-20:               5.00rem;  /* 80px */
  --space-24:               6.00rem;  /* 96px */

  --section-padding-y:      clamp(3.5rem, 6vw, 6.0rem);

  /* 4. CONTAINER & LAYOUT */
  --container-max:          1240px;
  --gutter:                 1.5rem;

  /* 5. BORDER RADIUS SCALE */
  --radius-sm:              6px;
  --radius-md:              10px;
  --radius-lg:              14px;
  --radius-card:            18px;
  --radius-pill:            9999px;

  /* 6. SHADOW & DEPTH ELEVATION */
  --shadow-sm:              0 2px 4px rgba(0, 0, 0, 0.4);
  --shadow-md:              0 8px 20px rgba(0, 0, 0, 0.5);
  --shadow-lg:              0 16px 36px rgba(0, 0, 0, 0.65);
  --shadow-accent:          0 10px 30px rgba(16, 185, 129, 0.22);

  /* 7. TRANSITIONS & TIMING */
  --transition-fast:        150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base:        250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth:      350ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: var(--font-primary);
  font-size: 16px;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: var(--leading-normal);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 74px; /* Space for Sticky Mobile Action Bar */
  }
}

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-text);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
}

h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-4xl); margin-bottom: var(--space-4); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}

p.lead {
  font-size: var(--text-lg);
  line-height: var(--leading-snug);
  color: var(--color-text);
}

.text-gradient {
  background: linear-gradient(135deg, #34D399 0%, #10B981 60%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-12);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-primary-soft);
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
}

.section-padding {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

/* Button Classes */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  text-align: center;
  white-space: nowrap;
  transition: all var(--transition-base);
  user-select: none;
}

.btn--primary {
  background: var(--color-primary);
  color: #04120A;
  box-shadow: 0 4px 16px var(--color-primary-glow);
}

.btn--primary:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 6px 24px var(--color-primary-glow);
  transform: translateY(-1px);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-border-hover);
  color: #FFFFFF;
}

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.btn--whatsapp:hover {
  background: var(--color-whatsapp-hover);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.35);
  transform: translateY(-1px);
}

.btn--ghost {
  color: var(--color-text-secondary);
  padding: var(--space-2) var(--space-3);
}

.btn--ghost:hover {
  color: var(--color-primary);
}

.btn--block {
  width: 100%;
}

.btn--lg {
  min-height: 54px;
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(8, 14, 11, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo img {
  width: 160px;
  height: 40px;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.header__nav-link {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.header__nav-link:hover,
.header__nav-link.is-active {
  color: var(--color-primary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

@media (max-width: 991px) {
  .header__nav {
    display: none;
  }
  .header__actions .btn--trial {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

/* Mobile Drawer */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.nav-backdrop.is-active {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--color-bg-elevated);
  border-left: 1px solid var(--color-border);
  padding: var(--space-8) var(--space-6);
  z-index: 95;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: right var(--transition-smooth);
}

.nav-drawer.is-active {
  right: 0;
}

.nav-drawer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.nav-drawer__link {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-drawer__link:hover {
  color: var(--color-primary);
}

/* Image-Led Hero Section */
.hero {
  position: relative;
  padding: clamp(3rem, 5vw, 5.5rem) 0;
  background: radial-gradient(circle at 50% 20%, rgba(16, 185, 129, 0.12) 0%, transparent 60%);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 992px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-12);
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.hero__title {
  font-size: var(--text-hero);
  font-weight: var(--weight-extrabold);
  line-height: var(--leading-tight);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 580px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-2);
}

.hero__trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.hero__trust-item svg {
  color: var(--color-primary);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__visual-frame {
  position: relative;
  border-radius: var(--radius-card);
  padding: var(--space-2);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(255, 255, 255, 0.05) 100%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(16, 185, 129, 0.15);
}

.hero__visual-frame img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero__badge-floating {
  position: absolute;
  bottom: -15px;
  right: -10px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-4);
  box-shadow: var(--shadow-accent);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: var(--color-text);
}

/* Dynamic Pricing Section */
.pricing-switcher-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-10);
}

.pricing-switcher {
  display: inline-flex;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 4px;
  border-radius: var(--radius-pill);
}

.plan-toggle-btn {
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  color: var(--color-text-secondary);
  transition: all var(--transition-base);
}

.plan-toggle-btn.is-active {
  background: var(--color-primary);
  color: #04120A;
  box-shadow: 0 2px 10px var(--color-primary-glow);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: var(--space-6);
  align-items: stretch;
}

.pricing-card {
  position: relative;
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-accent);
}

.pricing-card--featured {
  border-color: var(--color-primary);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.08) 0%, var(--color-surface-card) 40%);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.16);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  right: var(--space-6);
  background: var(--color-primary);
  color: #04120A;
  font-size: var(--text-xs);
  font-weight: var(--weight-extrabold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.4);
}

.pricing-card__title {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-1);
}

.pricing-card__screens {
  font-size: var(--text-xs);
  color: var(--color-primary);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.pricing-card__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: var(--space-1);
}

.pricing-card__currency {
  font-size: var(--text-2xl);
  font-weight: var(--weight-extrabold);
  color: var(--color-text);
}

.pricing-card__price {
  font-size: var(--text-4xl);
  font-weight: var(--weight-extrabold);
  color: var(--color-text);
  letter-spacing: -0.03em;
}

.pricing-card__duration {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.pricing-card__equivalent {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  flex-grow: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-snug);
}

.pricing-card__features svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

.feature-card {
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: var(--space-8);
  transition: all var(--transition-base);
}

.feature-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-primary-soft);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.feature-card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

/* Catalog Strip & Media Showcases */
.catalog-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-6);
}

@media (min-width: 768px) {
  .catalog-strip {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--space-5);
  }
}

.catalog-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.catalog-item:hover {
  transform: scale(1.03);
  border-color: var(--color-primary);
}

.catalog-item img {
  width: 100%;
  aspect-ratio: 240 / 336;
  object-fit: cover;
}

/* Hardware & Platform Setup Cards */
.setup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
}

.setup-card {
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: var(--space-6);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  transition: all var(--transition-base);
}

.setup-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
}

.setup-card img {
  width: 120px;
  height: 80px;
  object-fit: contain;
  margin-bottom: var(--space-2);
}

.setup-card__title {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
}

/* FAQ Accordion Section */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--color-border-hover);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  text-align: left;
  gap: var(--space-4);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-answer {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: var(--space-4);
}

/* GEO / AI Search Answer Block (40-60 words) */
.answer-block {
  background: var(--color-surface);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-4) var(--space-6);
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
  line-height: var(--leading-loose);
  color: var(--color-text);
}

/* Editorial / Article Content Styling */
.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-8) 0;
}

.article-content {
  margin-top: var(--space-8);
}

.article-content h2 {
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  font-size: var(--text-3xl);
}

.article-content h3 {
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
  font-size: var(--text-xl);
}

.article-content p {
  margin-bottom: var(--space-5);
  font-size: var(--text-base);
  line-height: var(--leading-loose);
}

.article-content ul, .article-content ol {
  margin-bottom: var(--space-6);
  padding-left: var(--space-6);
  color: var(--color-text-secondary);
}

.article-content li {
  margin-bottom: var(--space-2);
  line-height: var(--leading-normal);
}

/* Comparison Table */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: var(--space-6) 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: var(--text-sm);
}

.compare-table th {
  background: var(--color-surface);
  padding: var(--space-4);
  font-weight: var(--weight-bold);
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.compare-table td {
  padding: var(--space-4);
  color: var(--color-text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* Footer */
.footer {
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  padding: var(--space-16) 0 var(--space-8);
  margin-top: auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.footer__brand p {
  font-size: var(--text-sm);
  margin-top: var(--space-3);
  max-width: 280px;
}

.footer__title {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__links a {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.footer__links a:hover {
  color: var(--color-primary);
}

.footer__bottom {
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* Sticky Mobile Quick-Action Bar */
.mobile-action-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-action-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(8, 14, 11, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--color-border);
    z-index: 99;
    padding: var(--space-2) var(--space-3);
    gap: var(--space-2);
  }

  .mobile-action-bar__btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    min-height: 48px;
    border-radius: var(--radius-md);
    font-size: var(--text-xs);
    font-weight: var(--weight-bold);
    text-align: center;
  }

  .mobile-action-bar__btn--trial {
    background: var(--color-primary);
    color: #04120A;
  }

  .mobile-action-bar__btn--support {
    background: var(--color-whatsapp);
    color: #FFFFFF;
  }
}
