/* ============================================================
   VELO ADVISORY — MAIN STYLESHEET
   Inspired by the clean, professional aesthetic of Ledge Accounting
   ============================================================ */

/* --- GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors — Velo Advisory brand palette (Color 2) */
  --color-primary:       #0e3a4a;   /* deep teal-navy */
  --color-primary-light: #164f63;
  --color-accent:        #1c6d87;   /* Velo brand teal — primary action colour */
  --color-accent-hover:  #155f77;
  --color-accent-light:  #e0f4f8;
  --color-green:         #4a9e38;   /* Velo brand green — used in icon/gradient only */
  --color-green-light:   #eaf7e1;
  --color-teal:          #1c6d87;   /* alias */
  --color-teal-light:    #e0f4f8;
  --color-text:          #0e2a35;
  --color-text-muted:    #3d6878;
  --color-text-light:    #7aa8b8;
  --color-border:        #c8e4ec;
  --color-border-light:  #eaf4f8;
  --color-light-grey:    #f2f9fb;
  --color-off-white:     #eaf4f8;
  --color-white:         #ffffff;
  --color-success:       #1c6d87;
  --color-success-bg:    #e0f4f8;
  --color-error:         #dc2626;
  --color-error-bg:      #fee2e2;

  /* Typography */
  --font-family:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-base:      1rem;
  --line-height-base:    1.6;

  /* Spacing */
  --section-padding:     96px;
  --container-max:       1200px;
  --container-padding:   24px;

  /* Borders */
  --radius-sm:           6px;
  --radius-md:           10px;
  --radius-lg:           16px;
  --radius-xl:           24px;
  --radius-full:         9999px;

  /* Shadows */
  --shadow-sm:           0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:           0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:           0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl:           0 24px 64px rgba(0,0,0,0.12);

  /* Transitions */
  --transition-fast:     150ms ease;
  --transition-base:     250ms ease;
  --transition-slow:     400ms ease;

  /* Nav */
  --nav-height:          72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.heading-xl {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--color-primary);
}

.heading-lg {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--color-primary);
}

.heading-md {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.text-lead {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-label--white {
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

.section--grey {
  background: var(--color-light-grey);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
}

.btn--lg {
  padding: 15px 32px;
  font-size: 1rem;
}

.btn--primary {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}
.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.3);
}

.btn--outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.35);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}
.btn--outline-dark:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-light);
}

.btn--white {
  background: white;
  color: var(--color-primary);
  border-color: white;
}
.btn--white:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
  transform: translateY(-1px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  text-transform: uppercase;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #4a9e38, #1c6d87);
  color: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.nav__link:hover,
.nav__link.active {
  color: var(--color-primary);
  background: var(--color-light-grey);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}
.nav__dropdown-toggle:hover {
  color: var(--color-primary);
  background: var(--color-light-grey);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all var(--transition-base);
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav__dropdown-item {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.nav__dropdown-item:hover {
  color: var(--color-accent);
  background: var(--color-accent-light);
}

.nav__cta {
  margin-left: 8px;
  flex-shrink: 0;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* Mobile menu */
.nav__mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px var(--container-padding) 24px;
  border-top: 1px solid var(--color-border);
  background: white;
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}
.nav__mobile-menu.open {
  max-height: 500px;
}

.nav__mobile-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 12px 8px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.nav__mobile-link:hover {
  color: var(--color-primary);
  background: var(--color-light-grey);
}

.nav__mobile-cta {
  margin-top: 12px;
  text-align: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #0a2535 0%, #0e3a4a 50%, #0a2535 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(28,109,135,0.22) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(74,158,56,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
}

.hero__headline {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 24px;
}

.hero__headline span {
  color: #5ecbe8;
}

.hero__subheadline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto 40px;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.hero__stat {
  padding: 24px 20px;
  text-align: center;
  background: rgba(255,255,255,0.04);
}

.hero__stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}

.hero__stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  line-height: 1.3;
}

/* ============================================================
   LOGO BAR
   ============================================================ */
.logo-bar {
  border-bottom: 1px solid var(--color-border);
  padding: 28px 0;
  background: white;
}

.logo-bar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-bar__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.logo-bar__logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-bar__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
  opacity: 0.5;
}

