/* ============================================================
   ONE STOP REPAIR SERVICE INC. — MAIN STYLESHEET
   style.css | Production Ready
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES (:root)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;1,700;1,800&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&display=swap');

:root {
  /* Primary Blues */
  --blue-brand:    #1A7BC4;
  --blue-deep:     #0F5A96;
  --blue-navy:     #0D2B4E;
  --blue-light:    #3D9DD4;
  --blue-pale:     #D6ECFA;
  --blue-glow:     rgba(26, 123, 196, 0.15);

  /* Neutrals */
  --white:         #FFFFFF;
  --off-white:     #F8FAFC;
  --surface:       #EEF5FB;
  --gray-100:      #F1F5F9;
  --gray-200:      #E2E8F0;
  --gray-400:      #94A3B8;
  --gray-600:      #475569;
  --gray-800:      #1E293B;

  /* Dark Backgrounds */
  --dark-navy:     #071829;
  --dark-blue:     #0A2540;

  /* Accent */
  --accent-white:  #FFFFFF;
  --accent-light:  #E8F4FD;

  /* Typography */
  --font-heading:  'Montserrat', sans-serif;
  --font-body:     'Source Sans 3', sans-serif;

  /* Spacing */
  --sp-1: 4px;   --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 24px;  --sp-6: 32px;  --sp-8: 48px;  --sp-10: 64px;
  --sp-14: 96px; --sp-20: 128px;

  /* Border Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.09);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl:    0 20px 64px rgba(0,0,0,0.16);
  --shadow-blue:  0 8px 32px rgba(26,123,196,0.22);
  --shadow-navy:  0 16px 48px rgba(13,43,78,0.30);

  /* Transitions */
  --t-fast:   150ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-base:   250ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow:   400ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}

body.preloader-active {
  overflow: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: var(--font-body);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--blue-brand);
  color: white;
  padding: 8px 16px;
  border-radius: var(--r-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  z-index: 10000;
  transition: top var(--t-fast);
}
.skip-link:focus {
  top: 16px;
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--blue-brand);
  outline-offset: 2px;
}

/* ============================================================
   3. TYPOGRAPHY SYSTEM
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
}

h1 { font-size: clamp(2.8rem, 5.5vw, 4.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--blue-navy); }
h3 { font-size: 1.05rem; font-weight: 700; color: var(--blue-navy); }

p { line-height: 1.7; }

.section-eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-brand);
  display: block;
  margin-bottom: var(--sp-3);
}

.section-subtext {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 580px;
}

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: var(--sp-14) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-10);
}

.section-header .section-subtext {
  margin: var(--sp-4) auto 0;
}

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

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ============================================================
   5. COMPONENTS
   ============================================================ */

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--r-full);
  transition: background var(--t-base), box-shadow var(--t-base), transform var(--t-base), color var(--t-base), border-color var(--t-base);
  cursor: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--blue-brand);
  color: var(--white);
  border: 2px solid var(--blue-brand);
}

.btn-primary:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.btn-primary .btn-arrow {
  transition: transform var(--t-base);
}
.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-white {
  background: var(--white);
  color: var(--blue-brand);
  border: 2px solid var(--white);
}

.btn-white:hover {
  background: var(--dark-navy);
  border-color: var(--dark-navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.btn-white .btn-arrow {
  transition: transform var(--t-base);
}
.btn-white:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-full {
  width: 100%;
  justify-content: center;
  border-radius: var(--r-md);
  font-size: 15px;
  padding: 16px;
}

/* Loading state */
.btn-full.loading .btn-label { display: none; }
.btn-full.loading::after {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success state */
.btn-full.success {
  background: #16A34A;
  border-color: #16A34A;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  transition: background var(--t-slow), backdrop-filter var(--t-slow), box-shadow var(--t-slow), border-color var(--t-slow);
}

.navbar.scrolled {
  background: rgba(7, 24, 41, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(26,123,196,0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 48px;
  width: auto;
  transition: height var(--t-slow), transform var(--t-slow);
}

.navbar.scrolled .nav-logo img {
  height: 40px;
  transform: scale(0.88);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--t-base);
}

.navbar.scrolled .nav-links a {
  color: var(--white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--blue-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: none;
  z-index: 1100;
  position: relative;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-spring), opacity var(--t-base), width var(--t-base);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--dark-navy);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  transform: translateX(100%);
  transition: transform var(--t-slow);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  opacity: 0;
  transform: translateX(30px);
  transition: opacity var(--t-base), transform var(--t-base), color var(--t-base);
}

.mobile-drawer.open a {
  opacity: 1;
  transform: translateX(0);
}

.mobile-drawer a:hover {
  color: var(--blue-light);
}

.mobile-drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  color: white;
  transition: background var(--t-base);
}

.mobile-drawer-close:hover {
  background: rgba(255,255,255,0.2);
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-blue);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-brand);
  margin-bottom: var(--sp-4);
  transition: background var(--t-base), color var(--t-base);
}

