/*===========================
    SPLUNO MODERN THEME
    Gradient & Modern Style
    Cool & Calm Colors
===========================*/

:root {
  /* Cool & Calm Color Palette - Darker, more vibrant */
  --primary: #0369a1;
  --primary-light: #0ea5e9;
  --primary-dark: #075985;
  /* Brand secondary (replaces pure black in UI); indigo accents use --accent */
  --secondary: #0f172a;
  --accent: #7c3aed;

  /* Neutral Colors */
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  /* Gradients - Darker blue */
  --gradient-primary: linear-gradient(135deg, #0369a1 0%, #0ea5e9 100%);
  /* Logo-aligned: deep cobalt → brand blue → sky (matches logo.png figures) */
  --gradient-features-banner: linear-gradient(
    135deg,
    #075985 0%,
    #0369a1 28%,
    #0898e7 62%,
    #38bdf8 100%
  );
  --gradient-hero: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(3, 105, 161, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 40px rgba(8, 145, 178, 0.15);
  --shadow-phone: 0 50px 100px -20px rgba(8, 145, 178, 0.25), 0 30px 60px -30px rgba(0, 0, 0, 0.3);

  /* Elevated card on beige sections (#F6F5F2) — highlights vs page bg */
  --surface-beige-card: linear-gradient(165deg, #ffffff 0%, #faf9f6 42%, #f3f1ec 100%);
  --surface-beige-border: 1px solid rgba(226, 232, 240, 0.9);
  --surface-beige-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05),
    0 22px 44px -16px rgba(3, 105, 161, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;

  /* Typography */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', 'Open Sans', sans-serif;

  /* Spacing */
  --section-padding: 120px;
  --container-padding: 24px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== Base Overrides ========== */
body {
  font-family: var(--font-body);
  color: var(--slate-600);
  background: #F6F5F2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--slate-800);
  font-weight: 600;
}

.text-primary {
  color: var(--primary) !important;
}

/* ========== Modern Hero Section ========== */
.header-hero {
  background: #F6F5F2;
  min-height: 100vh;
  height: auto !important; /* override style.css fixed 800/900px — fixes odd flex + column alignment */
  position: relative;
  overflow: hidden;
}

/* Subtle animated gradient orbs */
.hero-bg-animation {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

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

.blob-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.3) 0%, rgba(34, 211, 238, 0.2) 100%);
  top: -200px;
  right: -100px;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.15) 100%);
  bottom: -150px;
  left: -150px;
  animation-delay: -10s;
}

.blob-3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.2) 0%, rgba(8, 145, 178, 0.15) 100%);
  top: 50%;
  left: 40%;
  animation-delay: -5s;
}

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

/* Hide old particles and shapes */
.particles,
.shape,
.hero-wave {
  display: none !important;
}

/* Hero Content — top spacing lives on .container so text + phone share one baseline */
.header-hero .container {
  padding-top: 140px;
  padding-bottom: 48px;
}

.header-hero-content {
  position: relative;
  z-index: 10;
  padding-top: 0;
}

/* Top-align columns; glow is clipped so it doesn’t fake a “tall card” above the copy */
.header-hero .row {
  min-height: calc(100vh - 80px);
  align-items: flex-start;
}

.header-image {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* ========== Hero Badges ========== */
.hero-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.badge-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: #10b981;
  letter-spacing: 0.3px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}

.badge-platform {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-600);
}

.badge-platform i {
  font-size: 16px;
  color: var(--slate-800);
}


@media (max-width: 576px) {
  .hero-badges {
    flex-direction: column;
    align-items: center;
  }
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(8, 145, 178, 0.2);
  animation: taglinePulse 3s ease-in-out infinite;
}

.tagline-icon {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: taglineDot 2s ease-in-out infinite;
}

@keyframes taglinePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(8, 145, 178, 0.1); }
  50% { box-shadow: 0 0 0 8px rgba(8, 145, 178, 0); }
}

@keyframes taglineDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.header-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--slate-900);
  margin-bottom: 24px;
}

.header-title span {
  display: inline;
}

/* ========== HERO TITLE ========== */
.header-hero-content .header-title {
  font-size: 52px !important;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 28px;
  display: flex !important;
  flex-direction: column;
  gap: 4px;
  color: var(--slate-900);
}

.header-hero-content .header-title span {
  display: block !important;
}