.logo-bar__logo-icon {
  width: 28px;
  height: 28px;
  background: var(--color-border);
  border-radius: var(--radius-sm);
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro__visual {
  position: relative;
}

.intro__visual-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-xl);
}

.intro__visual-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 0.9375rem;
}
.intro__visual-metric:last-of-type {
  border-bottom: none;
}

.intro__visual-metric-label {
  color: var(--color-text-muted);
  font-weight: 500;
}

.intro__visual-metric-value {
  font-weight: 700;
  color: var(--color-primary);
}
.intro__visual-metric-value.positive { color: var(--color-success); }
.intro__visual-metric-value.negative { color: var(--color-error); }

.intro__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.intro__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.intro__feature-icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.intro__feature-title {
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
  font-size: 0.9375rem;
}

.intro__feature-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   WHY VELO SECTION
   ============================================================ */
.why-velo {
  background: linear-gradient(135deg, #0a2535 0%, #0e3a4a 100%);
  padding: var(--section-padding) 0;
}

.why-velo__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.why-velo__word {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.why-velo__pronunciation {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
  font-style: italic;
}

.why-velo__pos {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 20px;
}

.why-velo__def-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 16px;
  border-left: 3px solid rgba(28,109,135,0.6);
  padding-left: 16px;
}

.why-velo__example {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
  line-height: 1.6;
}

.why-velo__content h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.why-velo__content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.before-after__header {
  text-align: center;
  margin-bottom: 56px;
}

.before-after__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: start;
}

.before-after__col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  text-align: center;
}
.before-after__col-title.before {
  background: #fef2f2;
  color: #dc2626;
}
.before-after__col-title.after {
  background: #f0fdf4;
  color: #16a34a;
}

.before-after__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.before-after__item:last-child { border-bottom: none; }

.before-after__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.before-after__icon.x {
  background: #fef2f2;
  color: #dc2626;
}
.before-after__icon.check {
  background: #f0fdf4;
  color: #16a34a;
}

.before-after__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 48px;
}

.before-after__arrow-circle {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #4a9e38, #1c6d87);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.before-after__cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   PERSPECTIVE (ACCOUNTING VS ADVISORY)
   ============================================================ */
.perspective__header {
  text-align: center;
  margin-bottom: 56px;
}

.perspective__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.perspective__card {
  border-radius: var(--radius-xl);
  padding: 48px 40px;
}

.perspective__card--back {
  background: var(--color-light-grey);
  border: 1px solid var(--color-border);
}

.perspective__card--forward {
  background: linear-gradient(135deg, #0e3a4a 0%, #1c6d87 100%);
  color: white;
}

.perspective__card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.perspective__card-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.perspective__card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.perspective__card--forward .perspective__card-title {
  color: white;
}

.perspective__card-text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.perspective__card--forward .perspective__card-text {
  color: rgba(255,255,255,0.6);
}

.perspective__card-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.perspective__card-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.perspective__bridge {
  background: var(--color-accent-light);
  border: 1px solid #b0d8e8;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: center;
}

.perspective__bridge p {
  font-size: 1rem;
  color: #0e3a4a;
  line-height: 1.65;
}

/* ============================================================
   USPs GRID
   ============================================================ */
.usps__header {
  text-align: center;
  margin-bottom: 56px;
}

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

.usp-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition-base);
}
.usp-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--color-accent);
}

.usp-card__icon {
  width: 52px;
  height: 52px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.usp-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.usp-card__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process__header {
  text-align: center;
  margin-bottom: 64px;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.process__step {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: white;
  position: relative;
}

.process__step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #4a9e38, #1c6d87);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 800;
}

.process__step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  margin-top: 8px;
}

.process__step-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.process__step-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials__header {
  text-align: center;
  margin-bottom: 56px;
}

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

.testimonial-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}

.testimonial-card__stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card__quote {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-primary);
}

.testimonial-card__role {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip {
  background: linear-gradient(135deg, #0a2535 0%, #0e3a4a 100%);
  padding: var(--section-padding) 0;
}

.about-strip__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-strip__content h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.about-strip__content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-strip__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-strip__stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
}

.about-strip__stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #5ecbe8;
  line-height: 1;
  margin-bottom: 8px;
}

