/* =========================
   RESET
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
}

/* =========================
   TOKENS
========================= */
:root {
  --bg: #f8fafc;
  --white: #ffffff;
  --text: #0f172a;
  --muted: #5b6474;
  --muted-soft: #7a8495;
  --line: rgba(15, 23, 42, 0.08);

  --navy: #092a57;
  --navy-deep: #061a36;
  --blue: #0d3b7a;
  --blue-2: #0f4f9c;
  --blue-soft: #edf4ff;

  --gold: #d4a62a;
  --gold-soft: #f2e3ae;

  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 18px 50px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 30px 80px rgba(15, 23, 42, 0.14);

  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --pill: 999px;

  --container: min(1180px, calc(100% - 48px));
  --header-h: 92px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 24px, 1180px);
    --header-h: 82px;
  }
}

/* =========================
   BASE
========================= */
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  padding-top: var(--header-h);
  line-height: 1.6;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

.section-light {
  background: #ffffff;
}

.section-dark {
  color: #ffffff;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.eyebrow.accent {
  color: var(--blue-2);
}

.section-intro {
  margin-bottom: 54px;
}

.section-intro.narrow {
  max-width: 760px;
}

.section-intro h2,
.about-copy h2,
.cta-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.section-intro h2 {
  max-width: 14ch;
}

.body-light,
.body-dark,
.body-soft,
.lead-dark {
  margin: 16px 0 0;
  max-width: 66ch;
}

.body-light {
  color: rgba(255, 255, 255, 0.72);
}

.body-dark {
  color: var(--muted);
}

.body-soft {
  color: #667085;
}

.lead-dark {
  color: #334155;
  font-size: 1.06rem;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: var(--pill);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    color 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%);
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(13, 59, 122, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 22px 55px rgba(13, 59, 122, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(15, 23, 42, 0.14);
}

.btn-outline-dark:hover {
  background: rgba(15, 23, 42, 0.04);
}

.btn-full {
  width: min(340px, 100%);
}

/* =========================
   HEADER
========================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.brand-sub {
  font-size: 0.78rem;
  color: #6b7280;
}

.nav-panel {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  background: rgba(9, 42, 87, 0.04);
  border: 1px solid rgba(9, 42, 87, 0.08);
  border-radius: var(--pill);
}

.nav-link,
.nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--pill);
  text-decoration: none;
  color: var(--navy);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.nav-link:hover,
.nav-drop-btn:hover {
  background: rgba(9, 42, 87, 0.08);
}

.nav-link.active {
  background: var(--navy);
  color: #ffffff;
}

.nav-dropdown {
  position: relative;
}

.drop-icon {
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.3s var(--ease);
}

.nav-dropdown.open .drop-icon {
  transform: rotate(45deg);
}

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 290px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.28s var(--ease),
    transform 0.28s var(--ease),
    visibility 0.28s var(--ease);
}

.nav-dropdown.open .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-drop-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.nav-drop-menu a:hover {
  background: var(--blue-soft);
  color: var(--blue);
}

.nav-cta {
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--pill);
  text-decoration: none;
  background: linear-gradient(135deg, var(--gold) 0%, #e6c15a 100%);
  color: var(--navy-deep);
  font-size: 0.9rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  box-shadow: 0 14px 34px rgba(212, 166, 42, 0.22);
}

.nav-cta:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(9, 42, 87, 0.12);
  background: #ffffff;
  border-radius: 16px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  border-radius: 2px;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #081a35;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("../img/hero.png") center center / cover no-repeat;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 17, 37, 0.88) 0%, rgba(5, 17, 37, 0.58) 44%, rgba(5, 17, 37, 0.48) 100%),
    radial-gradient(700px 420px at 18% 24%, rgba(212, 166, 42, 0.16), transparent 60%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  gap: 50px;
  align-items: center;
  padding: 88px 0;
}

.hero-content h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 800;
  max-width: 11ch;
}

.hero-content h1 span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
}

.hero-text {
  margin: 24px 0 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-disclaimer {
  margin: 22px 0 0;
  max-width: 55ch;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.88rem;
}

.hero-card {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.mini-label,
.mini-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: var(--pill);
  font-size: 0.8rem;
  font-weight: 700;
}

.mini-label {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.mini-badge {
  background: rgba(212, 166, 42, 0.16);
  color: #ffe8a3;
  border: 1px solid rgba(212, 166, 42, 0.26);
}

.hero-steps {
  display: grid;
  gap: 14px;
}

.hero-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.hero-step strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(212, 166, 42, 0.18);
  color: #ffe39a;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.hero-step span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* =========================
   TRUST BAR
========================= */
.trust-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.trust-bar-track {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.bar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* =========================
   TRUST GRID
========================= */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-card {
  position: relative;
  padding: 34px 30px 30px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 59, 122, 0.12);
}

.card-line {
  display: block;
  width: 52px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--blue-2) 100%);
  margin-bottom: 18px;
}

