/* ============================================
   UniteVPN - Main Stylesheet
   Space-themed dark design - Figma Exact Match
   ============================================ */

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

@font-face {
  font-family: 'Axiforma';
  src: local('Axiforma Bold');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Axiforma';
  src: local('Axiforma Medium');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Axiforma';
  src: local('Axiforma Regular');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-primary: #0B0E17;
  --bg-secondary: #14131C;
  --bg-card: rgba(38, 37, 50, 0.75);
  --bg-card-hover: rgba(38, 37, 50, 0.9);
  --bg-input: #14131C;
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.8);
  --text-muted: rgba(255, 255, 255, 0.5);
  --accent-yellow: #EAFA3C;
  --accent-red: #FF4343;
  --accent-teal: #16EAC2;
  --accent-purple: #DE5AFF;
  --accent-orange: #F59E0B;
  --border-color: #8E8D97;
  --border-card: rgba(142, 141, 151, 0.3);
  --font-primary: 'Axiforma', 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Axiforma', 'Space Grotesk', 'Inter', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 112px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

ul, ol { list-style: none; }

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

/* --- Metallic Text Gradient (matched to Figma) --- */
.text-metallic {
  background: radial-gradient(ellipse 600px 80px at 47% 90%, #ffffff 43.8%, #C4C6C9 47.1%, #A7AAAE 48.8%, #8A8D94 50.4%, #6C7179 52.1%, #4F545E 53.7%, #313843 55.4%, #232935 56.2%, #141B28 57%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-yellow { color: var(--accent-yellow); }
.text-red { color: var(--accent-red); -webkit-text-fill-color: var(--accent-red); }
.text-teal { color: var(--accent-teal); }
.text-purple { color: var(--accent-purple); -webkit-text-fill-color: var(--accent-purple); }
.text-white-solid { color: #fff; -webkit-text-fill-color: #fff; }

/* --- Section Label (yellow uppercase) --- */
.section-label {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-yellow);
  letter-spacing: 1px;
  transform: rotate(1.49deg);
  display: inline-block;
}

/* --- Section Title (metallic + rotation) --- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 56px);
  font-weight: 700;
  line-height: 1.28;
  text-transform: uppercase;
  transform: rotate(-1.15deg);
  position: relative;
}

.section-desc {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 500px;
  line-height: 1.7;
  font-weight: 500;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- Light Flare Effect (real Figma SVGs) --- */
.title-flare {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 110%;
  height: 52px;
  pointer-events: none;
  opacity: 0.7;
}

.title-flare--wide {
  width: 130%;
  height: 48px;
}

.title-flare--flip {
  transform: translateX(-50%) scaleY(-1) rotate(180deg);
}

.title-flare--contact {
  width: 100%;
  left: 0;
  transform: scaleY(-1) rotate(180deg);
  bottom: -5px;
}

/* --- Stars Background --- */
.stars-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.stars-bg .star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% { opacity: 0.15; }
  100% { opacity: 0.7; }
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(11, 14, 23, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(142,141,151,0.15);
  padding: 12px 0;
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.navbar-brand img,
.navbar-brand svg { height: 36px; width: 36px; }

.navbar-brand span {
  color: var(--accent-red);
  -webkit-text-fill-color: var(--accent-red);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover,
.nav-links a.active { color: #fff; }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-red);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 10px 24px !important;
  background: var(--accent-red) !important;
  color: #fff !important;
  border: 1px solid #fff !important;
  border-radius: 84px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  text-transform: capitalize !important;
  letter-spacing: -0.42px !important;
  box-shadow: 0px 4px 77.3px 0px rgba(255, 67, 67, 0.82) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0px 6px 90px 0px rgba(255, 67, 67, 0.9) !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-glow-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  opacity: 0.6;
  pointer-events: none;
}

.hero-bg .gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  overflow: visible;
}

.hero-label {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-yellow);
  margin-bottom: 12px;
  transform: rotate(1.49deg);
  display: inline-block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 56px);
  font-weight: 700;
  line-height: 1.28;
  margin-bottom: 24px;
  text-transform: uppercase;
  transform: rotate(-1.2deg);
  position: relative;
  max-width: 100%;
}

.hero-title .line-metallic {
  background: radial-gradient(ellipse 550px 80px at 47% 90%, #ffffff 43.8%, #C4C6C9 47.1%, #A7AAAE 48.8%, #8A8D94 50.4%, #6C7179 52.1%, #4F545E 53.7%, #313843 55.4%, #232935 56.2%, #141B28 57%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-title .line-white {
  color: #fff;
  text-shadow: 0px 4px 20px rgba(255,255,255,0.13);
  display: block;
  position: relative;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 420px;
  margin: 0 auto 36px;
  line-height: 1.7;
  font-weight: 500;
  transform: rotate(0deg);
}

/* Platform icons row under hero text */
.hero-platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 36px;
}

.hero-platforms .platform-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.99;
  overflow: hidden;
}

