/* ================================================================
   Smart Nibble – Main Stylesheet
   Version : 1.0
   ================================================================ */

/* ── 1. CSS Custom Properties ──────────────────────────────── */
:root {
  /* Brand Colors */
  --primary:        #2563eb;
  --primary-dark:   #1d4ed8;
  --primary-light:  #3b82f6;
  --secondary:      #0891b2;
  --secondary-light:#06b6d4;
  --accent:         #7c3aed;

  /* Dark Palette */
  --dark:           #0f172a;
  --dark-2:         #1e293b;
  --dark-3:         #334155;
  --dark-4:         #475569;

  /* Light Palette */
  --light:          #f8fafc;
  --light-2:        #f1f5f9;
  --light-3:        #e2e8f0;
  --light-4:        #cbd5e1;

  /* Text */
  --text-primary:   #0f172a;
  --text-secondary: #475569;
  --text-muted:     #94a3b8;
  --text-white:     #ffffff;

  /* Status */
  --success:        #10b981;
  --success-bg:     #d1fae5;
  --success-border: #6ee7b7;
  --error:          #ef4444;
  --error-bg:       #fee2e2;
  --error-border:   #fca5a5;
  --warning:        #f59e0b;
  --warning-bg:     #fef3c7;
  --info:           #3b82f6;
  --info-bg:        #eff6ff;

  /* Gradients */
  --gradient-hero:  linear-gradient(135deg, #0f172a 0%, #1e3a5f 55%, #0c1628 100%);
  --gradient-blue:  linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
  --gradient-dark:  linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  --gradient-card:  linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:  0 2px 4px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:     0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-md:  0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  --shadow-lg:  0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
  --shadow-xl:  0 25px 50px -12px rgba(0,0,0,.25);
  --shadow-blue:0 8px 30px rgba(37,99,235,.25);
  --shadow-card:0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.06);

  /* Border Radius */
  --radius-xs:  4px;
  --radius-sm:  8px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full:9999px;

  /* Typography */
  --font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions */
  --ease:       cubic-bezier(.4,0,.2,1);
  --transition: .3s var(--ease);
  --t-fast:     .15s var(--ease);
  --t-slow:     .5s var(--ease);

  /* Layout */
  --container:  1200px;
  --nav-height: 72px;
}

/* ── 2. Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--text-primary);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--primary); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, textarea, select { font-family: var(--font); }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

/* Skip link for screen readers */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: .5rem 1rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 10000;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 1rem; }

