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

/* ═══════════════════════════════════════════════════════ */
/* CSS CUSTOM PROPERTIES                                  */
/* ═══════════════════════════════════════════════════════ */
:root {
  /* Colors — from iOS app theme */
  --primary: #4C6FFF;
  --dark: #3E5BE0;
  --accent: #FF9800;
  --accent-light: #FFB74D;
  --background: #F4F6FA;
  --light: #E8F1FF;
  --safe: #34D399;
  --caution: #FBBF24;
  --danger: #EF4444;
  --surface-card: #FFFFFF;
  --text-primary: #1A1A2E;
  --text-secondary: #6B7280;

  /* Gradients */
  --primary-gradient: linear-gradient(135deg, #4C6FFF 0%, #3E5BE0 100%);
  --accent-gradient: linear-gradient(135deg, #FF9800, #FFB74D);

  /* Border Radius — from iOS app */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  /* Shadows — matching GlassCard */
  --shadow-sm: 0 4px 12px rgba(76, 111, 255, 0.04);
  --shadow-card: 0 12px 32px rgba(76, 111, 255, 0.06);
  --shadow-card-hover: 0 20px 48px rgba(76, 111, 255, 0.12);
  --shadow-btn: 0 10px 24px rgba(76, 111, 255, 0.25);

  /* Borders — matching GlassCard border */
  --border-glass: 1px solid rgba(76, 111, 255, 0.08);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ═══════════════════════════════════════════════════════ */
/* RESET & BASE                                           */
/* ═══════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  outline: none;
}

/* ═══════════════════════════════════════════════════════ */
/* TYPOGRAPHY                                             */
/* ═══════════════════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  color: var(--text-primary);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.15rem; }

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ═══════════════════════════════════════════════════════ */
/* LAYOUT                                                 */
/* ═══════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 120px 0;
  position: relative;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: var(--light);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.section-title {
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════ */
/* BUTTONS — matching PillButtonStyle                     */
/* ═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 32px rgba(76, 111, 255, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 1.5px solid rgba(76, 111, 255, 0.2);
}

.btn-secondary:hover {
  background: var(--light);
  transform: translateY(-3px);
  border-color: rgba(76, 111, 255, 0.4);
}

.btn-secondary:active {
  transform: translateY(-1px) scale(0.98);
}

/* ═══════════════════════════════════════════════════════ */
/* GLASS CARD — matching GlassCard ViewModifier           */
/* ═══════════════════════════════════════════════════════ */
.glass-card {
  background: var(--surface-card);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

/* ═══════════════════════════════════════════════════════ */
/* NAVIGATION                                             */
/* ═══════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════ */
/* NAVIGATION — FLOATING GLASS PILL NAVBAR               */
/* ═══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2.5rem);
  max-width: 1320px;
  padding: 0.55rem 1.25rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1000;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 
    0 10px 30px -5px rgba(76, 111, 255, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.03),
    0 0 0 1px rgba(76, 111, 255, 0.06);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.navbar.scrolled {
  top: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 
    0 18px 40px -10px rgba(76, 111, 255, 0.16),
    0 6px 16px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(76, 111, 255, 0.1);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-primary);
  z-index: 1001;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 12px rgba(76, 111, 255, 0.15);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-logo:hover .nav-logo-icon {
  transform: scale(1.08) rotate(-2deg);
}

.nav-logo-text {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  background: rgba(244, 246, 250, 0.85);
  padding: 0.25rem;
  border-radius: 99px;
  border: 1px solid rgba(76, 111, 255, 0.06);
  margin-left: auto;
  margin-right: 1.25rem;
}

.nav-links li a {
  padding: 0.5rem 1.15rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.88rem;
  color: #475569;
  transition: all 0.25s ease;
  display: block;
}

.nav-links li a:hover {
  background: rgba(76, 111, 255, 0.08);
  color: var(--primary);
}

.nav-links li a.active {
  background: #FFFFFF;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(76, 111, 255, 0.12);
}

.btn-appstore-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  background: #0F172A;
  color: #FFFFFF !important;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-appstore-nav:hover {
  transform: translateY(-2px) scale(1.02);
  background: #1E293B;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.35);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: 0.3s ease;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════════════════ */
/* HERO SECTION                                           */
/* ═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

/* Background blobs */
.hero-bg-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -15%;
  right: -10%;
}

.blob-2 {
  width: 450px;
  height: 450px;
  background: var(--primary);
  bottom: -15%;
  left: -5%;
  opacity: 0.06;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: var(--safe);
  top: 40%;
  left: 30%;
  opacity: 0.08;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--light);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(76, 111, 255, 0.1);
}

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

.hero-title {
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.08;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.75;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1rem;
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-number-group {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.metric-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.metric-suffix {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
  font-weight: 500;
}

.metric-divider {
  width: 1px;
  height: 40px;
  background: rgba(76, 111, 255, 0.12);
}

/* ═══════════════════════════════════════════════════════ */
/* REALISTIC IPHONE PRO HARDWARE MOCKUP CHASSIS            */
/* ═══════════════════════════════════════════════════════ */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.device-iphone-container {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  transform: none;
  animation: floatPhone 6s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.device-iphone-container:hover {
  transform: translateY(-4px);
}

@keyframes floatPhone {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Outer Titanium Hardware Chassis — Reference Match */
.iphone-chassis {
  position: relative;
  width: 100%;
  padding: 5px;
  background: linear-gradient(145deg, #2D3340 0%, #151821 50%, #0B0D13 100%);
  border-radius: 50px;
  box-shadow: 
    0 0 0 1.5px rgba(255, 255, 255, 0.25) inset,
    0 0 0 1px rgba(0, 0, 0, 0.95),
    0 30px 80px -10px rgba(0, 0, 0, 0.35),
    0 15px 40px -10px rgba(76, 111, 255, 0.25);
  z-index: 2;
}

.iphone-speaker-mesh {
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #252A36;
  border-radius: 2px;
  z-index: 12;
}

/* Inner Screen Frame */
.iphone-screen {
  position: relative;
  width: 100%;
  border-radius: 45px;
  overflow: hidden;
  background: #000000;
}

/* Screen Image */
.iphone-screen-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 45px;
  border: none;
}

/* Dynamic Island */
.iphone-dynamic-island {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 22px;
  background: #000000;
  border-radius: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 9px;
  gap: 5px;
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.2);
}

.island-camera {
  width: 8px;
  height: 8px;
  background: #0C1017;
  border-radius: 50%;
  box-shadow: inset 0 0 2px rgba(59, 130, 246, 0.8);
}

.island-sensor {
  width: 5px;
  height: 5px;
  background: #080A0E;
  border-radius: 50%;
}

/* Glass Reflection Layer */
.iphone-glass-glare {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg, 
    rgba(255, 255, 255, 0.14) 0%, 
    rgba(255, 255, 255, 0.03) 28%, 
    rgba(255, 255, 255, 0) 50%
  );
  pointer-events: none;
  z-index: 5;
  border-radius: 45px;
}

/* Hardware Side Buttons */
.iphone-button {
  position: absolute;
  background: linear-gradient(180deg, #4F5666, #222631);
  border-radius: 3px;
  z-index: 1;
  box-shadow: -1px 0 2px rgba(0, 0, 0, 0.4);
}

.iphone-btn-action {
  left: -4px;
  top: 72px;
  width: 5px;
  height: 26px;
  border-radius: 3px 0 0 3px;
}

.iphone-btn-volume-up {
  left: -4px;
  top: 114px;
  width: 5px;
  height: 48px;
  border-radius: 3px 0 0 3px;
}

.iphone-btn-volume-down {
  left: -4px;
  top: 174px;
  width: 5px;
  height: 48px;
  border-radius: 3px 0 0 3px;
}

.iphone-btn-power {
  right: -4px;
  top: 136px;
  width: 5px;
  height: 68px;
  border-radius: 0 3px 3px 0;
}

/* Ambient Backlight Glow */
.iphone-ambient-glow {
  position: absolute;
  width: 85%;
  height: 85%;
  top: 7.5%;
  left: 7.5%;
  background: radial-gradient(circle, rgba(76, 111, 255, 0.4) 0%, rgba(124, 58, 237, 0.25) 55%, transparent 100%);
  filter: blur(65px);
  z-index: 0;
  opacity: 0.85;
}

/* Floating Hero Badge Cards */
.hero-floating-card {
  position: absolute;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px -6px rgba(76, 111, 255, 0.18), 0 4px 12px rgba(0, 0, 0, 0.04);
  animation: floatCard 5s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-float-1 {
  top: 15%;
  left: -24%;
  animation-delay: 0s;
}

.hero-float-2 {
  bottom: 18%;
  right: -22%;
  animation-delay: 2.5s;
}

@keyframes floatCard {
  0% { transform: translateY(0px) scale(1); }
  100% { transform: translateY(-10px) scale(1.02); }
}

.float-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.float-card-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.float-card-text strong {
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
}

.float-card-text span {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Compatibility section specific mockup styling */
.compat-mockup {
  max-width: 300px;
  animation: floatPhoneReverse 7s ease-in-out infinite;
}

@keyframes floatPhoneReverse {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(12px) rotate(-0.5deg);
  }
}

/* ═══════════════════════════════════════════════════════ */
/* FEATURES SECTION                                       */
/* ═══════════════════════════════════════════════════════ */
.features {
  background: var(--background);
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}

.features-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.features-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
}

.features-blob-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -10%;
  left: -10%;
}

.features-blob-2 {
  width: 450px;
  height: 450px;
  background: #8B5CF6;
  bottom: -10%;
  right: -10%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}

.feature-card {
  background: #FFFFFF;
  border: 1px solid rgba(76, 111, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02);
  padding: 2.25rem;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0.6;
  transition: opacity 0.3s ease, height 0.3s ease;
}

.feature-card-blue::before { background: linear-gradient(90deg, #4C6FFF, #3B82F6); }
.feature-card-orange::before { background: linear-gradient(90deg, #FF9800, #F59E0B); }
.feature-card-green::before { background: linear-gradient(90deg, #10B981, #34D399); }
.feature-card-purple::before { background: linear-gradient(90deg, #8B5CF6, #A78BFA); }
.feature-card-rose::before { background: linear-gradient(90deg, #F43F5E, #FB7185); }
.feature-card-amber::before { background: linear-gradient(90deg, #F59E0B, #FBBF24); }

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px -10px rgba(76, 111, 255, 0.14), 0 0 0 1px rgba(76, 111, 255, 0.12);
}

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

.feature-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 8px 20px rgba(76, 111, 255, 0.15);
}

.feature-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  letter-spacing: 0.02em;
}

.tag-blue { background: rgba(76, 111, 255, 0.1); color: #3B82F6; }
.tag-orange { background: rgba(255, 152, 0, 0.1); color: #D97706; }
.tag-green { background: rgba(16, 185, 129, 0.1); color: #059669; }
.tag-purple { background: rgba(139, 92, 246, 0.1); color: #7C3AED; }
.tag-rose { background: rgba(244, 63, 94, 0.1); color: #E11D48; }
.tag-amber { background: rgba(245, 158, 11, 0.1); color: #B45309; }

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════ */
/* HOW IT WORKS SECTION                                   */
/* ═══════════════════════════════════════════════════════ */
.how-it-works {
  background: var(--background);
}

.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step-card {
  flex: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-btn);
  position: relative;
  z-index: 2;
}

.step-icon {
  margin-bottom: 1.5rem;
}

.step-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.step-card p {
  font-size: 0.95rem;
  max-width: 280px;
  margin: 0 auto;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 2rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════ */
/* COMPATIBILITY SECTION                                  */
/* ═══════════════════════════════════════════════════════ */
.compatibility {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 50%, #F4F6FA 100%);
  position: relative;
  overflow: hidden;
}

.compatibility-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.compatibility-content .section-badge {
  display: inline-block;
}

.compatibility-content .section-title {
  text-align: left;
  margin-bottom: 1rem;
}

.compatibility-content .section-subtitle {
  margin: 0 0 2.5rem 0;
  max-width: none;
}

.compat-results {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.compat-item {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  padding: 1.4rem 1.6rem;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(76, 111, 255, 0.08);
  border-left: 5px solid;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.compat-item:hover {
  transform: translateX(10px) translateY(-2px);
  box-shadow: 0 18px 40px -8px rgba(76, 111, 255, 0.16);
}

.compat-safe {
  border-left-color: #10B981;
  background: linear-gradient(145deg, #FFFFFF 0%, #F0FDF4 100%);
}

.compat-caution {
  border-left-color: #F59E0B;
  background: linear-gradient(145deg, #FFFFFF 0%, #FFFBEB 100%);
}

.compat-danger {
  border-left-color: #EF4444;
  background: linear-gradient(145deg, #FFFFFF 0%, #FEF2F2 100%);
}

.compat-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.compat-safe .compat-icon { background: rgba(16, 185, 129, 0.12); }
.compat-caution .compat-icon { background: rgba(245, 158, 11, 0.12); }
.compat-danger .compat-icon { background: rgba(239, 68, 68, 0.12); }

.compat-item:hover .compat-icon {
  transform: scale(1.12);
}

.compat-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex-grow: 1;
}

.compat-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.compat-title-row strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.compat-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  letter-spacing: 0.01em;
}

.badge-safe { background: rgba(16, 185, 129, 0.15); color: #047857; }
.badge-caution { background: rgba(245, 158, 11, 0.15); color: #B45309; }
.badge-danger { background: rgba(239, 68, 68, 0.15); color: #B91C1C; }

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

.compatibility-visual .device-iphone-container {
  max-width: 310px;
}

.floating {
  animation: float 7s ease-in-out infinite reverse;
}

/* ═══════════════════════════════════════════════════════ */
/* TESTIMONIALS SECTION                                   */
/* ═══════════════════════════════════════════════════════ */
.testimonials {
  background: var(--background);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--surface-card);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1.25rem;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════ */
/* PRICING SECTION                                        */
/* ═══════════════════════════════════════════════════════ */
.pricing {
  background: white;
}

.pricing-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 850px;
  margin: 0 auto;
}

.pricing-card {
  flex: 1;
  background: var(--surface-card);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

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

.pricing-featured {
  border: 2px solid var(--primary);
  transform: scale(1.04);
  box-shadow: var(--shadow-card-hover);
}

.pricing-featured:hover {
  transform: scale(1.04) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: white;
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-btn);
}

.pricing-header {
  margin-bottom: 2rem;
}

.pricing-header h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.pricing-desc {
  font-size: 0.95rem;
  margin: 0;
}

.pricing-features {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(76, 111, 255, 0.04);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li svg {
  flex-shrink: 0;
}

.pricing-features li.disabled {
  opacity: 0.45;
}

.pricing-cta {
  width: 100%;
  text-align: center;
  padding: 1rem;
}

/* ═══════════════════════════════════════════════════════ */
/* DOWNLOAD CTA SECTION                                   */
/* ═══════════════════════════════════════════════════════ */
.download-cta {
  background: linear-gradient(145deg, #0B0F19 0%, #161E36 60%, #0F1424 100%);
  text-align: center;
  overflow: hidden;
  position: relative;
  border-radius: 32px;
  margin: 3rem auto;
  max-width: 1140px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px -15px rgba(11, 15, 25, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  padding: 5rem 2rem;
}

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

.download-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.download-blob-1 {
  width: 400px;
  height: 400px;
  top: -50%;
  left: -10%;
  background: #4C6FFF;
}

.download-blob-2 {
  width: 350px;
  height: 350px;
  bottom: -40%;
  right: -5%;
  background: #7C3AED;
}

.download-blob-3 {
  width: 250px;
  height: 250px;
  top: 20%;
  right: 20%;
  background: #34D399;
  opacity: 0.25;
}

.download-container {
  position: relative;
  z-index: 1;
}

.download-content h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
}

.download-content h2 span {
  position: relative;
}

.download-content h2 span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}

.download-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* Waitlist Form */
.waitlist-form {
  max-width: 500px;
  margin: 0 auto;
}

.waitlist-input-group {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.waitlist-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
  color: white;
  font-family: inherit;
  min-width: 0;
}

.waitlist-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.waitlist-btn {
  background: white;
  color: var(--primary);
  border: none;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  white-space: nowrap;
}

.waitlist-btn:hover {
  background: var(--text-primary);
  color: white;
  transform: scale(1.03);
}

.waitlist-note {
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.55) !important;
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
}

/* ═══════════════════════════════════════════════════════ */
/* FOOTER                                                 */
/* ═══════════════════════════════════════════════════════ */
.footer {
  background: var(--text-primary);
  color: white;
  padding: 80px 0 0;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.footer-links h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════ */
/* ANIMATIONS                                             */
/* ═══════════════════════════════════════════════════════ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Scroll-triggered fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), 
              transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ═══════════════════════════════════════════════════════ */
/* RESPONSIVE — Tablet                                    */
/* ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container,
  .compatibility-container {
    gap: 2.5rem;
  }

  .features-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-featured {
    transform: scale(1);
  }

  .pricing-featured:hover {
    transform: translateY(-8px);
  }
}

/* ═══════════════════════════════════════════════════════ */
/* RESPONSIVE — Mobile                                    */
/* ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .navbar {
    top: 0.75rem;
    width: calc(100% - 1.5rem);
    border-radius: 24px;
    padding: 0.5rem 0.75rem;
  }

  /* Nav */
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li a {
    font-size: 1.25rem;
  }

  .nav-cta {
    display: none;
  }

  /* Hero */
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-content {
    order: 2;
    max-width: none;
  }

  .hero-visual {
    order: 1;
  }

  .hero-subtitle {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-metrics {
    justify-content: center;
  }

  .device-iphone-container {
    max-width: 270px !important;
  }

  /* Features */
  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .steps-container {
    flex-direction: column;
    gap: 1rem;
  }

  .step-connector {
    display: none;
  }

  /* Compatibility */
  .compatibility-container {
    grid-template-columns: 1fr;
  }

  .compatibility-content .section-title {
    text-align: center;
  }

  .compatibility-content .section-subtitle {
    text-align: center !important;
  }

  .compatibility-visual {
    order: -1;
  }

  /* Pricing */
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    max-width: 420px;
  }

  .pricing-featured {
    transform: scale(1);
  }

  .pricing-featured:hover {
    transform: translateY(-8px);
  }

  /* Download */
  .download-cta {
    margin: 0;
    border-radius: 0;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    max-width: none;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-metrics {
    flex-wrap: wrap;
    gap: 1.25rem;
  }

  .metric-divider {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ═══════════════════════════════════════════════════════ */
/* APP STORE SUBMISSION & SUPPORT STYLES                  */
/* ═══════════════════════════════════════════════════════ */

/* iOS Metadata Pills in Hero */
.ios-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(76, 111, 255, 0.15);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: 0 4px 12px rgba(76, 111, 255, 0.05);
}

/* App Store Badge Buttons */
.btn-appstore-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #000000;
  color: #FFFFFF !important;
  padding: 0.75rem 1.6rem;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.btn-appstore-hero:hover {
  background: #1c1c1e;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.btn-appstore-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.btn-appstore-text .sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
  font-weight: 500;
}

.btn-appstore-text .main {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.btn-appstore-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #000000;
  color: #FFFFFF !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
}

.btn-appstore-nav:hover {
  background: #2c2c2e;
}

/* App Store Footer Badge */
.appstore-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ═══════════════════════════════════════════════════════ */
/* SUPPORT & FAQ SECTION                                   */
/* ═══════════════════════════════════════════════════════ */
.support-section {
  background: linear-gradient(180deg, var(--background) 0%, #FFFFFF 100%);
  padding: 5rem 0;
}

.faq-container {
  max-width: 820px;
  margin: 3rem auto 0;
}

.support-direct-email-box {
  margin-top: 2.5rem;
  padding: 1.6rem 2.25rem;
  background: linear-gradient(135deg, #F0F5FF 0%, #EEF2FF 50%, #F5F3FF 100%);
  border: 1px solid rgba(76, 111, 255, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 36px -8px rgba(76, 111, 255, 0.16), 0 0 0 1px rgba(76, 111, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.support-direct-email-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px -10px rgba(76, 111, 255, 0.22);
  border-color: rgba(76, 111, 255, 0.35);
}

.email-box-badge {
  width: 52px;
  height: 52px;
  background: #FFFFFF;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(76, 111, 255, 0.15);
}

.email-box-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex-grow: 1;
  text-align: left;
}

.email-box-content strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.email-box-content span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.email-direct-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  background: var(--primary-gradient);
  color: #FFFFFF !important;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(76, 111, 255, 0.35);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none !important;
  flex-shrink: 0;
}

.email-direct-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(76, 111, 255, 0.48);
}

/* ═══════════════════════════════════════════════════════ */
/* PRIVACY & DATA TRUST SECTION                           */
/* ═══════════════════════════════════════════════════════ */
.privacy-section {
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.privacy-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

@media (max-width: 992px) {
  .privacy-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.privacy-card {
  padding: 2.25rem 2rem;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(76, 111, 255, 0.08);
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.privacy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px -10px rgba(76, 111, 255, 0.16);
  border-color: rgba(76, 111, 255, 0.2);
}

.privacy-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.35s ease;
}

.privacy-card:hover .privacy-card-icon {
  transform: scale(1.12) rotate(-3deg);
}

.privacy-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.privacy-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.support-subheading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--surface-card);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-question svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  stroke: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

/* Support Form Card */
.support-contact-card {
  background: var(--surface-card);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
}

.contact-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.support-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(76, 111, 255, 0.18);
  background: var(--background);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(76, 111, 255, 0.15);
  background: #FFFFFF;
}

.btn-block {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
}

.support-direct-email {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.support-direct-email a {
  color: var(--primary);
  font-weight: 600;
}

/* Medical Disclaimer Box */
.medical-disclaimer-box {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.medical-disclaimer-box strong {
  color: rgba(255, 255, 255, 0.95);
}

/* ═══════════════════════════════════════════════════════ */
/* MODALS (PRIVACY POLICY & TERMS OF SERVICE)             */
/* ═══════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 1.35rem;
  color: var(--text-primary);
}

.modal-close {
  font-size: 1.75rem;
  line-height: 1;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-body {
  padding: 2rem;
  overflow-y: auto;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.modal-date {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.modal-body h4 {
  color: var(--text-primary);
  font-size: 1.05rem;
  margin: 1.25rem 0 0.5rem 0;
}

.modal-body h4:first-of-type {
  margin-top: 0;
}

.modal-body ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.modal-body a {
  color: var(--primary);
  font-weight: 600;
}

.modal-footer {
  padding: 1.25rem 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: flex-end;
  background: var(--background);
}

@media (max-width: 992px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
  .hero-floating-card {
    display: none;
  }
}