.hero-platforms .platform-ico svg {
  width: 22px;
  height: 22px;
  fill: rgba(255,255,255,0.7);
}

.hero-phone {
  position: relative;
  margin: 48px auto 0;
  max-width: 280px;
}

.hero-phone .phone-glow {
  position: absolute;
  top: -40%;
  left: -60%;
  width: 220%;
  height: 180%;
  pointer-events: none;
  opacity: 0.5;
}

.hero-phone .phone-img {
  position: relative;
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.05);
}

/* Floating space objects */
.floating-element {
  position: absolute;
  z-index: 1;
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.floating-element:nth-child(2) { animation-duration: 10s; animation-delay: -1.5s; }
.floating-element:nth-child(3) { animation-duration: 7s; animation-delay: -3s; }
.floating-element:nth-child(4) { animation-duration: 9s; animation-delay: -2s; }
.floating-element:nth-child(5) { animation-duration: 11s; animation-delay: -4s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-18px) rotate(2deg); }
  50% { transform: translateY(-5px) rotate(-1deg); }
  75% { transform: translateY(12px) rotate(-2deg); }
}

/* Section floaters container */
.section-floaters {
  position: relative;
  height: 0;
  overflow: visible;
  z-index: 1;
  pointer-events: none;
}

/* VPN Button visual for Encrypted card */
.vpn-button-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
  background: radial-gradient(circle at 50% 60%, rgba(30,30,40,0.8) 0%, transparent 70%);
}

.vpn-btn-outer {
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #4a4d55, #2a2d35 40%, #1e2028 70%, #16181e);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.vpn-btn-inner {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #3a3d45, #252830 50%, #1a1c22 80%);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.4), inset 0 -1px 0 rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.vpn-btn-text {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  background: linear-gradient(180deg, #ffffff 14%, #999999 111%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vpn-btn-indicator {
  width: 16px;
  height: 4px;
  border-radius: 65px;
  background: var(--accent-yellow);
  box-shadow: 0px 5px 20px rgba(234, 250, 60, 0.97);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-primary);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-teal);
  color: var(--bg-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 30px rgba(22, 234, 194, 0.35);
}

.btn-red {
  background: var(--accent-red);
  color: #fff;
  border: 1.5px solid #fff;
  box-shadow: 0px 5px 103px 0px rgba(255, 67, 67, 0.82);
  min-width: 240px;
  height: 72px;
  padding: 7px 10px;
}

.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 120px 0px rgba(255, 67, 67, 0.9);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-card);
}