.about-strip__stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq__header {
  text-align: center;
  margin-bottom: 48px;
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}
.faq__item:last-child { border-bottom: none; }

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  transition: background var(--transition-fast);
  user-select: none;
}
.faq__question:hover { background: var(--color-light-grey); }

.faq__question-icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: all var(--transition-base);
}

.faq__item.open .faq__question { background: var(--color-light-grey); }
.faq__item.open .faq__question-icon {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}
.faq__item.open .faq__answer {
  max-height: 400px;
}

.faq__answer-inner {
  padding: 0 28px 22px;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, #0e3a4a 0%, #1c6d87 100%);
  padding: 80px 0;
}

.cta-band__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  text-align: center;
}

.cta-band__inner h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-band__inner p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 36px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0a2535;
  padding: 64px 0 0;
}

.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: white;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__logo-mark {
  width: 34px;
  height: 34px;
  background: var(--color-teal);
  color: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 280px;
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
}
.footer__col-link:hover { color: white; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copyright {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition-fast);
}
.footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #0a2535 0%, #0e3a4a 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(28,109,135,0.20) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 700px;
}

.page-hero p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 600px;
}

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  position: relative;
}

.pricing-card--featured {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(28,109,135,0.18);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.pricing-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.pricing-card__includes {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.pricing-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.pricing-card__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.pricing-card__item-icon {
  width: 20px;
  height: 20px;
  background: var(--color-success-bg);
  color: var(--color-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card__cta-note {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 10px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact__expect-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact__expect-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #4a9e38, #1c6d87);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  flex-shrink: 0;
}

.contact__expect-title {
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
  font-size: 1rem;
}

.contact__expect-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.contact__reassurance {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--color-accent-light);
  border: 1px solid #b0d8e8;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-top: 32px;
}

.contact__reassurance p {
  font-size: 0.9rem;
  color: #0e3a4a;
  line-height: 1.6;
}

.contact__form-wrapper {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}

.contact__form-header {
  margin-bottom: 32px;
}

.contact__form-header h3 {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.contact__form-header p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-light-grey);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  outline: none;
  appearance: none;
}

.form-input:focus {
  border-color: var(--color-accent);
  background: white;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

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

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.12s; }
.animate-delay-2 { transition-delay: 0.24s; }
.animate-delay-3 { transition-delay: 0.36s; }

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 72px;
  }

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

  .intro__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-velo__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .before-after__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .before-after__arrow {
    display: none;
  }

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

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

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

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

  .about-strip__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 56px;
    --nav-height: 64px;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__mobile-menu {
    display: flex;
  }

  .hero {
    padding: 72px 0 56px;
  }

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

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    text-align: center;
  }

  .logo-bar__inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .logo-bar__logos {
    justify-content: center;
  }

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

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

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

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  .contact__form-wrapper {
    padding: 32px 24px;
  }

  .page-hero {
    padding: 56px 0 48px;
  }

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

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero__stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero__stat-value {
    font-size: 1.25rem;
  }

  .pricing-card {
    padding: 32px 24px;
  }
}

/* ============================================================
   LOGO IMAGE STYLES
   ============================================================ */
.nav__logo-img {
  height: 44px;
  width: auto;
  display: block;
  max-width: 160px;
  object-fit: contain;
}

.nav__logo-img--white {
  height: 38px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer__logo-img {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  /* White version for dark footer */
  filter: brightness(0) invert(1);
}

.page-hero__logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* ============================================================
   LOGO CAROUSEL
   ============================================================ */

   @keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.logos {
  overflow: hidden;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  content: "";
  z-index: 2;
}


.logos:hover .logos-track {
  animation-play-state: paused;
}

.logos-slide {
  display: flex;
  align-items: center;
}

.logos-slide img {
  height: auto;
  width: 160px;
  margin: 0 40px;
  display: block;
}
.logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: slide 10s linear infinite;
}
@media (max-width: 767px) {

  .logos-slide img {
    width: 80px;
    margin: 0 15px;
  }

}