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

:root {
  --primary: #00A8E1;
  --primary-dark: #0090C4;
  --primary-orange: #0078A8;
  --gradient-primary: linear-gradient(135deg, #00A8E1 0%, #0078A8 100%);
  --gradient-hero: linear-gradient(135deg, #00A8E1 0%, #005F8A 60%, #003D5E 100%);
  --gradient-blue: linear-gradient(135deg, #00C8FF 0%, #00A8E1 100%);
  --bg: #000F21;
  --bg-2: #000C1C;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 168, 225, 0.3);
  --text: #FFFFFF;
  --text-2: rgba(255, 255, 255, 0.62);
  --text-3: rgba(255, 255, 255, 0.35);
  --glow-sm: 0 0 20px rgba(0, 168, 225, 0.25);
  --glow-md: 0 0 40px rgba(0, 168, 225, 0.35);
  --glow-lg: 0 0 80px rgba(0, 168, 225, 0.3);
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(0, 127, 169, 0.25);
  color: #fff;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00A8E1, #0078A8);
  border-radius: 10px;
}

/* ─── TYPOGRAPHY ─── */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(0, 168, 225, 0.08);
  border: 1px solid rgba(0, 168, 225, 0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 12px var(--primary); }
  50% { opacity: 0.5; transform: scale(0.7); box-shadow: 0 0 4px var(--primary); }
}

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-2);
  line-height: 1.7;
  max-width: 580px;
}

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

section {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--gradient-primary);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 15px;
  font-family: inherit;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s ease;
  white-space: nowrap;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.18);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,168,225,0.5);
}

.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  font-family: inherit;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.btn-outline:hover {
  border-color: rgba(0,168,225,0.5);
  background: rgba(0,168,225,0.08);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,168,225,0.15);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

.btn-dark:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(0,168,225,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* ─── GLASS CARD ─── */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0,168,225,0.25);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(0,168,225,0.1);
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.navbar.scrolled {
  padding: 14px 0;
  background: rgba(7, 8, 15, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav-logo {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  flex-shrink: 0;
}

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

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

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

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

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

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

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

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  background: rgba(7, 8, 15, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 2000;
  transition: right 0.45s cubic-bezier(0.4,0,0.2,1);
  border-left: 1px solid rgba(255,255,255,0.07);
  padding: 90px 32px 40px;
  overflow-y: auto;
}

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

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(4px);
}

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

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

.mobile-nav-links a {
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.mobile-nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

/* ─── BLOBS / GLOWS ─── */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(25px, -25px) scale(1.04); }
  50% { transform: translate(-15px, 15px) scale(0.96); }
  75% { transform: translate(10px, -10px) scale(1.02); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-16px) rotate(1.5deg); }
  66% { transform: translateY(-8px) rotate(-1deg); }
}

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

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0,168,225,0.4); }
  70% { transform: scale(1); box-shadow: 0 0 0 16px rgba(0,168,225,0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0,168,225,0); }
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes roadmark {
  0% { transform: translateX(0); }
  100% { transform: translateX(-200px); }
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 130px 0 80px;
  background: var(--bg);
}

.hero-grid {
  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;
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0,168,225,0.1);
  border: 1px solid rgba(0,168,225,0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 28px;
  animation: slide-up 0.8s ease both;
  animation-delay: 0.1s;
  letter-spacing: 0.04em;
}

.hero-badge .badge-icon {
  width: 18px;
  height: 18px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #000;
  animation: pulse-ring 2.5s ease infinite;
}

.hero-title {
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  animation: slide-up 0.8s ease both;
  animation-delay: 0.2s;
}

.hero-desc {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-2);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
  animation: slide-up 0.8s ease both;
  animation-delay: 0.35s;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: slide-up 0.8s ease both;
  animation-delay: 0.5s;
}

.hero-visual {
  position: relative;
  z-index: 5;
}

/* Floating info cards */
.float-chip {
  position: absolute;
  background: rgba(12, 13, 26, 0.85);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 14px 18px;
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float-slow 3s ease-in-out infinite;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.float-chip-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: #000;
}

.float-chip-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.float-chip-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

