/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  --c-bg:        #1a3a6b;
  --c-surface:   rgba(255,255,255,0.12);
  --c-surface2:  rgba(255,255,255,0.08);
  --c-border:    rgba(255,255,255,0.2);
  --c-text:      #ffffff;
  --c-muted:     rgba(255,255,255,0.75);
  --c-solar:     #fbbf24;
  --c-solar-2:   #f97316;
  --c-green:     #34d399;
  --c-blue:      #93c5fd;
  --c-blue-glow: rgba(147,197,253,0.2);
  --c-solar-glow:rgba(251,191,36,0.2);
  --c-green-glow:rgba(52,211,153,0.15);
  --grad-solar:  linear-gradient(135deg, #fbbf24, #f97316);
  --grad-blue:   linear-gradient(135deg, #3b82f6, #06b6d4);
  --grad-text:   linear-gradient(135deg, #fbbf24 0%, #f97316 50%, #60a5fa 100%);
  --grad-page:   linear-gradient(-45deg, #1e3a8a, #3b82f6, #06b6d4, #312e81);
  --r-sm: 0.5rem;
  --r-md: 1rem;
  --r-lg: 1.5rem;
  --r-xl: 2rem;
  --r-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.25);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.3);
  --shadow-solar: 0 0 40px rgba(251,191,36,0.25);
  --shadow-blue:  0 0 40px rgba(59,130,246,0.25);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--grad-page);
  background-size: 400% 400%;
  background-attachment: fixed;
  animation: gradientBG 15s ease infinite;
  color: var(--c-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
@keyframes gradientBG {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 6rem 0;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-full);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,0.07); }

.btn--primary {
  background: var(--grad-solar);
  color: #1a0a00;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(251,191,36,0.4);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(251,191,36,0.5);
}
.btn--outline {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  backdrop-filter: blur(10px);
}
.btn--outline:hover {
  border-color: var(--c-solar);
  color: var(--c-solar);
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.2); }
.btn--lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  color: var(--c-solar);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1.25rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--c-muted);
  line-height: 1.7;
}
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes scroll-anim {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: var(--shadow-blue); }
  50% { box-shadow: 0 0 80px rgba(59,130,246,0.35); }
}

.animate-fade-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(30,58,138,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 0.875rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.5rem; }
.logo-accent { color: var(--c-solar); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: 2rem;
  flex: 1;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--c-muted);
  transition: color var(--transition);
}
.nav__links a:hover { color: #fff; }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  color: var(--c-solar);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.4rem 1.1rem;
  border-radius: var(--r-full);
  margin-bottom: 2rem;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--c-solar);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--c-muted);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat__label {
  font-size: 0.8rem;
  color: var(--c-muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--c-border);
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-dot {
  width: 6px; height: 6px;
  background: var(--c-muted);
  border-radius: 50%;
  animation: scroll-anim 2s infinite;
}

/* =============================================
   LOGOS BAR
   ============================================= */
.logos-bar {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
}
.logos-bar__label {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.logos-bar__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 20s linear infinite;
}
.logo-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--r-full);
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  white-space: nowrap;
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
}

/* =============================================
   FEATURES
   ============================================= */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card--large {
  grid-column: span 1;
  grid-row: span 2;
}
.feature-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}
.feature-card:hover {
  border-color: rgba(251,191,36,0.4);
  transform: translateY(-4px);
  background: rgba(255,255,255,0.15);
  box-shadow: var(--shadow-solar);
}
.feature-card__icon {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.feature-card p {
  font-size: 0.92rem;
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.feature-list li {
  font-size: 0.88rem;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.feature-card__glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(245,158,11,0.12), transparent 70%);
  pointer-events: none;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works { background: rgba(255,255,255,0.05); backdrop-filter: blur(8px); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.step__number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}
.step__content h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.step__content p {
  font-size: 0.88rem;
  color: var(--c-muted);
  line-height: 1.7;
}
.step__connector {
  position: absolute;
  top: 3.5rem;
  right: -1px;
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--c-solar), transparent);
}

/* =============================================
   FBR HIGHLIGHT
   ============================================= */
.fbr-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-xl);
  padding: 4rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.fbr-card::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(251,191,36,0.1), transparent 70%);
  pointer-events: none;
}
.fbr-card__content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.fbr-card__content p {
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.fbr-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.fbr-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.fbr-check {
  width: 26px; height: 26px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--c-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.fbr-benefits li div strong {
  display: block;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.fbr-benefits li div span {
  font-size: 0.85rem;
  color: var(--c-muted);
}
.fbr-card__visual {
  display: flex;
  justify-content: center;
}
.fbr-visual-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(52,211,153,0.3);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  width: 100%;
  max-width: 340px;
  box-shadow: var(--shadow-md), 0 0 40px rgba(52,211,153,0.15);
  animation: float 6s ease-in-out infinite;
  backdrop-filter: blur(12px);
}
.fbr-visual-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-green);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--c-border);
}
.fbr-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.fbr-dot--green { background: var(--c-green); box-shadow: 0 0 10px rgba(34,197,94,0.5); }
.fbr-visual-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.86rem;
}
.fbr-visual-row span { color: var(--c-muted); }
.fbr-visual-row strong { color: #fff; font-weight: 600; }
.fbr-visual-row--status { border-bottom: none; padding-top: 1rem; }
.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 700;
}
.status-badge--success {
  background: rgba(34,197,94,0.15);
  color: var(--c-green);
  border: 1px solid rgba(34,197,94,0.25);
}
.fbr-visual-footer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--c-muted);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--c-border);
}