.header-hero-content .header-title .title-intro {
  font-size: 18px !important;
  font-weight: 600;
  color: var(--primary) !important;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.header-hero-content .header-title .title-brand {
  font-size: 72px !important;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--slate-900) !important;
  -webkit-text-fill-color: var(--slate-900) !important;
  background: none !important;
  position: relative;
  display: inline-block !important;
  animation: none !important;
  filter: none !important;
}

/* Subtle underline accent */
.header-hero-content .header-title .title-brand::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 12px;
  background: linear-gradient(90deg, rgba(8, 145, 178, 0.25) 0%, rgba(6, 182, 212, 0.15) 100%);
  border-radius: 4px;
  z-index: -1;
}

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

@media (max-width: 991px) {
  .header-hero-content .header-title .title-intro {
    font-size: 16px !important;
  }

  .header-hero-content .header-title .title-brand {
    font-size: 60px !important;
  }

  .header-hero-content .header-title .title-brand::after {
    height: 10px;
    bottom: 6px;
  }
}

@media (max-width: 576px) {
  .header-hero-content .header-title .title-intro {
    font-size: 14px !important;
    letter-spacing: 2px;
  }

  .header-hero-content .header-title .title-brand {
    font-size: 48px !important;
  }

  .header-hero-content .header-title .title-brand::after {
    height: 8px;
    bottom: 4px;
  }
}

.header-hero-content .text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--slate-500);
  max-width: 520px;
  margin-bottom: 32px;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ========== ENHANCED BUTTONS ========== */
.main-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--gradient-primary);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: var(--shadow-lg), 0 4px 14px rgba(8, 145, 178, 0.35);
  transition: all var(--transition-base);
  cursor: pointer;
}

.main-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), 0 8px 20px rgba(8, 145, 178, 0.4);
  color: white;
}

.main-btn i {
  font-size: 20px;
}

/* Premium Button - Black with white text */
.btn-primary-glow {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-base);
  background: var(--slate-900);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary-glow .btn-bg {
  display: none;
}

.btn-primary-glow .btn-content {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.btn-primary-glow .btn-content i {
  font-size: 22px;
  transition: transform var(--transition-base);
}

.btn-primary-glow:hover .btn-content i {
  transform: scale(1.1);
}

/* Shine effect */
.btn-primary-glow .btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 100%
  );
  z-index: 1;
  transition: left 0.6s ease;
}

.btn-primary-glow:hover .btn-shine {
  left: 100%;
}

.btn-primary-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: white;
  background: var(--slate-900);
}

/* Secondary Button - Also Black */
.btn-secondary-glow {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-base);
  background: var(--slate-900);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary-glow .btn-bg {
  display: none;
}

.btn-secondary-glow .btn-content {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.btn-secondary-glow .btn-content i {
  font-size: 22px;
  color: white;
  transition: transform var(--transition-base);
}

.btn-secondary-glow:hover .btn-content i {
  transform: scale(1.1);
}

.btn-secondary-glow .btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 100%
  );
  z-index: 1;
  transition: left 0.6s ease;
}

.btn-secondary-glow:hover .btn-shine {
  left: 100%;
}

.btn-secondary-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: white;
  background: var(--slate-900);
}

@media (max-width: 576px) {
  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary-glow,
  .btn-secondary-glow {
    padding: 16px 24px;
    width: 100%;
    justify-content: center;
  }
}

.app-rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.app-rating .stars {
  display: flex;
  gap: 2px;
  color: #fbbf24;
  font-size: 16px;
}

.app-rating span {
  font-size: 13px;
  color: var(--slate-500);
}

/* Hero Phone - Floating Style */
.header-image {
  position: relative;
  z-index: 10;
  padding: 0;
}

.phone-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  /* Visible so radial glow + float aren’t clipped (alignment kept via shared hero padding) */
  overflow: visible;
  padding-bottom: 48px;
}

.phone-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  /* No hard circle edge: large soft blob + heavy blur = ambient fade */
  background: radial-gradient(
    circle,
    rgba(7, 89, 133, 0.22) 0%,
    rgba(15, 23, 42, 0.08) 42%,
    rgba(15, 23, 42, 0.02) 65%,
    transparent 82%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(56px);
  -webkit-filter: blur(56px);
  animation: pulseGlow 5s ease-in-out infinite;
  pointer-events: none;
  will-change: opacity, transform;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.75;
    transform: translate(-50%, -50%) scale(1.03);
  }
}

.phone-mockup {
  position: relative;
}

/* Drop style.css frame — any rounded rect reads as a second “div” with edges */
.header-hero .phone-mockup::before {
  content: none;
  display: none;
}