/* ─── CAR SVG ─── */
.car-container {
  width: 100%;
  max-width: 640px;
  position: relative;
}

.car-glow {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 40%;
  background: radial-gradient(ellipse, rgba(0,168,225,0.25) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.car-road {
  position: absolute;
  bottom: 14%;
  left: 5%;
  right: 5%;
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}

.car-road::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(0,168,225,0.5) 50%, transparent 100%);
  animation: gradient-shift 3s linear infinite;
  background-size: 200% 100%;
}

/* ─── FEATURE CARDS ─── */
.feature-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,168,225,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  border-color: rgba(0,168,225,0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3), 0 0 40px rgba(0,168,225,0.1);
}

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

.feature-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 26px;
  position: relative;
  flex-shrink: 0;
}

.feature-icon-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.15;
}

.fi-yellow { background: rgba(0,168,225,0.12); }
.fi-orange { background: rgba(0,95,130,0.12); }
.fi-blue { background: rgba(0,150,255,0.12); }
.fi-green { background: rgba(0,200,100,0.12); }
.fi-purple { background: rgba(150,80,255,0.12); }
.fi-red { background: rgba(255,80,80,0.12); }
.fi-teal { background: rgba(0,200,180,0.12); }
.fi-pink { background: rgba(255,80,180,0.12); }

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ─── HOW IT WORKS ─── */
.step-card {
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.step-card:hover {
  border-color: rgba(0,168,225,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.step-number {
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  letter-spacing: -0.04em;
}

.step-card:hover .step-number { opacity: 0.6; }

.step-connector {
  display: flex;
  align-items: flex-start;
  padding-top: 56px;
  justify-content: center;
}

.step-connector-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0,168,225,0.5), rgba(0,168,225,0.15));
  position: relative;
}

.step-connector-line::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(0,168,225,0.5);
  border-right: 2px solid rgba(0,168,225,0.5);
  transform: rotate(45deg);
}

/* ─── PHONE MOCKUP ─── */
.phone-wrap {
  position: relative;
  display: inline-block;
}

.phone-frame {
  width: 260px;
  height: 540px;
  background: linear-gradient(145deg, #1A1B2E, #0D0E1C);
  border-radius: 44px;
  border: 2px solid rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 50px 100px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 0 0 1px rgba(255,255,255,0.02);
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #000F21;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.phone-screen {
  position: absolute;
  inset: 0;
  padding-top: 40px;
}

.phone-map {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 40% 60%, rgba(0,180,100,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(0,100,255,0.1) 0%, transparent 50%),
    linear-gradient(180deg, #0D1020 0%, #0A0F1A 100%);
}

.phone-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}

.phone-route {
  position: absolute;
  top: 40%;
  left: 15%;
  right: 15%;
  height: 3px;
  background: linear-gradient(90deg, #00A8E1, #0078A8, #004D6E);
  border-radius: 3px;
  box-shadow: 0 0 14px rgba(0,168,225,0.6);
}

.phone-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
}

.phone-pin-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid var(--bg);
  position: relative;
}

.phone-pin-dot::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}

.phone-car-icon {
  position: absolute;
  font-size: 22px;
  filter: drop-shadow(0 4px 12px rgba(0,168,225,0.6));
  animation: float-slow 2.5s ease-in-out infinite;
}

.phone-bottom-card {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10,11,20,0.95);
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  padding: 16px;
  border-radius: 0;
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 20px 0;
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
}

/* ─── DRIVER SECTION ─── */
.driver-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 16px 20px;
  transition: all 0.3s ease;
}

.driver-stat-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(0,168,225,0.2);
}

