﻿
:root {
  /* Brand Colors — Blue Theme */
  --primary:        #1a3fa8;
  --primary-dark:   #142e80;
  --primary-light:  #2952c8;
  --secondary:      #2563eb;
  --accent:         #3b82f6;
  --accent-dark:    #1d4ed8;
  --light:          #dbeafe;
  --light-dark:     #bfdbfe;

  /* Background Colors */
  --dark-bg:        #f8faff;
  --dark-bg-2:      #eff4ff;
  --dark-bg-3:      #e0eaff;
  --card-bg:        rgba(255, 255, 255, 0.92);

  /* Text Colors */
  --text-primary:   #0f1e4a;
  --text-secondary: #2d4070;
  --text-muted:     #6b7db3;
  --text-dark:      #0f1e4a;

  /* Gradients */
  --gradient-primary:   linear-gradient(135deg, #1a3fa8 0%, #2563eb 50%, #3b82f6 100%);
  --gradient-hero:      linear-gradient(135deg, #e8eeff 0%, #dbeafe 40%, #eff6ff 100%);
  --gradient-card:      linear-gradient(135deg, rgba(26,63,168,0.07) 0%, rgba(59,130,246,0.05) 100%);
  --gradient-btn:       linear-gradient(135deg, #1a3fa8, #2563eb, #3b82f6, #1a3fa8);
  --gradient-text:      linear-gradient(135deg, #1a3fa8, #3b82f6);
  --gradient-light:     linear-gradient(135deg, #3b82f6, #dbeafe);

  /* Glassmorphism */
  --glass-bg:       rgba(255, 255, 255, 0.80);
  --glass-border:   rgba(26, 63, 168, 0.15);
  --glass-blur:     blur(20px);

  /* Shadows */
  --shadow-sm:      0 2px 8px rgba(26, 63, 168, 0.08);
  --shadow-md:      0 8px 32px rgba(26, 63, 168, 0.12);
  --shadow-lg:      0 16px 64px rgba(26, 63, 168, 0.15);
  --shadow-primary: 0 8px 32px rgba(26, 63, 168, 0.3);
  --shadow-accent:  0 8px 32px rgba(59, 130, 246, 0.25);
  --shadow-glow:    0 0 40px rgba(26, 63, 168, 0.12);

  /* Border Radius */
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Typography */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;

  /* Transitions */
  --transition-fast:   0.15s ease;
  --transition-base:   0.3s ease;
  --transition-slow:   0.5s ease;
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-index layers */
  --z-base:    1;
  --z-raised:  10;
  --z-overlay: 100;
  --z-modal:   200;
  --z-nav:     1000;
  --z-top:     9999;
}

/* ─────────────────────────────────────────────
   2. CSS RESET & BASE STYLES
───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--dark-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ─────────────────────────────────────────────
   3. SMOOTH SCROLLING & SELECTION COLOR
───────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

::selection {
  background-color: rgba(26, 63, 168, 0.2);
  color: var(--primary-dark);
}

::-moz-selection {
  background-color: rgba(26, 63, 168, 0.2);
  color: var(--primary-dark);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #eff4ff;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* ─────────────────────────────────────────────
   4. KEYFRAME ANIMATIONS
───────────────────────────────────────────── */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(5deg);
  }
  66% {
    transform: translateY(-10px) rotate(-3deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.85;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(59, 130, 246, 0);
  }
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ─────────────────────────────────────────────
   5. UTILITY CLASSES
───────────────────────────────────────────── */
.animate-in {
  animation: fadeIn var(--transition-slow) ease forwards;
}

.fade-up {
  animation: fadeInUp 0.6s ease forwards;
}

.fade-left {
  animation: fadeInLeft 0.6s ease forwards;
}

.fade-right {
  animation: fadeInRight 0.6s ease forwards;
}

/* Scroll-reveal base state */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-left"] {
  transform: translateX(-40px);
}

[data-animate="fade-right"] {
  transform: translateX(40px);
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate].animate-in {
  opacity: 1;
  transform: translate(0, 0);
}

/* Delay helpers */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }

/* ─────────────────────────────────────────────
   GLASSMORPHISM UTILITY
───────────────────────────────────────────── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}

/* ─────────────────────────────────────────────
   SECTION CONTAINER
───────────────────────────────────────────── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ═══════════════════════════════════════════════════════════════
   6. NAVBAR
   ═══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 1.25rem 0;
  transition: background var(--transition-base), padding var(--transition-base), box-shadow var(--transition-base);
}

.navbar.scrolled {
  background: rgba(255, 252, 253, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 63, 168, 0.12);
  padding: 0.75rem 0;
  box-shadow: 0 4px 24px rgba(26, 63, 168, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--accent);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-full);
  transition: color var(--transition-base), background var(--transition-base);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(26, 63, 168, 0.08);
}

/* Nav CTA Button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.25rem;
  background: var(--gradient-btn);
  background-size: 300% 300%;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  animation: gradientShift 4s ease infinite;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

/* Hamburger Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition-base);
  flex-shrink: 0;
}

.nav-toggle:hover {
  background: rgba(26, 63, 168, 0.1);
}

.hamburger {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════════
   7. HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #e8eeff 0%, #dbeafe 50%, #eff6ff 100%);
  overflow: hidden;
  padding: 7rem 0 4rem;
}

/* Floating Background Shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(60px);
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -150px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 350px;
  height: 350px;
  background: var(--accent);
  bottom: -80px;
  left: -80px;
  animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: var(--secondary);
  top: 40%;
  left: 30%;
  animation: float 7s ease-in-out infinite 2s;
}

.shape-4 {
  width: 180px;
  height: 180px;
  background: var(--light);
  top: 20%;
  right: 35%;
  animation: float 9s ease-in-out infinite 1s;
}

.shape-5 {
  width: 120px;
  height: 120px;
  background: var(--accent);
  bottom: 25%;
  right: 15%;
  animation: float 6s ease-in-out infinite 3s;
}

/* Hero Container */
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
  width: 100%;
  position: relative;
  z-index: var(--z-base);
}

/* Hero Content (Left) */
.hero-content {
  flex: 0 0 48%;
  max-width: 48%;
  min-width: 0;
}

/* ─────────────────────────────────────────────
   HERO IMAGE COLLAGE
───────────────────────────────────────────── */
.hero-image-collage {
  position: relative;
  width: 100%;
  height: 480px;
}

/* Grid layout: 2 columns, 2 rows */
.collage-img {
  position: absolute;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.collage-img:hover img {
  transform: scale(1.04);
}

/* Large main image — left column, full height */
.collage-img--main {
  top: 0;
  left: 0;
  width: 58%;
  height: 100%;
  border-radius: var(--radius-xl);
}

/* Top-right image */
.collage-img--top {
  top: 0;
  right: 0;
  width: 39%;
  height: 47%;
  border-radius: var(--radius-xl);
}

/* Bottom-right image */
.collage-img--bottom {
  bottom: 0;
  right: 0;
  width: 39%;
  height: 47%;
  border-radius: var(--radius-xl);
}

/* Label badges on images */
.collage-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-sm);
}

/* Floating stat card — bottom-left of main image */
.collage-stat {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--primary);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 0.65rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  box-shadow: var(--shadow-primary);
  z-index: 2;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.collage-stat__number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.collage-stat__label {
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.88;
  white-space: nowrap;
}

/* Floating rating card — top of main image */
.collage-rating {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 0.55rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.collage-rating__stars {
  font-size: 0.85rem;
  color: #f59e0b;
  letter-spacing: 1px;
  line-height: 1;
}

.collage-rating__text {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ─────────────────────────────────────────────
   Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-dark);
  letter-spacing: 0.03em;
  margin-bottom: var(--space-lg);
  animation: badgePulse 2.5s ease-in-out infinite;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: dotBlink 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

/* Hero Title */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.title-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 100%;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(26, 63, 168, 0.2);
  flex-shrink: 0;
}

/* Hero Features */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  background: rgba(26, 63, 168, 0.07);
  border: 1px solid rgba(26, 63, 168, 0.18);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: background var(--transition-base), border-color var(--transition-base), color var(--transition-base);
}