.trust-card h3,
.info-card h3,
.service-card h3,
.timeline-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.trust-card p,
.info-card p,
.service-card p,
.timeline-card p {
  margin: 0;
  color: var(--muted);
}

/* =========================
   ABOUT
========================= */
.about-preview {
  background:
    radial-gradient(700px 400px at 90% 10%, rgba(212, 166, 42, 0.08), transparent 60%),
    linear-gradient(to bottom, #ffffff 0%, #fbfdff 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: start;
}

.about-copy h2 {
  max-width: 13ch;
  color: var(--text);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.info-card {
  position: relative;
  padding: 26px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.info-no,
.timeline-number,
.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 36px;
  padding: 0 12px;
  border-radius: 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.info-no {
  margin-bottom: 16px;
  background: rgba(13, 59, 122, 0.08);
  color: var(--blue);
}

/* =========================
   SERVICES
========================= */
.services-block {
  position: relative;
  background:
    radial-gradient(780px 460px at 15% 10%, rgba(212, 166, 42, 0.1), transparent 60%),
    radial-gradient(760px 420px at 82% 22%, rgba(13, 59, 122, 0.26), transparent 60%),
    linear-gradient(to bottom, #07142a 0%, #081b38 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.4s var(--ease),
    border-color 0.4s var(--ease),
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 166, 42, 0.24);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.service-index {
  margin-bottom: 18px;
  background: rgba(212, 166, 42, 0.12);
  color: #ffd86a;
}

.service-card h3 {
  color: #ffffff;
}

.service-card p {
  color: rgba(255, 255, 255, 0.74);
}

.service-card small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.service-card-feature {
  background: linear-gradient(180deg, rgba(212, 166, 42, 0.16) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  color: #ffe39a;
}

/* =========================
   PROCESS
========================= */
.process-wrap {
  display: grid;
  gap: 46px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 22px;
  max-width: 920px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(13, 59, 122, 0.1), rgba(13, 59, 122, 0.5), rgba(212, 166, 42, 0.4), rgba(13, 59, 122, 0.1));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
}

.timeline-marker {
  position: relative;
  z-index: 2;
  width: 18px;
  height: 18px;
  margin: 18px 0 0 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--blue-2) 100%);
  box-shadow: 0 0 0 8px rgba(13, 59, 122, 0.06);
}

.timeline-card {
  padding: 28px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.timeline-number {
  margin-bottom: 16px;
  background: rgba(13, 59, 122, 0.08);
  color: var(--blue);
}

/* =========================
   CTA
========================= */
.cta-section {
  background: linear-gradient(to bottom, #f7f9fd 0%, #ffffff 100%);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 40px;
  align-items: center;
  padding: 48px;
  border-radius: 32px;
  background:
    radial-gradient(420px 220px at 100% 0%, rgba(212, 166, 42, 0.12), transparent 60%),
    #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-md);
}

.cta-copy h2 {
  color: var(--text);
  max-width: 13ch;
}

.cta-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  max-width: 58ch;
}

.cta-copy small {
  display: block;
  margin-top: 16px;
  color: var(--muted-soft);
}

.cta-actions {
  display: grid;
  gap: 14px;
  justify-items: end;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background:
    radial-gradient(680px 360px at 10% 20%, rgba(212, 166, 42, 0.08), transparent 60%),
    linear-gradient(to bottom, #07142a 0%, #05101f 100%);
  color: #ffffff;
  padding: 90px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 24px;
  padding-bottom: 28px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-logo span {
  display: block;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.footer-logo small {
  display: block;
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand p,
.footer-col p,
.footer-col a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.footer-col a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.58);
}

/* =========================
   REVEAL
========================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

/* =========================
   RESPONSIVE
========================= */
@media (hover: hover) and (pointer: fine) {
  .nav-dropdown:hover .nav-drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-dropdown:hover .drop-icon {
    transform: rotate(45deg);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-actions {
    justify-items: start;
  }

  .section {
    padding: 100px 0;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-panel {
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    margin-left: 0;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-panel.show {
    display: flex;
  }

  .main-nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 6px;
    background: transparent;
    border: 0;
  }

  .nav-link,
  .nav-drop-btn {
    width: 100%;
    justify-content: space-between;
    border-radius: 16px;
  }

  .nav-drop-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border-radius: 16px;
    background: #f8fafc;
  }

  .nav-dropdown.open .nav-drop-menu {
    display: block;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 32px;
    padding: 70px 0 78px;
  }

  .hero-content h1,
  .section-intro h2,
  .about-copy h2,
  .cta-copy h2 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .services-grid,
  .trust-grid,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 36px 1fr;
  }

  .timeline::before {
    left: 17px;
  }

  .timeline-marker {
    margin-left: 8px;
  }

  .section {
    padding: 84px 0;
  }

  .hero-actions,
  .about-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-outline-dark {
    width: 100%;
  }

  .trust-bar-track {
    padding: 16px 0;
    gap: 12px;
  }

  .cta-panel {
    padding: 30px 22px;
  }
}