/* ================================================================
   GROWWITHRP — Premium Digital Marketing Agency
   Stylesheet: Main
   Author: GrowWithRP Design Team
   ================================================================ */

/* ----------------------------------------------------------------
   1. CSS VARIABLES
   ---------------------------------------------------------------- */
:root {
  /* Primary Colors */
  --black: #0B0F19;
  --black-light: #111827;
  --black-lighter: #1A2332;
  --blue: #3B82F6;
  --blue-dark: #2563EB;
  --blue-glow: rgba(59, 130, 246, 0.3);
  --gold: #F4C542;
  --gold-dark: #D4A830;
  --gold-glow: rgba(244, 197, 66, 0.3);
  --white: #FFFFFF;
  --white-soft: #F3F4F6;

  /* Text Colors */
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: rgba(0, 0, 0, 0.3);

  /* Gradients */
  --gradient-blue: linear-gradient(135deg, #3B82F6, #1D4ED8);
  --gradient-gold: linear-gradient(135deg, #F4C542, #D4A830);
  --gradient-accent: linear-gradient(135deg, #3B82F6, #F4C542);
  --gradient-dark: linear-gradient(180deg, #0B0F19 0%, #111827 50%, #0B0F19 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));

  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;

  /* Spacing */
  --section-padding: 110px 0;
  --container-width: 1200px;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Transitions */
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ----------------------------------------------------------------
   2. RESET & BASE STYLES
   ---------------------------------------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--black);
  background-image: var(--gradient-dark);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

strong {
  color: var(--white);
  font-weight: 600;
}

/* ----------------------------------------------------------------
   3. UTILITY CLASSES
   ---------------------------------------------------------------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding);
  position: relative;
}

.section-dark {
  background: rgba(255, 255, 255, 0.02);
}

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

.section-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(244, 197, 66, 0.1);
  border: 1px solid rgba(244, 197, 66, 0.2);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

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

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px var(--glass-shadow);
  transition: all var(--transition-smooth);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

/* ----------------------------------------------------------------
   4. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn i {
  font-size: 1.1rem;
  transition: transform var(--transition-fast);
}

.btn:hover i {
  transform: translateX(3px);
}

/* Primary Blue Button */
.btn-primary {
  background: var(--gradient-blue);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}

/* Gold Button */
.btn-gold {
  background: var(--gradient-gold);
  color: var(--black);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(244, 197, 66, 0.3);
  font-weight: 700;
}

.btn-gold:hover {
  box-shadow: 0 8px 32px rgba(244, 197, 66, 0.5);
  transform: translateY(-2px);
}

.btn-gold:hover i {
  transform: scale(1.15);
}

/* Outline Button */
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: var(--blue);
  background: rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

/* Large Button */
.btn-large {
  padding: 18px 38px;
  font-size: 1.05rem;
}

/* ----------------------------------------------------------------
   5. BACKGROUND PARTICLES (CSS-Only)
   ---------------------------------------------------------------- */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  display: block;
  width: var(--size, 4px);
  height: var(--size, 4px);
  background: var(--color, var(--blue));
  border-radius: 50%;
  opacity: 0.3;
  animation: float-particle var(--duration, 12s) ease-in-out var(--delay, 0s) infinite;
  box-shadow: 0 0 6px var(--color, var(--blue));
}

/* Particle 1-20 with varied positions, sizes, colors, and delays */
.p1  { --size: 4px;  --color: var(--blue); top: 10%;  left: 5%;   --duration: 14s; --delay: 0s; }
.p2  { --size: 3px;  --color: var(--gold); top: 20%;  left: 15%;  --duration: 16s; --delay: 1s; }
.p3  { --size: 5px;  --color: var(--blue); top: 35%;  left: 8%;   --duration: 12s; --delay: 2s; }
.p4  { --size: 2px;  --color: var(--gold); top: 50%;  left: 3%;   --duration: 18s; --delay: 0.5s; }
.p5  { --size: 4px;  --color: var(--blue); top: 65%;  left: 12%;  --duration: 15s; --delay: 3s; }
.p6  { --size: 3px;  --color: var(--gold); top: 80%;  left: 6%;   --duration: 13s; --delay: 1.5s; }
.p7  { --size: 5px;  --color: var(--blue); top: 15%;  left: 85%;  --duration: 17s; --delay: 0.3s; }
.p8  { --size: 2px;  --color: var(--gold); top: 30%;  left: 92%;  --duration: 14s; --delay: 2.5s; }
.p9  { --size: 4px;  --color: var(--blue); top: 45%;  left: 88%;  --duration: 16s; --delay: 1s; }
.p10 { --size: 3px;  --color: var(--gold); top: 60%;  left: 95%;  --duration: 12s; --delay: 3.5s; }
.p11 { --size: 6px;  --color: var(--blue); top: 75%;  left: 82%;  --duration: 19s; --delay: 0.8s; }
.p12 { --size: 2px;  --color: var(--gold); top: 90%;  left: 90%;  --duration: 15s; --delay: 2s; }
.p13 { --size: 3px;  --color: var(--blue); top: 25%;  left: 50%;  --duration: 20s; --delay: 4s; }
.p14 { --size: 4px;  --color: var(--gold); top: 55%;  left: 45%;  --duration: 11s; --delay: 1.2s; }
.p15 { --size: 2px;  --color: var(--blue); top: 70%;  left: 55%;  --duration: 13s; --delay: 2.8s; }
.p16 { --size: 5px;  --color: var(--gold); top: 40%;  left: 35%;  --duration: 17s; --delay: 0.7s; }
.p17 { --size: 3px;  --color: var(--blue); top: 85%;  left: 40%;  --duration: 14s; --delay: 3.2s; }
.p18 { --size: 4px;  --color: var(--gold); top: 5%;   left: 70%;  --duration: 16s; --delay: 1.8s; }
.p19 { --size: 2px;  --color: var(--blue); top: 95%;  left: 25%;  --duration: 18s; --delay: 0.2s; }
.p20 { --size: 5px;  --color: var(--gold); top: 50%;  left: 75%;  --duration: 15s; --delay: 2.2s; }

@keyframes float-particle {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.2;
  }
  25% {
    transform: translateY(-30px) translateX(15px) scale(1.2);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-10px) translateX(-10px) scale(0.9);
    opacity: 0.3;
  }
  75% {
    transform: translateY(-40px) translateX(20px) scale(1.1);
    opacity: 0.4;
  }
}

/* ----------------------------------------------------------------
   6. BACKGROUND GRADIENT OVERLAY
   ---------------------------------------------------------------- */
.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(244, 197, 66, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 50% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  animation: gradient-shift 15s ease-in-out infinite alternate;
}

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

/* ----------------------------------------------------------------
   7. NAVIGATION
   ---------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-smooth);
}

.navbar {
  padding: 18px 0;
  transition: all var(--transition-smooth);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--white);
  z-index: 1001;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gradient-blue);
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.logo-text {
  letter-spacing: -0.5px;
}

.logo-highlight {
  color: var(--gold);
}

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
  transition: width var(--transition-smooth);
}

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

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

/* Nav CTA */
.nav-cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* Mobile Menu Toggle (CSS-Only Checkbox Hack) */
.menu-checkbox {
  display: none;
  position: absolute;
}

.menu-icon {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.menu-bar {
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

/* Animate hamburger to X when checkbox is checked */
#menu-toggle:checked ~ .navbar .menu-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#menu-toggle:checked ~ .navbar .menu-bar:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked ~ .navbar .menu-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Drawer - initially hidden */
.mobile-menu {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(11, 15, 25, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-smooth);
}

/* Show mobile menu when checkbox is checked */
#menu-toggle:checked ~ .mobile-menu {
  opacity: 1;
  pointer-events: all;
}

/* This is controlled a bit differently - the mobile-menu is a sibling via the label, 
   but we use the ~ selector pattern differently. Let's handle this via the label approach. */

/* ----------------------------------------------------------------
   8. HERO SECTION
   ---------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 80px;
  z-index: 1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

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

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 18px 8px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

/* Hero Title */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 540px;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

/* Trust Indicators */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

/* ----------------------------------------------------------------
   9. DASHBOARD ILLUSTRATION
   ---------------------------------------------------------------- */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-card {
  width: 100%;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dash-red    { background: #EF4444; }
.dash-yellow { background: var(--gold); }
.dash-green  { background: #10B981; }

.dash-label {
  margin-left: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-display);
}

.dash-body {
  padding: 24px;
}

/* Dash Stats Row */
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.dash-stat-item {
  text-align: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.dash-stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.dash-stat-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.dash-stat-item:nth-child(1) .dash-stat-value { color: var(--blue); }
.dash-stat-item:nth-child(2) .dash-stat-value { color: #10B981; }
.dash-stat-item:nth-child(3) .dash-stat-value { color: var(--gold); }

/* Dash Chart Bars */
.dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 120px;
  padding: 0 4px;
  margin-bottom: 20px;
}

.chart-bar {
  flex: 1;
  height: var(--height, 50%);
  background: linear-gradient(180deg, var(--blue) 0%, rgba(59, 130, 246, 0.3) 100%);
  border-radius: 4px 4px 0 0;
  position: relative;
  min-height: 12px;
  transition: height var(--transition-smooth);
  animation: chart-grow 1.5s ease-out forwards;
  transform-origin: bottom;
}

.chart-bar:nth-child(3n) {
  background: linear-gradient(180deg, var(--gold) 0%, rgba(244, 197, 66, 0.3) 100%);
}

.chart-bar:nth-child(3n-1) {
  background: linear-gradient(180deg, #10B981 0%, rgba(16, 185, 129, 0.3) 100%);
}

.chart-bar span {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  color: var(--text-muted);
  white-space: nowrap;
}

@keyframes chart-grow {
  0% { height: 0% !important; }
  100% { height: var(--height); }
}

/* Dash Insight */
.dash-insight {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(244, 197, 66, 0.08);
  border: 1px solid rgba(244, 197, 66, 0.15);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.dash-insight i {
  color: var(--gold);
  font-size: 1rem;
}

.dash-insight strong {
  color: var(--gold);
}

/* Dashboard Glow */
.dash-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.12), transparent 70%);
  pointer-events: none;
  z-index: -1;
  animation: glow-pulse 4s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.95); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

/* Floating Elements Around Dashboard */
.float-el {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  animation: float-bob 4s ease-in-out infinite;
  z-index: 3;
}

.float-el i {
  font-size: 0.9rem;
  color: var(--blue);
}

.float-el-1 {
  top: -18px;
  right: -20px;
  animation-delay: 0s;
}

.float-el-2 {
  bottom: 30px;
  left: -30px;
  animation-delay: 1s;
}

.float-el-3 {
  bottom: -18px;
  right: 10px;
  animation-delay: 2s;
}

.float-el-3 i { color: var(--gold); }

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

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.75rem;
  animation: fade-in-up 1s ease-out 1.5s both;
}

.scroll-arrow {
  animation: bounce-arrow 2s ease-in-out infinite;
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ----------------------------------------------------------------
   10. WHY CHOOSE GROWWITHRP (FEATURES)
   ---------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

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

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: var(--radius-md);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.15);
  font-size: 1.5rem;
  color: var(--blue);
  transition: all var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  background: rgba(59, 130, 246, 0.18);
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.2);
}

.feature-card:nth-child(2) .feature-icon { color: var(--gold); background: rgba(244, 197, 66, 0.08); border-color: rgba(244, 197, 66, 0.15); }
.feature-card:nth-child(2):hover .feature-icon { background: rgba(244, 197, 66, 0.15); box-shadow: 0 0 24px rgba(244, 197, 66, 0.2); }

.feature-card:nth-child(3) .feature-icon { color: #10B981; background: rgba(16, 185, 129, 0.08); border-color: rgba(16, 185, 129, 0.15); }
.feature-card:nth-child(3):hover .feature-icon { background: rgba(16, 185, 129, 0.15); box-shadow: 0 0 24px rgba(16, 185, 129, 0.2); }

.feature-card:nth-child(4) .feature-icon { color: #8B5CF6; background: rgba(139, 92, 246, 0.08); border-color: rgba(139, 92, 246, 0.15); }
.feature-card:nth-child(4):hover .feature-icon { background: rgba(139, 92, 246, 0.15); box-shadow: 0 0 24px rgba(139, 92, 246, 0.2); }

.feature-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   11. SERVICES SECTION
   ---------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  perspective: 1000px;
}

.service-card-inner {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 30px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
  height: 100%;
}

.service-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.02), transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  pointer-events: none;
}