.feature-pill:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.5);
  color: var(--accent-dark);
}

/* Hero Form Wrapper (Right) */
.hero-form-wrapper {
  flex: 1;
  min-width: 0;
  max-width: 580px;
}

/* ═══════════════════════════════════════════════════════════════
   8. FORM CARD
   ═══════════════════════════════════════════════════════════════ */
.form-card {
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-btn);
  background-size: 300% 300%;
  animation: gradientShift 4s ease infinite;
}

/* Form Header */
.form-header {
  margin-bottom: 0.75rem;
  text-align: center;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.form-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Form Row — 2-column grid */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

/* Form Group */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* Form Label */
.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.required {
  color: var(--secondary);
  margin-left: 2px;
}

/* Input Wrapper with Icon */
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 0.85rem;
  font-size: 0.95rem;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  transition: transform var(--transition-base);
}

/* Form Input */
.form-input {
  width: 100%;
  padding: 0.7rem 0.85rem 0.7rem 2.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(26, 63, 168, 0.2);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.875rem;
  font-family: var(--font-body);
  transition: border-color var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.form-input:hover {
  border-color: rgba(26, 63, 168, 0.4);
  background: #ffffff;
}

.form-input:focus {
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18), 0 4px 16px rgba(59, 130, 246, 0.1);
}