/* ── 3. Layout / Container ───────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding { padding: 96px 0; }
.section-padding-sm { padding: 64px 0; }

/* ── 4. Typography ───────────────────────────────────────── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem 1rem;
  background: var(--info-bg);
  color: var(--primary);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-full);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-title .gradient-text {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-subtitle { margin: 0 auto; }

/* ── 5. Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,99,235,.35);
  color: #fff;
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: #fff;
  color: var(--primary);
  border-color: var(--light-3);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--primary);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--light-3);
}
.btn-ghost:hover {
  background: var(--light-2);
  color: var(--text-primary);
  border-color: var(--light-4);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
  color: #fff;
  transform: translateY(-2px);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1.0625rem; }
.btn-sm { padding: .5rem 1.25rem; font-size: .875rem; }

/* ── 6. Navigation ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar {
  background: transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--light-3), var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  height: var(--nav-height);
  gap: 2rem;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  transition: opacity var(--t-fast);
}
.brand-logo:hover { opacity: .85; }
.navbar.scrolled .brand-logo {
  box-shadow: none;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}

.nav-link {
  padding: .5rem .875rem;
  font-size: .9375rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-radius: var(--radius-sm);
  transition: var(--t-fast);
  text-decoration: none;
}
.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255,255,255,.12);
}
.navbar.scrolled .nav-link { color: var(--text-secondary); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--primary);
  background: var(--info-bg);
}

/* Desktop CTA */
.nav-cta {
  flex-shrink: 0;
  padding: .5625rem 1.25rem;
  font-size: .9rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  margin-left: auto;
}
.hamburger .bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger .bar { background: var(--dark); }
.hamburger.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--light-3);
  padding: 1rem 0 1.5rem;
  box-shadow: var(--shadow-lg);
}
.mobile-menu[hidden] { display: none; }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: 0 1.5rem;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .875rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--t-fast);
  text-decoration: none;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary);
  background: var(--info-bg);
}
.mobile-nav-link i { width: 20px; text-align: center; color: var(--text-muted); }
.mobile-nav-link.mobile-cta {
  margin-top: .5rem;
  background: var(--gradient-blue);
  color: #fff;
  justify-content: center;
  font-weight: 600;
}
.mobile-nav-link.mobile-cta i { color: rgba(255,255,255,.8); }
.mobile-nav-link.mobile-cta:hover { color: #fff; opacity: .9; }

/* ── 7. Hero Section ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 60px) 0 80px;
  overflow: visible;
}

/* Animated background shapes */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(37,99,235,.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(8,145,178,.14) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.125rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,.9);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}
.hero-title .highlight {
  background: linear-gradient(135deg, #60a5fa, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  font-weight: 500;
}
.hero-trust-item i { color: #4ade80; font-size: 1rem; }

/* Hero Visual (right column) */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.hero-main-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.hero-card-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  flex-shrink: 0;
}

.hero-card-title { color: #fff; font-weight: 700; font-size: 1rem; }
.hero-card-subtitle { color: rgba(255,255,255,.55); font-size: .8125rem; }

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-stat {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  padding: .875rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,.08);
}
.hero-stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  display: block;
}
.hero-stat-lbl {
  font-size: .7rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.hero-status-list { display: flex; flex-direction: column; gap: .625rem; }
.hero-status-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-sm);
  padding: .625rem .875rem;
}
.hero-status-label { color: rgba(255,255,255,.7); font-size: .875rem; }
.hero-status-badge {
  font-size: .75rem;
  font-weight: 600;
  padding: .25rem .625rem;
  border-radius: var(--radius-full);
}
.badge-green  { background: rgba(74,222,128,.2); color: #4ade80; }
.badge-yellow { background: rgba(250,204,21,.2);  color: #fde047; }
.badge-blue   { background: rgba(96,165,250,.2);  color: #60a5fa; }

/* Floating accent cards */
.hero-float-1,
.hero-float-2 {
  position: absolute;
  z-index: 10;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: .875rem 1.125rem;
  display: flex;
  align-items: center;
  gap: .625rem;
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  animation: float 5s ease-in-out infinite;
  white-space: nowrap;
}
/* positioned relative to .hero-card-stack (position:relative) */
.hero-float-1 { top: -1.5rem;    right: -1.5rem;   animation-delay: 0s; }
.hero-float-2 { bottom: -1.5rem; left:  -1.5rem;   animation-delay: 2s; }
.hero-float-1 i, .hero-float-2 i { font-size: 1.25rem; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Scroll-down indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .375rem;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  cursor: pointer;
  animation: bounce-down 2.5s infinite;
}
.hero-scroll-hint i { font-size: 1.1rem; }

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── 8. Stats Bar ─────────────────────────────────────────── */
.stats-bar {
  background: var(--dark-2);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {}
.stat-number {
  font-size: 2.25rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
  display: block;
}
.stat-number .stat-suffix { color: var(--secondary-light); }
.stat-label {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  margin-top: .25rem;
}

/* ── 9. Features / Services Section ─────────────────────── */
.features { background: var(--light); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--light-3);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.feature-card:hover .feature-icon { transform: scale(1.08); }

.icon-blue    { background: #eff6ff; color: var(--primary); }
.icon-cyan    { background: #ecfeff; color: var(--secondary); }
.icon-green   { background: #f0fdf4; color: #16a34a; }
.icon-purple  { background: #f5f3ff; color: var(--accent); }
.icon-orange  { background: #fff7ed; color: #ea580c; }
.icon-teal    { background: #f0fdfa; color: #0d9488; }

.feature-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .5rem;
}
.feature-desc {
  font-size: .9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── 10. Why Choose Us ───────────────────────────────────── */
.why-us {
  background: var(--gradient-hero);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 80% 40%, rgba(37,99,235,.2) 0%, transparent 70%);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why-us-title { color: #fff; }
.why-us-subtitle { color: rgba(255,255,255,.7); }

.why-us-list { display: flex; flex-direction: column; gap: 1.125rem; margin-top: 2rem; }

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  transition: var(--transition);
}
.why-item:hover {
  background: rgba(255,255,255,.1);
  transform: translateX(4px);
}
.why-item-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--shadow-blue);
}
.why-item-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: .25rem;
  font-size: .9375rem;
}
.why-item-desc { color: rgba(255,255,255,.6); font-size: .875rem; line-height: 1.55; }

/* Right panel */
.why-us-visual { display: flex; flex-direction: column; gap: 1.5rem; }

.trust-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.trust-card-title { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 1rem; }

.trust-bar-item { margin-bottom: .875rem; }
.trust-bar-item:last-child { margin-bottom: 0; }
.trust-bar-label {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.7);
  font-size: .8125rem;
  margin-bottom: .375rem;
}
.trust-bar-track {
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-full);
  height: 6px;
  overflow: hidden;
}
.trust-bar-fill {
  height: 100%;
  background: var(--gradient-blue);
  border-radius: var(--radius-full);
  transition: width 1.2s var(--ease);
}

/* ── 11. How It Works ────────────────────────────────────── */
.how-it-works { background: #fff; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

/* Connecting line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 0;
  opacity: .25;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--t-slow);
}
.step-card.visible { opacity: 1; transform: translateY(0); }

.step-number {
  width: 56px;
  height: 56px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-blue);
  position: relative;
  z-index: 1;
}

.step-icon-ring {
  width: 80px;
  height: 80px;
  background: var(--light);
  border: 2px solid var(--light-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  color: var(--primary);
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}
.step-card:hover .step-icon-ring {
  background: var(--gradient-blue);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-blue);
  transform: scale(1.08);
}

.step-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .5rem;
}
.step-desc { font-size: .9rem; color: var(--text-secondary); line-height: 1.6; }

/* ── 12. Testimonials ────────────────────────────────────── */
.testimonials { background: var(--light); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--light-3);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(24px);
}
.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.stars { display: flex; gap: .25rem; color: #f59e0b; margin-bottom: 1rem; font-size: 1rem; }

.testimonial-text {
  color: var(--text-secondary);
  font-size: .9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-text::before { content: '\201C'; color: var(--primary); font-size: 1.5rem; line-height: 0; vertical-align: -.25em; margin-right: .25rem; font-style: normal; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .875rem;
  border-top: 1px solid var(--light-3);
  padding-top: 1rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9375rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.author-name  { font-weight: 700; font-size: .9375rem; color: var(--text-primary); }
.author-title { font-size: .8125rem; color: var(--text-muted); }

/* ── 13. FAQ ─────────────────────────────────────────────── */
.faq { background: #fff; }

.faq-container { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--light-3);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: #bfdbfe; box-shadow: 0 0 0 3px rgba(37,99,235,.06); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text-primary);
  background: #fff;
  cursor: pointer;
  transition: var(--t-fast);
  gap: 1rem;
}
.faq-question:hover { background: var(--light); }
.faq-item.open .faq-question { color: var(--primary); background: var(--info-bg); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease);
}
.faq-answer-inner {
  padding-bottom: 1.25rem;
  font-size: .9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 1.5rem; }

/* ── 14. CTA Banner ──────────────────────────────────────── */
.cta-banner {
  background: var(--gradient-blue);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner > * { position: relative; }
.cta-title { font-size: clamp(1.875rem, 4vw, 2.75rem); font-weight: 900; color: #fff; margin-bottom: 1rem; }
.cta-subtitle { font-size: 1.125rem; color: rgba(255,255,255,.8); margin-bottom: 2.5rem; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── 15. Contact Section (homepage) ─────────────────────── */
.contact-section { background: var(--light); }

.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-quick-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--light-3);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.contact-quick-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.contact-quick-icon {
  width: 64px;
  height: 64px;
  background: var(--info-bg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 auto 1rem;
}
.contact-quick-title { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.contact-quick-value { color: var(--text-secondary); font-size: .9375rem; }
.contact-quick-value a { color: var(--primary); font-weight: 500; }

/* ── 16. Site Footer ─────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.7); }

.footer-top { padding: 72px 0 56px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}
.footer-brand-link:hover .footer-brand-logo { opacity: .85; }
.footer-brand-link:hover .brand-name { color: var(--light-4); }

.footer-tagline {
  color: rgba(255,255,255,.5);
  font-size: .9375rem;
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: .625rem;
  color: rgba(255,255,255,.5);
  font-size: .875rem;
  text-decoration: none;
  transition: var(--t-fast);
}
.footer-contact-link:hover { color: rgba(255,255,255,.9); }
.footer-contact-link i { width: 16px; text-align: center; color: var(--secondary-light); }

.footer-col-title {
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.footer-links a {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  text-decoration: none;
  transition: var(--t-fast);
}
.footer-links a:hover { color: #fff; padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: .875rem; color: rgba(255,255,255,.4); }
.footer-copy strong { color: rgba(255,255,255,.6); }

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: var(--t-fast);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.8); }

/* ── 17. Forms ───────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: .5rem;
}
.form-label .required { color: var(--error); margin-left: .25rem; }

.form-control {
  display: block;
  width: 100%;
  padding: .75rem 1rem;
  font-size: .9375rem;
  color: var(--text-primary);
  background: #fff;
  border: 1.5px solid var(--light-3);
  border-radius: var(--radius-sm);
  transition: var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}
.form-control:hover { border-color: var(--light-4); }
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-control.error-field { border-color: var(--error); }
.form-control.error-field:focus { box-shadow: 0 0 0 3px rgba(239,68,68,.12); }
.form-control.success-field { border-color: var(--success); }

textarea.form-control { resize: vertical; min-height: 130px; }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .875rem center;
  padding-right: 2.5rem;
}

.field-error {
  display: block;
  margin-top: .375rem;
  font-size: .8125rem;
  color: var(--error);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.form-checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: .125rem;
  accent-color: var(--primary);
  cursor: pointer;
}
.form-checkbox-label {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.form-checkbox-label a { font-weight: 500; }

/* Honeypot (visually hidden anti-spam) */
.hp-field { opacity: 0; position: absolute; top: 0; left: 0; height: 0; width: 0; z-index: -1; }

/* Alert Messages */
.alert {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  border: 1px solid transparent;
}
.alert i { font-size: 1.125rem; margin-top: .125rem; flex-shrink: 0; }
.alert-success { background: var(--success-bg); border-color: var(--success-border); color: #065f46; }
.alert-success i { color: var(--success); }
.alert-error   { background: var(--error-bg);   border-color: var(--error-border);   color: #991b1b; }
.alert-error   i { color: var(--error); }
.alert-info    { background: var(--info-bg);    border-color: #bfdbfe;              color: #1e40af; }
.alert-info    i { color: var(--primary); }
.alert-warning { background: var(--warning-bg); border-color: #fde68a;              color: #92400e; }
.alert-warning i { color: var(--warning); }

/* ── 18. Page Hero (inner pages) ─────────────────────────── */
.page-hero {
  background: var(--gradient-hero);
  padding: calc(var(--nav-height) + 64px) 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(37,99,235,.2) 0%, transparent 70%);
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero-title    { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #fff; margin-bottom: .875rem; }
.page-hero-subtitle { font-size: 1.0625rem; color: rgba(255,255,255,.7); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
  font-size: .875rem;
}
.breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.4); }
.breadcrumb .current { color: rgba(255,255,255,.85); font-weight: 500; }

/* ── 19. Legal Pages ─────────────────────────────────────── */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 0 80px;
}

.legal-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--light-3);
  flex-wrap: wrap;
}
.legal-meta-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--text-muted);
}
.legal-meta-item i { color: var(--primary); }

.legal-body { font-size: .9375rem; line-height: 1.8; color: var(--text-secondary); }
.legal-body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
}
.legal-body h3 { font-size: 1.0625rem; font-weight: 700; color: var(--text-primary); margin: 1.75rem 0 .75rem; }
.legal-body p  { margin-bottom: 1rem; }
.legal-body ul, .legal-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-body li { margin-bottom: .5rem; }
.legal-body ul li { list-style: disc; }
.legal-body ol li { list-style: decimal; }
.legal-body strong { color: var(--text-primary); font-weight: 600; }
.legal-body a { font-weight: 500; }

.legal-toc {
  background: var(--light);
  border: 1px solid var(--light-3);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}
.legal-toc-title { font-weight: 700; font-size: .9375rem; margin-bottom: .875rem; color: var(--text-primary); }
.legal-toc ol { padding-left: 1.25rem; margin: 0; }
.legal-toc li { list-style: decimal; margin-bottom: .375rem; }
.legal-toc a { font-size: .875rem; color: var(--primary); font-weight: 500; }
.legal-toc a:hover { text-decoration: underline; }

.legal-highlight {
  background: var(--info-bg);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: .9375rem;
}

/* ── 20. About Page ──────────────────────────────────────── */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--light-3);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-title { font-weight: 700; margin-bottom: .5rem; font-size: 1rem; }
.value-desc  { color: var(--text-secondary); font-size: .9rem; line-height: 1.6; }

/* ── 21. Contact Page ────────────────────────────────────── */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: rgba(255,255,255,.75);
}
.contact-info-card h3 { color: #fff; font-size: 1.375rem; font-weight: 800; margin-bottom: .5rem; }
.contact-info-card p  { font-size: .9375rem; margin-bottom: 2rem; line-height: 1.65; }

.contact-info-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding: .875rem 1rem;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1);
}
.contact-info-item i { color: var(--secondary-light); font-size: 1.125rem; margin-top: .125rem; flex-shrink: 0; }
.contact-info-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.5); margin-bottom: .25rem; }
.contact-info-value { color: rgba(255,255,255,.9); font-size: .9375rem; font-weight: 500; }
.contact-info-value a { color: rgba(255,255,255,.9); }

.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--light-3);
  box-shadow: var(--shadow-card);
}
.form-card-title { font-size: 1.375rem; font-weight: 800; margin-bottom: .375rem; }
.form-card-sub   { color: var(--text-secondary); font-size: .9375rem; margin-bottom: 1.75rem; }

/* ── 22. Support Page ────────────────────────────────────── */
.support-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 3rem;
  align-items: start;
}

