/* ═══════════════════════════════════════════════════════════════════
   FOREXCROW — Marketing Website Stylesheet
   Design System + All Page Sections
   ═══════════════════════════════════════════════════════════════════ */

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

/* ── CSS Custom Properties ──────────────────────────────────────── */
:root {
  /* Brand palette */
  --primary-main: #4E9576;
  --primary-deep: #234539;
  --primary-deeper: #1a332b;
  --primary-light: #D9EFEC;
  --primary-lighter: #EDF7F5;
  --accent-red: #F15F5F;
  --accent-orange: #F26B3A;

  /* Neutrals */
  --text-main: #1A202C;
  --text-sub: #718096;
  --text-light: #A0AEC0;
  --background: #FFFFFF;
  --background-alt: #F7FAF9;
  --border: #E2E8F0;
  --border-light: #EDF2F7;

  /* Functional */
  --white: #FFFFFF;
  --black: #000000;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-green: 0 8px 32px rgba(78,149,118,0.25);

  /* Layout */
  --max-width: 1200px;
  --section-padding: 100px 0;
  --section-padding-mobile: 60px 0;
  --container-padding: 0 24px;
  --nav-height: 80px;

  /* Animation */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s var(--ease-out-expo);
  --transition-slow: 0.8s var(--ease-out-expo);

  /* Border radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 100px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-main);
  background-color: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-main);
  background: var(--primary-lighter);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-sub);
  line-height: 1.7;
  max-width: 620px;
  font-weight: 400;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ── Scroll Animation Base ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.reveal.revealed {
  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; }
.reveal-delay-5 { transition-delay: 0.5s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* ═══════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color 0.35s ease;
}

.navbar.scrolled .nav-logo-text {
  color: var(--primary-deep);
}

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

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition-fast);
  position: relative;
}

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

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

.navbar.scrolled .nav-links a {
  color: var(--text-sub);
}
.navbar.scrolled .nav-links a:hover {
  color: var(--primary-main);
}

.nav-cta {
  background: var(--primary-main);
  color: var(--white) !important;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-green);
}

.nav-cta:hover {
  background: #3d7d62;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(78,149,118,0.35);
}

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

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.navbar.scrolled .nav-hamburger span {
  background: var(--text-main);
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--primary-deep);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-overlay a {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
}

.mobile-nav-overlay a:hover {
  color: var(--primary-light);
}

/* ═══════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(165deg, var(--primary-deep) 0%, #1a3a30 40%, #1d4035 70%, var(--primary-deeper) 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Hexagon pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52' viewBox='0 0 60 52'%3E%3Cpath d='M30 0L60 15v22L30 52 0 37V15z' fill='none' stroke='rgba(78,149,118,0.08)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 52px;
  opacity: 0.6;
  animation: hexFloat 20s linear infinite;
}

@keyframes hexFloat {
  0% { background-position: 0 0; }
  100% { background-position: 60px 52px; }
}

/* Shield watermark */
.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5%;
  width: 600px;
  height: 600px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 240'%3E%3Cpath d='M100 10 L180 50 L180 130 Q180 200 100 230 Q20 200 20 130 L20 50 Z' fill='none' stroke='rgba(78,149,118,0.08)' stroke-width='3'/%3E%3Cpath d='M100 30 L160 60 L160 125 Q160 185 100 210 Q40 185 40 125 L40 60 Z' fill='none' stroke='rgba(78,149,118,0.05)' stroke-width='2'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.7;
  pointer-events: none;
}

/* Floating gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(78,149,118,0.15);
  top: -100px;
  left: -100px;
  animation: orbFloat1 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(217,239,236,0.08);
  bottom: -50px;
  right: 10%;
  animation: orbFloat2 10s ease-in-out infinite;
}

.hero-orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(242,107,58,0.06);
  top: 30%;
  right: 30%;
  animation: orbFloat3 12s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 20px); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, -30px); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -15px); }
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(78,149,118,0.15);
  border: 1px solid rgba(78,149,118,0.25);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-title span {
  display: inline;
  background: linear-gradient(135deg, #6BC4A0, #A8E6CF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--text-main);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.btn-store:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-store svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.btn-store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-store-label {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-sub);
  line-height: 1;
}

.btn-store-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

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

.phone-mockup-wrapper {
  position: relative;
  animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-15px) rotate(0deg); }
}

.phone-mockup {
  width: 300px;
  height: auto;
  border-radius: 36px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1);
  position: relative;
  z-index: 2;
}

/* Glow behind phone */
.phone-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(78,149,118,0.3), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: blur(40px);
}