.form-input:focus + .input-icon,
.input-wrapper:focus-within .input-icon {
  transform: scale(1.1);
}

.form-input.error {
  border-color: #e05c6e;
  background: rgba(224, 92, 110, 0.08);
  box-shadow: 0 0 0 3px rgba(224, 92, 110, 0.15);
}

/* Select Wrapper */
.select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.select-icon {
  position: absolute;
  left: 0.85rem;
  font-size: 0.95rem;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}

.select-wrapper::after {
  content: '▾';
  position: absolute;
  right: 0.85rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  pointer-events: none;
}

/* Form Select */
.form-select {
  width: 100%;
  padding: 0.7rem 2.2rem 0.7rem 2.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(26, 63, 168, 0.2);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.875rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: border-color var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-select option {
  background: #ffffff;
  color: var(--text-primary);
}

.form-select:hover {
  border-color: rgba(26, 63, 168, 0.4);
  background: #ffffff;
}

.form-select:focus {
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}

.form-select.error {
  border-color: #e05c6e;
  box-shadow: 0 0 0 3px rgba(224, 92, 110, 0.15);
}

/* Radio List — horizontal one-line row */
.radio-list {
  display: flex;
  flex-direction: row;
  gap: 0.4rem;
}

.radio-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0.4rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(26, 63, 168, 0.15);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
  user-select: none;
  white-space: nowrap;
}

.radio-item:hover {
  background: #ffffff;
  border-color: rgba(26, 63, 168, 0.35);
  box-shadow: var(--shadow-sm);
}

/* Hide native radio */
.radio-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Custom radio dot */
.radio-dot {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(26, 63, 168, 0.35);
  background: #ffffff;
  position: relative;
  transition: border-color var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
}

.radio-dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--primary);
  transform: scale(0);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Checked state */
.radio-item input[type="radio"]:checked ~ .radio-dot {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 63, 168, 0.15);
}

.radio-item input[type="radio"]:checked ~ .radio-dot::after {
  transform: scale(1);
}

.radio-item:has(input[type="radio"]:checked) {
  background: rgba(26, 63, 168, 0.06);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 63, 168, 0.1);
}

/* Icon */
.radio-icon-sm {
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

/* Label text */
.radio-label-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition-base);
  line-height: 1.2;
}

.radio-item:has(input[type="radio"]:checked) .radio-label-text {
  color: var(--primary);
}