.card:hover .card-icon {
  background: var(--blue-brand);
  color: var(--white);
}

.card-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--gray-200);
  line-height: 1;
  user-select: none;
}

.card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--blue-navy);
  margin-bottom: var(--sp-2);
}

.card-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--sp-4);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--blue-brand);
  transition: gap var(--t-base);
}

.card-link:hover {
  gap: 10px;
}

/* Glass card */
.glass-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  transition: background var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}

.glass-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(26,123,196,0.45);
  box-shadow: 0 8px 32px rgba(26,123,196,0.18);
}

.glass-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: var(--sp-4);
}

.glass-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: var(--sp-2);
}

.glass-card-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
}

/* --- Forms --- */
.form-group {
  position: relative;
  margin-bottom: var(--sp-5);
}

.form-group label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-400);
  pointer-events: none;
  transition: top var(--t-fast), font-size var(--t-fast), color var(--t-fast);
  background: transparent;
  padding: 0 4px;
}

.form-group.floating label,
.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group select:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  font-size: 0.75rem;
  color: var(--blue-brand);
  background: white;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue-brand);
  box-shadow: 0 0 0 3px var(--blue-glow);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: #E53E3E;
}

.form-error {
  font-size: 12px;
  color: #E53E3E;
  margin-top: 4px;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
}

/* Custom checkbox */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  cursor: none;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--blue-brand);
  margin-top: 2px;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.9rem;
  color: var(--gray-600);
  position: static;
  padding: 0;
  pointer-events: auto;
  transition: none;
}

/* Section label (form sections) */
.form-section-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-brand);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--blue-pale);
}

/* ============================================================
   6. SECTIONS
   ============================================================ */

/* --- PRELOADER --- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark-navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  transition: transform 0.5s ease-in;
}

#preloader.exit {
  transform: translateY(-100%);
}

.preloader-badge {
  width: 140px;
  height: 140px;
}

.preloader-ring {
  stroke-dasharray: 408;
  stroke-dashoffset: 408;
  animation: drawRing 1s ease-out forwards;
}

@keyframes drawRing {
  to { stroke-dashoffset: 0; }
}

.preloader-inner {
  opacity: 0;
  animation: fadeScaleIn 0.4s ease-out 1s forwards;
}

@keyframes fadeScaleIn {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}

.preloader-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--white);
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  animation: typeWidth 0.6s steps(30) 1.5s forwards;
}

@keyframes typeWidth {
  to { width: 340px; }
}

.preloader-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--blue-light);
  opacity: 0;
  animation: fadeIn 0.5s ease 2.1s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* --- HERO --- */
#hero {
  min-height: 100vh;
  position: relative;
  background: var(--dark-navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-gradient-1 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(26,123,196,0.18), transparent 65%),
              radial-gradient(ellipse at 80% 20%, rgba(15,90,150,0.14), transparent 55%);
  animation: breatheGradient 8s infinite alternate ease;
}

@keyframes breatheGradient {
  0%   { opacity: 0.7; }
  100% { opacity: 1.0; }
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  background: var(--blue-brand);
}

.hero-blob-1 {
  width: 500px; height: 500px;
  top: -100px; left: -100px;
  animation: driftBlob 12s infinite alternate ease;
}

.hero-blob-2 {
  width: 400px; height: 400px;
  top: -80px; right: -80px;
  animation: driftBlob 12s 4s infinite alternate-reverse ease;
}

.hero-blob-3 {
  width: 350px; height: 350px;
  bottom: -80px; left: 50%;
  transform: translateX(-50%);
  animation: driftBlob 12s 8s infinite alternate ease;
}

@keyframes driftBlob {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 20px) scale(1.1); }
}

.hero-blob-3 {
  animation: driftBlob3 12s 8s infinite alternate ease;
}

@keyframes driftBlob3 {
  0%   { transform: translateX(-50%) translate(0, 0); }
  100% { transform: translateX(-50%) translate(-20px, -15px); }
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L50 18 L50 40 L30 52 L10 40 L10 18Z' fill='none' stroke='white' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 48px;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 60px;
}