.support-info-sidebar { position: sticky; top: calc(var(--nav-height) + 24px); }

.sidebar-card {
  background: #fff;
  border: 1px solid var(--light-3);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.5rem;
}
.sidebar-card-title { font-weight: 700; font-size: 1rem; margin-bottom: 1rem; }

.support-step-list { display: flex; flex-direction: column; gap: .75rem; }
.support-step-item { display: flex; align-items: center; gap: .75rem; }
.support-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-blue);
  color: #fff;
  font-size: .8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.support-step-text { font-size: .9rem; color: var(--text-secondary); }

.security-badges { display: flex; flex-direction: column; gap: .625rem; }
.security-badge {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .875rem;
  color: var(--text-secondary);
}
.security-badge i { color: var(--success); font-size: 1rem; }

/* ── 23. Cookie Consent ──────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  z-index: 9999;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  animation: slide-up .4s var(--ease);
}
.cookie-banner[hidden] { display: none; }

@keyframes slide-up {
  from { transform: translateY(100px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
}
.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  flex: 1;
}
.cookie-text i { color: #f59e0b; font-size: 1.375rem; flex-shrink: 0; margin-top: .125rem; }
.cookie-text p { font-size: .9rem; color: rgba(255,255,255,.75); line-height: 1.6; }
.cookie-text a { color: var(--secondary-light); font-weight: 500; }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; }

/* ── 24. Back to Top ─────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--gradient-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-blue);
  z-index: 998;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.back-to-top:not([hidden]) { opacity: 1; transform: translateY(0); }
.back-to-top[hidden] { display: none; }
.back-to-top:hover { transform: translateY(-3px) scale(1.05); }

/* ── 25. Scroll Animations ───────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }
.fade-up:nth-child(6) { transition-delay: .5s; }

/* ── 26. Loading Spinner ─────────────────────────────────── */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── 27. Utilities ───────────────────────────────────────── */
.text-center  { text-align: center; }
.text-white   { color: #fff; }
.text-primary { color: var(--text-primary); }
.text-muted   { color: var(--text-muted); }
.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* ── 28. Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .testimonials-grid  { grid-template-columns: 1fr 1fr; }
  .steps-grid         { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .hero-grid          { grid-template-columns: 1fr; }
  .hero-visual        { display: none; }
  .hero               { min-height: auto; padding-top: calc(var(--nav-height) + 80px); }
  .why-us-grid        { grid-template-columns: 1fr; gap: 3rem; }
  .about-intro-grid   { grid-template-columns: 1fr; }
  .about-values-grid  { grid-template-columns: 1fr 1fr; }
  .contact-page-grid  { grid-template-columns: 1fr; }
  .support-page-grid  { grid-template-columns: 1fr; }
  .support-info-sidebar { position: static; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .section-padding    { padding: 64px 0; }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .features-grid      { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .steps-grid         { grid-template-columns: 1fr 1fr; }
  .hero-actions       { flex-direction: column; align-items: flex-start; }
  .contact-quick-grid { grid-template-columns: 1fr; }
  .form-grid-2        { grid-template-columns: 1fr; }
  .about-values-grid  { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner{ flex-direction: column; text-align: center; }
  .cookie-banner-inner{ flex-direction: column; }
  .cookie-actions     { width: 100%; }
  .cookie-actions .btn{ flex: 1; justify-content: center; }
  .legal-meta         { flex-direction: column; gap: .75rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: .75rem; }
  .cta-actions{ flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; }
  .form-card, .contact-info-card { padding: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
