/* ========================================
   Urban Blue Project — styles.css
   Design system + all page styles
   ======================================== */

/* --- Fonts --- */

/* Satoshi — headings, nav, buttons, tags */
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/satoshi/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/satoshi/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/satoshi/Satoshi-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Inter — body text, descriptions, form labels */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');

/* --- Design Tokens --- */
:root {
  /* Colors */
  --navy:       #0f2b3c;
  --navy-light: #1a3a4f;
  --white:      #ffffff;
  --off-white:  #f0f2f5;
  --gray-100:   #e8ecf0;
  --gray-300:   #c5cdd5;
  --gray-500:   #6b7a87;
  --gray-700:   #3d4852;
  --gray-900:   #1a1f24;

  /* Typography */
  --font-heading:   'Satoshi', sans-serif;
  --font-body:      'Inter', sans-serif;
  --font-family:    'Inter', sans-serif;
  --text-xs:        0.75rem;
  --text-sm:        0.875rem;
  --text-base:      1rem;
  --text-lg:        1.125rem;
  --text-xl:        1.25rem;
  --text-2xl:       1.5rem;
  --text-3xl:       2rem;
  --text-4xl:       2.5rem;
  --text-5xl:       3.25rem;

  --font-regular:   400;
  --font-medium:    500;
  --font-semibold:  600;
  --font-bold:      700;
  --font-extrabold: 900;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2rem;
  --space-xl:   3rem;
  --space-2xl:  5rem;
  --space-3xl:  7rem;

  --container:        1280px;
  --container-narrow: 960px;
}

/* Mobile section padding override */
@media (max-width: 767px) {
  :root {
    --space-3xl: 3.5rem;
    --space-2xl: 2.5rem;
  }
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--font-regular);
  color: var(--gray-700);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-family);
  cursor: pointer;
  border: none;
  background: none;
}

strong {
  font-weight: var(--font-semibold);
  color: var(--gray-900);
}

/* --- Utility --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

/* --- Transitions --- */
a, button, .card {
  transition: all 0.3s ease;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-extrabold);
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

p {
  line-height: 1.6;
  color: var(--gray-700);
}

.text-lead {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--navy-light);
}

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

