@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --indigo: #1B2C50;
  --indigo-dark: #162443;
  --indigo-darker: #0f1a2e;
  --orange: #DC6F3D;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--indigo);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 1024px) {
  .navbar-inner {
    height: 5rem;
  }
}

.navbar-logo img {
  height: 2.5rem;
  width: auto;
}

@media (min-width: 1024px) {
  .navbar-logo img {
    height: 3rem;
  }
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .navbar-links {
    display: flex;
  }
}

.navbar-links a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-500);
  border-radius: 0.375rem;
  transition: color 0.2s;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--indigo);
}

.mobile-toggle {
  display: block;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--gray-600);
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 1rem 1.5rem;
}

.mobile-menu.open {
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-500);
  border-radius: 0.375rem;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--indigo);
  background: var(--gray-50);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
}

.btn:hover {
  opacity: 0.9;
}

.btn:active {
  transform: scale(0.98);
}

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

.btn svg {
  width: 1rem;
  height: 1rem;
}

/* ── SECTION LABEL ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 1rem;
}

/* ── HERO (home) ── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--white);
  padding-top: 5rem;
}

.hero-content {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  padding: 8rem 0 10rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--indigo);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 4.25rem;
  }
}

.hero h1 em {
  font-style: italic;
  color: var(--orange);
}

.hero p {
  margin-top: 2rem;
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero p:first-of-type {
  margin-top: 2rem;
}

.hero p + p {
  margin-top: 1rem;
}

.hero-tagline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

@media (min-width: 1024px) {
  .hero-tagline {
    gap: 2.5rem;
    font-size: 1.125rem;
  }
}

.hero-tagline .dot {
  width: 0.375rem;
  height: 0.375rem;
  background: var(--orange);
  border-radius: 50%;
}

.hero .btn {
  margin-top: 2.5rem;
}

/* ── PAGE HERO (story, team, contact) ── */
.page-hero {
  background: linear-gradient(to bottom, var(--indigo), var(--indigo-dark));
  padding: 8rem 0 5rem;
}

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

.page-hero .section-label {
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 40rem;
}

@media (min-width: 1024px) {
  .page-hero h1 {
    font-size: 3rem;
  }
}

.page-hero p {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--gray-300);
  line-height: 1.7;
  max-width: 40rem;
}

/* ── SECTIONS ── */
.section {
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 8rem 0;
  }
}

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

.section-gray {
  background: var(--gray-50);
}

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

.section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--indigo);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .section h2 {
    font-size: 2.25rem;
  }
}

.section-indigo h2 {
  color: var(--white);
}

.section-center {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

/* ── PROBLEM CARDS ── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3.5rem;
}

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

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

.problem-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 0.5rem;
}

.problem-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.375rem;
  background: #fef2f2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #ef4444;
  opacity: 0.8;
}

.problem-card p {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.6;
  padding-top: 0.5rem;
}

/* ── SOLUTION ── */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

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

.solution-grid h2 {
  font-size: 2.25rem;
  color: var(--white);
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .solution-grid h2 {
    font-size: 2.75rem;
  }
}

.solution-grid p {
  margin-top: 2rem;
  font-size: 1.125rem;
  color: var(--gray-300);
  line-height: 1.7;
}

.solution-image {
  border-radius: 0.75rem;
  overflow: hidden;
}

.solution-image img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  border-radius: 0.75rem;
}

@media (min-width: 1024px) {
  .solution-image img {
    height: 24rem;
  }
}

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.step {
  text-align: center;
  position: relative;
}