.phone-mockup .image {
  width: 280px;
  height: auto;
  border-radius: 40px;
  box-shadow: var(--shadow-phone);
  animation: heroPhoneFloat 6s ease-in-out infinite;
  will-change: transform;
}

.header-hero .phone-mockup .image {
  box-shadow: 0 36px 72px -24px rgba(15, 23, 42, 0.16),
    0 20px 48px -28px rgba(7, 89, 133, 0.07);
}

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

/* Smaller motion + pulse for stacked hero (tablet / phone) — used via media queries */
@keyframes heroPhoneFloatSm {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes pulseGlowTablet {
  0%,
  100% {
    opacity: 0.4;
    transform: translate(-50%, -40%) scale(1);
  }
  50% {
    opacity: 0.62;
    transform: translate(-50%, -40%) scale(1.03);
  }
}

@keyframes pulseGlowMobile {
  0%,
  100% {
    opacity: 0.38;
    transform: translate(-50%, -38%) scale(1);
  }
  50% {
    opacity: 0.58;
    transform: translate(-50%, -38%) scale(1.02);
  }
}

.phone-shadow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.15) 0%, transparent 70%);
  filter: blur(8px);
}

.phone-screen-reflection {
  display: none;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  transition: opacity var(--transition-base);
}

.scroll-indicator:hover {
  opacity: 1;
}

.mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--slate-400);
  border-radius: 12px;
  position: relative;
}

.wheel {
  width: 3px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { opacity: 1; top: 6px; }
  50% { opacity: 0.3; top: 18px; }
}

.scroll-indicator span {
  font-size: 11px;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ========== Section Styles ========== */
section {
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--slate-800);
  line-height: 1.3;
}

.section-header p {
  font-size: 18px;
  color: var(--slate-500);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 16px;
  }
}

/* ========== BACKGROUND PATTERNS ========== */
.pattern-dots {
  background-image: radial-gradient(circle, var(--slate-200) 1px, transparent 1px);
  background-size: 24px 24px;
}

.pattern-grid {
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ========== How It Works - Modern Cards ========== */
.how-it-works-area {
  background: #F6F5F2;
  padding: 100px 0;
  position: relative;
}

.how-it-works-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(8, 145, 178, 0.03) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.how-it-works-area .row.g-4 {
  margin-top: 10px;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 2.5rem;
}

/* Tablet / phone: more space between step cards (stacked or 2-col) */
@media (max-width: 991px) {
  .how-it-works-area .row.g-4 {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2.75rem;
  }

  .how-it-works-area .row > [class*="col-"] {
    margin-bottom: 1.5rem;
  }

  .how-it-works-area .row > [class*="col-"]:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .how-it-works-area .row.g-4 {
    --bs-gutter-y: 3.25rem;
  }

  .how-it-works-area .row > [class*="col-"] {
    margin-bottom: 1.75rem;
  }

  .how-it-works-area .row > [class*="col-"]:last-child {
    margin-bottom: 0;
  }

  .how-it-works-area .step-card {
    margin-top: 28px;
    margin-bottom: 0;
  }
}

.step-card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 48px 32px 40px;
  text-align: center;
  position: relative;
  margin-top: 30px;
  height: 100%;
  transition: all var(--transition-base);
}

.step-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(8, 145, 178, 0.1);
  transform: translateY(-8px);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: white;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--gradient-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon i {
  font-size: 32px;
  color: var(--primary);
  transition: all var(--transition-base);
}

/* Animated icons on hover */
.step-card:hover .step-icon i {
  transform: scale(1.15) rotate(5deg);
  color: var(--primary-dark);
}

.step-icon .icon-ring {
  display: none;
}

.step-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--slate-800);
}

.step-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate-500);
  margin-bottom: 0;
}

.step-card .card-shine,
.steps-connector-line,
.section-decoration {
  display: none;
}

/* ========== Why Spluno - Clean Design ========== */
.why-spluno-area {
  background: #F6F5F2;
  padding: 100px 0;
  position: relative;
}

.why-spluno-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle, var(--slate-200) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.5;
  pointer-events: none;
}

.comparison-table {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: none;
}

.comparison-header {
  display: flex;
}

