:root {
  --navy: #0a1f44;
  --navy-2: #123267;
  --steel: #dbe7f6;
  --gold: #f3bf56;
  --mint: #5db5a4;
  --ink: #16223a;
  --white: #ffffff;
  --bg: #f5f9ff;
  --line-soft: #d5e2f8;
  --surface-muted: #f4f8ff;
  --header-bg: rgba(10, 31, 68, 0.96);
  --focus-ring: #f3bf56;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(10, 31, 68, 0.12);
}

* { box-sizing: border-box; }
html {
  scroll-padding-top: 6.5rem;
}
body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 18% 10%, #e7f0ff 0%, #f1f7ff 40%, #f7fbff 100%);
  line-height: 1.6;
}

img { max-width: 100%; display: block; border-radius: var(--radius); }
a { color: var(--navy-2); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

.wrap {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  color: var(--white);
  box-shadow: var(--shadow);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.brand {
  font-weight: 800;
  font-size: 1rem;
}
.brand small { display: block; font-size: 0.76rem; font-weight: 500; opacity: 0.9; }

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.nav-list a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.38rem 0.55rem;
  border-radius: 7px;
}
.nav-list a:hover { background: rgba(255,255,255,0.14); }

.hero { padding: 3rem 0 2rem; }
.hero-grid {
  display: grid;
  gap: 1rem;
}
.hero-card, .panel, .card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.kicker {
  display: inline-block;
  background: var(--steel);
  color: var(--navy);
  padding: 0.24rem 0.6rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

h1, h2, h3 { color: var(--navy); line-height: 1.2; }
h1 { margin: 0.5rem 0 0.8rem; font-size: clamp(1.8rem, 5vw, 2.7rem); }
h2 { margin: 0 0 0.75rem; font-size: clamp(1.3rem, 4vw, 2rem); }

section { padding: 1.2rem 0; }
section[id] {
  scroll-margin-top: 6.5rem;
}
.grid-2, .grid-3 {
  display: grid;
  gap: 0.9rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}
.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid transparent;
}
.btn-primary { background: var(--gold); color: #1a1a1a; }
.btn-secondary { background: var(--navy-2); color: var(--white); }
.btn-tertiary { background: #ecf3ff; color: var(--navy-2); border-color: #ccdcf6; }
.btn-primary:hover { background: #f6cb74; }
.btn-secondary:hover { background: #183f7f; }
.btn-tertiary:hover { border-color: var(--mint); color: var(--mint); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}
.price-card {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 0.9rem;
  background: var(--surface-muted);
}
.price {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0.3rem 0 0.2rem;
}

.list-clean {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.list-clean li {
  background: var(--surface-muted);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
}

.testimonial,
.case {
  border-left: 4px solid var(--mint);
}

.carousel {
  display: flex;
  gap: 0.9rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.35rem;
}

.carousel .card {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.carousel-btn {
  border: 1px solid var(--line-soft);
  background: #edf4ff;
  color: var(--navy);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-weight: 700;
  cursor: pointer;
}
.carousel-btn:hover {
  border-color: var(--mint);
  color: var(--mint);
}

.form-row { margin-bottom: 0.72rem; }
label { font-weight: 700; font-size: 0.9rem; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}
.consent-label input[type="checkbox"] {
  width: auto;
  margin-top: 0.15rem;
  flex: 0 0 auto;
}
input, textarea, select {
  width: 100%;
  margin-top: 0.28rem;
  padding: 0.58rem;
  border: 1px solid #bfd0ed;
  border-radius: 10px;
  font: inherit;
}

.placeholder { color: #5f6d87; font-style: italic; font-size: 0.9rem; }

.footer {
  background: var(--ink);
  color: #dde8ff;
  padding: 1.2rem 0 2.2rem;
  margin-top: 1rem;
}
.footer a { color: #cfe0ff; }

.footer-preview {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top center, rgba(243, 191, 86, 0.18), transparent 38%),
    linear-gradient(180deg, #112344 0%, #0b1831 100%);
  color: #e6efff;
  padding: 0 0 2.4rem;
  margin-top: 1.5rem;
}

.footer-preview-top {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.75;
}

.footer-preview-grid {
  display: grid;
  gap: 1.4rem;
  padding-top: 2.4rem;
}

.footer-preview h2 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.9rem;
}

.footer-brand-block {
  max-width: 24rem;
}

.footer-brand-link {
  display: inline-block;
  color: var(--gold);
  text-decoration: none;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.footer-preview a.footer-brand-link {
  color: var(--gold);
}

.footer-preview p,
.footer-preview li,
.footer-preview a {
  color: #dbe6fb;
}

.footer-preview a {
  text-decoration: none;
}

.footer-preview a:hover {
  color: var(--gold);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(243, 191, 86, 0.24);
}

.footer-socials svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials a[aria-label="TikTok"] svg path {
  fill: currentColor;
  stroke: none;
}

.footer-socials a[aria-label="YouTube"] svg path:first-child {
  fill: none;
  stroke: currentColor;
}

.footer-socials a[aria-label="YouTube"] svg path:last-child {
  fill: currentColor;
  stroke: currentColor;
}

.footer-contact p {
  margin: 0 0 0.8rem;
}

.footer-contact-cta {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 10px;
  color: var(--gold);
  font-weight: 700;
}

.footer-contact-cta:hover {
  background: var(--gold);
  color: #10203d;
}

.footer-preview-bottom {
  padding-top: 1.8rem;
  text-align: center;
}

.footer-preview-bottom p {
  margin: 0;
  color: #bfd0ed;
}

.service-panel {
  padding: 1.2rem;
}

.service-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-offer-grid {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.service-offer-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border: 1px solid var(--line-soft);
}

.service-offer-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 110;
  background: var(--gold);
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 800;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

@media (min-width: 760px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .service-offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-preview-grid { grid-template-columns: 1.5fr 0.8fr 0.9fr 1fr; }
  .carousel .card { flex-basis: calc((100% - 1.8rem) / 3); }
}

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

/* Executive management consulting refresh */
.home-page {
  --navy: #061a38;
  --navy-2: #123267;
  --steel: #dbe7f6;
  --gold: #f3bf56;
  --mint: #5db5a4;
  --ink: #142038;
  --surface-card: rgba(255, 255, 255, 0.9);
  --surface-muted: rgba(244, 248, 255, 0.9);
  --line-soft: rgba(10, 31, 68, 0.13);
  --header-bg: rgba(6, 26, 56, 0.9);
  --radius: 24px;
  --shadow: 0 24px 70px rgba(10, 31, 68, 0.17);
  background:
    radial-gradient(circle at 12% 6%, rgba(93, 181, 164, 0.2), transparent 28rem),
    radial-gradient(circle at 86% 0%, rgba(243, 191, 86, 0.2), transparent 28rem),
    linear-gradient(180deg, #fbfdff 0%, #edf5ff 48%, #fff9ef 100%);
}

.home-page .wrap {
  width: min(1440px, 94%);
}

.home-page .site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.home-page .nav-list {
  justify-content: flex-end;
}

.home-page .nav-list a {
  opacity: 0.92;
}

.home-page .nav-list a:hover {
  background: rgba(243, 191, 86, 0.16);
}

.home-page .hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.2rem, 5vw, 4.8rem) 0 3rem;
}

.home-page .hero::before {
  content: "";
  position: absolute;
  inset: 1.3rem;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10, 31, 68, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 31, 68, 0.055) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at 54% 34%, black, transparent 72%);
}

.home-page .hero-grid {
  position: relative;
  align-items: center;
  gap: 0;
}

.home-page .hero-card,
.home-page .panel,
.home-page .card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.home-page .hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(1.4rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.74)),
    radial-gradient(circle at 12% 12%, rgba(243, 191, 86, 0.14), transparent 18rem);
}

.home-page .kicker,
.home-page .eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: rgba(243, 191, 86, 0.16);
  border: 1px solid rgba(243, 191, 86, 0.4);
  color: #173d79;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 900;
}

.home-page .eyebrow {
  padding: 0.24rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.home-page h1 {
  max-width: 15.5ch;
  font-size: clamp(3rem, 7vw, 6.1rem);
  letter-spacing: -0.075em;
  line-height: 0.92;
  color: #061a38;
}

.home-page h2 {
  letter-spacing: -0.045em;
}

.home-page .lede {
  max-width: 62rem;
  color: #253653;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.45;
}

.home-page .btn {
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.home-page .btn:hover {
  transform: translateY(-2px);
}

.home-page .btn-primary {
  background: #061a38;
  color: #ffffff;
  box-shadow: 0 15px 30px rgba(6, 26, 56, 0.22);
}

.home-page .btn-secondary {
  background: var(--gold);
  color: #1a1a1a;
}

.home-page .hero-showcase {
  position: relative;
  min-height: clamp(460px, 54vw, 740px);
  overflow: hidden;
  padding: 0;
  background: #061a38;
}

.home-page .hero-photo {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center center;
  opacity: 0.94;
  filter: saturate(1.06) contrast(1.04);
}

.floating-hero-card {
  position: absolute;
  right: clamp(1rem, 2.4vw, 1.8rem);
  bottom: clamp(1rem, 2.4vw, 1.8rem);
  display: grid;
  gap: 0.2rem;
  max-width: 390px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(10, 31, 68, 0.24);
}

.floating-hero-card strong {
  color: #061a38;
  font-size: 1.18rem;
}

.floating-hero-card span {
  color: #5f6d87;
  font-weight: 800;
}

.impact-strip {
  padding: 0 0 1.4rem;
}

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

.stat-grid article {
  min-height: 128px;
  padding: 1.1rem;
  border: 1px solid rgba(10, 31, 68, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 34px rgba(10, 31, 68, 0.09);
}

.stat-grid strong {
  display: block;
  color: #061a38;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.stat-grid span {
  display: block;
  color: #5f6d87;
  margin-top: 0.55rem;
  font-weight: 800;
}

.section-heading,
.service-panel-heading {
  max-width: 920px;
  margin-bottom: 1.25rem;
}

.home-page .service-panel-heading {
  display: block;
}

.home-page .service-panel-heading .eyebrow {
  display: inline-flex;
  margin-bottom: 0.7rem;
}

.home-page .service-panel-heading h2 {
  margin: 0 0 0.45rem;
}

.home-page .service-panel-heading p {
  max-width: 760px;
  margin: 0;
}

.section-heading p,
.service-panel-heading p {
  color: #5f6d87;
  font-size: 1.05rem;
}

.row-heading {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.home-page #services > .wrap.panel {
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.72)),
    radial-gradient(circle at top right, rgba(93, 181, 164, 0.14), transparent 22rem);
}

.home-page .service-offer-grid {
  gap: 1rem;
}

.home-page .service-offer-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 1.15rem;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(255,255,255,0.78));
}

.home-page .service-offer-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -34% -20%;
  height: 120px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.18;
}

.home-page .service-offer-card:nth-child(2)::after {
  background: var(--mint);
}

.home-page .service-offer-card:nth-child(3)::after {
  background: var(--navy-2);
}

.home-page .service-offer-card:nth-child(4)::after {
  background: #8bb1e8;
}

.home-page .service-offer-card > * {
  position: relative;
  z-index: 1;
}

.home-page .feature-image {
  padding: 0;
  overflow: hidden;
}

.home-page .feature-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.process-panel,
.contact-panel,
.contact-card {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.timeline-list {
  list-style: none;
  margin: 1.3rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  counter-reset: steps;
}

.timeline-list li {
  position: relative;
  padding: 0.95rem 0.95rem 0.95rem 3.7rem;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  counter-increment: steps;
}

.timeline-list li::before {
  content: counter(steps);
  position: absolute;
  left: 0.9rem;
  top: 0.9rem;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #061a38;
  color: #ffffff;
  font-weight: 900;
}

.elevated-carousel .card {
  min-height: 225px;
  border-left: 0;
  border-top: 5px solid var(--gold);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(255,255,255,0.78));
}

.elevated-carousel .case {
  border-top-color: var(--mint);
}

.home-page .carousel-btn {
  min-width: 2.8rem;
  border-color: rgba(6, 26, 56, 0.12);
  background: #061a38;
  color: #ffffff;
}

.home-page .carousel-btn:hover {
  background: var(--gold);
  color: #061a38;
}

.contact-card {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.legal-page {
  background:
    radial-gradient(circle at 14% 8%, rgba(93, 181, 164, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 4%, rgba(243, 191, 86, 0.18), transparent 28rem),
    linear-gradient(180deg, #f8fbff 0%, #edf5ff 52%, #fff8ec 100%);
}

.legal-page .wrap {
  width: min(1440px, 94%);
}

.legal-page .site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.legal-page .nav-list a {
  opacity: 0.92;
}

.legal-page .nav-list a:hover {
  background: rgba(243, 191, 86, 0.16);
}

.legal-page .panel {
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(10, 31, 68, 0.16);
}

.legal-page .kicker,
.legal-page .eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: rgba(243, 191, 86, 0.16);
  border: 1px solid rgba(243, 191, 86, 0.42);
  color: #0a1f44;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 900;
}

.legal-page .eyebrow {
  padding: 0.24rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.legal-page h1 {
  max-width: 15.5ch;
  font-size: clamp(3rem, 7vw, 6.1rem);
  letter-spacing: -0.075em;
  line-height: 0.92;
  color: #061a38;
}

.legal-page h2 {
  letter-spacing: -0.045em;
}

.legal-page .lede {
  max-width: 62rem;
  color: #26395d;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.45;
}

.legal-hero {
  padding: clamp(2.2rem, 5vw, 4rem) 0 1rem;
}

.legal-hero-grid {
  display: grid;
  gap: 1rem;
}

.legal-intro {
  padding: clamp(1.25rem, 3vw, 2.4rem);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.76)),
    radial-gradient(circle at 88% 16%, rgba(243, 191, 86, 0.14), transparent 18rem);
}

.legal-intro h1 {
  margin-bottom: 0.5rem;
}

.legal-layout {
  display: grid;
  gap: 1rem;
  padding-bottom: 2.5rem;
}

.legal-sidebar {
  display: none;
}

.legal-sidebar .panel {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
}

.legal-sidebar a {
  padding: 0.58rem 0.7rem;
  border-radius: 12px;
  color: #061a38;
  text-decoration: none;
  font-weight: 800;
}

.legal-sidebar a:hover {
  background: rgba(243, 191, 86, 0.16);
}

.legal-content {
  display: grid;
  gap: 1rem;
}

.legal-content section {
  padding: 0;
}

.legal-policy {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.88);
}

.legal-policy h2 {
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 0.7rem;
  margin-bottom: 1rem;
}

.legal-policy h3 {
  margin: 1.2rem 0 0.35rem;
  color: #061a38;
}

.legal-policy p {
  color: #5f6d87;
}

@keyframes home-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.home-page .reveal {
  animation: home-rise 680ms ease both;
}

.home-page .hero-showcase.reveal {
  animation-delay: 120ms;
}

@media (min-width: 1180px) {
  .home-page .hero .wrap {
    width: min(1680px, 96%);
  }

  .home-page .hero-grid {
    grid-template-columns: minmax(520px, 0.82fr) minmax(620px, 1.18fr);
  }

  .home-page .hero-copy {
    margin-right: clamp(-4rem, -3vw, -2rem);
    padding: clamp(2rem, 3vw, 4rem);
  }

  .home-page .hero-showcase {
    border-radius: 34px;
  }

  .home-page .service-offer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .legal-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .legal-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: start;
  }

  .legal-sidebar {
    display: block;
    position: sticky;
    top: 6.8rem;
  }
}

@media (max-width: 1040px) {
  .home-page .wrap,
  .legal-page .wrap {
    width: min(100% - 2rem, 1120px);
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-page .nav-list {
    justify-content: flex-start;
  }

  .home-page .hero-grid {
    gap: 1rem;
  }

  .home-page .hero-copy {
    margin-right: 0;
  }

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

  .home-page .service-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 759px) {
  .nav-list {
    gap: 0.35rem;
  }

  .nav-list a {
    font-size: 0.86rem;
    padding: 0.32rem 0.44rem;
  }

  .home-page .service-offer-grid {
    grid-template-columns: 1fr;
  }

  .home-page h1 {
    max-width: 13.5ch;
    font-size: clamp(2.55rem, 15vw, 4.1rem);
  }

  .home-page .hero-showcase {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .home-page .hero-photo {
    position: absolute;
    inset: 0;
  }

  .floating-hero-card {
    position: static;
    z-index: 1;
    margin: 0.8rem;
  }

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

  .row-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .reveal,
  .home-page .btn {
    animation: none;
    transition: none;
  }
}