.service-card:hover .service-card-inner {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.service-card:hover .service-card-inner::before {
  opacity: 1;
}

.service-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  transition: color var(--transition-smooth);
}

.service-card:hover .service-number {
  color: rgba(59, 130, 246, 0.08);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.15);
  font-size: 1.3rem;
  color: var(--blue);
  margin-bottom: 20px;
  transition: all var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--gradient-blue);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
  transform: scale(1.05);
}

/* Alternate icon colors per card */
.service-card:nth-child(2) .service-icon { color: #10B981; background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.15); }
.service-card:nth-child(2):hover .service-icon { background: linear-gradient(135deg, #10B981, #059669); box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3); }

.service-card:nth-child(3) .service-icon { color: var(--gold); background: rgba(244, 197, 66, 0.1); border-color: rgba(244, 197, 66, 0.15); }
.service-card:nth-child(3):hover .service-icon { background: var(--gradient-gold); color: var(--black); box-shadow: 0 8px 24px rgba(244, 197, 66, 0.3); }

.service-card:nth-child(4) .service-icon { color: #8B5CF6; background: rgba(139, 92, 246, 0.1); border-color: rgba(139, 92, 246, 0.15); }
.service-card:nth-child(4):hover .service-icon { background: linear-gradient(135deg, #8B5CF6, #7C3AED); box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3); }

.service-card:nth-child(5) .service-icon { color: #F43F5E; background: rgba(244, 63, 94, 0.1); border-color: rgba(244, 63, 94, 0.15); }
.service-card:nth-child(5):hover .service-icon { background: linear-gradient(135deg, #F43F5E, #E11D48); box-shadow: 0 8px 24px rgba(244, 63, 94, 0.3); }

.service-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.service-features li i {
  color: #10B981;
  font-size: 0.75rem;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  transition: all var(--transition-fast);
}

.service-cta i {
  font-size: 0.8rem;
  transition: transform var(--transition-fast);
}

.service-cta:hover {
  color: var(--gold);
}

.service-cta:hover i {
  transform: translateX(4px);
}

/* ----------------------------------------------------------------
   12. OUR PROCESS (TIMELINE)
   ---------------------------------------------------------------- */
.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--gold), var(--blue));
  opacity: 0.3;
}

.process-step {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black-lighter);
  border: 2px solid var(--blue);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  z-index: 2;
  transition: all var(--transition-smooth);
}

.process-step:nth-child(2) .step-number { border-color: var(--gold); color: var(--gold); }
.process-step:nth-child(3) .step-number { border-color: #10B981; color: #10B981; }
.process-step:nth-child(4) .step-number { border-color: var(--blue); color: var(--blue); }

.step-line {
  width: 2px;
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
}

.step-content {
  flex: 1;
  padding: 28px;
  transition: all var(--transition-smooth);
}

.step-content:hover {
  transform: translateX(4px);
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.15);
  font-size: 1.2rem;
  color: var(--blue);
  margin-bottom: 16px;
}

.process-step:nth-child(2) .step-icon { color: var(--gold); background: rgba(244, 197, 66, 0.1); border-color: rgba(244, 197, 66, 0.15); }
.process-step:nth-child(3) .step-icon { color: #10B981; background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.15); }
.process-step:nth-child(4) .step-icon { color: var(--blue); background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.15); }

.step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   13. STATISTICS SECTION
   ---------------------------------------------------------------- */
.stats-section {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(244, 197, 66, 0.03));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.stat-card {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

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

.stat-icon {
  font-size: 1.8rem;
  color: var(--blue);
  margin-bottom: 16px;
  display: block;
}

.stat-card:nth-child(2) .stat-icon { color: var(--gold); }
.stat-card:nth-child(3) .stat-icon { color: #10B981; }
.stat-card:nth-child(4) .stat-icon { color: #8B5CF6; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: inline;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--blue);
  display: inline;
  margin-left: 2px;
}

.stat-card:nth-child(2) .stat-plus { color: var(--gold); }
.stat-card:nth-child(3) .stat-plus { color: #10B981; }
.stat-card:nth-child(4) .stat-plus { color: #8B5CF6; }

.stat-label {
  display: block;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 10px;
}

/* ----------------------------------------------------------------
   14. TESTIMONIALS SECTION
   ---------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 32px;
  position: relative;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars i {
  color: var(--gold);
  font-size: 1rem;
}

.testimonial-quote {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  padding-left: 20px;
  border-left: 2px solid rgba(255, 255, 255, 0.08);
}

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

.author-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--avatar-bg, var(--blue));
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ----------------------------------------------------------------
   15. FAQ SECTION (CSS-Only Accordion)
   ---------------------------------------------------------------- */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.faq-checkbox {
  display: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  gap: 16px;
  user-select: none;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--white);
}

.faq-arrow {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all var(--transition-smooth);
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-smooth);
  padding: 0 24px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  padding-bottom: 20px;
}

/* Open state */
.faq-checkbox:checked ~ .faq-question {
  color: var(--gold);
}

.faq-checkbox:checked ~ .faq-question .faq-arrow {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-checkbox:checked ~ .faq-answer {
  max-height: 300px;
}

/* ----------------------------------------------------------------
   16. CTA BANNER
   ---------------------------------------------------------------- */
.cta-section {
  padding: 80px 0;
}

.cta-banner {
  position: relative;
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.08), rgba(244, 197, 66, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.cta-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(59, 130, 246, 0.06), transparent 50%),
              radial-gradient(ellipse at 70% 50%, rgba(244, 197, 66, 0.04), transparent 50%);
  pointer-events: none;
  animation: cta-glow-shift 10s ease-in-out infinite alternate;
}

@keyframes cta-glow-shift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-5%, -5%); }
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(244, 197, 66, 0.1);
  border: 1px solid rgba(244, 197, 66, 0.2);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.cta-desc strong {
  color: var(--gold);
}

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

.cta-footnote {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-footnote i {
  color: var(--gold);
}

/* ----------------------------------------------------------------
   17. FOOTER
   ---------------------------------------------------------------- */
.footer {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 30px;
  position: relative;
  z-index: 1;
}

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

/* Brand Column */
.footer-logo {
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 360px;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all var(--transition-smooth);
}

.social-link:hover {
  background: var(--gradient-blue);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

/* Footer Columns */
.footer-heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

/* Footer Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-contact li i {
  color: var(--blue);
  margin-top: 4px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.footer-contact a {
  color: var(--text-secondary);
}

.footer-contact a:hover {
  color: var(--blue);
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.copyright i {
  color: #EF4444;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--text-secondary);
}

/* ----------------------------------------------------------------
   18. ANIMATIONS
   ---------------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply entrance animations to sections */
.section {
  animation: fadeInUp 0.8s ease-out both;
}

/* ----------------------------------------------------------------
   19. RESPONSIVE DESIGN
   ---------------------------------------------------------------- */

/* Tablet & Small Desktop (≤ 1024px) */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

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

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

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

  .hero-visual {
    max-width: 520px;
    margin: 0 auto;
  }

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

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

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

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

  .float-el-1 { right: 0; }
  .float-el-2 { left: 0; }
}

/* Mobile Landscape (≤ 768px) */
@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-icon {
    display: flex;
  }

  /* Mobile menu is controlled via the checkbox hack in the main CSS */

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    font-family: var(--font-display);
  }

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

  .mobile-cta {
    font-size: 1rem;
    padding: 16px 32px;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
  }

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

  .section {
    padding: 70px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

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

  .process-timeline {
    padding-left: 30px;
  }

  .process-timeline::before {
    left: 15px;
  }

  .step-marker .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }

  .step-content {
    padding: 20px;
  }

  .cta-banner {
    padding: 40px 24px;
  }

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

  .cta-buttons .btn {
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }

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

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

  .footer-legal {
    justify-content: center;
  }

  .float-el {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }
}

/* Mobile Portrait (≤ 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 100px 0 40px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .service-card-inner {
    padding: 28px 20px 24px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .cta-banner {
    padding: 32px 20px;
    border-radius: var(--radius-lg);
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.92rem;
  }

  .faq-answer {
    padding: 0 18px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .footer {
    padding: 50px 0 24px;
  }

  .dashboard-card {
    border-radius: var(--radius-md);
  }

  .dash-body {
    padding: 16px;
  }

  .dash-chart {
    height: 80px;
  }

  .dash-stat-value {
    font-size: 1.1rem;
  }
}

/* Animation delay helpers for staggered entrance - no JS needed */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.service-card:nth-child(1) { animation-delay: 0.05s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.15s; }
.service-card:nth-child(4) { animation-delay: 0.2s; }
.service-card:nth-child(5) { animation-delay: 0.25s; }

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

/* Image optimization for reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
<<<<<<< HEAD
.logo-img{
    width: 45px;
    height: 45px;
    object-fit: contain;
    display: block;
=======
.logo{
    display:flex;
    align-items:center;
}

.logo-img{
    height:60px;
    width:auto;
>>>>>>> 6ff9008 (Updated logo)
}