.comparison-header .comparison-col {
  flex: 1;
  padding: 22px 24px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-header .comparison-col:first-child {
  background: linear-gradient(135deg, var(--slate-700) 0%, var(--slate-800) 100%);
  color: var(--slate-300);
}

.comparison-header .comparison-col.highlight {
  background: var(--gradient-primary);
  color: white;
}

.comparison-row {
  display: flex;
  border-bottom: 1px solid var(--slate-100);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row .comparison-col {
  flex: 1;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  transition: all var(--transition-base);
}

.comparison-row .comparison-col.old-way {
  color: var(--slate-500);
  background: var(--slate-50);
  border-right: 1px solid var(--slate-100);
}

.comparison-row .comparison-col.old-way i {
  color: #ef4444;
  font-size: 18px;
  min-width: 18px;
}

.comparison-row .comparison-col.new-way {
  color: var(--slate-700);
  font-weight: 500;
  background: rgba(8, 145, 178, 0.05);
}

.comparison-row .comparison-col.new-way i {
  color: #10b981;
  font-size: 18px;
  min-width: 18px;
}

.comparison-row:hover .comparison-col.old-way {
  background: var(--slate-100);
}

.comparison-row:hover .comparison-col.new-way {
  background: rgba(8, 145, 178, 0.1);
}

/* Features List */
.features-list {
  padding-left: 40px;
}

@media (max-width: 991px) {
  .features-list {
    padding-left: 0;
    margin-top: 50px;
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  border: 1px solid transparent;
  transition: all var(--transition-base);
}

.feature-item:hover {
  border-color: var(--slate-200);
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 22px;
  color: white;
  transition: all var(--transition-base);
}

/* Animated icon on hover */
.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 25px rgba(8, 145, 178, 0.4);
}

.feature-item:hover .feature-icon i {
  transform: scale(1.1);
}

.feature-content h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: 4px;
}

.feature-content p {
  font-size: 14px;
  color: var(--slate-500);
  margin: 0;
  line-height: 1.5;
}

/* ========== Screenshots - Floating Phones ========== */
.screenshots-area {
  background: #F6F5F2;
  padding: 100px 0 120px;
  overflow: hidden;
  position: relative;
}

.screenshots-area::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* Remove old card styling */
.screenshot-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-bottom: 60px;
}

.screenshot-card:hover {
  transform: none !important;
}

.screenshot-card.elevated {
  margin-top: 0 !important;
}

/* Hide old elements */
.screenshot-card .card-border-glow,
.screenshot-card .screen-glare,
.screenshot-card .phone-notch,
.floating-elements {
  display: none !important;
}

/* New Floating Phone Style - Direct shadow on frame, no white bg */
.phone-frame-3d {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 auto 24px !important;
  max-width: 220px;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.35),
    0 12px 24px -8px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-slow);
}

.phone-frame-3d img {
  width: 100%;
  height: auto !important;
  object-fit: contain !important;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

.screenshot-card:hover .phone-frame-3d {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 35px 60px -15px rgba(0, 0, 0, 0.4),
    0 20px 40px -10px rgba(0, 0, 0, 0.25);
}

.screenshot-card .content {
  text-align: center;
  padding: 0 16px;
}

.screenshot-card .content h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: 8px;
}

.screenshot-card .content p {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ========== Features Banner Section ========== */
.features-banner-area {
  background: #F6F5F2;
  padding: 80px 0;
  position: relative;
}

.features-banner-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(8, 145, 178, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.features-banner-wrapper {
  background: var(--gradient-features-banner);
  border-radius: var(--radius-2xl);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 48px -12px rgba(7, 89, 133, 0.35),
    0 12px 24px -8px rgba(8, 152, 231, 0.2);
}

.features-banner-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(56, 189, 248, 0.12) 45%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.features-banner-wrapper::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(8, 152, 231, 0.2) 0%,
    rgba(7, 89, 133, 0.15) 50%,
    transparent 68%
  );
  border-radius: 50%;
  pointer-events: none;
}

.feature-banner-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}

.feature-banner-item:hover {
  transform: translateY(-4px);
}

@media (max-width: 767px) {
  .feature-banner-item {
    flex-direction: column;
    text-align: center;
    margin-bottom: 20px;
  }

  .features-banner-wrapper {
    padding: 40px 24px;
  }
}

.feature-banner-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.feature-banner-icon i {
  font-size: 24px;
  color: white;
  transition: all var(--transition-base);
}

.feature-banner-item:hover .feature-banner-icon {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(255,255,255,0.3);
}

.feature-banner-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.feature-banner-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

/* ========== Contact Section - Clean Design ========== */
.contact-area {
  background: #F6F5F2;
  padding: 100px 0;
}

.contact-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-cards {
  margin-top: 32px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  border: 1px solid var(--slate-200);
  transition: all var(--transition-base);
}

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--gradient-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon i {
  font-size: 20px;
  color: var(--primary);
  transition: all var(--transition-base);
}

