/* ============================================
   VERSION 5-BLUE: DARK PREMIUM PARTNER (BLUE)
   Dark mode, teal/indigo accents, subtle grid,
   testimonial cards, comparison table, form-in-hero
   ============================================ */

:root {
  --color-primary: #ffffff;
  --color-accent: #0ea5e9;
  --color-accent-hover: #38bdf8;
  --color-accent-glow: rgba(14, 165, 233, 0.25);
  --color-teal: #10b981;
  --color-teal-glow: rgba(16, 185, 129, 0.2);
  --color-gold: #f59e0b;
  --color-bg: #0b0f1a;
  --color-bg-alt: #0f1420;
  --color-bg-dark: #070a12;
  --color-bg-card: rgba(255, 255, 255, 0.03);
  --color-bg-card-hover: rgba(255, 255, 255, 0.05);
  --color-text: #c8cdd8;
  --color-text-light: #7a8299;
  --color-text-inverse: #ffffff;
  --color-border: rgba(255, 255, 255, 0.07);
  --color-border-hover: rgba(255, 255, 255, 0.12);
  --color-success: #10b981;
  --color-danger: #ef4444;
  --color-star: #f59e0b;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1140px;
  --section-padding: 88px 24px;
  --border-radius: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.5);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.6);
  --transition: 0.2s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  /* Subtle grid background */
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--color-accent-hover); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }

p { margin-bottom: 1rem; color: var(--color-text-light); }

/* Layout */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-padding); }

.section--dark {
  background: var(--color-bg-dark);
  color: var(--color-text-inverse);
}
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: var(--color-text-light); }

.section--alt { background: var(--color-bg-alt); }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-teal);
  margin-bottom: 14px;
  padding: 6px 18px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 24px;
  background: rgba(16, 185, 129, 0.08);
}

.section-heading { margin-bottom: 16px; }

.section-subheading {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  gap: 8px;
}

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

.btn--primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--color-accent-glow);
}

.btn--secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--color-border);
}

.btn--secondary:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.04);
  transform: translateY(-1px);
}

.btn--large { padding: 18px 40px; font-size: 1.1rem; }

.btn--white {
  background: #fff;
  color: var(--color-bg);
}

.btn--white:hover {
  background: #f0f0f0;
  color: var(--color-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--teal {
  background: var(--color-teal);
  color: #fff;
}
.btn--teal:hover {
  background: #0ea572;
  color: #fff;
  transform: translateY(-2px);
}

/* Cards */
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 32px;
  transition: all var(--transition);
}

.card:hover {
  border-color: var(--color-border-hover);
  background: var(--color-bg-card-hover);
  transform: translateY(-2px);
}

/* Grid */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 15, 26, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.nav.scrolled { box-shadow: 0 0 40px rgba(0,0,0,0.5); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
}

.nav__logo {
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: -0.02em;
}

.nav__logo span { color: var(--color-accent); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition);
}

.nav__links a:hover { color: #fff; }
.nav__cta { font-size: 0.85rem; color: #fff !important; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 140px 24px 80px;
  background: radial-gradient(ellipse at 30% 0%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 100%, rgba(16, 185, 129, 0.06) 0%, transparent 50%),
              var(--color-bg);
  color: #fff;
  text-align: center;
}

.hero h1 {
  color: #fff;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 em {
  color: var(--color-accent);
  font-style: normal;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--color-text-light);
  max-width: 580px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

.hero__subtext {
  font-size: 1rem;
  color: var(--color-text);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__cta-note {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.hero__proof {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid var(--color-border);
}

.hero__proof-item {
  text-align: center;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__proof-icon {
  width: 40px;
  height: 40px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero__proof-text { text-align: left; }

.hero__proof-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1.2;
}

.hero__proof-label {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

/* ============================================
   PAIN SECTION
   ============================================ */
.pain-list {
  list-style: none;
  max-width: 650px;
  margin: 0 auto;
}

.pain-list li {
  padding: 16px 0;
  padding-left: 36px;
  position: relative;
  font-size: 1.05rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.pain-list li::before {
  content: "\2717";
  position: absolute;
  left: 0;
  color: var(--color-danger);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ============================================
   VALUE STACK
   ============================================ */
.value-stack { max-width: 650px; margin: 0 auto; }

.value-stack__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.value-stack__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.value-stack__text h3 { font-size: 1.05rem; margin-bottom: 4px; }
.value-stack__text p { font-size: 0.92rem; margin: 0; }

/* ============================================
   GUARANTEE / COMMITMENT
   ============================================ */
.guarantee {
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 16px;
  padding: 56px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.guarantee__icon {
  width: 56px;
  height: 56px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.guarantee h2 { color: #fff; margin-bottom: 12px; }

.guarantee p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 32px;
}

.guarantee__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.guarantee__card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 28px;
  text-align: left;
}

.guarantee__card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 12px;
}

.guarantee__card-icon--teal {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.guarantee__card-icon--accent {
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.guarantee__card-icon--gold {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.guarantee__card h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.guarantee__card p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--color-text-light);
  line-height: 1.6;
}

.guarantee__stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.guarantee__stat {
  text-align: center;
}

.guarantee__stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-teal);
}

.guarantee__stat-label {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  max-width: 820px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.92rem;
}

.comparison-table thead th {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text-light);
  background: rgba(255,255,255,0.02);
}

.comparison-table thead th:last-child {
  color: var(--color-teal);
}

.comparison-table th:first-child {
  font-weight: 600;
  color: #fff;
}

.comparison-table .them { color: var(--color-text-light); }
.comparison-table .us { color: var(--color-teal); font-weight: 600; }
.comparison-table .check { color: var(--color-teal); }
.comparison-table .cross { color: var(--color-danger); }

.comparison-table tbody tr:last-child td { border-bottom: none; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}

.testimonial-card__stars {
  color: var(--color-star);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card__quote {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: normal;
}

.testimonial-card__quotemark {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 3rem;
  color: rgba(255,255,255,0.06);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card__metric {
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 16px;
}

.testimonial-card__metric-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-accent);
}

.testimonial-card__metric-label {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

.testimonial-card__author {
  font-size: 0.82rem;
  color: var(--color-text-light);
}

/* ============================================
   SERVICES CARDS
   ============================================ */
.service-card {
  padding: 32px;
  border-left: 3px solid var(--color-accent);
  background: var(--color-bg-card);
}

.service-card h3 { margin-bottom: 12px; }
.service-card ul { list-style: none; margin-top: 12px; }

.service-card ul li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.92rem;
  color: var(--color-text-light);
}

.service-card ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-teal);
  font-weight: 700;
}

/* ============================================
   PAIN POINT CARDS
   ============================================ */
.pain-card {
  padding: 32px;
  text-align: left;
  border-left: 3px solid var(--color-danger);
  background: rgba(239, 68, 68, 0.03);
  border-top: 1px solid rgba(239, 68, 68, 0.08);
  border-right: 1px solid rgba(239, 68, 68, 0.08);
  border-bottom: 1px solid rgba(239, 68, 68, 0.08);
  transition: all var(--transition);
}

.pain-card:hover {
  background: rgba(239, 68, 68, 0.06);
  border-left-color: #f87171;
  transform: translateY(-2px);
}

.pain-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.pain-card h3 {
  font-size: 1.1rem;
  color: #f87171;
  margin-bottom: 12px;
  font-weight: 700;
}

.pain-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

/* ============================================
   PRICING / PLAN CARDS (no prices)
   ============================================ */
.pricing-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }

.pricing-table th,
.pricing-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}

.pricing-table thead th {
  background: var(--color-bg-alt);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-light);
}

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