/* Floating card near phone */
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  color: var(--white);
  z-index: 3;
  animation: cardFloat 5s ease-in-out infinite;
}

.hero-float-card.card-1 {
  top: 15%;
  right: -10%;
  animation-delay: 0.5s;
}

.hero-float-card.card-2 {
  bottom: 20%;
  left: -5%;
  animation-delay: 1.5s;
}

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

.float-card-icon {
  font-size: 24px;
  margin-bottom: 6px;
}

.float-card-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}

.float-card-value {
  font-size: 11px;
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════════════
   TRUST BAR / STATS
   ═══════════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--background-alt);
  padding: 50px 0;
  border-bottom: 1px solid var(--border-light);
}

.trust-bar .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.trust-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 900px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 900;
  color: var(--primary-deep);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-value span {
  color: var(--primary-main);
}

.stat-label {
  font-size: 14px;
  color: var(--text-sub);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════
   FEATURES SECTION
   ═══════════════════════════════════════════════════════════════════ */
.features {
  padding: var(--section-padding);
  background: var(--background);
}

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

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

.feature-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  transition: all var(--transition-medium);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-main), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  position: relative;
}

.feature-icon.green {
  background: linear-gradient(135deg, rgba(78,149,118,0.12), rgba(78,149,118,0.05));
  color: var(--primary-main);
}
.feature-icon.blue {
  background: linear-gradient(135deg, rgba(35,69,57,0.12), rgba(35,69,57,0.05));
  color: var(--primary-deep);
}
.feature-icon.orange {
  background: linear-gradient(135deg, rgba(242,107,58,0.12), rgba(242,107,58,0.05));
  color: var(--accent-orange);
}

.feature-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-description {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════════ */
.how-it-works {
  padding: var(--section-padding);
  background: var(--primary-deep);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52' viewBox='0 0 60 52'%3E%3Cpath d='M30 0L60 15v22L30 52 0 37V15z' fill='none' stroke='rgba(78,149,118,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 52px;
  opacity: 0.4;
}

.how-it-works .container {
  position: relative;
  z-index: 2;
}

.how-it-works .section-label {
  background: rgba(78,149,118,0.15);
  color: var(--primary-light);
}

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

.how-it-works .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}

/* Connection line between steps */
.steps-container::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 16.67%;
  right: 16.67%;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(78,149,118,0.3), 
    rgba(78,149,118,0.6), 
    rgba(78,149,118,0.6), 
    rgba(78,149,118,0.3)
  );
}

.step-item {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-main), #3d7d62);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(78,149,118,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(78,149,118,0.5);
}

.step-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step-description {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════
   CORRIDOR SECTION
   ═══════════════════════════════════════════════════════════════════ */
.corridors {
  padding: var(--section-padding);
  background: var(--background);
}

.corridor-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.corridor-visual {
  position: relative;
}

.corridor-card {
  background: linear-gradient(135deg, var(--primary-deep), #1a3a30);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.corridor-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52' viewBox='0 0 60 52'%3E%3Cpath d='M30 0L60 15v22L30 52 0 37V15z' fill='none' stroke='rgba(78,149,118,0.1)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 52px;
}

.corridor-card-content {
  position: relative;
  z-index: 2;
}

.corridor-flags {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.corridor-flag {
  font-size: 52px;
  line-height: 1;
}

.corridor-arrow {
  font-size: 28px;
  color: var(--primary-light);
  animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

.corridor-pair {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.corridor-rate {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.corridor-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(74,222,128,0.15);
  border: 1px solid rgba(74,222,128,0.3);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: #4ADE80;
}

.corridor-info h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-main);
}

.corridor-info p {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 24px;
}

.corridor-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.corridor-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.corridor-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--primary-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.corridor-feature-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
}

.corridor-feature-text p {
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 0;
}

/* Hidden corridors (coming soon) */
.corridors-coming-soon {
  margin-top: 48px;
  text-align: center;
}

.coming-soon-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.coming-soon-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.coming-soon-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--background-alt);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sub);
  opacity: 0.7;
}

.coming-soon-pill .flag {
  font-size: 20px;
}

/* ═══════════════════════════════════════════════════════════════════
   SECURITY SECTION
   ═══════════════════════════════════════════════════════════════════ */
.security {
  padding: var(--section-padding);
  background: var(--background-alt);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.security-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-medium);
}

.security-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.security-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-lighter), rgba(78,149,118,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.security-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}