.btn-outline:hover {
  border-color: var(--accent-teal);
  background: rgba(22, 234, 194, 0.05);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* --- Benefits Section --- */
.benefits {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.benefits-header {
  text-align: center;
  margin-bottom: 64px;
}

.benefits-header .section-label {
  margin-bottom: 16px;
}

.benefits-header .section-title {
  margin-bottom: 20px;
}

.benefits-header .section-desc {
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.benefit-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card--tall {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
}

.benefit-card--tall .benefit-card-visual {
  margin: -32px -24px 24px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(20,19,28,0.6) 0%, rgba(38,37,50,0.4) 100%);
}

.benefit-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(142,141,151,0.5);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(22, 234, 194, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent-teal);
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.benefit-card h3 .text-teal { color: var(--accent-teal); -webkit-text-fill-color: var(--accent-teal); }
.benefit-card h3 .text-red { color: var(--accent-red); -webkit-text-fill-color: var(--accent-red); }
.benefit-card h3 .text-purple { color: var(--accent-purple); -webkit-text-fill-color: var(--accent-purple); }
.benefit-card h3 .text-yellow { color: var(--accent-yellow); -webkit-text-fill-color: var(--accent-yellow); }

.benefit-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 400;
}

.stat-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 8px;
}

.stat-row p {
  flex: 1;
}

.benefit-card .stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
  flex-shrink: 0;
}

/* --- World Map Section --- */
.world-map {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  overflow: hidden;
}

.world-map-header {
  text-align: center;
  margin-bottom: 48px;
}

.world-map-visual {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.world-map-visual img,
.world-map-visual svg {
  width: 100%;
  opacity: 0.5;
}

.map-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-teal);
  box-shadow: 0 0 12px rgba(22, 234, 194, 0.6);
  animation: pulse-pin 2s ease-in-out infinite;
}

.map-pin::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(22, 234, 194, 0.3);
  animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-pin {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.8); opacity: 0; }
}

/* --- Ultra Fast Section --- */
.ultra-fast {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  overflow: hidden;
}

.ultra-fast-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  pointer-events: none;
}

.ultra-fast-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.ultra-fast-text {
  flex: 1;
}

.ultra-fast-text .premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-orange);
  margin-bottom: 20px;
}

.ultra-fast-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.ultra-fast-text h2 .text-teal {
  color: var(--accent-teal);
}

.ultra-fast-phones {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: -20px;
  position: relative;
}

.ultra-fast-phones .phone-mockup {
  width: 200px;
  border-radius: 24px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.4);
  position: relative;
}

.ultra-fast-phones .phone-front {
  z-index: 3;
  width: 220px;
  margin: 0 -30px;
}

.ultra-fast-phones .phone-back {
  opacity: 0.85;
  transform: scale(0.9);
}

/* --- Download Section --- */
.download {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  overflow: hidden;
}

.download-astronaut {
  position: absolute;
  left: -40px;
  bottom: 10%;
  width: 220px;
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
  animation: float 12s ease-in-out infinite;
}

.download-header {
  text-align: center;
  margin-bottom: 48px;
}

.download-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 46px);
  font-weight: 700;
  line-height: 1.4;
  text-transform: capitalize;
  transform: rotate(-2.97deg);
  margin-bottom: 16px;
  position: relative;
}

.download-header h2 .text-purple {
  color: var(--accent-purple);
}

.download-header p {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 400px;
  margin: 0 auto;
  font-weight: 400;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.platform-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.platform-card.active {
  border-color: var(--accent-teal);
  background: rgba(22, 234, 194, 0.05);
}

.platform-card.coming-soon { opacity: 0.5; }

.platform-card .soon-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.65rem;
  padding: 2px 8px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-orange);
  border-radius: var(--radius-full);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.platform-card:hover:not(.coming-soon) {
  border-color: var(--accent-teal);
  transform: translateY(-2px);
}

.platform-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
}

.platform-icon svg { width: 100%; height: 100%; }

.platform-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

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

.app-store-badge {
  height: 52px;
  transition: var(--transition);
}

.app-store-badge:hover { transform: scale(1.03); }

/* --- Contact Section --- */
.contact {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  overflow: hidden;
}