/* Focus-visible ring */
.radio-item input[type="radio"]:focus-visible ~ .radio-dot {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Field Error */
.field-error {
  font-size: 0.75rem;
  color: #e05c6e;
  font-weight: 500;
  min-height: 1rem;
  display: block;
  animation: slideIn 0.2s ease;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.5rem;
  background: var(--gradient-btn);
  background-size: 300% 300%;
  border: none;
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base), opacity var(--transition-base);
  animation: gradientShift 4s ease infinite;
  margin-top: var(--space-sm);
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background var(--transition-base);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary), 0 12px 40px rgba(26, 63, 168, 0.5);
}

.btn-submit:hover::before {
  background: rgba(255, 255, 255, 0.08);
}

.btn-submit:active {
  transform: translateY(-1px);
}

.btn-submit:disabled,
.btn-submit.loading {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
  pointer-events: none;
}

.btn-text {
  transition: opacity var(--transition-fast);
}

.btn-icon {
  font-size: 1.1rem;
  transition: transform var(--transition-base);
}

.btn-submit:hover .btn-icon {
  transform: translateX(4px);
}

/* Spinner */
.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

.btn-submit.loading .btn-spinner {
  display: block;
}

.btn-submit.loading .btn-text {
  opacity: 0.7;
}

.btn-submit.loading .btn-icon {
  display: none;
}

/* ─────────────────────────────────────────────
   9. SUCCESS & ERROR MESSAGE OVERLAYS
───────────────────────────────────────────── */
.form-message {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-md);
  padding: var(--space-2xl) var(--space-xl);
  border-radius: var(--radius-lg);
  position: absolute;
  inset: 0;
  z-index: var(--z-overlay);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeIn 0.4s ease;
}

.form-message[aria-hidden="false"] {
  display: flex;
}

.success-message {
  background: rgba(255, 252, 253, 0.97);
  border: 1px solid rgba(59, 130, 246, 0.5);
}

.error-message {
  background: rgba(255, 252, 253, 0.97);
  border: 1px solid rgba(224, 92, 110, 0.4);
}

.message-icon {
  font-size: 3rem;
  line-height: 1;
  animation: pulse 1.5s ease-in-out infinite;
}

.success-message h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--accent-dark);
}

.error-message h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #c0394d;
}

.form-message p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 320px;
}

/* ═══════════════════════════════════════════════════════════════
   SHARED SECTION HEADER STYLES
   ═══════════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(26, 63, 168, 0.1);
  border: 1px solid rgba(26, 63, 168, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   10. WHY CHOOSE US SECTION
   ═══════════════════════════════════════════════════════════════ */
.why-us {
  padding: var(--space-4xl) 0;
  background: #ffffff;
  position: relative;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 63, 168, 0.15), transparent);
}

/* Cards Grid — 4 cards in one row */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

/* Feature Card */
.feature-card {
  position: relative;
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  cursor: default;
  background: #ffffff;
  border: 1px solid rgba(26, 63, 168, 0.1);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-card);
  opacity: 0;
  transition: opacity var(--transition-base);
  border-radius: inherit;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.feature-card:hover::before {
  opacity: 1;
}

/* Card Icon Wrap */
.card-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(26, 63, 168, 0.12), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(26, 63, 168, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: transform var(--transition-bounce), box-shadow var(--transition-base);
  position: relative;
  z-index: 1;
}

.feature-card:hover .card-icon-wrap {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 8px 24px rgba(26, 63, 168, 0.35);
}

.card-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.card-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Card Accent — bottom border highlight */
.card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.feature-card:hover .card-accent {
  transform: scaleX(1);
}

/* ═══════════════════════════════════════════════════════════════
   11. PROCESS SECTION
   ═══════════════════════════════════════════════════════════════ */
.process {
  padding: var(--space-4xl) 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 63, 168, 0.15), transparent);
}

/* Process Steps — flex row */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

/* Process Step */
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 var(--space-md);
}

/* Step Number — large gradient text */
.step-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
  margin-bottom: var(--space-md);
  transition: opacity var(--transition-base);
}

