﻿
:root {
  --primary: #0b58cc; 
  --primary-hover: #0948a8;
  --primary-foreground: #ffffff;
  --accent: #0a66c2; 
  --accent-foreground: #ffffff;
  --background: #ffffff;
  --foreground: #0a0a0a; 
  --card: #e8f1fc; 
  --card-foreground: #0a203d; 
  --muted: #e8f1fc;
  --muted-foreground: #5a6b7d; 
  --secondary: #e8f1fc;
  --secondary-foreground: #636363; 
  --destructive: #ef4444;

  
  --blue-600: var(--primary);
  --blue-650: var(--primary-hover);
  --blue-500: #2f7ae8; 
  --blue-400: #5b96ef; 
  --navy-950: #07111f;
  --navy-900: #0a203d;
  --navy-850: #0d1b30;
  --navy-800: #12233d;
  --text-900: var(--foreground);
  --text-700: #334155;
  --text-500: var(--muted-foreground);
  --text-400: #94a3b8;
  --bg-soft: var(--card);
  --bg-soft-2: #eef4fb;
  --bg-card: var(--card);
  --white: #ffffff;
  --border: #dce5f0; /* hsl(214 43% 90%) */

  /* Shadows from demo kit */
  --shadow-2xs: 0 1px 3px hsl(0 0% 0% / 0.05);
  --shadow-xs: 0 1px 3px hsl(0 0% 0% / 0.05);
  --shadow-sm: 0 1px 3px hsl(0 0% 0% / 0.1), 0 1px 2px -1px hsl(0 0% 0% / 0.1);
  --shadow: 0 1px 3px hsl(0 0% 0% / 0.1), 0 1px 2px -1px hsl(0 0% 0% / 0.1);
  --shadow-md: 0 1px 3px hsl(0 0% 0% / 0.1), 0 2px 4px -1px hsl(0 0% 0% / 0.1);
  --shadow-lg: 0 1px 3px hsl(0 0% 0% / 0.1), 0 4px 6px -1px hsl(0 0% 0% / 0.1);
  --shadow-xl: 0 1px 3px hsl(0 0% 0% / 0.1), 0 8px 10px -1px hsl(0 0% 0% / 0.1);

  /* Radius from demo kit */
  --radius: 0.5rem;
  --radius-button: calc(var(--radius) - 2px);
  --radius-sm: var(--radius-button);
  --radius-md: var(--radius);
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  --container: 1160px;
  --header-h: 78px;
  --font-heading: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: var(--font-body);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin: 0;
  color: var(--foreground);
}

p {
  margin: 0;
}

/* Faster first paint: skip layout work for off-screen sections */
.partners,
.funding,
.why-process,
.schemes,
.industries,
.stories,
.cta-banner,
.contact,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 480px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--blue-600);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 10000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

@media (min-width: 768px) {
  .container {
    width: min(100% - 3rem, var(--container));
  }
}

.text-accent {
  color: var(--primary);
}

.centered {
  text-align: center;
}

/* Buttons — radius/shadow match demo kit */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-button);
  border: 1.5px solid transparent;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-sm {
  min-height: 42px;
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
  background: hsl(216 90% 42% / 0.06);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: var(--card);
}

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-block {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--blue-500);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.2s var(--ease), color 0.2s var(--ease);
}

.text-link::after {
  content: "";
  width: 0.55em;
  height: 0.55em;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-left: 0.15em;
  transition: transform 0.2s var(--ease);
}

.text-link:hover {
  gap: 0.45rem;
  color: var(--blue-650);
}

.text-link:hover::after {
  transform: rotate(45deg) translate(1px, -1px);
}

.text-link.light {
  color: var(--blue-400);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(219, 229, 242, 0.8);
}

.site-header > .container {
  width: min(100% - 2.75rem, 1280px);
}

@media (min-width: 768px) {
  .site-header > .container {
    width: min(100% - 4rem, 1280px);
  }
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand {
  flex-shrink: 0;
  margin-inline-start: 0.15rem;
}

.brand-logo {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.nav-desktop {
  display: none;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.1rem;
  white-space: nowrap;
}

.nav-list > li {
  flex-shrink: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.4rem 0.55rem;
  color: var(--text-700);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.nav-link:hover {
  color: var(--blue-600);
  background: hsl(216 90% 42% / 0.06);
}

.nav-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.nav-link.is-active {
  color: var(--blue-600);
  font-weight: 600;
  background: hsl(216 90% 42% / 0.08);
}

.chevron {
  width: 10px;
  height: 10px;
  transition: transform 0.2s var(--ease);
  opacity: 0.7;
}

.has-dropdown {
  position: relative;
}

.has-dropdown.is-open .nav-link,
.has-dropdown:focus-within .nav-link {
  color: var(--blue-600);
  background: hsl(216 90% 42% / 0.06);
}

.has-dropdown.is-open .chevron,
.has-dropdown:focus-within .chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.4rem;
  margin-top: 0.45rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 50;
}

/* Invisible bridge so the pointer can move from the toggle into the menu */
.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 0.45rem;
}

.has-dropdown.is-open .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .has-dropdown:hover .nav-link {
    color: var(--blue-600);
    background: hsl(216 90% 42% / 0.06);
  }

  .has-dropdown:hover .chevron {
    transform: rotate(180deg);
    opacity: 1;
  }

  .has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  color: var(--text-700);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.15s var(--ease), background 0.15s var(--ease);
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: var(--bg-soft);
  color: var(--blue-600);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header-actions .btn {
  display: none;
}

.header-actions .btn-sm {
  min-height: 38px;
  padding: 0.45rem 0.9rem;
  font-size: 0.8125rem;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.menu-toggle:hover {
  border-color: var(--primary);
  background: hsl(216 90% 42% / 0.04);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text-900);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 1rem 1.25rem 1.5rem;
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
}

.nav-mobile[hidden] {
  display: none !important;
}

.mobile-list > li > a,
.mobile-parent-link {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0.65rem;
  border: none;
  border-radius: 10px;
  background: none;
  color: var(--text-900);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.mobile-accordion-head {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.mobile-accordion-head .mobile-parent-link {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
}

.mobile-accordion {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: none;
  color: var(--text-900);
  cursor: pointer;
  transition: color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}

.mobile-accordion .chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.2s var(--ease);
}

.mobile-accordion[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.mobile-list > li > a:hover,
.mobile-parent-link:hover,
.mobile-accordion:hover {
  color: var(--blue-600);
  background: hsl(216 90% 42% / 0.06);
}

.mobile-list > li > a[aria-current="page"],
.mobile-parent-link[aria-current="page"] {
  color: var(--blue-600);
  background: hsl(216 90% 42% / 0.08);
}

.mobile-sub {
  display: none;
  padding: 0.15rem 0 0.5rem 0.85rem;
}

.mobile-accordion[aria-expanded="true"] + .mobile-sub,
.mobile-accordion-head:has(.mobile-accordion[aria-expanded="true"]) + .mobile-sub {
  display: block;
}

.mobile-sub a {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  color: var(--text-500);
  font-size: 0.95rem;
  transition: color 0.15s var(--ease), background 0.15s var(--ease);
}

.mobile-sub a:hover {
  color: var(--blue-600);
  background: hsl(216 90% 42% / 0.05);
}

.mobile-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (min-width: 1180px) {
  .nav-desktop {
    display: flex;
  }

  .header-actions .btn {
    display: inline-flex;
  }

  .menu-toggle,
  .nav-mobile {
    display: none !important;
  }
}

@media (min-width: 640px) and (max-width: 1179px) {
  .header-actions .btn-primary {
    display: inline-flex;
  }
}

@media (min-width: 1280px) {
  .nav-link {
    font-size: 0.875rem;
    padding: 0.45rem 0.65rem;
  }

  .nav-list {
    gap: 0.2rem;
  }

  .brand-logo {
    height: 48px;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 1.75rem 0 2rem;
  /* Demo card/muted tone + soft grid matching reference */
  background-color: var(--card);
  background-image: radial-gradient(circle, rgba(142, 154, 175, 0.35) 1.35px, transparent 1.45px);
  background-size: 28px 28px;
  background-position: 0 0;
  overflow: visible;
}

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

.pill-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.3rem 0.95rem;
  border-radius: 999px;
  background: var(--card-foreground);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.hero .pill-badge {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(11, 88, 204, 0.28);
}

.pill-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(11, 42, 91, 0.28);
}

.hero .pill-badge:hover {
  box-shadow: 0 8px 20px rgba(11, 88, 204, 0.38);
}

.hero h1 {
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: 22ch;
  margin-bottom: 0.5rem;
  color: var(--card-foreground);
}

.hero-cursive {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: -0.01em;
}

.hero-lead {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 600;
  color: var(--secondary-foreground);
  margin-bottom: 0.5rem;
}

.hero-desc {
  color: var(--muted-foreground);
  max-width: 46ch;
  margin-bottom: 1.15rem;
  font-size: 0.98rem;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.hero-ctas .btn {
  min-height: 46px;
  padding: 0.7rem 1.3rem;
  font-size: 0.95rem;
  border-radius: 10px;
}

.hero-ctas .btn-primary:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.hero-ctas .btn-outline {
  background: rgba(255, 255, 255, 0.55);
}

.hero-ctas .btn-outline:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.trust-chips {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.trust-chips::-webkit-scrollbar {
  display: none;
}

.trust-chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex: 0 0 auto;
  padding: 0.45rem 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-700);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: default;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
    border-color 0.22s var(--ease), background 0.22s var(--ease);
}

.trust-chips li svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.trust-chips li:hover {
  transform: translateY(-2px);
  background: var(--white);
  border-color: hsl(216 90% 42% / 0.35);
  box-shadow: var(--shadow-md);
}

.hero-visual {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding: 0;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
  overflow: visible;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.hero-image-wrap:hover {
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
  transform: translateY(-3px);
}

.hero-slider {
  position: relative;
  width: 100%;
  border-radius: 18px;
}

.hero-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 800 / 700;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 18px;
  display: block;
  background: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.85s ease, visibility 0.85s ease;
  pointer-events: none;
}

.hero-image.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .hero-image {
    transition: none;
  }
}

/* Floating card - bottom-left of photo, matching reference */
.floating-card {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 3;
  background: var(--white);
  border-radius: 14px;
  padding: 0.85rem 1.1rem 0.8rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.14);
  min-width: 150px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: default;
  animation: floatYSoft 4.6s ease-in-out infinite;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.floating-card:hover {
  animation: none;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  transform: translateY(-4px) scale(1.03);
}

.floating-label {
  display: block;
  color: #7b8da3;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.15rem;
  white-space: nowrap;
}

.floating-value {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.45rem;
  line-height: 1.1;
  white-space: nowrap;
}

/* Desktop - synced large hero */
@media (min-width: 900px) {
  .hero {
    padding: 2.25rem 0 2.35rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.95fr;
    gap: 2.25rem;
    align-items: center;
  }

  .hero-visual {
    justify-content: flex-end;
    padding-left: 0;
  }

  .hero-image-wrap {
    width: 100%;
    max-width: 540px;
  }

  .hero-image,
  .hero-slider,
  .hero-slides {
    border-radius: 18px;
  }

  .floating-card {
    left: 1.15rem;
    bottom: 1.15rem;
    min-width: 158px;
    padding: 0.9rem 1.15rem 0.85rem;
  }

  .floating-label {
    font-size: 0.8rem;
  }

  .floating-value {
    font-size: 1.55rem;
  }

  .pill-badge {
    font-size: 0.82rem;
    min-height: 34px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 2.8vw, 2.85rem);
  }

  .hero-lead {
    font-size: 1.15rem;
  }

  .hero-desc {
    font-size: 0.98rem;
  }

  .trust-chips li {
    font-size: 0.82rem;
    padding: 0.48rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1rem 0 1.35rem;
  }

  .hero-slides {
    aspect-ratio: 4 / 3;
  }

  .floating-card {
    left: 0.5rem;
    bottom: 0.5rem;
    padding: 0.6rem 0.75rem 0.55rem;
  }

  .floating-value {
    font-size: 1.2rem;
  }
}

/* Eligibility */
.eligibility {
  background: var(--navy-900);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}

.eligibility h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  margin-bottom: 1.75rem;
}