.security-description {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════
   APP SHOWCASE
   ═══════════════════════════════════════════════════════════════════ */
.app-showcase {
  padding: var(--section-padding);
  background: var(--background);
}

/* App Showcase Grid & Cards */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.showcase-card {
  background: var(--background-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium), border-color var(--transition-fast);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(78, 149, 118, 0.25);
}

.showcase-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.showcase-icon {
  font-size: 28px;
  background: var(--primary-lighter);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--primary-main);
  box-shadow: 0 4px 12px rgba(78, 149, 118, 0.08);
}

.showcase-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
}

.showcase-card p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 280px;
  flex-grow: 1;
}

/* Premium CSS Phone Mockup */
.phone-mockup-container {
  width: 200px;
  height: 400px;
  border: 8px solid #1A2E26; /* Deep dark green bezel matches brand */
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  background: #111A16;
  box-shadow: 0 16px 36px rgba(0,0,0,0.25), inset 0 0 8px rgba(0,0,0,0.8);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

/* Bezel inner highlight */
.phone-mockup-container::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  pointer-events: none;
  z-index: 12;
}

/* Speaker / Camera Island (Dynamic Island style) */
.phone-island {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 68px;
  height: 14px;
  background: #000000;
  border-radius: 8px;
  z-index: 15;
  box-shadow: inset 0 0 3px rgba(255,255,255,0.25);
}

/* Screen Image */
.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  z-index: 5;
}

/* Hover effects */
.showcase-card:hover .phone-mockup-container {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════ */
.testimonials {
  padding: var(--section-padding);
  background: var(--primary-deep);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 240'%3E%3Cpath d='M100 10 L180 50 L180 130 Q180 200 100 230 Q20 200 20 130 L20 50 Z' fill='none' stroke='rgba(78,149,118,0.04)' stroke-width='3'/%3E%3C/svg%3E") center / 400px no-repeat;
  opacity: 0.5;
}

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

.testimonials .section-label {
  background: rgba(78,149,118,0.15);
  color: var(--primary-light);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.testimonials-carousel {
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  padding-bottom: 12px;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 360px;
  max-width: 400px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 36px;
  scroll-snap-align: start;
  transition: all var(--transition-medium);
  flex-shrink: 0;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
  font-size: 18px;
  color: #FBBF24;
}

.testimonial-quote {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-main), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.testimonial-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.testimonial-role {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* Carousel controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all var(--transition-fast);
}

.carousel-btn:hover {
  background: rgba(255,255,255,0.15);
}

/* ═══════════════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════════════ */
.faq-section {
  padding: 100px 0 150px; /* Increased bottom padding to create space before the next section */
  background: var(--background);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: flex-start;
}

.faq-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.faq-info .section-title {
  margin-bottom: 20px;
}

.faq-info .section-subtitle {
  margin-bottom: 0;
}

/* Accordion Component */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px; /* spacing between different FAQ items */
}

.accordion-item {
  background: var(--background-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.accordion-item:hover {
  border-color: var(--primary-main);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.accordion-item.active {
  border-color: var(--primary-main);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
  gap: 20px;
}

.accordion-header span:first-child {
  flex-grow: 1;
}

.accordion-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-main);
  font-weight: 500;
  transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
  flex-shrink: 0;
  line-height: 1;
}

.accordion-item.active .accordion-arrow {
  transform: rotate(45deg);
  background: var(--primary-main);
  color: var(--white);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), opacity 0.4s var(--ease-out-expo);
  opacity: 0;
}

.accordion-item.active .accordion-content {
  max-height: 250px; /* Large enough to display full answers */
  opacity: 1;
}

.accordion-content p {
  padding: 0 32px 24px;
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.7;
}

/* Contact box at the end of the section */
.faq-contact-box {
  display: block;
  background: var(--primary-lighter);
  border: 1px solid rgba(78, 149, 118, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  text-align: center;
  margin-top: 56px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-sm);
  color: var(--primary-deep);
}

.faq-contact-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-main);
  background: var(--white);
}

.faq-contact-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}

.faq-contact-box p {
  font-size: 15px;
  color: var(--text-sub);
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG PLACEHOLDER
   ═══════════════════════════════════════════════════════════════════ */
.blog {
  padding: var(--section-padding);
  background: var(--background-alt);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-medium);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary-main));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.blog-card-content {
  padding: 28px;
}

.blog-card-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-main);
  background: var(--primary-lighter);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 18px;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-light);
}

.blog-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-main);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.blog-card-link:hover {
  gap: 8px;
}

