/* ========================================
   HassleFreeDrive – Landing Page Styles
   White + Green | Premium SaaS
   ======================================== */

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

:root {
  --green: #0F9D58;
  --green-light: #12B363;
  --green-dark: #0A7A43;
  --green-pale: #E8F5EE;
  --green-glow: rgba(15, 157, 88, 0.15);
  --white: #FFFFFF;
  --off-white: #F8FAFB;
  --text-dark: #0D1B12;
  --text-mid: #3D5245;
  --text-light: #7A9184;
  --border: rgba(15, 157, 88, 0.15);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-green: 0 12px 40px rgba(15, 157, 88, 0.3);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
  --r: 16px;
  --r-lg: 24px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  width: 100%;
  position: relative;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* ── Utility ── */
.text-green {
  color: var(--green);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.section-header p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid var(--green);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-green);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(15, 157, 88, 0.45);
  background: var(--green-light);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-3px);
  background: var(--green-pale);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
}

.logo span {
  color: var(--green);
}

.logo-icon {
  font-size: 1.6rem;
  color: var(--green);
}

.logo.logo-white {
  color: var(--white);
}

.logo.logo-white span {
  color: rgba(255, 255, 255, 0.8);
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

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

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

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

.nav-cta {
  background: var(--green);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-green);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 157, 88, 0.4);
  background: var(--green-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Nav */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1001;
  backdrop-filter: blur(4px);
}

.mobile-overlay.active {
  display: block;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: var(--white);
  z-index: 1002;
  padding: 32px 24px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
  right: 0;
}

.mobile-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-mid);
  margin-bottom: 40px;
  display: block;
  transition: color 0.2s;
}

.mobile-close:hover {
  color: var(--green);
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mob-link {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 12px 16px;
  border-radius: 10px;
  transition: all 0.2s;
}

.mob-link:hover {
  background: var(--green-pale);
  color: var(--green);
}

.mob-cta {
  display: block;
  background: var(--green);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 16px;
  border-radius: 50px;
  text-align: center;
  margin-top: 16px;
  transition: all 0.3s;
  box-shadow: var(--shadow-green);
}

.mob-cta:hover {
  transform: translateY(-2px);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #F0FAF5 0%, #FFFFFF 50%, #F0FAF5 100%);
  padding: 120px 0 60px;
}

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

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: blobFloat 8s ease-in-out infinite;
}

.blob1 {
  width: 500px;
  height: 500px;
  background: rgba(15, 157, 88, 0.12);
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.blob2 {
  width: 350px;
  height: 350px;
  background: rgba(15, 157, 88, 0.08);
  bottom: -80px;
  left: -80px;
  animation-delay: -3s;
}

.blob3 {
  width: 250px;
  height: 250px;
  background: rgba(15, 157, 88, 0.1);
  top: 40%;
  left: 40%;
  animation-delay: -5s;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-10px, 15px) scale(0.95);
  }
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 157, 88, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 157, 88, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero Left */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  border: 1px solid var(--border);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}

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

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.accent-font {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85em;
  display: inline-block;
  margin-top: 8px;
  position: relative;
  padding-bottom: 2px;
}

.accent-font::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--green);
  opacity: 0.2;
}

/* Word Rotator */
.word-rotator {
  display: inline-block;
  position: relative;
  height: 1.15em;
  overflow: hidden;
  vertical-align: bottom;
}

.word-rotator .word {
  display: block;
  color: var(--green);
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.word-rotator .word.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.word-rotator .word.exit {
  opacity: 0;
  transform: translateY(-40px);
  position: absolute;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.stat span {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero Right / Mockup */
.hero-right {
  display: flex;
  justify-content: center;
}

.mockup-wrapper {
  position: relative;
  width: 380px;
}

.glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 157, 88, 0.12) 0%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.7;
  }
}

.app-mockup {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(15, 157, 88, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.float-anim {
  animation: float 6s ease-in-out infinite;
}

.float-anim-2 {
  animation: float 7s ease-in-out infinite 1s;
}

.float-anim-3 {
  animation: float 5s ease-in-out infinite 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

.mockup-header {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.mockup-dots span:first-child {
  background: #ff5f57;
}

.mockup-dots span:nth-child(2) {
  background: #ffbb2c;
}

.mockup-dots span:last-child {
  background: rgba(255, 255, 255, 0.5);
}

.mockup-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-display);
}

.mockup-body {
  padding: 16px;
}

.mockup-map {
  position: relative;
  height: 140px;
  background: #E8F5EE;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}

.map-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 157, 88, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 157, 88, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}

.map-route {
  position: absolute;
  top: 50%;
  left: 15%;
  width: 70%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  border-radius: 3px;
  transform: translateY(-50%);
}

.map-route::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.map-pin {
  position: absolute;
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.driver-pin {
  top: 30%;
  left: 20%;
  animation: driverMove 4s ease-in-out infinite;
}

.dest-pin {
  top: 25%;
  right: 20%;
}

@keyframes driverMove {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(20px);
  }
}

.pulse-pin {
  animation: pinPulse 2s ease-in-out infinite;
}

@keyframes pinPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

.mockup-card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
}

.driver-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.driver-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.driver-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.driver-rating {
  font-size: 0.7rem;
  color: var(--text-light);
}

.driver-status-badge {
  margin-left: auto;
  background: rgba(15, 157, 88, 0.12);
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 50px;
  white-space: nowrap;
}

/* .trip-progress {} */
.progress-bar {
  background: rgba(15, 157, 88, 0.15);
  border-radius: 4px;
  height: 6px;
  margin-bottom: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  border-radius: 4px;
  width: 65%;
  animation: progressAnim 3s ease-in-out infinite alternate;
}

@keyframes progressAnim {
  from {
    width: 55%;
  }

  to {
    width: 75%;
  }
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.6rem;
  color: var(--text-light);
}

.mockup-stats-row {
  display: flex;
  gap: 8px;
}

.mini-stat {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  text-align: center;
}

.mini-icon {
  font-size: 1rem;
  margin-bottom: 2px;
}

.mini-label {
  font-size: 0.6rem;
  color: var(--text-light);
  font-weight: 600;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(15, 157, 88, 0.12);
  z-index: 3;
  min-width: 170px;
}

.card-trip {
  bottom: 30px;
  left: -60px;
}

.card-safe {
  top: 40px;
  right: -40px;
}

.fc-icon {
  font-size: 1.4rem;
}

.fc-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dark);
}