.eligibility-form {
  display: grid;
  gap: 1rem;
  text-align: left;
  max-width: 980px;
  margin: 0 auto;
}

.eligibility .field select:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  background-color: #e8eef6;
  color: #64748b;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.85rem;
  color: var(--text-400);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-900);
  appearance: none;
  background-image: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 4.5L6 8l3.5-3.5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #ef4444;
}

.field input[readonly] {
  background: #f8fafc;
  color: var(--text-700, #334155);
  cursor: default;
}

.eligibility .field label {
  color: #b8c4d8;
}

.eligibility-submit {
  align-self: end;
  min-height: 48px;
  white-space: nowrap;
}

.secure-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  color: #9aabc4;
  font-size: 0.88rem;
}

.form-feedback {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-feedback.is-success {
  color: #34d399;
}

.form-feedback.is-error {
  color: #fca5a5;
}

@media (min-width: 900px) {
  .eligibility-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
  }

  .eligibility-submit {
    justify-self: stretch;
  }
}

/* Partners */
.partners {
  background: var(--bg-soft);
  padding: 2.5rem 0;
  overflow: hidden;
}

.partners .section-eyebrow {
  margin-bottom: 1.5rem;
}

.partners-track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.partners-marquee {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  animation: partners-scroll 32s linear infinite;
  will-change: transform;
}

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

.partners-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.partners-list li {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 9.5rem;
  height: 4.25rem;
  padding: 0.1rem 0.45rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(219, 229, 242, 0.85);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.partners-list img {
  display: block;
  height: 3.95rem;
  width: auto;
  max-width: 9rem;
  object-fit: contain;
}

@keyframes partners-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.625rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners-marquee {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 1rem;
  }

  .partners-list[aria-hidden="true"] {
    display: none;
  }

  .partners-track {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

/* Shared section bits */
.section-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-400);
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.section-eyebrow.light {
  color: #93a4bd;
}

.section-desc {
  color: var(--text-500);
  max-width: 54ch;
  margin-top: 0.75rem;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  max-width: 22ch;
}

@media (min-width: 768px) {
  .section-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .section-head .text-link {
    flex-shrink: 0;
    margin-top: 1.8rem;
  }
}

/* Funding */
.funding {
  padding: 4rem 0;
  background: var(--white);
}

.funding h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.soft-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  display: grid;
  gap: 0.7rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.soft-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.soft-card h3 {
  font-size: 1.05rem;
}

.soft-card p {
  color: var(--text-500);
  font-size: 0.92rem;
}

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #dce8fb;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-box.sm {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

@media (min-width: 700px) {
  .funding-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .funding-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}

/* Why + Process */
.why-process {
  background: var(--bg-soft-2);
  padding: 4rem 0;
}

.why-process h2 {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  margin-bottom: 1.5rem;
}

.why-process-grid {
  display: grid;
  gap: 3rem;
}

.feature-list {
  display: grid;
  gap: 1.15rem;
}

.feature-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.feature-list h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.feature-list p {
  color: var(--text-500);
  font-size: 0.92rem;
}

.timeline {
  display: grid;
  gap: 0;
  margin-bottom: 1.5rem;
}

.timeline li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.timeline li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 42px;
  bottom: 0;
  width: 2px;
  background: #c5d4ea;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-850);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  position: relative;
  z-index: 1;
}

.timeline h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.timeline p {
  color: var(--text-500);
  font-size: 0.92rem;
}

@media (min-width: 900px) {
  .why-process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Schemes */
.schemes {
  background: var(--navy-900);
  padding: 4rem 0;
}

.schemes h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  max-width: 22ch;
}

.schemes-grid {
  margin-top: 0.5rem;
}

.scheme-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(18, 35, 61, 0.95);
  border: 1px solid rgba(91, 130, 190, 0.35);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.scheme-card:hover {
  border-color: rgba(91, 130, 190, 0.7);
  transform: translateY(-3px);
}

.scheme-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.scheme-card p {
  color: #9fb0c9;
  font-size: 0.92rem;
}

@media (min-width: 700px) {
  .schemes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .schemes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Industries */
.industries {
  padding: 4rem 0;
  background: var(--white);
}

.industries h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  margin-bottom: 2rem;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.industry-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 1.25rem 0.85rem;
  display: grid;
  place-items: center;
  gap: 0.65rem;
  text-align: center;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.industry-icon {
  color: var(--blue-600);
}

.industry-card span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-900);
}

@media (min-width: 640px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .industries-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}

/* Stories */
.stories {
  background: var(--bg-soft);
  padding: 4rem 0;
}

.stories h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  margin-bottom: 2rem;
}

.stories-grid {
  display: grid;
  gap: 1.15rem;
}

.testimonial-card,
.featured-story {
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.testimonial-card {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 1rem;
}

.stars {
  color: #0f172a;
  letter-spacing: 0.08em;
  font-size: 1.1rem;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--text-700);
  font-size: 1.02rem;
  line-height: 1.7;
}

.author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
}

.author .avatar {
  color: #ffffff;
}

.author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.98rem;
}

.author span:not(.avatar) {
  color: var(--text-500);
  font-size: 0.85rem;
}

.featured-story {
  background: var(--blue-600);
  color: var(--white);
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.featured-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  font-weight: 600;
}

.featured-tag {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.featured-story h3 {
  color: var(--white);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  margin: 0.35rem 0;
}

.featured-story p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.featured-story .text-link {
  margin-top: 0.75rem;
  color: var(--white);
}

@media (min-width: 900px) {
  .stories-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.35rem;
  }
}

/* CTA Banner */
.cta-banner {
  background: var(--blue-600);
  padding: 3rem 0;
}

.cta-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin-bottom: 0.45rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

@media (min-width: 900px) {
  .cta-inner {
    grid-template-columns: 1.3fr auto;
  }
}

/* Contact */
.contact {
  background: var(--bg-soft);
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  max-width: 16ch;
  margin-bottom: 1rem;
}