.pricing-highlight {
  background: rgba(14, 165, 233, 0.06);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 16px;
  padding: 40px;
  color: #fff;
  text-align: center;
  margin: 40px 0;
}

.pricing-highlight h3 { color: #fff; margin-bottom: 8px; }
.pricing-highlight p { color: var(--color-text-light); }

.plan-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.plan-card {
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  background: var(--color-bg-card);
}

.plan-card--featured {
  border-color: var(--color-accent);
  box-shadow: 0 0 30px var(--color-accent-glow);
}

.plan-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 20px;
}

.plan-card h3 { margin-bottom: 8px; }

.plan-card__price { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.plan-card__price span { font-size: 0.9rem; font-weight: 400; color: var(--color-text-light); }
.plan-card ul { list-style: none; margin: 20px 0; }

.plan-card ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.92rem;
  color: var(--color-text-light);
}

.plan-card ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-teal);
  font-weight: 700;
}

/* ============================================
   NEW PARTNER BONUSES
   ============================================ */
.bonuses-box {
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 16px;
  padding: 32px;
  max-width: 500px;
}

.bonuses-box__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gold);
}

.bonuses-box ul {
  list-style: none;
}

.bonuses-box ul li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.92rem;
  color: var(--color-text);
}

.bonuses-box ul li::before {
  content: "\25CB";
  position: absolute;
  left: 0;
  color: var(--color-teal);
  font-weight: 700;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 1.02rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-family: var(--font-body);
}

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-question::after { content: "\2212"; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }

.faq-answer__inner {
  padding-bottom: 20px;
  color: var(--color-text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(16, 185, 129, 0.08));
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 72px 24px;
  text-align: center;
}

.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: var(--color-text-light); max-width: 480px; margin: 0 auto 24px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-bg-dark);
  padding: 64px 24px 32px;
  color: var(--color-text-light);
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer h4 { color: #fff; margin-bottom: 16px; font-size: 0.9rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: var(--color-text-light); font-size: 0.85rem; }
.footer ul a:hover { color: #fff; }

.footer__bottom {
  max-width: var(--max-width);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: 0.8rem;
}

/* ============================================
   ABOUT + GET STARTED PAGES
   ============================================ */
.about-hero {
  padding: 150px 24px 60px;
  background: radial-gradient(ellipse at 50% 0%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
              var(--color-bg);
  color: #fff;
  text-align: center;
}

.about-hero h1 { color: #fff; }

.timeline { max-width: 650px; margin: 0 auto; position: relative; }

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--color-border);
}

.timeline-item { padding-left: 56px; margin-bottom: 40px; position: relative; }

.timeline-item::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 3px solid var(--color-bg);
}

.timeline-item h3 { margin-bottom: 4px; }
.timeline-item p { font-size: 0.9rem; }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.diff-card { text-align: center; padding: 28px; }

.diff-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 14px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.step { text-align: center; padding: 24px; }

.step__number {
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto 14px;
  box-shadow: 0 4px 16px var(--color-accent-glow);
}

.step h3 { margin-bottom: 8px; }
.step p { font-size: 0.85rem; }

.contact-form {
  max-width: 520px;
  margin: 0 auto;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 36px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  background: rgba(255,255,255,0.03);
  color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--color-bg); color: #fff; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  :root { --section-padding: 60px 20px; }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--color-border);
  }

  .nav__links.active { display: flex; }
  .nav__toggle { display: block; }
  .hero { padding: 120px 20px 60px; }
  .hero__proof { gap: 20px; }
  .hero__ctas { flex-direction: column; align-items: center; }

  .comparison-table th,
  .comparison-table td { padding: 12px 14px; font-size: 0.85rem; }

  .guarantee { padding: 36px 24px; }
  .footer__inner { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .btn--large { padding: 14px 28px; font-size: 1rem; }
  .hero__proof { flex-direction: column; align-items: center; }
}