.btn-primary--white:hover {
  background: var(--gray-100);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: 100px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-secondary--white {
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary--white:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 480px) {
  .btn-group {
    flex-direction: row;
    align-items: center;
  }
}

/* --- Tags --- */
.tag {
  display: inline-block;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 100px;
  padding: 4px 14px;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  color: var(--gray-500);
}

.tag--dark {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
}

.tag--navy {
  background: var(--navy);
  border: none;
  border-radius: 100px;
  padding: 6px 16px;
  color: var(--white);
}

.tag--glass {
  background: rgba(15, 43, 60, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(15, 43, 60, 0.08);
  border-radius: 100px;
  padding: 6px 16px;
  color: var(--navy);
  font-weight: var(--font-medium);
}

/* --- Cards --- */
.card {
  background: #ffffff;
  border: 1px solid rgba(15, 43, 60, 0.10);
  border-radius: 16px;
  padding: 32px;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.03),
    0 12px 40px rgba(0, 0, 0, 0.07),
    0 40px 100px rgba(0, 0, 0, 0.10);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.04),
    0 16px 48px rgba(0, 0, 0, 0.09),
    0 48px 120px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.card__icon {
  width: 40px;
  height: 40px;
  background: rgba(15, 43, 60, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.card__icon svg {
  width: 20px;
  height: 20px;
  color: var(--navy);
}

.card h3 {
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: var(--text-sm);
}

.card p {
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.card-grid {
  display: grid;
  gap: 24px;
}

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

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

/* --- Section Divider --- */
.section-divider {
  display: none;
}

/* --- Sections --- */
.section {
  padding: var(--space-xl) 0;
}

.section--white {
  background: var(--white);
}

.section--off-white {
  background: var(--off-white);
}

.section-header {
  margin-bottom: var(--space-2xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  max-width: 640px;
}

/* --- Split Layout (heading left, cards right) --- */
.split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.split-layout__text h2 {
  margin-bottom: var(--space-sm);
}

.split-layout__text p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ==========================================
   SECTION 1: NAVIGATION
   ========================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav__logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--white);
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav__brand-name {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  color: var(--navy);
}

.nav__brand-sub {
  font-size: 0.6875rem;
  color: var(--gray-500);
  font-weight: var(--font-regular);
}

.nav__links {
  display: none;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--gray-500);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link:hover,
.nav__link--active {
  color: var(--navy);
}

.nav__cta {
  display: none;
  position: relative;
  background: var(--navy);
  border: 1px solid rgba(15, 43, 60, 0.8);
  box-shadow: 0 4px 16px rgba(15, 43, 60, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 12px 28px;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav__cta .nav__cta-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) translateX(-4px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav__cta:hover .nav__cta-arrow {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.nav__cta:hover {
  background: var(--navy-light);
  box-shadow: 0 8px 24px rgba(15, 43, 60, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: absolute;
  top: 88px;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(15, 43, 60, 0.08);
  padding: var(--space-lg) var(--space-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.nav__mobile.active {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.nav__mobile a {
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  color: var(--navy);
  padding: var(--space-xs) 0;
}

.nav__mobile a:hover {
  color: var(--navy-light);
}

.nav__mobile .btn-primary {
  text-align: center;
  justify-content: center;
  margin-top: var(--space-xs);
  color: var(--white);
}

/* ==========================================
   SECTION 2: HERO
   ========================================== */
.hero {
  padding: calc(88px + 0.75rem) 1rem 0 1rem;
}

.hero__split {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 72px - 2rem);
  border-radius: 12px 12px 24px 24px;
  overflow: hidden;
  position: relative;
}

.hero-tag__mobile { display: inline; }
.hero-tag__full { display: none; }

@media (min-width: 768px) {
  .hero-tag__mobile { display: none; }
  .hero-tag__full { display: inline; }
}

.hero__content {
  background: rgba(10, 30, 45, 0.94);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  color: var(--white);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  position: relative;
  overflow: hidden;
}

/* Animated glassmorphism orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 70%);
  filter: blur(1px);
}

.hero__orb--1 {
  top: -80px;
  right: -60px;
  width: 320px;
  height: 320px;
}

.hero__orb--2 {
  bottom: -40px;
  left: -60px;
  width: 220px;
  height: 220px;
}

.hero__orb--3 {
  top: 40%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 70%);
}

.hero__content .tag {
  margin-bottom: var(--space-lg);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  padding: 10px 24px;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__content h1 {
  color: var(--white);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
}

.hero__content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-lg);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.hero__content strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: var(--font-semibold);
}

.hero__content .btn-group {
  gap: var(--space-md);
}

/* Premium hero buttons — glassmorphism + arrow reveal */
.hero__content .btn-primary--white,
.hero__content .btn-secondary--white {
  position: relative;
  overflow: hidden;
  padding: 14px 28px;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  text-align: center;
  justify-content: center;
}

@media (min-width: 480px) {
  .hero__content .btn-primary--white,
  .hero__content .btn-secondary--white {
    padding: 16px 36px;
  }
}

.hero__content .btn-primary--white .btn-arrow,
.hero__content .btn-secondary--white .btn-arrow {
  display: inline-block;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  margin-left: 0;
  width: 0;
}

.hero__content .btn-primary--white:hover .btn-arrow,
.hero__content .btn-secondary--white:hover .btn-arrow {
  opacity: 1;
  transform: translateX(0);
  margin-left: 8px;
  width: auto;
}

.hero__content .btn-primary--white {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12), inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.hero__content .btn-primary--white:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-2px) scale(1.03);
}

.hero__content .btn-secondary--white {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero__content .btn-secondary--white:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-2px) scale(1.03);
}

.hero__image {
  min-height: 300px;
  background: var(--navy-light);
  position: relative;
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* Hero features below split */
.hero__features {
  background: var(--white);
  padding: var(--space-xl) 0;
}

.hero__features-grid {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.hero__feature-card {
  background: #ffffff;
  border: none;
  border-radius: 16px;
  padding: var(--space-md) var(--space-lg);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.03),
    0 12px 40px rgba(0, 0, 0, 0.07),
    0 40px 100px rgba(0, 0, 0, 0.10);
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hero__feature-card:hover {
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.04),
    0 16px 48px rgba(0, 0, 0, 0.09),
    0 48px 120px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.hero__feature {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.hero__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(15, 43, 60, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(15, 43, 60, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--navy);
}

.hero__feature-text h3 {
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  margin-bottom: 4px;
}

.hero__feature-text p {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.5;
}

/* ==========================================
   SECTION 3: PROMISE BAR
   ========================================== */
.promise-bar {
  background: transparent;
  padding: 0;
  margin-bottom: var(--space-2xl);
}

.promise-bar__inner {
  display: flex;
  align-items: center;
}

.promise-bar__text {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  color: var(--gray-700);
  line-height: 1.6;
}

.promise-bar__label {
  font-family: var(--font-heading);
  font-weight: var(--font-bold);
  color: var(--navy);
}

.promise-bar__arrow {
  color: var(--navy);
  font-weight: var(--font-bold);
  padding: 0 4px;
}

/* ==========================================
   SECTION 4: WHY US
   ========================================== */
.why-us {
  padding: var(--space-3xl) 0;
  background: var(--off-white);
}

.why-us .split-layout__text {
  margin-bottom: var(--space-lg);
}

.why-us__approach {
  margin-top: var(--space-2xl);
  padding: 0;
  text-align: center;
  font-size: var(--text-base);
  color: var(--gray-700);
  max-width: var(--container-narrow);
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================
   SECTION 5: BANKABLE
   ========================================== */
.bankable {
  padding: var(--space-3xl) 0;
}

.bankable .card {
  padding: 24px;
}

.bankable__cta-bar {
  margin-top: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 43, 60, 0.10);
  border-radius: 20px;
  padding: 28px 36px;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.03),
    0 12px 40px rgba(0, 0, 0, 0.07),
    0 40px 100px rgba(0, 0, 0, 0.10);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-start;
}

.bankable__cta-bar .btn-primary {
  white-space: nowrap;
  flex-shrink: 0;
}

.bankable__cta-bar p {
  font-size: var(--text-sm);
  color: var(--gray-700);
  flex: 1;
}

.bankable__cta-bar strong {
  color: var(--gray-900);
}

/* ==========================================
   SECTION 6: DELIVERY MODEL
   ========================================== */
.delivery {
  padding: var(--space-3xl) 0;
}

.delivery-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.delivery-card .tag {
  align-self: flex-start;
}

.delivery-card h3 {
  font-size: var(--text-xl);
  margin-bottom: 0;
}

.delivery .card h4 {
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: var(--gray-700);
  margin-top: var(--space-xs);
}

.delivery .card ul {
  list-style: disc;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.delivery .card ul li {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.5;
}

.delivery__cta-bar {
  margin-top: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 43, 60, 0.10);
  border-radius: 20px;
  padding: 28px 36px;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.03),
    0 12px 40px rgba(0, 0, 0, 0.07),
    0 40px 100px rgba(0, 0, 0, 0.10);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-start;
}

.delivery__cta-bar p {
  font-size: var(--text-sm);
  color: var(--gray-700);
  flex: 1;
  min-width: 0;
  padding-right: 2.5rem;
}

.delivery__cta-bar .btn-primary {
  white-space: nowrap;
  flex-shrink: 0;
}

/* ==========================================
   SECTION 7: SERVICES
   ========================================== */
.services {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.services .card h3 {
  font-size: var(--text-lg);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.services .card h3 .tag {
  font-size: 0.6875rem;
}

.services .card > p {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: var(--space-sm);
}

.services .card ul {
  list-style: disc;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.services .card ul li {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.5;
}

.services__buttons {
  margin-top: var(--space-2xl);
  justify-content: flex-start;
}

/* ==========================================
   SECTION 8: RESOURCES
   ========================================== */
.resources {
  padding: var(--space-3xl) 0;
  background: var(--off-white);
}

.resources__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.resources__text h2 {
  margin-bottom: var(--space-sm);
}

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

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

.resources .card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--font-extrabold);
}

.resources .card .tag {
  margin-bottom: var(--space-sm);
}

.resources .card p {
  margin-bottom: var(--space-sm);
}

.resources .card a {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--navy);
}

.resources .card a:hover {
  color: var(--navy-light);
}

.resources__nda {
  background: #ffffff;
  border: 1px solid rgba(15, 43, 60, 0.10);
  border-radius: 20px;
  padding: 28px 36px;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.03),
    0 12px 40px rgba(0, 0, 0, 0.07),
    0 40px 100px rgba(0, 0, 0, 0.10);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: flex-start;
}

@media (min-width: 768px) {
  .resources__nda .btn-primary {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

.resources__nda p {
  flex: 1;
}

.resources__nda strong {
  display: block;
  color: var(--navy);
  font-weight: var(--font-bold);
}

.resources__nda p {
  line-height: 1.5;
}

/* ==========================================
   SECTION 9: FOCUSED ON MISSING-MIDDLE
   ========================================== */
.focuses {
  padding: var(--space-3xl) 0;
}

.focuses .section-header {
  margin-bottom: var(--space-2xl);
}

/* ==========================================
   SECTION 10: FAQ
   ========================================== */
.faq {
  padding: var(--space-3xl) 0;
}

.faq .section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.faq .section-header p {
  max-width: 640px;
  margin: 0 auto;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

@media (min-width: 768px) {
  .faq__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.faq__item {
  border: 1px solid rgba(15, 43, 60, 0.10);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.03),
    0 12px 40px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.3s ease;
}

.faq__item:hover {
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.04),
    0 16px 48px rgba(0, 0, 0, 0.09);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  color: var(--navy);
  line-height: 1.4;
}

.faq__icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gray-500);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1), padding 0.3s ease;
  padding: 0 24px;
}

.faq__item.active .faq__answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq__answer p {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.7;
}

.faq__answer p + p {
  margin-top: var(--space-sm);
}

/* ==========================================
   SECTION — INSIGHTS (unused)
   ========================================== */
.insights {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.insights__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.insights__header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.insights__view-all {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--navy);
  white-space: nowrap;
}

.insights .card .tag {
  margin-bottom: var(--space-sm);
}

.insights .card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.insights .card > p {
  margin-bottom: var(--space-sm);
}

.insights .card a {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--navy);
}

/* ==========================================
   SECTION 10: FORM CTA
   ========================================== */
.form-cta {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.form-cta__wrapper {
  background: var(--navy);
  border: none;
  border-radius: 24px;
  padding: var(--space-lg) var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 100%;
}

.form-cta__left h2 {
  margin-bottom: var(--space-md);
  font-size: var(--text-3xl);
  color: var(--white);
}

.form-cta__left > p {
  margin-bottom: var(--space-lg);
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.7);
}

.form-cta__info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

@media (min-width: 480px) {
  .form-cta__info-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.form-cta__info-card {
  padding: var(--space-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.form-cta__info-card span {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 4px;
}

.form-cta__info-card strong {
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: var(--white);
}

.form-cta__info-card p {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.form-cta__info-card a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
}

.form-cta__info-card a:hover {
  text-decoration-color: var(--white);
}

.form-cta__info-card--wide {
  grid-column: 1 / -1;
}

/* Form */
.form-cta__form {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: var(--space-md);
}

@media (min-width: 768px) {
  .form-cta__form {
    padding: var(--space-xl);
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.form-grid--2col {
  grid-template-columns: 1fr !important;
}

@media (min-width: 480px) {
  .form-grid--2col {
    grid-template-columns: 1fr 1fr !important;
  }
}

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

.form-group label {
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-family);
  font-size: var(--text-base);
  padding: 14px 16px;
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  background: var(--white);
  color: var(--gray-900);
  transition: border-color 0.3s ease;
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}

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

.form-group select {
  appearance: none;
  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 fill='%236b7a87' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__submit {
  margin-top: var(--space-sm);
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-weight: var(--font-bold);
  font-size: var(--text-base);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.form__submit:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

.form__message {
  padding: var(--space-lg);
  border-radius: 12px;
  margin-top: var(--space-md);
}

.form__message--success {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.form__message--success p:first-child strong {
  color: #059669;
}

.form__message--success p:last-child {
  font-size: var(--text-sm);
  color: var(--gray-700);
  margin-top: 4px;
}

.form__message--error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.form__message--error p:first-child strong {
  color: #dc2626;
}

.form__message--error p:last-child {
  font-size: var(--text-sm);
  color: var(--gray-700);
  margin-top: 4px;
}

.form__message--error a {
  color: var(--navy);
  font-weight: var(--font-medium);
}

.form__contact-alt {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  border: none;
  border-radius: 12px;
  background: var(--off-white);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.03),
    0 12px 40px rgba(0, 0, 0, 0.07);
}

.form__contact-alt p {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: 2px;
}

.form__contact-alt strong {
  font-size: var(--text-sm);
}

.form__contact-alt a {
  color: var(--navy);
  font-weight: var(--font-medium);
}

/* ==========================================
   SECTION 11: FOOTER
   ========================================== */
.footer {
  background: var(--white);
  border-top: 3px solid var(--navy);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__top {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-xl);
}

.footer__logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: var(--space-md);
}

.footer__tagline {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.footer__location {
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: var(--navy);
}

.footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer__nav a {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--gray-500);
  text-decoration: none;
}

.footer__nav a:hover {
  color: var(--navy);
}

.footer__divider {
  width: 100%;
  height: 1px;
  background: var(--gray-100);
  margin-bottom: var(--space-lg);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-xs);
  color: var(--gray-500);
}

.footer__bottom a {
  color: var(--gray-500);
  text-decoration: underline;
}

.footer__bottom a:hover {
  color: var(--navy);
}

.footer__legal {
  display: flex;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ==========================================
   RESPONSIVE — TABLET (768px+)
   ========================================== */
@media (min-width: 768px) {
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }

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

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

  .hero__split {
    grid-template-columns: 1fr 1fr;
    border-radius: 24px;
  }

  .hero__content {
    padding: var(--space-2xl);
  }

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

  .split-layout {
    grid-template-columns: 2fr 3fr;
    gap: var(--space-2xl);
  }

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

  .form-cta__wrapper {
    grid-template-columns: 1fr 1fr;
    padding: var(--space-2xl) var(--space-2xl);
  }


  .bankable__cta-bar,
  .delivery__cta-bar,
  .resources__nda {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .resources__layout {
    grid-template-columns: 2fr 3fr;
    gap: var(--space-2xl);
    align-items: start;
  }
}

/* ==========================================
   RESPONSIVE — DESKTOP (1024px+)
   ========================================== */
@media (min-width: 1024px) {
  h1 { font-size: var(--text-5xl); }
  h2 { font-size: var(--text-4xl); }

  .nav__links {
    display: flex;
  }

  .nav__cta {
    display: inline-flex;
  }

  .nav__hamburger {
    display: none;
  }

  .hero__content {
    padding: var(--space-3xl);
  }

  .hero__content h1 {
    font-size: var(--text-5xl);
  }

  .hero__content p {
    font-size: var(--text-lg);
  }

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

  .form-cta__left h2 {
    font-size: var(--text-4xl);
  }
}

/* ==========================================
   RESPONSIVE — LARGE (1280px+)
   ========================================== */
@media (min-width: 1280px) {
  .hero__content {
    padding: 4rem;
  }

  .hero__split {
    border-radius: 28px;
  }
}