.contact-copy > p {
  color: var(--text-500);
  max-width: 42ch;
  margin-bottom: 1.5rem;
}

.contact-benefits {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-benefits li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-600);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.contact-benefits .check {
  color: #ffffff;
}

.check::before {
  content: "";
  width: 6px;
  height: 10px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-1px);
}

.contact-benefits strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.98rem;
}

.contact-benefits span:not(.check) {
  color: var(--text-500);
  font-size: 0.9rem;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--blue-600);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.whatsapp-link:hover {
  color: #128c7e;
}

.whatsapp-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.whatsapp-icon svg {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
}

.whatsapp-link:hover .whatsapp-icon {
  transform: scale(1.06);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.45);
}

.whatsapp-link.light {
  color: var(--blue-400);
}

.whatsapp-link.light .whatsapp-icon {
  background: #25d366;
  color: #ffffff;
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.42);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

.whatsapp-float:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.48);
}

.whatsapp-float:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.whatsapp-float__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float__icon svg {
  display: block;
  width: 1.65rem;
  height: 1.65rem;
}

body.is-menu-open .whatsapp-float {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 767px) {
  .whatsapp-float {
    right: 0.85rem;
    bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
    width: 3.1rem;
    height: 3.1rem;
  }

  .whatsapp-float__icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    transition: none;
  }

  .whatsapp-float:hover {
    transform: none;
  }
}

.contact-form {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: grid;
  gap: 1rem;
}

.contact-form[hidden],
.contact-success[hidden] {
  display: none !important;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.contact-card.is-success-state,
.contact-page-card.is-success-state {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.contact-card.is-success-state .form-feedback,
.contact-page-card.is-success-state .form-feedback {
  display: none !important;
}

.contact-form h3,
.contact-success h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.optional {
  color: var(--text-400);
  font-weight: 400;
}

.contact-success {
  text-align: center;
  padding: 2rem 1rem;
  width: 100%;
}

.contact-success:focus {
  outline: none;
}

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: hsl(216 90% 42% / 0.1);
  color: var(--blue-600);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.success-icon::before {
  content: "";
  width: 10px;
  height: 18px;
  border: solid currentColor;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg) translateY(-2px);
}

.contact-success p {
  color: var(--text-500);
  margin: 0.65rem 0 1.35rem;
  font-size: 0.95rem;
}

.btn.is-loading {
  opacity: 0.85;
  pointer-events: none;
}

.btn.is-loading .btn-label::after {
  content: "";
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

.form-row {
  display: grid;
  gap: 1rem;
}

.req {
  color: #ef4444;
}

.contact .field label {
  color: var(--text-700);
}

.form-secure {
  text-align: center;
  color: var(--text-400);
  font-size: 0.82rem;
}

.contact-form .form-feedback.is-success {
  color: #059669;
}

.contact-form .form-feedback.is-error,
.contact-card > .form-feedback.is-error,
.contact-page-card > .form-feedback.is-error {
  color: #dc2626;
}

.contact-card > .form-feedback,
.contact-page-card > .form-feedback {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 639px) {
  .contact .form-row,
  .contact-page-form .form-row,
  .contact .form-row-3,
  .contact-page-form .form-row-3 {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 1.15rem;
  }

  .contact-page-card {
    padding: 1.15rem;
  }
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }

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

  .contact-card {
    padding: 1.85rem;
  }
}

@media (min-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 3.5rem;
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.1);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner-inner {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
  padding: 1.1rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-copy h3 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.cookie-copy p {
  color: var(--text-500);
  font-size: 0.88rem;
  max-width: 75ch;
}

.cookie-actions {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .cookie-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: #b7c3d6;
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand p {
  margin: 1rem 0 1.15rem;
  max-width: 30ch;
  font-size: 0.95rem;
}

.footer-logo .brand-logo,
.footer-logo img {
  height: 56px;
  width: auto;
  background: var(--white);
  border-radius: 10px;
  padding: 0.35rem 0.5rem;
}

.footer-grid h4 {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-grid ul {
  display: grid;
  gap: 0.55rem;
}

.footer-grid a {
  color: #9fb0c7;
  font-size: 0.92rem;
  transition: color 0.2s var(--ease);
}

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

.footer-contact {
  margin-top: 1.25rem;
  color: #9fb0c7;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.15rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.82rem;
}

.footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
}

.footer-bottom a {
  color: #9fb0c7;
}

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

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
  }

  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   Phone / tablet-portrait optimization
   (desktop styles above min-width breakpoints stay unchanged)
   ============================================ */
@media (max-width: 767px) {
  :root {
    --header-h: 58px;
  }

  .container {
    width: min(100% - 1.35rem, var(--container));
  }

  /* Header — compact bar; menu overlays page content on every page */
  .site-header {
    isolation: isolate;
  }

  .site-header.is-menu-open {
    z-index: 1001;
  }

  .site-header.is-menu-open .menu-toggle {
    position: relative;
    z-index: 1002;
  }

  .site-header > .container {
    width: min(100% - 1.25rem, 1280px);
  }

  .nav-desktop {
    display: none !important;
  }

  .brand {
    margin-inline-start: 0;
    max-width: calc(100% - 48px);
    min-width: 0;
  }

  .brand-logo {
    height: 38px;
    max-width: 100%;
  }

  .header-inner {
    min-height: var(--header-h);
    gap: 0.4rem;
  }

  .header-actions {
    flex-shrink: 0;
    gap: 0.35rem;
  }

  .header-actions .btn {
    display: none !important;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }

  .nav-mobile {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    padding: 0.55rem 0.9rem calc(1rem + env(safe-area-inset-bottom, 0px));
    max-height: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
    border-top: 1px solid var(--border);
  }

  body.is-menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    top: var(--header-h);
    z-index: 998;
    background: rgba(15, 23, 42, 0.22);
    pointer-events: none;
  }

  .mobile-list > li {
    margin: 0;
  }

  .mobile-list > li + li {
    border-top: 1px solid hsl(214 43% 90% / 0.65);
  }

  .mobile-list > li > a,
  .mobile-parent-link {
    padding: 0.62rem 0.5rem;
    font-size: 0.92rem;
    min-height: 42px;
    line-height: 1.35;
  }

  .mobile-accordion-head {
    width: 100%;
    min-width: 0;
  }

  .mobile-accordion {
    width: 38px;
    height: 38px;
    min-height: 38px;
    flex-shrink: 0;
  }

  .mobile-sub {
    padding: 0 0 0.35rem 0.7rem;
  }

  .mobile-sub a {
    padding: 0.42rem 0.5rem;
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .mobile-actions {
    gap: 0.55rem;
    margin-top: 0.7rem;
    padding-top: 0.65rem;
    border-top: 1px solid var(--border);
  }

  .mobile-actions .btn {
    width: 100%;
    min-height: 44px;
  }

  /* Inner-page heroes — same tight spacing as homepage under compact nav */
  .page-hero,
  .about-hero,
  .legal-hero.about-hero,
  .page-treds .treds-hero,
  .eligibility-page-hero {
    padding: 1.35rem 0 1.5rem;
  }

  .page-treds .treds-jump {
    top: var(--header-h);
  }

  /* Hero — sits tight under the compact nav */
  .hero {
    padding: 0.85rem 0 1.35rem;
  }

  .hero-grid {
    gap: 1.35rem;
  }

  .hero-copy {
    min-width: 0;
  }

  .pill-badge {
    font-size: 0.72rem;
    min-height: 28px;
    padding: 0.28rem 0.75rem;
    margin-bottom: 0.65rem;
    max-width: 100%;
    white-space: normal;
    text-align: left;
    line-height: 1.3;
  }

  .hero h1 {
    font-size: clamp(1.55rem, 7vw, 1.95rem);
    max-width: none;
    margin-bottom: 0.4rem;
    line-height: 1.14;
  }

  .hero-lead {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
  }

  .hero-desc {
    font-size: 0.9rem;
    margin-bottom: 0.9rem;
    max-width: none;
    line-height: 1.5;
  }

  .hero-ctas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-bottom: 0.85rem;
  }

  .hero-ctas .btn {
    width: 100%;
    min-height: 46px;
    font-size: 0.92rem;
    justify-content: center;
  }

  /* Trust chips wrap instead of sideways scroll */
  .trust-chips {
    flex-wrap: wrap;
    overflow: visible;
    gap: 0.4rem;
  }

  .trust-chips li {
    font-size: 0.7rem;
    padding: 0.38rem 0.55rem;
    flex: 0 1 auto;
    max-width: 100%;
    white-space: normal;
    line-height: 1.25;
  }

  .hero-visual {
    padding-left: 0;
    order: 0;
    min-width: 0;
  }

  .hero-image-wrap {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding: 0;
    border-radius: 16px;
  }

  .hero-image-wrap:hover {
    transform: none;
  }

  .hero-slider,
  .hero-slides,
  .hero-image {
    border-radius: 16px;
  }

  /* Shorter hero photo so the fold is not all image */
  .hero-slides {
    aspect-ratio: 5 / 4;
  }

  .floating-card {
    left: 0.65rem;
    bottom: 0.65rem;
    right: auto;
    min-width: 0;
    max-width: calc(100% - 1.3rem);
    padding: 0.7rem 0.85rem 0.65rem;
    border-radius: 12px;
  }

  .floating-card:hover {
    transform: translateY(-2px) scale(1.02);
  }

  .floating-label {
    font-size: 0.72rem;
    white-space: normal;
  }

  .floating-value {
    font-size: 1.3rem;
  }

  /* Eligibility */
  .eligibility {
    padding: 2.15rem 0;
  }

  .eligibility h2 {
    font-size: clamp(1.3rem, 6vw, 1.65rem);
    margin-bottom: 1.2rem;
    padding-inline: 0;
    line-height: 1.25;
  }

  .eligibility-form {
    gap: 0.8rem;
    width: 100%;
  }

  .eligibility .field label {
    font-size: 0.82rem;
  }

  /* 16px inputs avoid iOS auto-zoom on focus */
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    min-height: 48px;
  }

  .eligibility .field select {
    text-overflow: ellipsis;
  }

  .eligibility-submit {
    width: 100%;
    margin-top: 0.15rem;
    min-height: 48px;
  }

  .secure-note {
    font-size: 0.78rem;
    flex-wrap: wrap;
    padding-inline: 0.25rem;
    gap: 0.35rem;
  }

  /* Partners */
  .partners {
    padding: 1.5rem 0;
  }

  .partners .section-eyebrow {
    margin-bottom: 1.1rem;
  }

  .partners-track {
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }

  .partners-marquee,
  .partners-list {
    gap: 0.75rem;
  }

  .partners-list li {
    min-width: 7.5rem;
    height: 3.4rem;
    padding: 0.08rem 0.3rem;
  }

  .partners-list img {
    height: 3.15rem;
    max-width: 7.1rem;
  }

  @keyframes partners-scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-50% - 0.375rem));
    }
  }

  /* Shared sections */
  .funding,
  .why-process,
  .schemes,
  .industries,
  .stories,
  .contact {
    padding: 2.25rem 0;
  }

  .section-head {
    gap: 0.65rem;
    margin-bottom: 1.2rem;
  }

  .section-head h2,
  .funding h2,
  .why-process h2,
  .schemes h2,
  .industries h2,
  .stories h2,
  .contact-copy h2 {
    font-size: clamp(1.3rem, 6vw, 1.65rem);
    max-width: none;
    line-height: 1.25;
  }

  .section-desc {
    font-size: 0.9rem;
    max-width: none;
  }

  .section-head .text-link {
    margin-top: 0;
    align-self: flex-start;
  }

  .section-eyebrow {
    font-size: 0.72rem;
  }

  /* Funding + schemes cards */
  .card-grid {
    gap: 0.85rem;
  }

  .soft-card,
  .scheme-card {
    padding: 1.1rem;
  }

  .soft-card h3,
  .scheme-card h3 {
    font-size: 0.98rem;
  }

  .soft-card p,
  .scheme-card p {
    font-size: 0.86rem;
  }

  .icon-box {
    width: 40px;
    height: 40px;
  }

  /* Why + process */
  .why-process-grid {
    gap: 2rem;
  }

  .feature-list {
    gap: 0.95rem;
  }

  .feature-list li {
    gap: 0.75rem;
  }

  .feature-list h3,
  .timeline h3 {
    font-size: 0.92rem;
  }

  .feature-list p,
  .timeline p {
    font-size: 0.86rem;
  }

  .timeline li {
    gap: 0.8rem;
    padding-bottom: 1.1rem;
  }

  .step-num {
    width: 34px;
    height: 34px;
    font-size: 0.72rem;
  }

  .timeline li:not(:last-child)::before {
    left: 16px;
    top: 36px;
  }

  /* Industries */
  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .industry-card {
    padding: 0.9rem 0.45rem;
    gap: 0.4rem;
    min-width: 0;
  }

  .industry-card span {
    font-size: 0.76rem;
    line-height: 1.25;
    word-break: break-word;
  }

  .industry-icon svg {
    width: 20px;
    height: 20px;
  }

  /* Stories */
  .stories h2 {
    margin-bottom: 1.35rem;
  }

  .stories-grid {
    gap: 0.95rem;
  }

  .testimonial-card,
  .featured-story {
    padding: 1.15rem;
  }

  .testimonial-card blockquote {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .author {
    align-items: flex-start;
    gap: 0.7rem;
  }

  .author span:not(.avatar) {
    font-size: 0.76rem;
    line-height: 1.35;
    word-break: break-word;
  }

  .featured-story h3 {
    font-size: 1.05rem;
    line-height: 1.3;
  }

  /* CTA */
  .cta-banner {
    padding: 2rem 0;
  }

  .cta-inner {
    gap: 1.05rem;
    text-align: center;
  }

  .cta-banner h2 {
    font-size: clamp(1.25rem, 6vw, 1.55rem);
    line-height: 1.25;
  }

  .cta-banner p {
    font-size: 0.9rem;
  }

  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0.65rem;
  }

  .cta-actions .btn {
    width: 100%;
    min-height: 46px;
    justify-content: center;
  }

  /* Contact */
  .contact-grid {
    gap: 1.5rem;
  }

  .contact-copy h2 {
    max-width: none;
  }

  .contact-copy > p {
    font-size: 0.92rem;
  }

  .contact-benefits {
    gap: 0.85rem;
  }

  .contact-card {
    padding: 1.1rem;
    border-radius: 14px;
    min-width: 0;
  }

  .form-row,
  .form-row-3,
  .contact .form-row,
  .contact .form-row-3,
  .contact-page-form .form-row,
  .contact-page-form .form-row-3 {
    grid-template-columns: 1fr;
  }

  .contact-form h3 {
    font-size: 1.05rem;
  }

  .contact-form .btn-block {
    min-height: 48px;
  }

  .whatsapp-link {
    font-size: 0.88rem;
    flex-wrap: wrap;
    line-height: 1.4;
  }

  /* Footer */
  .site-footer {
    padding-top: 2.25rem;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .footer-grid {
    gap: 1.5rem;
    padding-bottom: 1.6rem;
  }

  .footer-brand p {
    font-size: 0.9rem;
    max-width: none;
  }

  .footer-logo .brand-logo,
  .footer-logo img {
    height: 46px;
  }

  .footer-bottom {
    padding: 1rem 0 1.35rem;
  }

  .footer-bottom-inner {
    text-align: center;
    align-items: center;
  }

  .footer-bottom ul {
    justify-content: center;
  }

  /* Cookie banner */
  .cookie-banner-inner {
    padding: 0.9rem 0 calc(0.9rem + env(safe-area-inset-bottom, 0px));
    gap: 0.85rem;
  }

  .cookie-copy h3 {
    font-size: 0.9rem;
  }

  .cookie-copy p {
    font-size: 0.8rem;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .cookie-actions .btn {
    width: 100%;
    min-height: 42px;
  }

  /* Buttons: keep readable wrap on narrow screens */
  .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }
}

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

