/* ============================================
   Scale For Grams — Website Design System
   Premium, Apple-inspired aesthetic
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* --- Custom Properties --- */
:root {
  --color-primary: #1FA2FF;
  --color-primary-dark: #1480CC;
  --color-secondary: #12D8FA;
  --color-accent: #A6E3FF;
  --color-dark: #0A0A0C;
  --color-dark-surface: #141416;
  --color-dark-card: #1C1C1E;
  --color-light-bg: #F7F9FC;
  --color-light-surface: #FFFFFF;
  --color-text-dark: #1B2230;
  --color-text-muted: rgba(27, 34, 48, 0.6);
  --color-text-light: #FFFFFF;
  --color-text-light-muted: rgba(255, 255, 255, 0.65);
  --color-border-light: rgba(255, 255, 255, 0.12);
  --color-border-dark: rgba(27, 34, 48, 0.06);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.06);
  --shadow-elevated: 0 24px 64px rgba(31, 162, 255, 0.12);
  --shadow-glow: 0 0 80px rgba(31, 162, 255, 0.2);
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1200px;
  --transition-smooth: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  color: var(--color-text-dark);
  background: var(--color-light-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-smooth);
}

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

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition-smooth), box-shadow var(--transition-smooth), backdrop-filter var(--transition-smooth);
}

.nav.scrolled {
  background: rgba(247, 249, 252, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 18px;
  color: var(--color-text-dark);
  text-decoration: none;
}

.nav-brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

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

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-smooth);
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--color-text-dark);
  color: var(--color-text-light) !important;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.nav-cta:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  color: var(--color-text-light) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(165deg, #0A0A0C 0%, #0F1923 40%, #0A1628 100%);
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.hero-orb--blue {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  top: 10%;
  left: -10%;
  animation: float-orb 8s ease-in-out infinite alternate;
}

.hero-orb--cyan {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
  bottom: 5%;
  right: -5%;
  animation: float-orb 10s ease-in-out infinite alternate-reverse;
}

.hero-orb--accent {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #A855F7 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float-orb 12s ease-in-out infinite alternate;
  opacity: 0.2;
}

@keyframes float-orb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.1); }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 80px;
}

.hero-content {
  flex: 1;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(31, 162, 255, 0.12);
  border: 1px solid rgba(31, 162, 255, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-secondary);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: var(--color-text-light);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-light-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-text-light);
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(31, 162, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 48px rgba(31, 162, 255, 0.4);
  color: var(--color-text-light);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text-light);
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background var(--transition-smooth), transform var(--transition-smooth);
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
  color: var(--color-text-light);
}

/* Hero Visual */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-phone {
  position: relative;
  width: 280px;
  height: 560px;
  background: var(--color-dark-card);
  border-radius: 44px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.hero-phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 32px;
  background: #000;
  border-radius: 0 0 20px 20px;
  z-index: 3;
}

.hero-phone-screen {
  position: absolute;
  inset: 8px;
  border-radius: 38px;
  overflow: hidden;
  background: linear-gradient(180deg, #1a2a3a 0%, #0d1b2a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 24px;
}

.hero-phone-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin-bottom: 16px;
  box-shadow: 0 12px 40px rgba(31, 162, 255, 0.3);
}

.hero-phone-title {
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.hero-phone-value {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.hero-phone-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  font-weight: 500;
}

/* Floating feature pills around the phone */
.hero-float-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  animation: float-pill 6s ease-in-out infinite;
}

.hero-float-pill:nth-child(1) { top: 80px; right: -30px; animation-delay: 0s; }
.hero-float-pill:nth-child(2) { top: 200px; left: -50px; animation-delay: 1s; }
.hero-float-pill:nth-child(3) { bottom: 180px; right: -40px; animation-delay: 2s; }
.hero-float-pill:nth-child(4) { bottom: 60px; left: -30px; animation-delay: 3s; }

.hero-float-pill .pill-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

@keyframes float-pill {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  padding: 120px 0;
  background: var(--color-light-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(31, 162, 255, 0.08);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--color-text-dark);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--color-light-surface);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--color-border-dark);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 162, 255, 0.03), transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(31, 162, 255, 0.1), rgba(18, 216, 250, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  position: relative;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 120px 0;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.how-it-works .section-title {
  color: var(--color-text-light);
}

.how-it-works .section-subtitle {
  color: var(--color-text-light-muted);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 72px;
}

.step-card {
  background: var(--color-dark-card);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 162, 255, 0.2);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: white;
  margin-bottom: 24px;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-light-muted);
  line-height: 1.7;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
  padding: 120px 0;
  background: var(--color-light-bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--color-light-surface);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 2px solid var(--color-border-dark);
  text-align: center;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  position: relative;
}

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

.pricing-card.featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-elevated);
}

.pricing-card.featured::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  background: var(--color-primary);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: 100px;
}

.pricing-plan-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 44px;
  font-weight: 900;
  color: var(--color-text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.pricing-period {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-dark);
}

.pricing-features li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(31, 162, 255, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.pricing-btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  box-shadow: 0 8px 24px rgba(31, 162, 255, 0.25);
}

.pricing-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(31, 162, 255, 0.35);
  color: white;
}

.pricing-btn-secondary {
  background: var(--color-light-bg);
  color: var(--color-text-dark);
  border: 1.5px solid var(--color-border-dark);
}

.pricing-btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  padding: 120px 0;
  background: linear-gradient(165deg, #0A0A0C, #0F1923);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 162, 255, 0.15), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta .container {
  position: relative;
  z-index: 2;
}

.cta-icon {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  margin: 0 auto 32px;
  box-shadow: 0 16px 48px rgba(31, 162, 255, 0.3);
}

.cta h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cta p {
  font-size: 18px;
  color: var(--color-text-light-muted);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 18px;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.footer-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-smooth);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--color-border-dark);
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding: 140px 0 80px;
  min-height: 100vh;
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--color-text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-top: 48px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.legal-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content strong {
  color: var(--color-text-dark);
  font-weight: 700;
}

/* Support page contact card */
.contact-card {
  background: var(--color-light-surface);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 32px;
  text-align: center;
}

.contact-card h3 {
  margin-top: 0;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white !important;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none !important;
  margin-top: 16px;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.contact-email:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(31, 162, 255, 0.3);
  color: white !important;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  padding: 120px 0;
  background: var(--color-light-bg);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-light-surface);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  padding: 0 28px;
  transition: box-shadow var(--transition-smooth);
}

.faq-item[open] {
  box-shadow: var(--shadow-card);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--color-primary);
  transition: transform var(--transition-smooth);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1.7;
  padding: 0 0 22px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-visual {
    width: 100%;
  }
  
  .hero-phone {
    width: 240px;
    height: 480px;
  }
  
  .hero-float-pill {
    display: none;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 72px auto 0;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(247, 249, 252, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    z-index: 999;
  }
  
  .nav-links.open {
    display: flex;
  }
  
  .nav-links a {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-dark);
  }
  
  .nav-toggle {
    display: block;
    z-index: 1001;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hero-phone {
    width: 200px;
    height: 400px;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .hero-orb,
  .hero-float-pill,
  .hero-badge-dot {
    animation: none;
  }
}