.process-step:hover .step-number {
  opacity: 0.6;
}

/* Step Content */
.step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

/* Step Icon */
.step-icon {
  width: 64px;
  height: 64px;
  background: #ffffff;
  border: 1.5px solid rgba(26, 63, 168, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-bounce), box-shadow var(--transition-base), background var(--transition-base);
  margin-bottom: var(--space-sm);
}

.process-step:hover .step-icon {
  transform: scale(1.12);
  box-shadow: var(--shadow-primary);
  background: rgba(26, 63, 168, 0.06);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 200px;
}

/* Step Connector Line */
.step-connector {
  position: absolute;
  top: 2rem;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(26, 63, 168, 0.5), rgba(59, 130, 246, 0.5));
  z-index: 0;
}

.process-step:last-child .step-connector {
  display: none;
}



/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

/* Prev / Next Buttons */
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid rgba(26, 63, 168, 0.2);
  color: var(--primary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-base), border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-sm);
  line-height: 1;
}

.slider-btn:hover {
  background: rgba(26, 63, 168, 0.08);
  border-color: var(--primary);
  transform: scale(1.08);
  box-shadow: var(--shadow-primary);
}

.slider-btn:active {
  transform: scale(0.96);
}

.slider-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(26, 63, 168, 0.2);
  border: none;
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-base), width var(--transition-base);
  padding: 0;
}

.slider-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: var(--radius-full);
  transform: none;
}

.slider-dot:hover:not(.active) {
  background: rgba(26, 63, 168, 0.5);
  transform: scale(1.2);
}

/* ═══════════════════════════════════════════════════════════════
   13. SITE FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: #ffffff;
  border-top: 1px solid rgba(26, 63, 168, 0.12);
}

/* Footer Bottom */
.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-link:hover {
  color: var(--primary);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   14. SCROLL-TO-TOP BUTTON
   ═══════════════════════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: var(--z-top);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-btn);
  background-size: 300% 300%;
  border: none;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  animation: gradientShift 4s ease infinite;
  box-shadow: var(--shadow-primary);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-primary), 0 12px 32px rgba(26, 63, 168, 0.5);
}

.scroll-top:active {
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   15. RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════════════ */

/* ── 1200px — Large desktops ── */
@media (max-width: 1200px) {
  .hero-container {
    gap: var(--space-2xl);
  }

  .hero-content {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .hero-form-wrapper {
    flex: 1;
    max-width: 520px;
  }

  .hero-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
  }

  .testimonial-card {
    flex: 0 0 calc(50% - var(--space-sm));
  }
}

/* ── 992px — Tablets landscape / small desktops ── */
@media (max-width: 992px) {
  .hero {
    min-height: unset;
    padding: 6rem 0 3rem;
  }

  .hero-container {
    flex-direction: column;
    gap: var(--space-xl);
    align-items: stretch;
  }

  .hero-content {
    flex: none;
    max-width: 100%;
    text-align: center;
  }

  /* Collage on tablet — shorter height, 3-col layout */
  .hero-image-collage {
    height: 320px;
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-form-wrapper {
    flex: none;
    max-width: 580px;
    width: 100%;
    margin: 0 auto;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    flex-wrap: wrap;
    gap: var(--space-2xl);
  }

  .process-step {
    flex: 0 0 calc(50% - var(--space-lg));
  }

  .step-connector {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - var(--space-sm));
  }

  .nav-menu {
    gap: var(--space-xs);
  }

  .nav-link {
    font-size: 0.85rem;
    padding: 0.35rem 0.6rem;
  }
}

/* ── 768px — Tablets portrait ── */
@media (max-width: 768px) {
  /* Hide entire left collage on mobile — show form only */
  .hero-content,
  .hero-features,
  .hero-badge {
    display: none;
  }
  
  .field-error {
    font-size: 0.75rem;
    color: #e05c6e;
    font-weight: 500;
    /* min-height: 1rem; */
    display: block;
    animation: slideIn 0.2s ease;
}

  /* Navbar — hamburger menu */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 252, 253, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(26, 63, 168, 0.12);
    padding: 1rem var(--space-xl) var(--space-xl);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    z-index: calc(var(--z-nav) - 1);
    overflow-y: auto;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-menu li {
    border-bottom: 1px solid rgba(26, 63, 168, 0.08);
  }
  .form-row {
  display: grid;
  /*grid-template-columns: 1fr 1fr;*/
  /* gap: 0.6rem; */
}

  .nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    border-radius: 0;
    background: none;
    color: var(--text-primary);
  }

  .nav-link:hover {
    background: none;
    color: var(--primary);
  }

  .nav-cta {
    display: block;
    text-align: center;
    margin-top: var(--space-lg);
    padding: 0.85rem 1.5rem;
  }

  /* Hero */
  .hero {
    min-height: unset;
    padding: 5.5rem 0 2.5rem;
  }

  .hero-container {
    gap: var(--space-lg);
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .hero-stats {
    gap: var(--space-md);
  }

  .stat-number {
    font-size: 1.5rem;
  }

 

  /* Why Us */
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    margin: 0;
  }

  /* Process */
  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: var(--space-2xl);
  }

  .process-step {
    flex: none;
    width: 100%;
    max-width: 360px;
  }

  .step-connector {
    display: none;
  }

  /* Testimonials */
  .testimonial-card {
    flex: 0 0 calc(100% - 0px);
  }

  /* Footer */
  .footer-links {
    gap: var(--space-md);
  }

  /* Scroll top */
  .scroll-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}