/* Extra-small phones */
@media (max-width: 380px) {
  .container {
    width: min(100% - 1.1rem, var(--container));
  }

  .site-header > .container {
    width: min(100% - 1rem, 1280px);
  }

  .brand-logo {
    height: 34px;
  }

  .hero {
    padding: 0.7rem 0 1.15rem;
  }

  .hero h1 {
    font-size: 1.45rem;
  }

  .hero-lead {
    font-size: 0.9rem;
  }

  .hero-desc {
    font-size: 0.86rem;
  }

  .trust-chips li {
    flex: 1 1 auto;
  }

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

  .industry-card span {
    font-size: 0.7rem;
  }

  .partners-list li {
    min-width: 6.75rem;
    height: 3.2rem;
    padding: 0.06rem 0.28rem;
  }

  .partners-list img {
    height: 2.95rem;
    max-width: 6.4rem;
  }

  .cookie-actions {
    grid-template-columns: 1fr;
  }
}

/* ========== About page ========== */
.about-hero {
  padding: 3.5rem 0;
  background: var(--muted);
  border-bottom: 1px solid var(--border);
}

.about-hero-copy {
  max-width: 48rem;
}

.about-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: var(--primary);
  color: var(--primary-foreground);
}

.about-hero h1 {
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.about-hero p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 42rem;
  line-height: 1.65;
}

@media (min-width: 1024px) {
  .about-hero {
    padding: 5rem 0;
  }
}

.about-stats {
  background: var(--primary);
  padding: 2.5rem 0;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.about-stat-value {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.about-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 1024px) {
  .about-stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.about-story,
.about-why {
  padding: 4rem 0;
  background: var(--background);
}

.about-story-inner {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.about-story h2,
.about-mission h2,
.about-why h2,
.about-team h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 1rem;
}

.about-story p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-story p:last-child {
  margin-bottom: 0;
}

.about-mission,
.about-team {
  padding: 4rem 0;
  background: var(--muted);
  border-block: 1px solid var(--border);
}

.about-section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.about-section-head p {
  color: var(--muted-foreground);
  max-width: 42rem;
  margin-inline: auto;
  font-size: 1.05rem;
  line-height: 1.65;
}

.about-values-grid,
.about-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.about-value-card,
.about-team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-xs);
}