.step-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.step-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.step-icon.blue {
  background: #eff6ff;
}
.step-icon.blue svg { color: #2563eb; }

.step-icon.green {
  background: #ecfdf5;
}
.step-icon.green svg { color: #059669; }

.step-icon.violet {
  background: #f5f3ff;
}
.step-icon.violet svg { color: #7c3aed; }

.step-icon.amber {
  background: #fffbeb;
}
.step-icon.amber svg { color: #d97706; }

.step h3 {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--indigo);
}

.step p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── TRACKING CARDS ── */
.tracking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

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

.tracking-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 0.75rem;
  padding: 2rem 2.5rem;
}

.tracking-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tracking-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tracking-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.tracking-card-icon.blue {
  background: #eff6ff;
}
.tracking-card-icon.blue svg { color: #2563eb; }

.tracking-card-icon.green {
  background: #ecfdf5;
}
.tracking-card-icon.green svg { color: #059669; }

.tracking-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--indigo);
}

.tracking-card .subtitle {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.tracking-card ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tracking-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.tracking-card li svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.tracking-card li svg.blue { color: #3b82f6; }
.tracking-card li svg.green { color: #10b981; }

.tracking-card li span {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.tracking-closing {
  margin-top: 2.5rem;
  text-align: center;
  color: var(--gray-600);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

/* ── DIFFERENTIATION ── */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

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

.diff-card {
  border-radius: 0.75rem;
  padding: 2rem;
}

.diff-card-typical {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
}

.diff-card-keensite {
  background: var(--indigo);
  border: 1px solid #2a3f6b;
}

.diff-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.diff-card-header svg {
  width: 1.25rem;
  height: 1.25rem;
}

.diff-card-header h3 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.diff-card-typical .diff-card-header svg,
.diff-card-typical .diff-card-header h3 {
  color: var(--gray-400);
}

.diff-card-keensite .diff-card-header svg,
.diff-card-keensite .diff-card-header h3 {
  color: var(--orange);
}

.diff-card ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.diff-card li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.diff-card li svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.diff-card-typical li svg {
  color: var(--gray-300);
}

.diff-card-typical li span {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.diff-card-keensite li svg {
  color: var(--orange);
}

.diff-card-keensite li span {
  font-size: 0.875rem;
  color: var(--white);
}

/* ── WHO IT'S FOR ── */
.industry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 0.75rem;
  overflow: hidden;
}

.industry-card-img {
  height: 13rem;
  overflow: hidden;
}

.industry-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.industry-card:hover .industry-card-img img {
  transform: scale(1.05);
}

.industry-card-body {
  padding: 1.5rem;
}

.industry-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--indigo);
}

.industry-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── CTA SECTION ── */
.cta-section {
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
}

.cta-section p {
  margin-top: 1.5rem;
  color: var(--gray-400);
  font-size: 1.125rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-section .btn {
  margin-top: 2.5rem;
}

/* ── ORIGIN GRID (story) ── */
.origin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .origin-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.origin-grid h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--indigo);
}

.origin-grid .text-block {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.origin-grid .text-block p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 2.5rem;
}

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

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

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-label {
  margin-bottom: 0.75rem;
}

.gallery-label h2 {
  color: var(--white);
  font-size: 1.5rem;
}

@media (min-width: 1024px) {
  .gallery-label h2 {
    font-size: 1.875rem;
  }
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 0.5rem;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 2rem;
  font-weight: 300;
  cursor: pointer;
}

.lightbox-close:hover {
  color: var(--white);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
  padding: 1rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--white);
}

.lightbox-prev {
  left: 0.5rem;
}

@media (min-width: 1024px) {
  .lightbox-prev { left: 2rem; }
}

.lightbox-next {
  right: 0.5rem;
}

@media (min-width: 1024px) {
  .lightbox-next { right: 2rem; }
}

/* ── VALUES CARDS ── */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 0.75rem;
  padding: 2rem;
}

.value-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(220, 111, 61, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.value-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--orange);
}

.value-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--indigo);
}

.value-card p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.team-member {
  text-align: center;
}

.team-member-photo {
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  border: 2px solid var(--gray-100);
}

@media (min-width: 1024px) {
  .team-member-photo {
    width: 11rem;
    height: 11rem;
  }
}

.team-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--indigo);
}

.team-member .role {
  font-size: 0.875rem;
  color: var(--orange);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

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

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--indigo);
  background: var(--white);
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(27, 44, 80, 0.1);
}

.form-group input {
  height: 3rem;
}

.form-group select {
  height: 3rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 6l3.5 3.5L11.5 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 7rem;
}

/* ── CONTACT SIDEBAR ── */
.contact-sidebar h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 1.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.375rem;
  background: rgba(220, 111, 61, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--orange);
}

.contact-info-item .info-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
}

.contact-info-item .info-value {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.expect-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-top: 2rem;
}

.expect-box h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 0.75rem;
}

.expect-box li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.expect-box li:last-child {
  margin-bottom: 0;
}

.expect-box li svg {
  width: 1rem;
  height: 1rem;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.expect-box li span {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* ── FOOTER ── */
.footer {
  background: var(--indigo);
  color: var(--white);
}

.footer-inner {
  padding: 4rem 0 5rem;
}

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

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
  }
}

.footer-brand img {
  height: 3rem;
  width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.6;
  max-width: 24rem;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-300);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3.5rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

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

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ── UTILITY ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