.contact-moon {
  position: absolute;
  right: -100px;
  top: -80px;
  width: 500px;
  height: auto;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.contact-wrapper {
  background: rgba(38, 37, 50, 0.75);
  backdrop-filter: blur(12.7px);
  -webkit-backdrop-filter: blur(12.7px);
  border: 1.5px solid #8E8D97;
  border-radius: var(--radius-xl);
  padding: 48px;
  overflow: hidden;
  position: relative;
}

.contact-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
}

.contact-title {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.28;
  position: relative;
  overflow: visible;
}

.contact-title .text-teal { color: var(--accent-teal); }

.contact-help {
  font-size: 23px;
  font-weight: 500;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: -0.23px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group { position: relative; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 25px 28px 25px 56px;
  background: var(--bg-input);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 16px;
  transition: var(--transition);
  outline: none;
  font-weight: 400;
  min-height: 74px;
}

.form-group textarea {
  min-height: 167px;
  resize: vertical;
  grid-column: 1 / -1;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #A6A6A6;
  font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 1px var(--accent-teal);
}

.form-group .form-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  color: #A6A6A6;
  pointer-events: none;
}

.form-group.message-group .form-icon {
  top: 22px;
  transform: none;
}

.contact-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.contact-bottom-text {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  text-transform: capitalize;
  font-weight: 400;
}

.contact-bottom-text strong {
  color: #fff;
  font-weight: 700;
}

/* --- Footer --- */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(142,141,151,0.15);
  padding: 40px 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  color: #fff;
}

.footer-brand-text .text-red-brand,
.text-red-brand {
  color: var(--accent-red);
  -webkit-text-fill-color: var(--accent-red);
}

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

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

.footer-links a:hover { color: rgba(255,255,255,0.98); }

.footer-copy {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

/* --- Divider --- */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(142,141,151,0.2), transparent);
  max-width: 800px;
  margin: 0 auto;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .ultra-fast-content {
    flex-direction: column;
    text-align: center;
  }
  .ultra-fast-text { order: 1; }
  .ultra-fast-phones { order: 2; }
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
  .benefit-card--tall {
    grid-row: auto;
  }
  .contact-top { flex-direction: column; gap: 12px; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  .contact-title { font-size: 36px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11, 14, 23, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 24px;
    z-index: 999;
  }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .mobile-toggle { display: flex; z-index: 1001; }
  .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .mobile-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero-title { font-size: 2rem; }
  .hero-label { font-size: 16px; }
  .section-label { font-size: 16px; }
  .section-title { font-size: 2rem; }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .benefit-card--tall {
    grid-row: auto;
  }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .download-actions { flex-direction: column; }
  .footer-content { flex-direction: column; text-align: center; }
  .contact-wrapper { padding: 24px; }
  .download-header h2 { font-size: 1.8rem; transform: rotate(-1deg); }
  .contact-title { font-size: 28px; }
  .contact-help { font-size: 18px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 100px 0 60px; }
  .hero-phone { max-width: 220px; }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Scroll Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

/* --- Coming Soon Pages --- */
.coming-soon-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  position: relative;
}

.coming-soon-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 32px;
  background: rgba(22, 234, 194, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(22, 234, 194, 0.2);
}

.coming-soon-icon svg {
  width: 40px;
  height: 40px;
  color: var(--accent-teal);
}

.coming-soon-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.coming-soon-page .subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.coming-soon-page .back-link {
  color: var(--accent-teal);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
}

.coming-soon-page .back-link:hover { text-decoration: underline; }

/* --- Privacy Policy Page --- */
.legal-page {
  padding: 120px 0 80px;
  position: relative;
  z-index: 2;
}

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

.legal-page h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.legal-page .last-updated {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(142,141,151,0.15);
}

.legal-page h2:first-of-type { border-top: none; padding-top: 0; }

.legal-page p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 0.95rem;
}

.legal-page ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-page ul li {
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.legal-page a { color: var(--accent-teal); }
.legal-page a:hover { text-decoration: underline; }
.legal-page strong { color: var(--text-primary); font-weight: 600; }