.about-value-icon {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.about-value-card h3,
.about-team-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

.about-value-card p,
.about-team-card p:last-child {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.55;
}

.about-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.about-why-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-xs);
}

.about-why-card > svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--primary);
}

.about-why-card h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 0.25rem;
}

.about-why-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.55;
}

.about-team-card {
  text-align: center;
}

.about-team-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: hsl(216 90% 42% / 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.about-team-role {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.about-cta {
  padding: 4rem 0;
  background: var(--primary);
}

.about-cta-inner {
  max-width: 48rem;
  text-align: center;
}

.about-cta h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

.about-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.about-cta-actions .btn {
  padding-inline: 2rem;
}

@media (min-width: 640px) {
  .about-values-grid,
  .about-team-grid,
  .about-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .about-story,
  .about-mission,
  .about-why,
  .about-team {
    padding: 5rem 0;
  }

  .about-values-grid,
  .about-team-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 1.2rem 0 1.35rem;
  }

  .about-hero h1 {
    font-size: 1.65rem;
  }

  .about-hero p {
    font-size: 1rem;
  }

  .about-stats {
    padding: 1.75rem 0;
  }

  .about-stats-grid {
    gap: 1.1rem;
  }

  .about-stat-value {
    font-size: 1.35rem;
  }

  .about-cta-actions {
    flex-direction: column;
  }

  .about-cta-actions .btn {
    width: 100%;
  }
}

/* ========== Shared page hero (About / Contact) ========== */
.page-hero {
  padding: 3.5rem 0;
  background: var(--muted);
  border-bottom: 1px solid var(--border);
}

.page-hero:has(+ .announce-strip) {
  border-bottom: none;
}

.page-hero-copy {
  max-width: 48rem;
}

.page-hero h1 {
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-hero p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 42rem;
  line-height: 1.65;
}

@media (min-width: 1024px) {
  .page-hero {
    padding: 5rem 0;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 1.2rem 0 1.35rem;
  }

  .page-hero h1 {
    font-size: 1.65rem;
  }

  .page-hero p {
    font-size: 1rem;
  }
}

/* ========== Announcement strip (Jansamarth-style) ========== */
.announce-strip {
  --announce-orange: #ff9934;
  --announce-orange-edge: #e25f08;
  --announce-cream: #fff1dc;
  background: var(--announce-orange);
  width: 100%;
  height: 47px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.announce-strip__inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.announce-strip__label,
.announce-strip__end {
  position: relative;
  display: flex;
  align-items: center;
  height: 47px;
  overflow: hidden;
  flex-shrink: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  white-space: nowrap;
}

.announce-strip__label {
  padding: 0 1.875rem 0 1.25rem;
}

.announce-strip__end {
  width: 5.5rem;
  padding-left: 1.875rem;
  color: transparent;
  pointer-events: none;
}

/* Diagonal cream cut + darker orange edge (left label) */
.announce-strip__label::before {
  content: "";
  position: absolute;
  height: 55px;
  border-left: 22px solid var(--announce-cream);
  transform: rotate(22deg);
  right: -9px;
  top: 0;
}

.announce-strip__label::after {
  content: "";
  position: absolute;
  height: 54px;
  border-left: 8px solid var(--announce-orange-edge);
  transform: rotate(20deg);
  right: 8px;
  top: -5px;
}

/* Mirrored diagonal cut (right decorative end) */
.announce-strip__end::before {
  content: "";
  position: absolute;
  height: 55px;
  border-left: 22px solid var(--announce-cream);
  transform: rotate(22deg);
  left: -9px;
  top: -5px;
}

.announce-strip__end::after {
  content: "";
  position: absolute;
  height: 54px;
  border-left: 8px solid var(--announce-orange-edge);
  transform: rotate(20deg);
  left: 8px;
  top: -3px;
}

.announce-strip__body {
  flex: 1 1 auto;
  min-width: 0;
  height: 47px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--announce-cream);
}

.announce-strip__track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: announce-marquee 32s linear infinite;
}

.announce-strip__track:hover {
  animation-play-state: paused;
}

.announce-strip__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.announce-strip__text {
  margin: 0;
  padding: 0 2.75rem 0 0;
  color: #000;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 47px;
  white-space: nowrap;
  flex-shrink: 0;
}

.announce-strip__group > .announce-strip__text:first-child {
  padding-left: 1rem;
}

.announce-strip__text a {
  color: #0066cc;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.announce-strip__text a:hover {
  color: var(--primary-hover);
}

.announce-strip__text a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 2px;
}

@keyframes announce-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .announce-strip__track {
    animation: none;
    width: 100%;
  }

  .announce-strip__group[aria-hidden="true"],
  .announce-strip__text[aria-hidden="true"] {
    display: none;
  }

  .announce-strip__text {
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 1.5rem;
  }
}

@media (max-width: 767px) {
  .announce-strip {
    height: auto;
    background: var(--announce-cream);
  }

  .announce-strip__inner {
    flex-direction: column;
  }

  .announce-strip__label,
  .announce-strip__end {
    display: none;
  }

  .announce-strip__body {
    width: 100%;
    height: 42px;
  }

  .announce-strip__text {
    font-size: 0.875rem;
    line-height: 42px;
    padding-right: 2.25rem;
  }

  .announce-strip__track {
    animation-duration: 26s;
  }
}

/* ========== Contact page ========== */
.contact-page {
  padding: 4rem 0;
  background: var(--background);
}

@media (min-width: 1024px) {
  .contact-page {
    padding: 5rem 0;
  }
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-page-grid {
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    align-items: start;
  }
}

.contact-page-aside h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 1.5rem;
}

.contact-detail-list {
  display: grid;
  gap: 1.25rem;
}

.contact-detail-link,
.contact-detail-static {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: hsl(216 90% 42% / 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s var(--ease);
}

.contact-detail-link:hover .contact-detail-icon {
  background: hsl(216 90% 42% / 0.2);
}

.contact-detail-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.125rem;
}

.contact-detail-value {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--card-foreground);
  transition: color 0.2s var(--ease);
  word-break: break-word;
}

.contact-detail-link:hover .contact-detail-value {
  color: var(--primary);
}

.contact-offices {
  margin-top: 2rem;
}

.contact-offices h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 1rem;
}

.contact-office-list {
  display: grid;
  gap: 0.75rem;
}

.contact-office-card {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 0.75rem;
  padding: 1rem;
}

.contact-office-city {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.contact-office-address {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
  line-height: 1.45;
}

.contact-office-phone {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--card-foreground);
}

.contact-page-card {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-xs);
}

@media (min-width: 640px) {
  .contact-page-card {
    padding: 2rem;
  }
}

.contact-page-form {
  display: grid;
  gap: 1rem;
}

.contact-page-form[hidden] {
  display: none !important;
}

.contact-page-form h3 {
  margin-bottom: 0;
}

.contact-form-lead {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: -0.35rem;
  margin-bottom: 0.5rem;
}

.contact-page-form .btn-block {
  margin-top: 0.25rem;
}

.contact-success {
  text-align: center;
  padding: 2.5rem 1rem;
  width: 100%;
}

.contact-success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: hsl(216 90% 42% / 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-success h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

.contact-success p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .contact-card.is-success-state,
  .contact-page-card.is-success-state {
    min-height: 240px;
    padding: 1.5rem 1rem;
  }

  .contact-success {
    padding: 1.25rem 0.5rem;
    max-width: 22rem;
    margin: 0 auto;
  }

  .contact-success-icon {
    width: 3.25rem;
    height: 3.25rem;
  }

  .contact-success h3 {
    font-size: 1.15rem;
  }

  .contact-success p {
    font-size: 0.875rem;
    margin-bottom: 1.15rem;
    line-height: 1.45;
  }

  .contact-success .btn {
    width: 100%;
    min-height: 48px;
  }
}

.contact-quick-cta {
  padding: 3rem 0;
  background: var(--primary);
}

.contact-quick-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-quick-cta h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 0.25rem;
}

.contact-quick-cta p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-quick-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .contact-quick-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.contact-eligibility-nudge {
  padding: 2.5rem 0;
  background: var(--muted);
  border-top: 1px solid var(--border);
}

.contact-eligibility-nudge p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

@media (max-width: 480px) {
  .contact-page {
    padding: 2.5rem 0;
  }

  .contact-quick-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .contact-quick-cta-actions .btn {
    width: 100%;
  }

  .contact-eligibility-nudge .btn {
    width: 100%;
  }
}

/* ========== Funding Solutions ========== */
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.funding-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.funding-breadcrumb a {
  color: var(--primary);
  font-weight: 600;
}

.funding-breadcrumb a:hover {
  text-decoration: underline;
}

.funding-acc {
  padding: 4rem 0;
  background: var(--background);
}

@media (min-width: 1024px) {
  .funding-acc {
    padding: 5rem 0;
  }
}

.funding-acc [data-funding-accordion],
.funding-acc [data-schemes-accordion] {
  display: grid;
  gap: 1rem;
}

.funding-acc-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.funding-acc-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s var(--ease);
}

.funding-acc-toggle:hover {
  background: hsl(215 83% 95% / 0.55);
}