/* ═══════════════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════════════ */
.final-cta {
  padding: var(--section-padding);
  background: var(--background);
  text-align: center;
}

.cta-card {
  background: linear-gradient(135deg, var(--primary-deep), #1a3a30);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 240'%3E%3Cpath d='M100 10 L180 50 L180 130 Q180 200 100 230 Q20 200 20 130 L20 50 Z' fill='none' stroke='rgba(78,149,118,0.08)' stroke-width='3'/%3E%3C/svg%3E");
  background-size: 300px;
  background-position: center;
  background-repeat: no-repeat;
}

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

.cta-card .section-title {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-card .section-subtitle {
  color: rgba(255,255,255,0.7);
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-store {
  box-shadow: var(--shadow-lg);
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.footer {
  background: #0D1B16;
  color: rgba(255,255,255,0.7);
  padding: 40px 0 32px;
  margin-top: 40px;
}

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

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-logo img {
  height: 36px;
}

.footer-logo span {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.5);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  color: rgba(255,255,255,0.6);
}

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

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-fast);
}

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

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

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

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

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links a:hover {
  color: var(--primary-light);
}

/* ═══════════════════════════════════════════════════════════════════
   LEGAL PAGES MODAL
   ═══════════════════════════════════════════════════════════════════ */
.legal-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.legal-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.legal-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 800px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 48px;
}

.legal-modal h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
}

.legal-modal h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 12px;
  color: var(--text-main);
}

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

.legal-modal-close {
  position: sticky;
  top: 0;
  float: right;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--background-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all var(--transition-fast);
  z-index: 10;
}

.legal-modal-close:hover {
  background: var(--accent-red);
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .phone-mockup {
    width: 240px;
  }
  
  .hero-float-card {
    display: none;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .steps-container::before {
    display: none;
  }
  
  .corridor-showcase {
    grid-template-columns: 1fr;
  }
  
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 450px;
    margin: 48px auto 0;
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .faq-info {
    align-items: center;
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: var(--section-padding-mobile);
    --nav-height: 68px;
  }
  
  /* Nav */
  .nav-links {
    display: none;
  }
  
  .nav-hamburger {
    display: flex;
  }
  
  .mobile-nav-overlay {
    display: flex;
  }
  
  /* Hero */
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .hero::after {
    width: 300px;
    height: 300px;
    right: -20%;
  }
  
  .hero-badge {
    font-size: 11px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-store {
    justify-content: center;
  }
  
  .phone-mockup {
    width: 200px;
  }
  
  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  
  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  /* Steps */
  .steps-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  /* Corridor */
  .corridor-card {
    padding: 32px;
  }
  
  /* Security */
  .security-grid {
    grid-template-columns: 1fr;
  }
  
  /* Showcase */
  .showcase-grid {
    gap: 24px;
    margin-top: 36px;
  }
  
  .showcase-card {
    padding: 36px 20px;
  }
  
  .phone-mockup-container {
    width: 180px;
    height: 360px;
  }
  
  /* FAQ Section */
  .faq-section {
    padding: var(--section-padding-mobile) 0 100px;
  }
  
  /* Testimonials */
  .testimonial-card {
    min-width: 300px;
  }
  
  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  /* CTA */
  .cta-card {
    padding: 48px 28px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  /* Legal */
  .legal-modal {
    padding: 28px;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .container {
    padding: 0 16px;
  }
  
  .showcase-phone {
    width: 130px;
  }
  
  .corridor-flags {
    gap: 10px;
  }
  
  .corridor-flag {
    font-size: 40px;
  }
}

/* ── Download Modal ────────────────────────────────────────── */
.download-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.download-modal-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 90%;
  max-width: 480px;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.download-modal-overlay.active .download-modal-card {
  transform: scale(1);
}

.download-modal-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: var(--text-sub);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.download-modal-close-btn:hover {
  color: var(--primary-main);
}

.download-modal-header h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.download-modal-header p {
  font-size: 15px;
  color: var(--text-sub);
  margin-bottom: 30px;
  line-height: 1.5;
}

.download-modal-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.download-modal-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--background-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.download-modal-btn:hover {
  transform: translateY(-2px);
  border-color: var(--primary-main);
  background: var(--primary-lighter);
  box-shadow: var(--shadow-md);
}

.download-modal-btn .icon {
  font-size: 28px;
}

.download-modal-btn .btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.download-modal-btn .subtext {
  font-size: 11px;
  color: var(--text-sub);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.download-modal-btn .maintext {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}
