/* ══════════════════════════════════════════════════════
   BARRELDROP — Tropical Luxe Marketing Site
   ══════════════════════════════════════════════════════ */

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

/* ── CSS Variables ── */
:root {
  --ocean: #1B4965;
  --ocean-light: #2B6F95;
  --ocean-dark: #0F2D42;
  --sunset: #F4845F;
  --sunset-light: #FF9E7A;
  --sunset-dark: #E06A42;
  --sunset-glow: #FF6B6B;
  --teal: #2EC4B6;
  --teal-light: #38D9A9;
  --teal-dark: #1FA898;
  --dark: #1A1A2E;
  --dark-soft: #2A2A3E;
  --light: #F8F9FA;
  --light-warm: #FFF8F5;
  --gray: #6C757D;
  --gray-light: #E9ECEF;
  --gray-lighter: #F1F3F5;
  --white: #FFFFFF;

  --gradient-ocean: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-light) 100%);
  --gradient-sunset: linear-gradient(135deg, var(--sunset) 0%, var(--sunset-glow) 100%);
  --gradient-teal: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  --gradient-hero: linear-gradient(135deg, var(--ocean) 0%, var(--teal) 100%);
  --gradient-warm: linear-gradient(135deg, var(--sunset) 0%, #FFB347 50%, var(--teal-light) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--ocean-dark) 100%);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-pill: 100px;

  --shadow-sm: 0 2px 8px rgba(27,73,101,0.08);
  --shadow-md: 0 4px 20px rgba(27,73,101,0.12);
  --shadow-lg: 0 8px 40px rgba(27,73,101,0.16);
  --shadow-xl: 0 16px 60px rgba(27,73,101,0.20);
  --shadow-sunset: 0 8px 30px rgba(244,132,95,0.35);
  --shadow-teal: 0 8px 30px rgba(46,196,182,0.35);
  --shadow-glow: 0 0 60px rgba(244,132,95,0.2);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-spring: cubic-bezier(0.22, 1.2, 0.36, 1);

  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.display-xl {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.display-lg {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
}

.display-md {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

.display-sm {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.text-xl { font-size: 1.25rem; }
.text-lg { font-size: 1.125rem; }
.text-md { font-size: 1rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }

.font-serif { font-family: var(--font-display); }
.font-mono { font-family: var(--font-mono); }

.text-gradient {
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-ocean {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm { max-width: 720px; }
.container-md { max-width: 960px; }
.container-lg { max-width: 1280px; }
.container-xl { max-width: 1440px; }

/* ══════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all 0.4s var(--ease-out-expo);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 20px rgba(27,73,101,0.08);
}

.navbar.scrolled .nav-logo-text,
.navbar.scrolled .nav-link {
  color: var(--dark);
}

.navbar.scrolled .nav-link:hover {
  color: var(--sunset);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
}

.nav-logo-text {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

.nav-logo-text span {
  color: var(--sunset);
}

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

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}

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

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

.nav-link:hover {
  color: var(--white);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--gradient-sunset);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  transition: all 0.3s var(--ease-out-expo);
  box-shadow: var(--shadow-sunset);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(244,132,95,0.45);
}

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

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

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

.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(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

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

.mobile-menu .nav-link {
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 600;
}

/* ── Dark navbar variant for inner pages ── */
.navbar-dark .nav-logo-text,
.navbar-dark .nav-link {
  color: var(--dark);
}

.navbar-dark .nav-hamburger span {
  background: var(--dark);
}

.navbar-dark .nav-link:hover {
  color: var(--sunset);
}

/* ══════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-lg);
  transition: all 0.35s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
  border-radius: var(--radius-xl);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(244,132,95,0.5);
}

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

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

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

.btn-teal:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(46,196,182,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--gray-light);
}

.btn-outline:hover {
  border-color: var(--sunset);
  color: var(--sunset);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--ocean);
  box-shadow: var(--shadow-md);
}

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

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.btn-pill {
  border-radius: var(--radius-pill);
}

.btn i, .btn svg {
  font-size: 1.1em;
}

/* Ripple effect */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.3) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s;
}

.btn:active::after {
  opacity: 1;
  transform: scale(2.5);
  transition: 0s;
}

/* Download buttons */
.download-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  transition: all 0.35s var(--ease-out-expo);
  box-shadow: var(--shadow-md);
}

.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  background: var(--dark-soft);
}

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

.store-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-btn-text .small {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.8;
}

.store-btn-text .large {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.store-btn-white {
  background: var(--white);
  color: var(--dark);
}

.store-btn-white:hover {
  background: var(--light);
}

/* ══════════════════════════════════════════════════════
   CARDS
   ══════════════════════════════════════════════════════ */

.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out-expo);
  border: 1px solid rgba(0,0,0,0.04);
}

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

.card-glass {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
}

.card-gradient {
  background: var(--gradient-hero);
  color: var(--white);
  border: none;
}

.card-dark {
  background: var(--dark);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ── Icon Containers ── */
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.icon-box-ocean {
  background: linear-gradient(135deg, rgba(27,73,101,0.12), rgba(27,73,101,0.04));
  color: var(--ocean);
}

.icon-box-sunset {
  background: linear-gradient(135deg, rgba(244,132,95,0.15), rgba(244,132,95,0.05));
  color: var(--sunset);
}

.icon-box-teal {
  background: linear-gradient(135deg, rgba(46,196,182,0.15), rgba(46,196,182,0.05));
  color: var(--teal);
}

.icon-box-white {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.icon-box-lg {
  width: 72px;
  height: 72px;
  font-size: 2rem;
  border-radius: var(--radius-xl);
}

/* ══════════════════════════════════════════════════════
   BADGES & CHIPS
   ══════════════════════════════════════════════════════ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}

.badge-sunset {
  background: rgba(244,132,95,0.12);
  color: var(--sunset);
}

.badge-teal {
  background: rgba(46,196,182,0.12);
  color: var(--teal-dark);
}

.badge-ocean {
  background: rgba(27,73,101,0.1);
  color: var(--ocean);
}

.badge-white {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.badge-dark {
  background: var(--dark);
  color: var(--white);
}

/* ══════════════════════════════════════════════════════
   SECTION STYLES
   ══════════════════════════════════════════════════════ */

section {
  position: relative;
}

.section-padding {
  padding: 100px 0;
}

.section-padding-lg {
  padding: 140px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

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

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

.section-header p {
  font-size: 1.125rem;
  color: var(--gray);
  line-height: 1.7;
}

/* Section decorators */
.section-decorator {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.section-wave {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.section-wave svg {
  width: calc(100% + 2px);
  height: 80px;
  display: block;
}

/* ══════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--gradient-dark);
  overflow: hidden;
  padding-top: var(--nav-height);
}

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

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(244,132,95,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(46,196,182,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 100% 80% at 50% 50%, rgba(27,73,101,0.3) 0%, transparent 70%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbFloat 20s ease-in-out infinite;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(244,132,95,0.15);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(46,196,182,0.12);
  bottom: -5%;
  left: -5%;
  animation-delay: -7s;
}

.hero-orb-3 {
  width: 250px;
  height: 250px;
  background: rgba(27,73,101,0.2);
  top: 30%;
  left: 40%;
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

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

.hero-text {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(244,132,95,0.15);
  border: 1px solid rgba(244,132,95,0.3);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sunset-light);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s both;
}

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

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

.hero h1 {
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.3s both;
}

.hero h1 .highlight {
  position: relative;
  display: inline-block;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: -2%;
  right: -2%;
  height: 35%;
  background: var(--gradient-sunset);
  opacity: 0.3;
  border-radius: 4px;
  z-index: -1;
  transform: skewX(-3deg);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.5s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.6s both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1s var(--ease-out-expo) 0.5s both;
}

.hero-phone {
  position: relative;
  z-index: 2;
}

.hero-phone-frame {
  width: 280px;
  height: 580px;
  background: var(--dark);
  border-radius: 44px;
  border: 3px solid rgba(255,255,255,0.15);
  padding: 12px;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.3),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
  position: relative;
}

.hero-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: var(--white);
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 30px;
  background: var(--dark);
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.phone-app-content {
  padding: 44px 16px 16px;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.phone-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.phone-greeting {
  font-size: 0.75rem;
  color: var(--gray);
}

.phone-greeting strong {
  display: block;
  font-size: 1rem;
  color: var(--dark);
  font-weight: 700;
}

.phone-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-sunset);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
}

.phone-promo {
  background: var(--gradient-hero);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 14px;
  color: var(--white);
}

.phone-promo-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 4px;
}

.phone-promo-title {
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.phone-promo-sub {
  font-size: 0.65rem;
  opacity: 0.8;
}

.phone-section-title {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.phone-shipment-card {
  background: var(--white);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-bottom: 10px;
  border: 1px solid rgba(0,0,0,0.04);
}

.phone-shipment-route {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.phone-shipment-route .arrow {
  color: var(--sunset);
}

.phone-shipment-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(46,196,182,0.12);
  color: var(--teal-dark);
}

.phone-shipment-status .status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

/* Floating cards around phone */
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: floatCard 6s ease-in-out infinite;
  white-space: nowrap;
}

.hero-float-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

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

.hero-float-card-text .label {
  font-size: 0.7rem;
  color: var(--gray);
  font-weight: 500;
}

.hero-float-card-text .value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

.float-card-1 {
  top: 15%;
  right: -20px;
  animation-delay: 0s;
}

.float-card-2 {
  bottom: 25%;
  left: -30px;
  animation-delay: -2s;
}

.float-card-3 {
  bottom: 10%;
  right: -10px;
  animation-delay: -4s;
}

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

/* ══════════════════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════════════════ */

.trust-bar {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-light);
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-weight: 500;
  font-size: 0.95rem;
}

.trust-item i {
  font-size: 1.2rem;
  color: var(--teal);
}

/* ══════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════ */

.how-it-works {
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 3px;
  background: var(--gray-lighter);
  border-radius: 2px;
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  margin: 0 auto 20px;
  position: relative;
  box-shadow: var(--shadow-md);
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed;
  opacity: 0.3;
  animation: spin-slow 12s linear infinite;
}

@keyframes spin-slow {
  100% { transform: rotate(360deg); }
}

.step-1 .step-number { background: var(--gradient-sunset); }
.step-1 .step-number::after { border-color: var(--sunset); }
.step-2 .step-number { background: var(--gradient-ocean); }
.step-2 .step-number::after { border-color: var(--ocean); }
.step-3 .step-number { background: var(--gradient-teal); }
.step-3 .step-number::after { border-color: var(--teal); }
.step-4 .step-number { background: var(--gradient-warm); }
.step-4 .step-number::after { border-color: var(--sunset); }

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

/* ══════════════════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════════════════ */

.features {
  background: var(--light);
  position: relative;
}

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

.feature-card {
  padding: 36px 28px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 4px 4px 0 0;
  opacity: 0;
  transition: opacity 0.4s;
}

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

.feature-card:nth-child(3n+1)::before { background: var(--gradient-sunset); }
.feature-card:nth-child(3n+2)::before { background: var(--gradient-teal); }
.feature-card:nth-child(3n+3)::before { background: var(--gradient-ocean); }

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

.feature-card .icon-box {
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════
   SENDERS & PROVIDERS SECTIONS
   ══════════════════════════════════════════════════════ */

.audience-section {
  position: relative;
  overflow: hidden;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.audience-grid.reverse {
  direction: rtl;
}

.audience-grid.reverse > * {
  direction: ltr;
}

.audience-content {
  padding: 20px 0;
}

.audience-content .badge {
  margin-bottom: 20px;
}

.audience-content h2 {
  margin-bottom: 16px;
}

.audience-content > p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 32px;
}

.audience-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.audience-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.audience-feature .icon-box {
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.audience-feature h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.audience-feature p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}

.audience-visual {
  position: relative;
}

.audience-phone {
  width: 260px;
  height: 530px;
  background: var(--dark);
  border-radius: 40px;
  border: 3px solid rgba(255,255,255,0.1);
  padding: 10px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.audience-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

/* ══════════════════════════════════════════════════════
   CORRIDORS / ROUTES
   ══════════════════════════════════════════════════════ */

.corridors {
  background: var(--gradient-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

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

.corridor-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 24px;
  transition: all 0.4s var(--ease-out-expo);
}

.corridor-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(244,132,95,0.3);
}

.corridor-route {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.corridor-flag {
  font-size: 1.5rem;
}

.corridor-arrow {
  color: var(--sunset);
  font-size: 1.1rem;
}

.corridor-name {
  font-weight: 700;
  font-size: 1rem;
}

.corridor-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.corridor-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ══════════════════════════════════════════════════════
   PRICING COMPARISON
   ══════════════════════════════════════════════════════ */

.pricing {
  background: var(--white);
}

.pricing-table {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-light);
}

.pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 18px 28px;
  align-items: center;
  transition: background 0.2s;
}

.pricing-row:not(.pricing-header):hover {
  background: var(--light-warm);
}

.pricing-header {
  background: var(--gradient-ocean);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-row:not(.pricing-header) {
  border-bottom: 1px solid var(--gray-lighter);
  font-size: 0.95rem;
}

.pricing-row .route {
  font-weight: 600;
  color: var(--dark);
}

.pricing-row .solo {
  color: var(--gray);
  text-decoration: line-through;
  opacity: 0.7;
}

.pricing-row .group {
  color: var(--teal-dark);
  font-weight: 700;
}

.pricing-row .savings {
  color: var(--sunset);
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════ */

.testimonials {
  background: var(--light);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}

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

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #FFB800;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}

.testimonial-author-info .name {
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-author-info .location {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ══════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════ */

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item.active {
  border-color: var(--sunset);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-item.active .faq-question {
  color: var(--sunset);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  font-size: 1.1rem;
  color: var(--gray);
}

.faq-item.active .faq-icon {
  background: var(--sunset);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ══════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════ */

.cta-section {
  background: var(--gradient-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.cta-orb-1 {
  width: 300px;
  height: 300px;
  background: rgba(244,132,95,0.2);
  top: -30%;
  right: 10%;
}

.cta-orb-2 {
  width: 250px;
  height: 250px;
  background: rgba(46,196,182,0.15);
  bottom: -20%;
  left: 10%;
}

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */

.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}

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

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

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

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

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

.footer-column h4 {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
}

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

.footer-column a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s;
}

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

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

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

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

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

/* ══════════════════════════════════════════════════════
   INNER PAGES
   ══════════════════════════════════════════════════════ */

.page-hero {
  padding: 160px 0 80px;
  background: var(--gradient-dark);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto;
}

.page-hero .hero-orb {
  opacity: 0.5;
}

.page-content {
  padding: 80px 0 120px;
}

/* Legal pages */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  color: var(--ocean);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-lighter);
}

.legal-content h3 {
  font-size: 1.15rem;
  margin: 24px 0 10px;
}

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

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

.legal-content li {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.legal-content .effective-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--light);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 32px;
}

/* ── Blog Page ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s var(--ease-out-expo);
}

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

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-image-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--gray);
}

.blog-card-meta .dot-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gray-light);
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card h3 a:hover {
  color: var(--sunset);
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card .read-more {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--sunset);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.blog-card .read-more:hover {
  gap: 10px;
}

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  padding: 40px;
  background: var(--gradient-dark);
  border-radius: var(--radius-xl);
  color: var(--white);
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.contact-info > p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-method .icon-box {
  width: 48px;
  height: 48px;
}

.contact-method-text h4 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-method-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.04);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(27,73,101,0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success i {
  font-size: 3rem;
  color: var(--teal);
  margin-bottom: 16px;
}

.form-success h3 {
  margin-bottom: 8px;
}

.form-success p {
  color: var(--gray);
}

/* ── Affiliate Page ── */
.affiliate-hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.affiliate-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.affiliate-stat-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
}

.affiliate-stat-card .value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--sunset-light);
  margin-bottom: 4px;
}

.affiliate-stat-card .label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

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

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

.affiliate-step .step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  margin: 0 auto 20px;
  background: var(--gradient-sunset);
  box-shadow: var(--shadow-sunset);
}

.affiliate-step h3 {
  margin-bottom: 8px;
}

.affiliate-step p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* About page */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-value-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s var(--ease-out-expo);
}

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

.about-value-card .icon-box {
  margin: 0 auto 20px;
}

.about-value-card h3 {
  margin-bottom: 10px;
}

.about-value-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.65;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-story-img {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

.about-story-content h2 {
  margin-bottom: 20px;
}

.about-story-content p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s var(--ease-out-expo);
}

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

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}

.team-card h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ══════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════ */

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out-expo);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }
.stagger > *:nth-child(7) { transition-delay: 0.6s; }
.stagger > *:nth-child(8) { transition-delay: 0.7s; }
.stagger > *:nth-child(9) { transition-delay: 0.8s; }