/* ── 576px — Large phones ── */
@media (max-width: 576px) {
  .section-container {
    padding: 0 var(--space-lg);
  }

  .hero-container {
    padding: 0 var(--space-lg);
    gap: var(--space-md);
  }

  .nav-container {
    padding: 0 var(--space-lg);
  }

  .hero {
    min-height: unset;
    padding: 5rem 0 2rem;
  }

  .hero-form-wrapper {
    max-width: 100%;
    width: 100%;
  }

  .hero-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .radio-list {
    flex-direction: column;
  }

  .radio-item {
    justify-content: flex-start;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
  }

  .feature-pill {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .form-card {
    padding: 1rem 1rem;
    border-radius: var(--radius-lg);
  }

  .section-header {
    margin-bottom: var(--space-2xl);
  }

  .why-us,
  .process,
  .testimonials {
    padding: var(--space-3xl) 0;
  }

  .slider-controls {
    gap: var(--space-md);
  }

  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }
}

/* ── 480px — Small phones ── */
@media (max-width: 480px) {
  :root {
    --space-xl: 1.25rem;
    --space-2xl: 2rem;
    --space-3xl: 2.5rem;
    --space-4xl: 3.5rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 0.35rem 0.8rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .form-title {
    font-size: 1.25rem;
  }

  .form-subtitle {
    font-size: 0.8rem;
  }

  .form-input,
  .form-select {
    font-size: 0.85rem;
    padding: 0.65rem 0.75rem 0.65rem 2.3rem;
  }

  .btn-submit {
    font-size: 0.9rem;
    padding: 0.8rem 1.25rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .section-subtitle {
    font-size: 0.875rem;
  }

  .feature-card {
    padding: var(--space-lg);
  }

  .card-icon-wrap {
    width: 52px;
    height: 52px;
  }

  .card-icon {
    font-size: 1.3rem;
  }

  .step-icon {
    width: 54px;
    height: 54px;
    font-size: 1.3rem;
  }

  .step-number {
    font-size: 3rem;
  }

  .testimonial-card {
    padding: var(--space-lg);
  }

  .testimonial-text {
    font-size: 0.85rem;
  }

  .footer-links {
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
  }

  .footer-copy {
    font-size: 0.75rem;
  }

  .nav-logo .logo-text {
    font-size: 1.15rem;
  }
}

/* ── Focus-visible accessibility ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }

  .scroll-top {
    transition: none;
  }
}