.fc-sub {
  font-size: 0.65rem;
  color: var(--text-light);
}

/* End Hero Section */

/* ========================================
   FEATURES
   ======================================== */
.features {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
}

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

.feature-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--green);
  transition: width 0.35s ease;
  border-radius: 0 0 0 var(--r-lg);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 157, 88, 0.2);
}

.feature-card:hover::before {
  width: 100%;
}

.card-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--green-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}

.feature-card:hover .card-icon-wrap {
  background: var(--green);
}

.card-icon {
  font-size: 1.6rem;
  transition: transform 0.35s ease;
}

.feature-card:hover .card-icon {
  transform: scale(1.15);
  filter: brightness(0) invert(1);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

.card-arrow {
  margin-top: 20px;
  font-size: 1.1rem;
  color: var(--green);
  font-weight: 700;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.35s ease;
}

.feature-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   ABOUT
   ======================================== */
.about {
  padding: 100px 0;
  background: var(--white);
}

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

.about-img-wrap {
  position: relative;
  height: 420px;
}

.about-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--green-pale) 0%, transparent 70%);
  border-radius: 50%;
  animation: blobPulse 6s ease-in-out infinite;
}

@keyframes blobPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.about-card-stack {
  position: relative;
  height: 100%;
}

.abt-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--r);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  animation: cardHover 6s ease-in-out infinite;
}

.ac1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.ac2 {
  top: 40%;
  right: 0%;
  animation-delay: -2s;
}

.ac3 {
  bottom: 10%;
  left: 15%;
  animation-delay: -4s;
}

@keyframes cardHover {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.abt-icon {
  font-size: 1.8rem;
}

.abt-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.abt-text span {
  font-size: 0.78rem;
  color: var(--text-light);
}

.about-content .section-tag {
  margin-bottom: 16px;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 36px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 500;
}

.pillar-icon {
  width: 22px;
  height: 22px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, #1AB369 100%);
  position: relative;
  overflow: hidden;
}

.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  animation: shapeDrift 10s ease-in-out infinite;
}

.s1 {
  width: 400px;
  height: 400px;
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.s2 {
  width: 250px;
  height: 250px;
  bottom: -80px;
  left: 10%;
  animation-delay: -3s;
}

.s3 {
  width: 180px;
  height: 180px;
  top: 30%;
  left: 30%;
  animation-delay: -6s;
}

@keyframes shapeDrift {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(20px, -20px) rotate(120deg);
  }

  66% {
    transform: translate(-10px, 15px) rotate(240deg);
  }
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content .cta-tag {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-highlight {
  position: relative;
  display: inline;
}

.cta-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
}

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

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

.cta-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-store-btn:hover {
  background: var(--white);
  color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-section {
  padding: 80px 0;
  background: var(--off-white);
}

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

.contact-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 72px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 220px;
  margin-bottom: 24px;
}

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

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.3s;
  cursor: pointer;
}

.social-icon:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
}

.footer-links {
  display: contents;
}

/* .footer-col {} */
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

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

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s;
}

.footer-col a:hover {
  color: var(--green);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 8px;
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
   ======================================== */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: transform, opacity;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* Stagger delays */
[style*="--delay"] {
  transition-delay: var(--delay);
}

/* ========================================
   PAGE LOAD ANIMATION
   ======================================== */
.hero-left {
  animation: fadeInLeft 0.9s ease both;
  animation-delay: 0.2s;
}

.hero-right {
  animation: fadeInRight 0.9s ease both;
  animation-delay: 0.4s;
}

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

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========================================
   RESPONSIVE
   ======================================== */

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

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-links {
    display: contents;
  }
}

/* 768px */
@media (max-width: 820px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero {
    padding: 80px 0 60px;
    height: auto;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-container {
    width: 100%;
    overflow-x: hidden;
  }

  .hero-desc {
    margin: 0 auto 36px;
  }

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

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

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

  .hero-right {
    order: -1;
  }

  .mockup-wrapper {
    width: 300px;
  }

  .card-trip {
    left: -20px;
    bottom: 20px;
  }

  .card-safe {
    right: -10px;
    top: 10px;
    min-width: 150px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-wrap {
    height: 300px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* 480px */
@media (max-width: 580px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-store-btn {
    width: 220px;
    justify-content: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-bottom: 40px;
  }

  .glow-ring {
    width: 300px;
    height: 300px;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat strong {
    font-size: 1.2rem;
  }
}

/* 320px */
@media (max-width: 360px) {
  .hero-headline {
    font-size: 2rem;
  }

  .mockup-wrapper {
    width: 260px;
  }

  .float-card {
    display: none;
  }
}