.funding-acc-toggle-main {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.funding-acc-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: hsl(216 90% 42% / 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.funding-acc-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}

.funding-acc-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--card-foreground);
}

.funding-acc-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
}

.funding-acc-summary {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 42ch;
}

.funding-acc-toggle-aside {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.funding-acc-amount {
  display: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.funding-acc-chevron {
  color: var(--muted-foreground);
  transition: transform 0.2s var(--ease);
}

.funding-acc-item.is-open .funding-acc-chevron {
  transform: rotate(180deg);
}

.funding-acc-panel {
  padding: 0 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
}

.funding-acc-panel[hidden] {
  display: none !important;
}

.funding-acc-panel-desc {
  color: var(--muted-foreground);
  margin: 1.25rem 0 1.5rem;
  line-height: 1.65;
}

.funding-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.funding-stat {
  border-radius: 0.75rem;
  background: var(--muted);
  padding: 1rem;
}

.funding-stat-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.funding-stat-label svg {
  flex-shrink: 0;
  color: var(--primary);
}

.funding-stat-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--card-foreground);
}

.funding-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.funding-cols h3,
.funding-col-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 0.75rem;
}

.funding-col-title svg,
.funding-cols h3 svg {
  flex-shrink: 0;
  color: var(--primary);
}

.funding-bullets {
  display: grid;
  gap: 0.5rem;
}

.funding-bullets li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.45;
}

.funding-bullets li > span:first-child {
  color: var(--primary);
  margin-top: 0.1rem;
}

.funding-acc-panel-actions,
.funding-detail-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.funding-detail-note {
  margin: 0.65rem 0 0;
  flex: 1 1 100%;
  max-width: 42rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted-foreground, #64748b);
}

.funding-qualify {
  padding: 3rem 0 4rem;
  background: var(--muted);
  border-top: 1px solid var(--border);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.funding-qualify-inner {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.funding-qualify h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

.funding-qualify p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

.funding-detail {
  padding: 3rem 0 4rem;
  background: var(--background);
}

.funding-detail-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
  padding: 1.5rem;
  box-shadow: var(--shadow-xs);
}

.funding-detail-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.funding-detail-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  background: hsl(216 90% 42% / 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.funding-detail-head h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 0.2rem;
}

.funding-detail-amount {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.funding-process {
  padding: 4rem 0;
  background: var(--muted);
  border-block: 1px solid var(--border);
}

.funding-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.funding-process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}

.funding-step {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--primary);
  color: var(--primary-foreground);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.funding-process-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

.funding-process-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.55;
}

@media (min-width: 640px) {
  .funding-acc-amount {
    display: inline;
  }

  .funding-detail-card {
    padding: 2rem;
  }

  .funding-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .funding-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .funding-stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .funding-process {
    padding: 5rem 0;
  }

  .funding-process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .funding-acc-toggle {
    padding: 1.25rem 1.5rem;
  }

  .funding-acc-panel {
    padding: 0 1.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .funding-acc-summary {
    white-space: normal;
  }

  .page-hero-actions {
    flex-direction: column;
  }

  .page-hero-actions .btn {
    width: 100%;
  }

  .funding-detail-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .funding-detail-cta .btn {
    width: 100%;
    text-align: center;
  }
}

/* Government Schemes */
.page-schemes .funding-acc-name {
  font-size: 1.125rem;
}

.page-schemes .funding-acc-item,
.page-schemes .scheme-faq-item {
  background: var(--white);
}

.page-schemes .page-hero-actions .btn-outline svg {
  color: var(--primary);
}

.page-schemes .page-hero-actions .btn,
.page-schemes .funding-detail-cta .btn,
.page-schemes .funding-acc-panel-actions .btn {
  white-space: normal;
  text-align: center;
}

.funding-acc-tag--accent {
  background: var(--accent);
  color: var(--primary-foreground);
}

.funding-acc-tag--secondary {
  background: #dce5f0;
  color: var(--card-foreground);
  border: 1px solid var(--border);
}

.funding-detail-subtitle {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

.scheme-faq {
  padding: 4rem 0;
  background: var(--background);
}

@media (min-width: 1024px) {
  .scheme-faq {
    padding: 5rem 0;
  }
}

.scheme-faq-inner {
  max-width: 48rem;
}

.scheme-faq [data-schemes-faq],
.scheme-faq [data-treds-faq] {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.scheme-faq-item {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--white);
  overflow: hidden;
}

.scheme-faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--card-foreground);
  background: transparent;
  border: none;
  cursor: pointer;
}

.scheme-faq-toggle:hover {
  background: color-mix(in srgb, var(--muted) 50%, transparent);
}

.scheme-faq-toggle svg {
  flex-shrink: 0;
  color: var(--muted-foreground);
  transition: transform 0.2s ease;
}

.scheme-faq-item.is-open .scheme-faq-toggle svg {
  transform: rotate(180deg);
}

.scheme-faq-panel {
  padding: 0 1.25rem 1rem;
  border-top: 1px solid var(--border);
}

.scheme-faq-panel[hidden] {
  display: none;
}

.scheme-faq-panel p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.page-schemes .about-cta {
  background: var(--primary);
}

@media (max-width: 640px) {
  .scheme-faq {
    padding: 3rem 0 4rem;
  }

  .scheme-faq-toggle {
    padding: 0.875rem 1rem;
    font-size: 0.8125rem;
  }
}

/* ========== Resources page ========== */
.resources-guides {
  padding: 4rem 0;
  background: var(--background);
}

@media (min-width: 1024px) {
  .resources-guides {
    padding: 5rem 0;
  }
}

.resources-guides-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.resource-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
  padding: 1.5rem;
  transition: box-shadow 0.2s var(--ease);
}

.resource-card:hover {
  box-shadow: var(--shadow-md);
}

.resource-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.resource-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: hsl(216 90% 42% / 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.resource-chip {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  white-space: nowrap;
}

.resource-chip--started,
.resource-chip--wc {
  background: hsl(216 90% 42% / 0.1);
  color: var(--primary);
}

.resource-chip--credit {
  background: hsl(210 90% 40% / 0.1);
  color: var(--accent);
}

.resource-chip--schemes {
  background: var(--secondary);
  color: var(--foreground);
}

.resource-chip--docs {
  background: var(--muted);
  color: var(--muted-foreground);
}

.resource-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.resource-card > p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}

.resource-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.resource-read-time {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.resource-read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
}

.resource-read-link:hover {
  text-decoration: underline;
}

.resources-faq {
  background: var(--muted);
  border-block: 1px solid var(--border);
}

@media (min-width: 768px) {
  .resources-guides-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .resources-guides-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .resources-guides {
    padding: 3rem 0;
  }

  .resource-card {
    padding: 1.25rem;
  }
}

a.resource-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.resource-card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.guide-read-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.guide-article {
  padding: 3rem 0 4rem;
  background: var(--background);
}

.guide-article-inner {
  max-width: 48rem;
}

.guide-block {
  margin-bottom: 2rem;
}

.guide-block h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 0.75rem;
}

.guide-block p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.guide-bullets {
  display: grid;
  gap: 0.6rem;
  padding-left: 1.1rem;
}

.guide-bullets li {
  color: var(--muted-foreground);
  line-height: 1.6;
  font-size: 0.95rem;
}

.guide-takeaways {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--muted);
}

.guide-takeaways h2 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 0.85rem;
}

.guide-related {
  padding: 3rem 0 4rem;
  background: var(--muted);
  border-block: 1px solid var(--border);
}

.guide-related h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 1.5rem;
  text-align: center;
}

.guide-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.guide-related-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s var(--ease);
}

.guide-related-card:hover {
  box-shadow: var(--shadow-md);
}

.guide-related-card strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--card-foreground);
  line-height: 1.35;
}

.guide-related-card > span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
}

@media (min-width: 768px) {
  .guide-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .guide-article {
    padding: 2rem 0 3rem;
  }
}

/* ========== Eligibility wizard ========== */
.eligibility-wizard-section {
  padding: 3rem 0 4rem;
}

.funding-qualify-intro {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.funding-qualify-intro h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

.funding-qualify-intro p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

.eligibility-page-hero {
  padding: 3rem 0;
  background: var(--muted);
  border-bottom: 1px solid var(--border);
}

.eligibility-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.eligibility-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--card-foreground);
}

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

.eligibility-page-main {
  padding: 3rem 0 4rem;
  background: var(--background);
}

.eligibility-wizard-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.eligibility-wizard-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
  padding: 1.5rem;
  box-shadow: var(--shadow-xs);
}

@media (min-width: 640px) {
  .eligibility-wizard-card {
    padding: 2rem;
  }
}

.eligibility-progress {
  margin-bottom: 1.75rem;
}

.eligibility-progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted-foreground);
}

.eligibility-progress-meta span:last-child {
  color: var(--primary);
}

.eligibility-progress-bar {
  width: 100%;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--muted);
  overflow: hidden;
}

.eligibility-progress-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
  transition: width 0.35s var(--ease);
}

.eligibility-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 1.5rem;
}

.eligibility-wizard-form {
  display: grid;
  gap: 1.25rem;
}