/* ── Countup animation ── */
.countup {
  font-variant-numeric: tabular-nums;
}

/* ── Marquee ── */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════
   UTILITY CLASSES
   ══════════════════════════════════════════════════════ */

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

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }
.gap-xl { gap: 32px; }

.grid { display: grid; }

.mt-sm { margin-top: 8px; }
.mt-md { margin-top: 16px; }
.mt-lg { margin-top: 24px; }
.mt-xl { margin-top: 32px; }
.mt-2xl { margin-top: 48px; }
.mt-3xl { margin-top: 64px; }

.mb-sm { margin-bottom: 8px; }
.mb-md { margin-bottom: 16px; }
.mb-lg { margin-bottom: 24px; }
.mb-xl { margin-bottom: 32px; }
.mb-2xl { margin-bottom: 48px; }

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

.bg-light { background: var(--light); }
.bg-white { background: var(--white); }
.bg-dark { background: var(--dark); color: var(--white); }

.text-white { color: var(--white); }
.text-gray { color: var(--gray); }
.text-ocean { color: var(--ocean); }
.text-sunset { color: var(--sunset); }
.text-teal { color: var(--teal); }

.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }

.overflow-hidden { overflow: hidden; }

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

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-subtitle { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }

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

  .audience-grid { grid-template-columns: 1fr; gap: 40px; }
  .audience-grid.reverse { direction: ltr; }

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

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

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

  .about-story { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

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

  .affiliate-stats { grid-template-columns: repeat(3, 1fr); }
  .affiliate-steps { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .section-padding { padding: 72px 0; }
  .section-padding-lg { padding: 96px 0; }

  .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); }

  .hero-phone-frame {
    width: 240px;
    height: 500px;
  }

  .hero-float-card { display: none; }

  .steps-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .corridors-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .pricing-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; padding: 14px 16px; font-size: 0.85rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .download-buttons { flex-direction: column; align-items: stretch; }
  .store-btn { justify-content: center; }

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

  .form-row { grid-template-columns: 1fr; }

  .affiliate-stats { grid-template-columns: 1fr; }
  .affiliate-steps { grid-template-columns: 1fr; }

  .hero-stats { flex-direction: column; gap: 16px; }

  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: clamp(2rem, 7vw, 2.5rem); }
}

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

  .hero h1 { font-size: 2rem; }

  .pricing-row {
    grid-template-columns: 1fr;
    gap: 4px;
    text-align: center;
    padding: 16px;
    border-bottom: 1px solid var(--gray-lighter);
  }
  .pricing-header { display: none; }

  .hero-phone-frame {
    width: 200px;
    height: 420px;
    border-radius: 36px;
  }

  .hero-phone-screen { border-radius: 28px; }
}