/* ─── SAFETY CARDS ─── */
.safety-card {
  padding: 36px 30px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.safety-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.safety-card:hover {
  border-color: rgba(0,168,225,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(0,168,225,0.1);
  transform: translateY(-6px);
}

.safety-card:hover::after { opacity: 1; }

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

.safety-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: pulse-ring 3s ease infinite;
}

/* ─── DOWNLOAD CTA ─── */
.cta-section {
  background: linear-gradient(135deg, rgba(0,168,225,0.07) 0%, rgba(0,120,168,0.04) 50%, rgba(255,255,255,0.02) 100%);
  border-top: 1px solid rgba(0,168,225,0.12);
  border-bottom: 1px solid rgba(0,168,225,0.12);
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 190px;
}

.store-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(0,168,225,0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.store-btn-icon {
  font-size: 30px;
  flex-shrink: 0;
}

.store-btn-text small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.03em;
}

.store-btn-text strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ─── FOOTER ─── */
footer {
  background: #00091A;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 14px;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.footer-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0,168,225,0.4);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.footer-links a:hover::before { opacity: 1; }

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: rgba(0,168,225,0.12);
  border-color: rgba(0,168,225,0.35);
  color: var(--primary);
  transform: translateY(-2px);
}

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

.footer-bottom p {
  font-size: 13px;
  color: var(--text-3);
}

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

.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* ─── GRADIENT DIVIDER ─── */
.grad-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,168,225,0.25), transparent);
}

/* ─── CONTACT FORM ─── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
  resize: none;
}

.form-control:focus {
  border-color: rgba(0,168,225,0.45);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 4px rgba(0,168,225,0.1);
}

.form-control::placeholder { color: rgba(255,255,255,0.28); }

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 160px 0 100px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(0,168,225,0.1);
  border: 1px solid rgba(0,168,225,0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 22px;
}

/* ─── LEGAL PAGES ─── */
.legal-content {
  max-width: 860px;
}

.legal-section {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.legal-section:last-child { border-bottom: none; }

.legal-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.legal-section h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-2);
}

.legal-section p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-section ul, .legal-section ol {
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.legal-section li {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}

.legal-section li::marker { color: var(--primary); }

.legal-sidebar {
  position: sticky;
  top: 100px;
  padding: 24px;
  background: rgba(0,168,225,0.03);
  border: 1px solid rgba(0,168,225,0.1);
  border-radius: 20px;
}

.legal-sidebar-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 16px;
}

.legal-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-nav-links a {
  display: block;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-weight: 500;
}

.legal-nav-links a:hover {
  color: var(--primary);
  background: rgba(0,168,225,0.08);
}

/* ─── TIMELINE ─── */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(0,168,225,0.5), rgba(0,120,168,0.15), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 16px rgba(0,168,225,0.6);
}

.timeline-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.timeline-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ─── ABOUT VALUE CARDS ─── */
.value-card {
  padding: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(0,168,225,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* ─── INFO CARDS (CONTACT) ─── */
.info-card {
  padding: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: rgba(0,168,225,0.25);
  background: rgba(255,255,255,0.07);
  transform: translateY(-3px);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  .hero { padding: 110px 0 70px; }
  .page-hero { padding: 120px 0 70px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .phone-frame { width: 220px; height: 460px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 60px 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .store-btn { min-width: unset; width: 100%; }
}

/* ─── PARTICLES CANVAS ─── */
#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* ─── PROGRESS BAR ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-primary);
  z-index: 9999;
  border-radius: 0 3px 3px 0;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(0,168,225,0.6);
}

/* ─── GLOW ORBS ─── */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: blob-float 12s ease-in-out infinite;
}

.glow-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,168,225,0.15) 0%, transparent 70%);
  filter: blur(60px);
}

.glow-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,120,168,0.12) 0%, transparent 70%);
  filter: blur(50px);
  animation-delay: -4s;
  animation-duration: 16s;
}

.glow-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,200,255,0.1) 0%, transparent 70%);
  filter: blur(40px);
  animation-delay: -8s;
  animation-duration: 14s;
}

/* ─── ANIMATED GRADIENT BORDER ─── */
.gradient-border {
  position: relative;
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,168,225,0.4), rgba(0,120,168,0.2), rgba(0,168,225,0.06));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* ─── NOTIFICATION BADGE ─── */
.notification-dot {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FF3D3D;
  border: 2px solid var(--bg);
  animation: pulse-ring 2s ease infinite;
}

/* ─── MAP PIN ANIMATION ─── */
@keyframes pin-bounce {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50% { transform: translateY(-8px) translateX(-50%); }
}