/* Hero content */
.hero-content { }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-eyebrow.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.hero-eyebrow-line {
  width: 30px;
  height: 1px;
  background: var(--blue-brand);
  flex-shrink: 0;
}

.hero-eyebrow-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
}

.hero-headline {
  margin-bottom: var(--sp-5);
}

.hero-headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: pre;
}

.hero-headline .word.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.hero-h1-line1 {
  display: block;
  color: var(--white);
  font-weight: 800;
}

.hero-h1-line2 {
  display: block;
  color: var(--blue-light);
  font-style: italic;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: var(--sp-6);
  opacity: 0;
  min-height: 3em;
}

.hero-sub.animate-in {
  opacity: 1;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-cta-row.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: var(--r-full);
  padding: 6px 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.trust-badge.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.trust-badge svg {
  color: var(--blue-light);
  flex-shrink: 0;
}

/* Hero decorative */
.hero-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-circle-wrap {
  position: relative;
  width: 420px;
  height: 420px;
}

.hero-outer-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(26,123,196,0.3);
  animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
  to { transform: rotate(360deg); }
}

.hero-inner-circle {
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  background: rgba(26,123,196,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-tool-icon {
  color: var(--blue-brand);
  animation: toolRock 6s ease-in-out infinite;
}

@keyframes toolRock {
  0%, 100% { transform: rotate(-5deg); }
  50%       { transform: rotate(5deg); }
}

.hero-orbit-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-full);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  color: var(--blue-navy);
  white-space: nowrap;
}

.hero-orbit-1 {
  top: 40px;
  right: -20px;
  animation: floatBadge 4s ease-in-out infinite;
}

.hero-orbit-2 {
  bottom: 60px;
  left: -20px;
  animation: floatBadge 4s 2s ease-in-out infinite;
}

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

.orbit-icon {
  color: var(--blue-brand);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  z-index: 3;
}

.scroll-indicator span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--blue-brand), transparent);
  animation: pulseDown 1.5s infinite;
}

@keyframes pulseDown {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}

/* --- ABOUT --- */
#about {
  background: var(--white);
  padding: var(--sp-14) 0;
  clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 100%);
  margin-top: -40px;
  padding-top: calc(var(--sp-14) + 40px);
}

.about-visual {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
}

.about-logo-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  padding: 16px;
}

.about-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-metrics {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  width: 100%;
}

.metric-pill {
  background: var(--white);
  border-left: 3px solid var(--blue-brand);
  border-radius: var(--r-sm);
  padding: 10px 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue-navy);
  box-shadow: var(--shadow-sm);
}

.about-quote {
  border-left: 4px solid var(--blue-brand);
  padding: 16px 20px;
  background: var(--white);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  width: 100%;
}

.about-quote p {
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: italic;
  color: var(--blue-navy);
  font-size: 0.95rem;
  line-height: 1.5;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-5);
}

.about-content p {
  color: var(--gray-600);
  font-size: 1rem;
}

.value-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}

.value-card {
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.value-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--blue-pale);
  color: var(--blue-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue-navy);
}

.value-card-text {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* --- SERVICES --- */
#services {
  background: var(--off-white);
  padding: var(--sp-14) 0;
  clip-path: polygon(0 0, 100% 2%, 100% 100%, 0 98%);
  margin: -20px 0;
  padding: calc(var(--sp-14) + 20px) 0;
}

/* --- WHY CHOOSE US --- */
#why {
  background: var(--dark-blue);
  padding: var(--sp-14) 0;
  position: relative;
  clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
}

#why .section-eyebrow {
  color: var(--blue-light);
}

#why h2 {
  color: var(--white);
}

#why .section-subtext {
  color: rgba(255,255,255,0.65);
  margin: var(--sp-4) auto 0;
}

/* --- PROCESS --- */
#process {
  background: var(--white);
  padding: var(--sp-14) 0;
}

.process-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: var(--sp-10);
}

.process-line {
  position: absolute;
  top: 26px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--blue-brand);
  transition: width 1.4s ease-in-out;
  z-index: 0;
}

.process-line-bg {
  position: absolute;
  top: 26px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue-pale);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.process-node {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--blue-brand);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue-brand);
  margin-bottom: var(--sp-4);
  transition: background var(--t-spring), color var(--t-spring), transform var(--t-spring);
  transform: scale(0);
}

.process-node.active {
  background: var(--blue-brand);
  color: var(--white);
  transform: scale(1);
}

.process-step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue-navy);
  margin-bottom: var(--sp-2);
}

.process-step-text {
  font-size: 0.82rem;
  color: var(--gray-600);
  max-width: 120px;
  line-height: 1.5;
}