/* Animated contact icons */
.contact-card:hover .contact-card-icon {
  background: var(--gradient-primary);
  transform: rotate(-5deg) scale(1.05);
}

.contact-card:hover .contact-card-icon i {
  color: white;
  transform: scale(1.1);
}

.contact-card-content h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: 4px;
}

.contact-card-content p,
.contact-card-content a {
  font-size: 14px;
  color: var(--slate-500);
  margin: 0;
}

.contact-card-content a:hover {
  color: var(--primary);
}

/* CTA Box - Same height as contact content */
.contact-area .row.align-items-center {
  align-items: stretch !important;
}

.contact-area .row > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

.contact-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-cta-box {
  background: var(--surface-beige-card);
  border: var(--surface-beige-border);
  border-radius: var(--radius-2xl);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  box-shadow: var(--surface-beige-shadow);
}

.contact-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 88%, rgba(3, 105, 161, 0.1) 0%, transparent 52%),
    radial-gradient(circle at 82% 12%, rgba(14, 165, 233, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(8, 152, 231, 0.04) 0%, transparent 65%);
  pointer-events: none;
}

.contact-cta-box .cta-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient-subtle);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 14px rgba(3, 105, 161, 0.08);
}

.contact-cta-box .cta-icon i {
  font-size: 32px;
  color: var(--primary);
}

.contact-cta-box h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 12px;
}

.contact-cta-box p {
  font-size: 16px;
  color: var(--slate-600);
  margin-bottom: 28px;
}

.contact-cta-box .send-btn {
  background: var(--slate-900);
  color: white;
  padding: 14px 32px;
  font-weight: 600;
  border-radius: var(--radius-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
  overflow: hidden;
  /* Parent is flex column + stretch; keep button shrink-wrapped and centered */
  align-self: center;
  width: fit-content;
  max-width: 100%;
  height: auto;
  text-decoration: none;
  /* Undo global .send-btn fixed size from style.css */
  min-height: 0;
}

.contact-cta-box .send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(3, 105, 161, 0.28);
  background: var(--primary-dark);
  color: white;
}

.contact-cta-box .send-btn .icon-layer,
.contact-cta-box .send-btn .text-placeholder {
  display: none;
}

/* Global .send-btn slides .text-layer on hover for arrow UI; this CTA has text only */
.contact-cta-box .send-btn .text-layer {
  position: static;
  display: inline;
  width: auto;
  height: auto;
  background: transparent;
  color: inherit;
  font-weight: 600;
  transform: none;
  transition: color 0.25s ease;
}

.contact-cta-box .send-btn:hover .text-layer {
  transform: none;
  color: #fff;
}

.cta-decoration {
  display: none;
}

/* ========== Download Section - Premium CTA ========== */
.download-area {
  background: #F6F5F2;
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.download-cta-wrapper {
  position: relative;
  background: var(--surface-beige-card);
  border: var(--surface-beige-border);
  border-radius: var(--radius-2xl);
  padding: 70px 60px;
  box-shadow: var(--surface-beige-shadow);
  /* visible so transparent mockup + float / drop-shadow aren’t clipped */
  overflow: visible;
}

.download-cta-bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    radial-gradient(circle at 15% 85%, rgba(3, 105, 161, 0.1) 0%, transparent 52%),
    radial-gradient(circle at 88% 18%, rgba(14, 165, 233, 0.11) 0%, transparent 48%),
    radial-gradient(circle at 48% 45%, rgba(8, 152, 231, 0.05) 0%, transparent 68%);
  pointer-events: none;
}

.download-cta-content {
  position: relative;
  z-index: 2;
}

.download-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: #34d399;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.download-cta-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 500px;
}

.download-cta-text {
  font-size: 17px;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.download-cta-buttons {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
}

.download-btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* App Store Button - Black with white text */
.btn-download-main {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: var(--slate-900);
  color: white;
  border-radius: var(--radius-lg);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.22);
  transition: all var(--transition-base);
}

.btn-download-main:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(3, 105, 161, 0.28);
  color: white;
  background: var(--primary-dark);
}

.btn-download-main i {
  font-size: 28px;
  color: white;
}

.btn-download-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-download-text span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.2;
}

.btn-download-text strong {
  font-size: 16px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}

/* Android button variant - same slate-900 style */
.btn-download-android {
  background: var(--slate-900);
}

.btn-download-android i {
  color: white;
}

.btn-download-android .btn-download-text span {
  color: rgba(255, 255, 255, 0.7);
}