.eligibility-form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .eligibility-form-row {
    grid-template-columns: 1fr 1fr;
  }

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

.eligibility-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--card-foreground);
  margin-bottom: 0.4rem;
}

.eligibility-field input,
.eligibility-field select {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--background);
  color: var(--foreground);
  font-size: 0.9rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.eligibility-field input:focus,
.eligibility-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsl(216 90% 42% / 0.15);
}

.eligibility-field.is-invalid input,
.eligibility-field.is-invalid select {
  border-color: var(--destructive);
}

.eligibility-field input[readonly] {
  background: hsl(210 20% 98%);
  color: var(--muted-foreground, #64748b);
  cursor: default;
}

.eligibility-field select:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  background: hsl(210 20% 98%);
  color: var(--muted-foreground, #64748b);
}

.eligibility-field-error {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--destructive);
}

.eligibility-form-error {
  margin: 0.5rem 0 0;
  text-align: center;
}

.eligibility-wizard-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.eligibility-wizard-nav .btn-primary {
  margin-left: auto;
}

.eligibility-disclaimer {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
  line-height: 1.5;
}

.eligibility-disclaimer svg {
  vertical-align: -2px;
  margin-right: 0.2rem;
  color: var(--primary);
}

.eligibility-sidebar {
  display: grid;
  gap: 1.25rem;
}

.eligibility-sidebar-card,
.eligibility-whatsapp-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
  padding: 1.5rem;
}

.eligibility-sidebar-card h3,
.eligibility-sidebar-stats h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 1.25rem;
}

.eligibility-why-list {
  display: grid;
  gap: 1rem;
}

.eligibility-why-item {
  display: flex;
  gap: 0.75rem;
}

.eligibility-why-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.eligibility-why-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--card-foreground);
  margin-bottom: 0.15rem;
}

.eligibility-why-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.45;
}

.eligibility-sidebar-stats {
  border-radius: var(--radius-xl);
  background: var(--card-foreground);
  padding: 1.5rem;
}

.eligibility-sidebar-stats h3 {
  color: var(--white);
}

.eligibility-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.eligibility-stat-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-400);
  margin-bottom: 0.15rem;
}

.eligibility-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.eligibility-whatsapp-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: box-shadow 0.2s var(--ease);
}

.eligibility-whatsapp-card:hover {
  box-shadow: var(--shadow-md);
}

.eligibility-whatsapp-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: hsl(142 76% 36% / 0.12);
  color: #16a34a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eligibility-whatsapp-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--card-foreground);
}

.eligibility-whatsapp-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.eligibility-whatsapp-card > svg:last-child {
  margin-left: auto;
  color: var(--muted-foreground);
}

.eligibility-success {
  text-align: center;
}

.eligibility-success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: hsl(216 90% 42% / 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.eligibility-success h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 0.75rem;
}

.eligibility-success-body {
  color: var(--muted-foreground);
  max-width: 32rem;
  margin: 0 auto 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.eligibility-success-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.eligibility-success-step {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.eligibility-success-num {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.eligibility-success-step p {
  font-size: 0.875rem;
  color: var(--card-foreground);
  padding-top: 0.25rem;
}

.eligibility-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .eligibility-wizard-layout {
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
  }

  .eligibility-page-main,
  .eligibility-wizard-section {
    padding: 4rem 0 5rem;
  }

  .eligibility-success-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .eligibility-wizard-nav {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .eligibility-wizard-nav .btn {
    width: 100%;
  }

  .eligibility-wizard-nav .btn-primary {
    margin-left: 0;
  }

  .eligibility-success-actions {
    flex-direction: column;
  }

  .eligibility-success-actions .btn {
    width: 100%;
  }
}

/* ========== TReDS service page ========== */
.page-treds .treds-hero {
  padding: 3rem 0 2.5rem;
  background: var(--muted);
  border-bottom: 1px solid var(--border);
}

.treds-hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.treds-hero-copy .about-eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.treds-paid-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.treds-hero h1 {
  font-size: clamp(1.75rem, 4.2vw, 2.75rem);
  font-weight: 700;
  color: var(--card-foreground);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.treds-hero-lead {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.treds-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.treds-hero-support {
  font-size: 0.875rem;
  color: var(--text-500);
  font-weight: 500;
}

.treds-hero-visual {
  position: relative;
}

.treds-hero-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.treds-hero-image-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.treds-flow-chip {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--card-foreground);
  text-align: center;
}

.treds-flow-chip span[aria-hidden="true"] {
  color: var(--primary);
  font-weight: 700;
}

.treds-notice {
  padding: 1.5rem 0 0;
  margin-top: -0.5rem;
}

.treds-notice-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-xs);
}

.treds-notice-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: hsl(216 90% 42% / 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.treds-notice-card h2 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--card-foreground);
}

.treds-notice-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.55;
}

.treds-notice-card p + p {
  margin-top: 0.4rem;
}

.treds-section {
  padding: 4rem 0;
}

.treds-section--muted {
  background: var(--muted);
  border-block: 1px solid var(--border);
}

.treds-section--soft {
  background: var(--bg-soft-2);
}

.treds-section-head {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.treds-section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.treds-section-head h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 0.75rem;
}

.treds-section-head p {
  color: var(--muted-foreground);
  line-height: 1.65;
  font-size: 1rem;
}

.treds-problem-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.treds-problem-card,
.treds-why-card,
.treds-service-card,
.treds-choose-card,
.treds-doc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.35rem 1.4rem;
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.treds-problem-card:hover,
.treds-why-card:hover,
.treds-service-card:hover,
.treds-choose-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.treds-card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding-inline: 0.5rem;
  border-radius: 0.65rem;
  background: hsl(216 90% 42% / 0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.treds-problem-card h3,
.treds-why-card h3,
.treds-service-card h3,
.treds-choose-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

.treds-problem-card p,
.treds-why-card p,
.treds-service-card p,
.treds-choose-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.55;
}

.treds-section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.treds-flow {
  display: grid;
  gap: 0.75rem;
  margin: 1.75rem 0 1.25rem;
}

.treds-flow-step {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.treds-flow-step-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  background: hsl(216 90% 42% / 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.treds-flow-step strong {
  font-size: 0.9rem;
  color: var(--card-foreground);
}

.treds-disclaimer {
  font-size: 0.8125rem;
  color: var(--text-500);
  line-height: 1.55;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--primary);
  background: var(--white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.treds-why-grid,
.treds-services-grid,
.treds-choose-grid,
.treds-docs-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.treds-service-card .treds-card-num {
  margin-bottom: 0.75rem;
}

.treds-benefit-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.treds-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--card-foreground);
}

.treds-benefit-item svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 0.1rem;
}

.treds-pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.treds-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-xs);
}

.treds-price-card.is-featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, hsl(216 90% 42% / 0.06), var(--white) 40%);
}

.treds-price-badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.treds-price-tier {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.treds-price-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--card-foreground);
}

.treds-price-amount {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.treds-price-amount span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted-foreground);
}

.treds-price-list {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.treds-price-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--text-700);
  line-height: 1.45;
}

.treds-price-list svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 0.15rem;
}

.treds-price-card .btn {
  width: 100%;
}

.treds-price-note {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-500);
  text-align: center;
}

.treds-pricing-disclaimer {
  margin-top: 2rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
}

.treds-pricing-disclaimer h3 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.treds-pricing-disclaimer p {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  line-height: 1.55;
}

.treds-pricing-disclaimer p + p {
  margin-top: 0.4rem;
}

.treds-compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--white);
}

.treds-compare {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.treds-compare th,
.treds-compare td {
  padding: 1rem 1.15rem;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.treds-compare th {
  background: hsl(216 90% 42% / 0.08);
  color: var(--card-foreground);
  font-family: var(--font-heading);
  font-weight: 700;
}

.treds-compare tr:last-child td {
  border-bottom: none;
}

.treds-compare td:last-child {
  color: var(--text-700);
  font-weight: 500;
}

.treds-doc-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
}

.treds-doc-card svg {
  flex-shrink: 0;
  color: var(--primary);
}

.treds-doc-card span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--card-foreground);
}

.treds-trust {
  padding: 2rem 0;
  background: var(--navy-900);
  color: var(--white);
}

.treds-trust-inner {
  display: grid;
  gap: 1.25rem;
  text-align: center;
}

.treds-trust-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.treds-trust-points {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
}

.treds-trust-points li {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

.treds-form-section {
  padding: 4rem 0 5rem;
}

.treds-form-card {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-xs);
  max-width: 52rem;
  margin-inline: auto;
}

.treds-form-card h2 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.treds-form-lead {
  color: var(--muted-foreground);
  font-size: 0.925rem;
  margin-bottom: 1.25rem;
}

.treds-form .form-row {
  margin-bottom: 0;
}

.treds-form {
  display: grid;
  gap: 1rem;
}

.treds-form .field-error {
  display: none;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: #dc2626;
}

.treds-form .field.is-invalid .field-error {
  display: block;
}

.treds-form-note {
  text-align: center;
  color: var(--text-400);
  font-size: 0.82rem;
}

.treds-success {
  text-align: center;
  padding: 2rem 0.5rem;
}