/* Mobile vertical timeline */
.process-timeline-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 40px;
}

.process-vline {
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--blue-pale);
}

.process-step-v {
  display: flex;
  gap: var(--sp-4);
  padding-bottom: var(--sp-6);
  position: relative;
}

.process-node-v {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--blue-brand);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--blue-brand);
  flex-shrink: 0;
  margin-left: -53px;
  transition: background var(--t-base), color var(--t-base);
}

.process-step-v.active .process-node-v {
  background: var(--blue-brand);
  color: white;
}

.process-step-v-content {
  padding-top: 12px;
}

/* --- STATS --- */
#stats {
  background: linear-gradient(135deg, var(--blue-navy) 0%, var(--dark-navy) 100%);
  padding: var(--sp-14) 0;
  clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
  position: relative;
}

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

.stat-block {
  text-align: center;
  padding: var(--sp-6) var(--sp-5);
  position: relative;
}

.stat-block:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}

.stat-number-wrap {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: var(--white);
  margin-bottom: var(--sp-2);
  transition: text-shadow var(--t-base);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-number-wrap:hover {
  text-shadow: 0 0 20px rgba(26,123,196,0.6);
}

.stat-num {
  display: inline-block;
}

.stat-suffix {
  color: var(--blue-light);
}

.stat-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* --- TESTIMONIALS --- */
#testimonials {
  background: var(--surface);
  padding: var(--sp-14) 0;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 var(--sp-3);
  box-sizing: border-box;
}

.testimonial-inner {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 36px 32px 32px;
  border-left: 4px solid var(--blue-brand);
  position: relative;
  overflow: hidden;
}

.testimonial-quote-mark {
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 6rem;
  color: var(--blue-pale);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--sp-3);
  position: relative;
  z-index: 1;
}

.testimonial-stars svg {
  color: var(--blue-brand);
}

.testimonial-text {
  font-style: italic;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
  position: relative;
  z-index: 1;
}

.testimonial-reviewer {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  position: relative;
  z-index: 1;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.reviewer-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue-navy);
}

.reviewer-title {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--blue-brand);
  background: transparent;
  color: var(--blue-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: background var(--t-base), color var(--t-base);
}

.carousel-btn:hover {
  background: var(--blue-brand);
  color: var(--white);
}

.carousel-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.carousel-dot {
  height: 8px;
  border-radius: var(--r-full);
  background: var(--gray-200);
  transition: width var(--t-base), background var(--t-base);
  width: 8px;
  cursor: pointer;
}

.carousel-dot.active {
  width: 24px;
  background: var(--blue-brand);
}

/* Grid testimonials for desktop */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* --- CTA BANNER --- */
#cta-banner {
  background: var(--blue-brand);
  padding: var(--sp-14) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0' y1='40' x2='40' y2='0' stroke='white' stroke-width='1' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-watermark {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.06;
  color: white;
  pointer-events: none;
}

#cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--sp-3);
}

#cta-banner .section-subtext {
  color: rgba(255,255,255,0.82);
  margin: 0 auto var(--sp-6);
}

/* --- CONTACT --- */
#contact {
  background: var(--white);
  padding: var(--sp-14) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.info-card {
  background: var(--off-white);
  border-radius: var(--r-md);
  border-left: 4px solid var(--blue-brand);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}

.info-card-icon {
  color: var(--blue-brand);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-card-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 2px;
}

.info-card-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue-navy);
}

.info-card-sub {
  font-size: 0.82rem;
  color: var(--blue-brand);
}

.map-placeholder {
  background: var(--surface);
  border: 2px solid var(--gray-200);
  border-radius: var(--r-lg);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
  position: relative;
  overflow: hidden;
}

.map-dot-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--blue-pale) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
}

.map-placeholder-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue-navy);
  position: relative;
  z-index: 1;
}

.map-pin {
  color: var(--blue-brand);
  position: relative;
  z-index: 1;
}

.hours-card {
  background: var(--off-white);
  border-radius: var(--r-md);
  padding: 20px 24px;
  border: 1px solid var(--gray-200);
}

.hours-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue-navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-3);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--gray-600);
  padding: 4px 0;
  border-bottom: 1px solid var(--gray-200);
}
.hours-row:last-child { border-bottom: none; }

.hours-row span:first-child { font-weight: 600; color: var(--gray-800); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  padding: 48px 40px;
}

.form-header {
  margin-bottom: var(--sp-6);
}

.form-header h3 {
  font-size: 1.4rem;
  margin-bottom: var(--sp-2);
}