.btn-download-android .btn-download-text strong {
  color: white;
}

.btn-download-android:hover {
  color: white;
  background: var(--primary-dark);
  box-shadow: 0 12px 32px rgba(3, 105, 161, 0.28);
}

/* Download Info Items */
.download-cta-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.download-cta-info .info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--slate-600);
}

.download-cta-info .info-item i {
  font-size: 16px;
  color: var(--primary);
}

/* Download Phone Display */
.download-cta-phone {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: floatPhoneSimple 6s ease-in-out infinite;
}

/* Transparent PNG mockup: no rounded clip / cover crop */
.phone-img-wrapper {
  width: auto;
  max-width: 100%;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  line-height: 0;
}

.download-cta-phone img {
  width: auto;
  max-width: min(100%, 320px);
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  vertical-align: top;
  filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.45))
    drop-shadow(0 12px 24px rgba(8, 152, 231, 0.12));
}

/* Simple vertical float without rotation to avoid corner issues */
@keyframes floatPhoneSimple {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Responsive Download Section */
@media (max-width: 991px) {
  .download-cta-wrapper {
    padding: 50px 40px;
  }

  .download-cta-title {
    font-size: 32px;
  }

  .download-cta-phone {
    margin-top: 50px;
  }

  .download-cta-phone img {
    max-width: min(100%, 280px);
  }
}

@media (max-width: 767px) {
  .download-cta-wrapper {
    padding: 40px 24px;
    text-align: center;
  }

  .download-cta-title {
    font-size: 28px;
    max-width: 100%;
  }

  .download-cta-text {
    max-width: 100%;
  }

  .download-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .download-btn-group {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }

  .btn-download-main {
    width: 100%;
    justify-content: center;
  }

  .download-cta-info {
    align-items: center;
  }

  .download-cta-phone img {
    max-width: min(100%, 240px);
  }
}

/* ========== Footer - Enhanced Modern ========== */
.footer-area {
  background: linear-gradient(180deg, var(--slate-900) 0%, #0c1222 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative gradient orbs */
.footer-area::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.footer-area::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-shape {
  display: none !important;
}

.footer-widget {
  padding: 80px 0 60px;
  position: relative;
  z-index: 1;
}

/* Enhanced Footer Brand */
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 12px 20px 12px 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.footer-brand::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.15) 0%, rgba(99, 102, 241, 0.1) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.footer-brand:hover {
  border-color: rgba(8, 145, 178, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(8, 145, 178, 0.2);
}

.footer-brand:hover::before {
  opacity: 1;
}

.footer-logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.2) 0%, rgba(99, 102, 241, 0.15) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}

.footer-brand:hover .footer-logo-icon {
  background: var(--gradient-primary);
  box-shadow: 0 4px 15px rgba(8, 145, 178, 0.4);
}

.footer-logo-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 1;
}