/* =============================================
   PRICING
   ============================================= */
.pricing { background: rgba(255,255,255,0.05); backdrop-filter: blur(8px); }
.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.toggle-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--c-muted);
  cursor: pointer;
  transition: color var(--transition);
}
.toggle-label.active { color: #fff; }
.toggle-switch {
  width: 48px; height: 26px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  position: relative;
  cursor: pointer;
  transition: all var(--transition);
}
.toggle-switch.active { background: var(--c-solar); border-color: var(--c-solar); }
.toggle-knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
}
.toggle-switch.active .toggle-knob { transform: translateX(22px); }
.discount-badge {
  background: rgba(34,197,94,0.15);
  color: var(--c-green);
  border: 1px solid rgba(34,197,94,0.25);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: var(--r-full);
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(251,191,36,0.35);
  background: rgba(255,255,255,0.13);
}
.pricing-card--featured {
  background: rgba(255,255,255,0.15);
  border-color: rgba(251,191,36,0.4);
  transform: scale(1.03);
  box-shadow: var(--shadow-solar);
}
.pricing-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.plan-popular {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--grad-solar);
  color: #0a0500;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.plan-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}
.plan-currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-muted);
  margin-bottom: 0.5rem;
}
.plan-amount {
  font-family: var(--font-head);
  font-size: 2.75rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.plan-period {
  font-size: 0.85rem;
  color: var(--c-muted);
  margin-bottom: 0.4rem;
}
.plan-desc {
  font-size: 0.88rem;
  color: var(--c-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--c-border);
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--c-text);
}
.check {
  font-size: 0.9rem;
  color: var(--c-green);
  flex-shrink: 0;
}
.check.muted { color: var(--c-muted); }
.plan-features li .muted { color: var(--c-muted); }
.pricing-card__glow {
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245,158,11,0.1), transparent 70%);
  pointer-events: none;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,158,11,0.2);
  box-shadow: var(--shadow-solar);
}
.testimonial-card--featured {
  background: var(--c-surface2);
  border-color: rgba(245,158,11,0.2);
}
.stars {
  color: var(--c-solar);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}
.testimonial-card p {
  font-size: 0.92rem;
  color: var(--c-text);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.author-avatar {
  width: 44px; height: 44px;
  background: var(--grad-solar);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  color: #0a0500;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}
.testimonial-author span {
  font-size: 0.78rem;
  color: var(--c-muted);
}

/* =============================================
   CTA / CONTACT
   ============================================= */
.cta-section { background: var(--c-surface); }
.cta-card {
  background: var(--c-surface2);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--r-xl);
  padding: 4rem;
  position: relative;
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.06), transparent 70%);
  pointer-events: none;
}
.cta-card__content { position: relative; }
.cta-card__content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.cta-card__content p {
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.cta-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-muted);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 0.875rem 1rem;
  font-size: 0.95rem;
  color: var(--c-text);
  transition: all var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder { color: var(--c-muted); }
.form-group input:focus,
.form-group select:focus {
  border-color: rgba(245,158,11,0.4);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.1);
}
.form-group select option { background: var(--c-surface2); }
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--c-muted);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--c-border);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer__brand { max-width: 320px; }
.footer__brand p {
  font-size: 0.88rem;
  color: var(--c-muted);
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 36px; height: 36px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-muted);
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--c-solar);
  color: var(--c-solar);
}
.footer__links { display: flex; gap: 4rem; }
.footer__col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer__col a {
  font-size: 0.88rem;
  color: var(--c-muted);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--c-solar); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--c-border);
  font-size: 0.82rem;
  color: var(--c-muted);
}
.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer__bottom-links a { color: var(--c-muted); transition: color var(--transition); }
.footer__bottom-links a:hover { color: var(--c-solar); }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: #25D366;
  color: #fff;
  padding: 0.875rem 1.25rem;
  border-radius: var(--r-full);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: all var(--transition);
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

/* =============================================
   TOAST
   ============================================= */
.toast {
  position: fixed;
  bottom: 6rem;
  right: 1.75rem;
  z-index: 2000;
  background: var(--c-surface2);
  border: 1px solid rgba(34,197,94,0.3);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--r-lg);
  font-size: 0.92rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  transform: translateX(20px);
  transition: all var(--transition);
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card--large { grid-column: span 2; grid-row: span 1; }
  .fbr-card { grid-template-columns: 1fr; gap: 2.5rem; }
  .fbr-card__visual { justify-content: flex-start; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .step__connector { display: none; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .nav__links { display: none; }
  .nav__actions .btn--ghost { display: none; }
  .nav__hamburger { display: flex; }
  .hero__stats { gap: 1.5rem; }
  .stat__divider { display: none; }
  .features__grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .fbr-card { padding: 2rem; }
  .cta-card { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__links { flex-direction: column; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 1rem; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .nav__actions { gap: 0.5rem; }
}