.form-header p {
  font-size: 0.9rem;
  color: var(--gray-400);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

/* --- FOOTER --- */
footer {
  background: var(--dark-navy);
  padding: var(--sp-10) 0 0;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--blue-brand), var(--blue-light));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-8);
}

.footer-brand-logo {
  height: 64px;
  width: auto;
  margin-bottom: var(--sp-3);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: var(--sp-1);
}

.footer-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--blue-light);
  margin-bottom: var(--sp-4);
}

.social-icons {
  display: flex;
  gap: var(--sp-2);
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--t-base), border-color var(--t-base);
}

.social-icon:hover {
  background: var(--blue-brand);
  border-color: var(--blue-brand);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: var(--sp-4);
}

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

.footer-links a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 2;
  display: flex;
  align-items: center;
  gap: 0;
  transition: color var(--t-fast), gap var(--t-fast);
}

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

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.footer-contact-item svg {
  color: var(--blue-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

.footer-dev {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

.footer-dev a {
  color: var(--blue-light);
  transition: color var(--t-fast);
}

.footer-dev a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* ============================================================
   7. CUSTOM CURSOR
   ============================================================ */
.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: normal;
  transition: none;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-brand);
  transform: translate(-50%, -50%);
  transition: width var(--t-spring), height var(--t-spring), background var(--t-spring), opacity var(--t-spring);
}

.cursor-dot.expand {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 2px solid var(--blue-brand);
}

.cursor-dot.small {
  width: 6px;
  height: 6px;
}

/* ============================================================
   8. SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children */
.stagger-children .reveal {
  transition-delay: calc(var(--stagger-index, 0) * 120ms);
}

/* Clip-path heading reveal */
.heading-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.heading-reveal.revealed {
  clip-path: inset(0 0% 0 0);
}

/* ============================================================
   9. ANIMATIONS & KEYFRAMES
   ============================================================ */
@keyframes navFadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-animate-in {
  animation: navFadeDown 0.5s ease-out forwards;
}

/* ============================================================
   10. VENDOR PAGE SPECIFIC
   ============================================================ */
.vendor-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: var(--dark-navy);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.requirements-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: 48px;
}

.checklist-row {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--t-base), padding var(--t-base);
  border-radius: var(--r-sm);
  margin: 0 -8px;
  padding-left: 8px;
  padding-right: 8px;
}

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

.checklist-row:hover {
  background: var(--blue-pale);
}

.checklist-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checklist-text {
  font-size: 0.95rem;
  color: var(--gray-600);
}

.app-form-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  padding: 56px 48px;
}

.app-form-header {
  margin-bottom: var(--sp-8);
}

.app-form-header h2 {
  font-size: 2rem;
  margin-bottom: var(--sp-2);
}

.app-form-header p {
  font-size: 0.95rem;
  color: var(--gray-400);
}

.questions-section {
  background: var(--surface);
  padding: var(--sp-14) 0;
}

.questions-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.questions-card h3 {
  font-size: 1.6rem;
  color: var(--blue-navy);
  margin-bottom: var(--sp-4);
}

.questions-divider {
  width: 60px;
  height: 3px;
  background: var(--blue-brand);
  margin: 0 auto var(--sp-5);
  border-radius: var(--r-full);
}

.questions-contact-cards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.q-contact-card {
  background: var(--white);
  border-left: 4px solid var(--blue-brand);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-align: left;
}

.q-contact-card svg { color: var(--blue-brand); flex-shrink: 0; }
.q-contact-card a {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--blue-navy);
  font-size: 1rem;
}
.q-contact-card a:hover { color: var(--blue-brand); }

/* ============================================================
   11. RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1280px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
  }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-deco { display: none; }

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

  .hero-cta-row { justify-content: center; }

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

  #about .grid-2 { grid-template-columns: 1fr; }

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

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

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

  .stat-block:nth-child(2)::after { display: none; }

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

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

  .process-timeline { display: none; }
  .process-timeline-mobile { display: flex; }

  .form-row { grid-template-columns: 1fr; }

  .app-form-card { padding: 32px 24px; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.6rem; }

  .section-pad { padding: 64px 0; }

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

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

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

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

  .contact-form-card { padding: 32px 24px; }

  .value-cards { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }

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

  .btn { font-size: 14px; padding: 12px 24px; }

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

  .stat-block:nth-child(2)::after { display: none; }
}

/* Touch devices — hide custom cursor */
@media (hover: none) {
  .cursor { display: none; }
  body { cursor: auto; }
  .btn, button, a { cursor: pointer; }
}

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

  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .heading-reveal {
    clip-path: none;
  }
}