.treds-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: hsl(216 90% 42% / 0.1);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
}

.treds-success h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.treds-success p {
  color: var(--muted-foreground);
  margin-bottom: 1.35rem;
  line-height: 1.55;
}

.page-treds .scheme-faq-toggle {
  font-size: 0.95rem;
}

@media (min-width: 640px) {
  .treds-problem-grid,
  .treds-why-grid,
  .treds-choose-grid,
  .treds-docs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .treds-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .treds-form-card {
    padding: 2rem;
  }

  .treds-trust-points {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .treds-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .funding-process-grid.treds-journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .page-treds .treds-hero {
    padding: 4.5rem 0 3rem;
  }

  .treds-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }

  .treds-section {
    padding: 5rem 0;
  }

  .treds-problem-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .treds-why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .treds-why-grid .treds-why-card:nth-child(4),
  .treds-why-grid .treds-why-card:nth-child(5) {
    grid-column: span 1;
  }

  .treds-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .treds-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .treds-price-card.is-featured {
    transform: scale(1.03);
    z-index: 1;
  }

  .treds-choose-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .treds-docs-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .treds-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .funding-process-grid.treds-journey {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .page-treds .treds-hero {
    padding: 2.25rem 0 1.75rem;
  }

  .treds-hero-ctas .btn {
    width: 100%;
  }

  .treds-flow-chip {
    font-size: 0.65rem;
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
  }

  .treds-trust-points {
    grid-template-columns: 1fr;
  }
}

/* ---- TReDS UX enhancements ---- */
.treds-jump {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.treds-jump-inner {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  overflow-x: auto;
  padding: 0.65rem 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.treds-jump-inner::-webkit-scrollbar {
  display: none;
}

.treds-jump a {
  flex-shrink: 0;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text-700);
  white-space: nowrap;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.treds-jump a:hover {
  color: var(--primary);
  background: hsl(216 90% 42% / 0.06);
}

.treds-jump a.is-active {
  color: var(--primary);
  background: hsl(216 90% 42% / 0.1);
}

.treds-jump-cta {
  margin-left: auto;
  color: var(--primary-foreground) !important;
  background: var(--primary) !important;
}

.treds-jump-cta:hover {
  background: var(--primary-hover) !important;
  color: var(--primary-foreground) !important;
}

.page-treds .treds-hero {
  background:
    radial-gradient(circle at top right, hsl(216 90% 42% / 0.08), transparent 42%),
    var(--muted);
}

.treds-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1rem;
}

.treds-hero-pills li {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--card-foreground);
  font-size: 0.75rem;
  font-weight: 600;
}

.treds-hero-quick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-500);
}

.treds-hero-quick a {
  color: var(--primary);
  font-weight: 600;
}

.treds-hero-quick a:hover {
  text-decoration: underline;
}

.treds-hero-image-wrap {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.treds-hero-visual:hover .treds-hero-image-wrap {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.treds-flow-step {
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.treds-flow-step:hover {
  border-color: hsl(216 90% 42% / 0.35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.treds-benefit-item {
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.treds-benefit-item:hover {
  border-color: hsl(216 90% 42% / 0.35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.treds-price-card {
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.treds-price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.treds-price-card.is-featured:hover {
  transform: translateY(-4px) scale(1.01);
}

.treds-doc-card:hover {
  border-color: hsl(216 90% 42% / 0.35);
  box-shadow: var(--shadow-sm);
}

.treds-form-section {
  padding: 4.5rem 0 5.5rem;
  background:
    radial-gradient(circle at top left, hsl(216 90% 42% / 0.08), transparent 40%),
    var(--bg-soft-2);
  scroll-margin-top: calc(var(--header-h) + 3.5rem);
}

.treds-form-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.treds-form-aside {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-xs);
}

.treds-form-aside h2 {
  font-size: 1.35rem;
  margin: 0.35rem 0 0.75rem;
  color: var(--card-foreground);
}

.treds-form-aside > p {
  color: var(--muted-foreground);
  font-size: 0.925rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.treds-form-aside .about-eyebrow {
  color: #fff;
}

.treds-form-highlights {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.treds-form-highlights li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--text-700);
  line-height: 1.45;
}

.treds-form-highlights svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.treds-form-contact {
  display: grid;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.treds-form-contact a {
  font-weight: 600;
  color: var(--primary);
}

.treds-form-contact a:hover {
  text-decoration: underline;
}

.treds-form-card {
  max-width: none;
  margin-inline: 0;
  box-shadow: var(--shadow-md);
  border-color: hsl(216 90% 42% / 0.18);
}

.treds-form .field input:focus,
.treds-form .field select:focus,
.treds-form .field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsl(216 90% 42% / 0.12);
}

#treds-overview,
#treds-services,
#treds-journey,
#treds-pricing,
#treds-faq,
#treds-enquiry {
  scroll-margin-top: calc(var(--header-h) + 3.5rem);
}

.treds-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.55rem;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px hsl(0 0% 0% / 0.08);
}

.treds-sticky-cta[hidden] {
  display: none !important;
}

.treds-sticky-cta .btn {
  min-height: 44px;
  width: 100%;
  font-size: 0.875rem;
}

.page-treds.has-sticky-cta {
  padding-bottom: 5.5rem;
}

@media (min-width: 900px) {
  .treds-form-layout {
    grid-template-columns: 0.9fr 1.25fr;
    gap: 1.75rem;
  }

  .treds-form-aside {
    position: sticky;
    top: calc(var(--header-h) + 4.25rem);
    padding: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .treds-sticky-cta {
    display: none !important;
  }

  .page-treds.has-sticky-cta {
    padding-bottom: 0;
  }

  .treds-jump-inner {
    justify-content: center;
    gap: 0.45rem;
  }
}

/* ========== Sitemap page ========== */
.sitemap-page {
  padding: 3.5rem 0 4.5rem;
  background: var(--background);
}

.sitemap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.sitemap-group {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-sm);
}

.sitemap-group h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}

.sitemap-group ul {
  display: grid;
  gap: 0.45rem;
}

.sitemap-group a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-700);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s var(--ease);
}

.sitemap-group a::before {
  content: "";
  width: 0.35em;
  height: 0.35em;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.sitemap-group a:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .sitemap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .sitemap-page {
    padding: 4.5rem 0 5.5rem;
  }

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

/* ========== Legal / Privacy Policy ========== */
.legal-hero .about-hero-copy {
  max-width: 40rem;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.legal-page {
  padding: 2rem 0 3.5rem;
  background: var(--background);
}

.legal-inner {
  max-width: 46rem;
}

.legal-intro {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.legal-intro p,
.legal-section p {
  color: var(--muted-foreground);
  font-size: 0.975rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.legal-section {
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.legal-section h2 {
  font-size: clamp(1.05rem, 3.5vw, 1.25rem);
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.legal-section h3 {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--card-foreground);
  margin: 1.15rem 0 0.55rem;
}

.legal-section > p + p,
.legal-section > ul + p,
.legal-section > address + p,
.legal-section > p + ul {
  margin-top: 0.75rem;
}

.legal-list {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.65rem;
  padding-left: 1.15rem;
  list-style: disc;
}

.legal-list li {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.55;
  padding-left: 0.15rem;
  overflow-wrap: anywhere;
}

.legal-address {
  display: block;
  margin: 0.75rem 0;
  padding: 1rem 1.1rem;
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-700);
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow-wrap: anywhere;
}

.legal-address strong {
  color: var(--card-foreground);
  font-weight: 700;
}

.legal-address a,
.legal-section a {
  color: var(--primary);
  font-weight: 500;
  word-break: break-word;
}

.legal-address a:hover,
.legal-section a:hover {
  text-decoration: underline;
}

.legal-closing {
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.legal-closing p {
  color: var(--card-foreground);
  font-size: 0.95rem;
  line-height: 1.55;
}

.legal-closing p + p {
  margin-top: 0.25rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

@media (max-width: 767px) {
  .legal-hero.about-hero {
    padding: 1.35rem 0 1.5rem;
  }

  .legal-hero .about-eyebrow {
    margin-bottom: 0.75rem;
  }

  .legal-hero h1 {
    font-size: clamp(1.55rem, 7vw, 1.9rem);
    margin-bottom: 0.75rem;
  }

  .legal-meta {
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.85rem;
  }

  .legal-page {
    padding: 1.5rem 0 3rem;
  }

  .legal-intro {
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.35rem;
  }

  .legal-intro p,
  .legal-section p {
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .legal-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.35rem;
  }

  .legal-section h2 {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
  }

  .legal-section h3 {
    font-size: 0.95rem;
    margin-top: 1rem;
  }

  .legal-list {
    gap: 0.4rem;
    padding-left: 1.05rem;
  }

  .legal-list li {
    font-size: 0.92rem;
  }

  .legal-address {
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
    line-height: 1.65;
  }
}

@media (min-width: 768px) {
  .legal-page {
    padding: 2.75rem 0 4.5rem;
  }

  .legal-meta {
    font-size: 0.95rem;
  }
}

@media (min-width: 1024px) {
  .legal-page {
    padding: 3.25rem 0 5rem;
  }
}