/* ─── STAT COUNTER ─── */
.stat-item {
  padding: 28px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-item:hover {
  border-color: rgba(0,168,225,0.2);
  background: rgba(255,255,255,0.06);
}

.stat-number {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

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

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--gradient-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 18px;
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,168,225,0.45);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover { transform: translateY(-4px); }

/* ─── AOS OVERRIDES ─── */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ─── HOW IT WORKS – REDESIGN ─── */
.hiw-card {
  position: relative;
  padding: 36px 32px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}

.hiw-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,168,225,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hiw-card:hover {
  border-color: rgba(0,168,225,0.25);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px rgba(0,168,225,0.08);
}

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

.hiw-card--active {
  border-color: rgba(0,168,225,0.25);
  background: rgba(0,168,225,0.04);
  box-shadow: 0 0 0 1px rgba(0,168,225,0.1), 0 20px 60px rgba(0,0,0,0.3);
}

.hiw-step-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,0.3);
  letter-spacing: -0.02em;
}

.hiw-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.hiw-icon-glow {
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  filter: blur(20px);
  opacity: 0.25;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.hiw-card:hover .hiw-icon-glow { opacity: 0.45; }

/* Mini UI preview inside card */
.hiw-preview {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 14px 16px;
  margin-top: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.hiw-preview-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hiw-preview-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hiw-preview-bar {
  height: 6px;
  border-radius: 6px;
  flex-shrink: 0;
}

.hiw-preview-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  margin-left: auto;
}

.hiw-preview-divider {
  height: 1px;
  background: rgba(255,255,255,0.05);
  margin: 10px 0;
}

.hiw-preview-cta {
  margin-top: 12px;
  padding: 9px 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,168,225,0.15), rgba(0,168,225,0.06));
  border: 1px solid rgba(0,168,225,0.2);
  font-size: 12px;
  font-weight: 700;
  color: #00A8E1;
  text-align: center;
  letter-spacing: 0.01em;
}

.hiw-pay-chip {
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}

.hiw-pay-chip--active {
  background: rgba(0,168,225,0.12);
  border-color: rgba(0,168,225,0.3);
  color: #00A8E1;
}

.hiw-footer-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  width: fit-content;
}

/* Stats bar */
.hiw-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 24px 32px;
  flex-wrap: wrap;
}

.hiw-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  flex: 1;
  min-width: 160px;
  justify-content: center;
}

.hiw-stat i { font-size: 18px; flex-shrink: 0; }

.hiw-stat-value {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hiw-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  line-height: 1.3;
}

.hiw-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}

@keyframes hiw-progress {
  from { width: 40%; }
  to   { width: 85%; }
}

@media (max-width: 768px) {
  .hiw-stats-bar { gap: 16px; padding: 20px; }
  .hiw-stat { padding: 12px 16px; min-width: 130px; }
  .hiw-stat-divider { display: none; }
}

/* ─── DRIVER SECTION – REDESIGN ─── */

/* Floating stat chips on phone */
.drv-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(10, 12, 24, 0.92);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  white-space: nowrap;
  animation: float-slow 3s ease-in-out infinite;
  z-index: 10;
}

.drv-float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.drv-float-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.drv-float-value {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

/* Benefit rows */
.drv-benefit-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.drv-benefit-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(0,168,225,0.15);
  transform: translateX(4px);
}

.drv-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.drv-benefit-badge {
  font-size: 11px;
  font-weight: 700;
  color: rgba(0,168,225,0.8);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(0,168,225,0.2);
  background: rgba(0,168,225,0.06);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Bottom perks strip */
.drv-perk-card {
  padding: 24px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.drv-perk-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 0 0 18px 18px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.drv-perk-card:hover {
  background: rgba(0,168,225,0.04);
  border-color: rgba(0,168,225,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.drv-perk-card:hover::after { opacity: 1; }

.drv-perk-icon {
  font-size: 22px;
  color: #00A8E1;
  margin-bottom: 14px;
  display: block;
}

.drv-perk-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.drv-perk-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .drv-float-card { display: none; }
}

/* ─── CONTACT PAGE ─── */
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.contact-info-row:hover {
  background: rgba(0,168,225,0.04);
  border-color: rgba(0,168,225,0.2);
  transform: translateX(4px);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: rgba(0,168,225,0.1);
  border: 1px solid rgba(0,168,225,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}