/* ══════════════════════════════════════════════════════
   PHONE SCREENSHOTS (real images)
   ══════════════════════════════════════════════════════ */

.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Audience section: stacked two-phone layout */
.audience-screenshots {
  position: relative;
  width: 320px;
  height: 560px;
  margin: 0 auto;
}

.audience-screenshots .audience-phone {
  position: absolute;
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
}

.audience-screenshots .audience-phone-back {
  top: 30px;
  left: 0;
  transform: rotate(-6deg);
  z-index: 1;
  opacity: 0.85;
}

.audience-screenshots .audience-phone-front {
  top: 0;
  right: 0;
  transform: rotate(3deg);
  z-index: 2;
}

.audience-screenshots:hover .audience-phone-back {
  transform: rotate(-8deg) translateX(-10px);
}

.audience-screenshots:hover .audience-phone-front {
  transform: rotate(1deg) translateX(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* ══════════════════════════════════════════════════════
   APP SHOWCASE SECTION
   ══════════════════════════════════════════════════════ */

.app-showcase {
  background: var(--light);
  overflow: hidden;
}

/* Horizontal flow: 4 phones with arrows */
.showcase-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 80px;
  padding: 20px 0;
}

.showcase-step {
  text-align: center;
  flex-shrink: 0;
}

.showcase-phone {
  width: 180px;
  height: 380px;
  background: var(--dark);
  border-radius: 32px;
  border: 3px solid rgba(255,255,255,0.1);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin: 0 auto 12px;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

.showcase-step:hover .showcase-phone {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.showcase-phone .phone-screenshot {
  border-radius: 24px;
}

.showcase-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}

.showcase-arrow {
  font-size: 1.4rem;
  color: var(--sunset);
  flex-shrink: 0;
  margin-top: -30px;
}

/* Feature screenshots row: 4 smaller phones */
.showcase-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.showcase-feature-item {
  text-align: center;
}

.showcase-phone-small {
  width: 160px;
  height: 340px;
  background: var(--dark);
  border-radius: 28px;
  border: 3px solid rgba(255,255,255,0.1);
  padding: 6px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin: 0 auto 16px;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

.showcase-feature-item:hover .showcase-phone-small {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.showcase-phone-small .phone-screenshot {
  border-radius: 22px;
}

.showcase-feature-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.showcase-feature-item p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ── Responsive: App showcase ── */
@media (max-width: 1024px) {
  .showcase-flow {
    flex-wrap: wrap;
    gap: 20px;
  }

  .showcase-arrow {
    display: none;
  }

  .showcase-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }

  .showcase-features-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .showcase-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .showcase-phone {
    width: 150px;
    height: 320px;
    border-radius: 26px;
    padding: 6px;
  }

  .showcase-phone .phone-screenshot {
    border-radius: 20px;
  }

  .showcase-features-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .showcase-phone-small {
    width: 140px;
    height: 300px;
    border-radius: 24px;
    padding: 5px;
  }

  .showcase-phone-small .phone-screenshot {
    border-radius: 19px;
  }

  .audience-screenshots {
    width: 280px;
    height: 500px;
  }

  .audience-screenshots .audience-phone {
    width: 220px;
    height: 460px;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
  }
}