.footer-logo-text .brand-name {
  font-size: 22px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.footer-logo-text .brand-tagline {
  font-size: 11px;
  font-weight: 500;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Old logo style - hide */
.footer-about .logo {
  display: none;
}

.footer-about .text {
  color: var(--slate-400);
  margin-top: 24px;
  line-height: 1.7;
  max-width: 300px;
}

/* Enhanced Social Icons */
.footer-about .social {
  margin-top: 28px;
  display: flex;
  gap: 12px;
}

.footer-about .social li {
  display: inline-block;
  margin-right: 0;
}

.footer-about .social li a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--slate-400);
  font-size: 18px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.footer-about .social li a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.footer-about .social li a i {
  position: relative;
  z-index: 1;
}

.footer-about .social li a:hover {
  border-color: var(--primary);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(8, 145, 178, 0.3);
}

.footer-about .social li a:hover::before {
  opacity: 1;
}

/* Footer Titles */
.footer-title {
  margin-bottom: 24px;
}

.footer-title .title {
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.footer-title .title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Footer Links */
.footer-link .link {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link .link li {
  margin-bottom: 14px;
}

.footer-link .link li a,
.footer-link-wrapper .link li a {
  color: var(--slate-400);
  font-size: 15px;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-link .link li a::before,
.footer-link-wrapper .link li a::before {
  content: '';
  width: 0;
  height: 2px;
  background: white;
  transition: width var(--transition-base);
}

.footer-link .link li a:hover,
.footer-link-wrapper .link li a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-link .link li a:hover::before,
.footer-link-wrapper .link li a:hover::before {
  width: 12px;
}

/* Footer Contact */
.footer-contact .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact .contact-list li {
  margin-bottom: 16px;
}

.footer-contact .contact-list li .contact-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact .contact-list li .text {
  color: var(--slate-400);
  font-size: 14px;
  line-height: 1.6;
  transition: color var(--transition-base);
}

.footer-contact .contact-list li .text i {
  color: var(--primary);
  margin-right: 10px;
  font-size: 16px;
}

.footer-contact .contact-list li .text a {
  color: var(--slate-400);
  transition: color var(--transition-base);
}

.footer-contact .contact-list li .text a:hover {
  color: white;
}

/* Footer all anchor links white */
.footer-area a {
  color: var(--slate-400);
}

.footer-area a:hover {
  color: white;
}

/* Footer Copyright */
.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0;
  position: relative;
  z-index: 1;
}

.footer-copyright .copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-copyright p {
  color: var(--slate-500);
  font-size: 13px;
  text-align: center;
}

.footer-copyright a {
  color: white;
  transition: color var(--transition-base);
}

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

/* Footer Link Wrapper Spacing */
.footer-link-wrapper {
  margin-top: 50px;
}

.footer-contact {
  margin-top: 50px;
}

.footer-about {
  margin-top: 50px;
}

/* Logo image in footer */
.footer-about .logo img {
  height: 36px;
  object-fit: contain;
}

@media (max-width: 991px) {
  .footer-link-wrapper,
  .footer-contact {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .footer-widget {
    padding: 60px 0 40px;
  }

  .footer-about,
  .footer-link-wrapper,
  .footer-contact {
    margin-top: 35px;
  }

  .footer-about .text {
    max-width: 100%;
  }
}

/* ========== Floating Download Button - Vertical, above back-to-top ========== */
.floating-download-btn {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.floating-download-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%);
  color: white;
  border-radius: var(--radius-lg);
  text-decoration: none;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.floating-btn-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.floating-btn-ios:hover::before {
  opacity: 1;
}

.floating-btn-android::before {
  background: linear-gradient(135deg, #3ddc84 0%, #2ecc71 100%);
}

.floating-btn-android:hover::before {
  opacity: 1;
}

.floating-btn-link:hover {
  transform: translateX(-5px);
  box-shadow:
    0 12px 40px rgba(8, 145, 178, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  color: white;
}

.floating-btn-android:hover {
  box-shadow:
    0 12px 40px rgba(61, 220, 132, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.floating-btn-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.floating-btn-icon i {
  font-size: 14px;
}

.floating-btn-link:hover .floating-btn-icon {
  background: rgba(255, 255, 255, 0.25);
}

.floating-btn-text {
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Responsive floating button */
@media (max-width: 991px) {
  .floating-download-btn {
    right: 20px;
    bottom: 80px;
  }

  .floating-btn-link {
    padding: 10px 14px;
  }
}

@media (max-width: 576px) {
  .floating-download-btn {
    right: 15px;
    bottom: 70px;
  }

  .floating-btn-link {
    padding: 10px 12px;
  }

  .floating-btn-text {
    display: none;
  }

  .floating-btn-icon {
    width: 26px;
    height: 26px;
  }

  .floating-btn-icon i {
    font-size: 15px;
  }
}

/* ========== Back to Top ========== */
.back-to-top {
  background: var(--slate-900);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  right: 30px;
}

.back-to-top:hover {
  background: var(--slate-900);
}

/* ========== Navbar - Modern Glass ========== */
.navbar-area {
  transition: all var(--transition-base);
}

.sticky {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

/* Fix navbar vertical alignment - all elements in single line */
.navbar-area .navbar {
  display: flex;
  align-items: center;
}

.navbar-area .navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-nav {
  display: flex;
  align-items: center;
}

.navbar-nav .nav-item {
  display: flex;
  align-items: center;
}

.navbar-nav .nav-item a {
  color: var(--slate-600);
  font-weight: 500;
  transition: color var(--transition-base);
  display: flex;
  align-items: center;
}

.navbar-nav .nav-item.active > a,
.navbar-nav .nav-item:hover > a {
  color: var(--primary);
}

/* Navbar CTA Button with Dropdown */
.navbar-nav .nav-item.nav-cta {
  margin-left: 16px;
  display: flex;
  align-items: center;
}

.nav-btn-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.navbar-nav .nav-item.nav-cta .nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--slate-900);
  color: white !important;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
}

.navbar-nav .nav-item.nav-cta .nav-btn i {
  font-size: 16px;
}

.navbar-nav .nav-item.nav-cta .nav-btn .dropdown-arrow {
  font-size: 10px;
  margin-left: 2px;
  transition: transform var(--transition-base);
}

.nav-btn-dropdown.active .nav-btn .dropdown-arrow {
  transform: rotate(180deg);
}

.navbar-nav .nav-item.nav-cta .nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: white !important;
  background: var(--slate-900);
}

/* Dropdown Menu */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-base);
  z-index: 1000;
}

.nav-btn-dropdown.active .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 24px;
  width: 12px;
  height: 12px;
  background: white;
  transform: rotate(45deg);
  border-radius: 2px;
}

.nav-dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--slate-700);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  text-decoration: none;
}

.nav-dropdown-menu .dropdown-item i {
  font-size: 20px;
  color: var(--slate-500);
  transition: color var(--transition-base);
}

.nav-dropdown-menu .dropdown-item:hover {
  background: var(--slate-50);
  color: var(--primary);
}

.nav-dropdown-menu .dropdown-item:hover i {
  color: var(--primary);
}

/* Play Store icon color on hover */
.nav-dropdown-menu .dropdown-item:hover .lni-play-store {
  color: #3ddc84;
}

/* Apple icon color on hover */
.nav-dropdown-menu .dropdown-item:hover .lni-apple {
  color: var(--slate-800);
}

@media (max-width: 991px) {
  .navbar-nav .nav-item.nav-cta {
    margin-left: 0;
    margin-top: 16px;
  }

  .nav-btn-dropdown {
    display: inline-block;
  }

  .nav-dropdown-menu {
    right: auto;
    left: 0;
  }

  .nav-dropdown-menu::before {
    right: auto;
    left: 24px;
  }
}

/* ========== Preloader ========== */
.preloader .loader .ytp-spinner-circle {
  border-color: var(--primary) var(--primary) var(--slate-200);
}

/* ========== Remove Old Effects ========== */
.tilt-card {
  transform: none !important;
}

.pulse-animation,
.pulse-glow,
.icon-float,
.card-shine,
.hover-lift {
  animation: none !important;
}

.cursor-glow {
  display: none !important;
}

/* ========== Responsive ========== */
@media (max-width: 991px) {
  .header-title {
    font-size: 42px;
  }

  .header-hero .container {
    padding-top: 120px;
  }

  .header-hero-content {
    text-align: center;
    /* Above .header-image so shadows/glow don’t paint over CTAs when stacked */
    z-index: 2;
  }

  .header-hero-content .text {
    margin: 0 auto 32px;
  }

  .hero-cta {
    justify-content: center;
    margin-bottom: 8px;
  }

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

  /* Stacked hero: keep glow/shadow/float from covering store buttons */
  .header-image {
    margin-top: 40px;
    z-index: 1;
    isolation: isolate;
  }

  .phone-mockup-wrapper {
    padding-bottom: 36px;
  }

  .phone-glow {
    width: 300px;
    height: 300px;
    top: 58%;
    background: radial-gradient(
      circle,
      rgba(7, 89, 133, 0.18) 0%,
      rgba(15, 23, 42, 0.06) 48%,
      transparent 84%
    );
    filter: blur(44px);
    -webkit-filter: blur(44px);
    animation: pulseGlowTablet 4s ease-in-out infinite;
  }

  .phone-mockup .image {
    box-shadow: 0 20px 40px -18px rgba(15, 23, 42, 0.16),
      0 14px 28px -22px rgba(7, 89, 133, 0.06);
    animation: heroPhoneFloatSm 6s ease-in-out infinite;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .contact-cta-box {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .header-title {
    font-size: 32px;
  }

  .header-image {
    margin-top: 48px;
  }

  .hero-cta {
    margin-bottom: 12px;
  }

  .phone-mockup .image {
    width: 220px;
  }

  .phone-glow {
    width: 260px;
    height: 260px;
    top: 60%;
    background: radial-gradient(
      circle,
      rgba(7, 89, 133, 0.16) 0%,
      rgba(15, 23, 42, 0.05) 50%,
      transparent 85%
    );
    filter: blur(40px);
    -webkit-filter: blur(40px);
    animation: pulseGlowMobile 4s ease-in-out infinite;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .stats-wrapper {
    padding: 40px 24px;
  }

  .stat-content h3 {
    font-size: 28px;
  }

  .scroll-indicator {
    display: none;
  }
}

/* ========== Smooth Animations ========== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animations */
.step-card,
.feature-item,
.contact-card,
.screenshot-card {
  opacity: 1 !important;
  transform: none !important;
}
