/* ----------------------------------
   🎨 Theme Variables
---------------------------------- */
:root {
  --bg-dark: #212f3d;
  --bg-light: #f6f8fa;
  --text-light: #f2f2f2;
  --text-dark: #1f1f1f;
  --accent: #45a29e;
  --accent-hover: #379a94;
  --highlight: #66fcf1;
  --brand-blue: #005a9c;
  --brand-orange: #ff8c00;
  --cta-orange: #ff6600;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

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

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

/* ----------------------------------
   Brand Helpers
---------------------------------- */
.blue {
  color: var(--brand-blue);
  font-weight: 700;
}

.orange {
  color: var(--brand-orange);
  font-weight: 700;
}

/* ----------------------------------
   HEADER (Shared across all pages)
---------------------------------- */
.site-header,
.centered-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem 2.75rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between; /* logo left, nav right */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.25),
    transparent
  );
  color: #fff;
  z-index: 20;
  transition: transform 0.25s ease;
}

/* Hide header on scroll */
.site-header.nav-hidden,
.centered-header.nav-hidden {
  transform: translateY(-120%);
}

/* Brand block */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  /* justify-content: flex-start;  default already, so not needed */
}

.brand img {
  height: 80px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  /* if you prefer drop shadow instead, use this line instead of box-shadow:
     filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  */
}

.site-title {
  margin: 0;
  font-size: 1.45rem;        /* smaller than 2rem, helps reduce cramping */
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.site-title .blue {
  color: var(--brand-blue);
}

.site-title .orange {
  color: var(--brand-orange);
}

/* Nav on the right */
.centered-nav {
  display: flex;
  gap: 2rem;              /* more space between items */
  margin-left: auto;      /* pushes nav to the right if needed */
  align-items: center;
  justify-content: flex-end;
  font-weight: 600;
  letter-spacing: 0.12em; /* a bit more air between letters */
  text-transform: uppercase;
  font-size: 0.85rem;     /* slightly smaller, feels lighter */
}

.centered-nav a {
  position: relative;
  color: #f2f2f2;                /* light on dark hero */
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
  transition: color 0.25s ease;
}

/* underline */
.centered-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: var(--cta-orange);
  transition: width 0.25s ease;
}

.centered-nav a:hover::after {
  width: 100%;
}

.centered-nav a:hover {
  color: var(--cta-orange);
}

/* Hide skip link visually, show only when focused via keyboard */
.skip-link {
  position: absolute !important;
  left: -999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: transparent !important;
}

/* When focused (e.g. user presses Tab from the address bar), show it nicely */
.skip-link:focus {
  position: fixed !important;
  left: 1rem !important;
  top: 1rem !important;
  width: auto !important;
  height: auto !important;
  padding: 0.6rem 1rem !important;
  background: #ffffff !important;
  color: #000000 !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
  z-index: 9999 !important;
}

/* Inner pages. header sits in normal flow on white background */
body.inner .site-header,
body.inner .centered-header {
  position: relative;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

body.inner .centered-nav a {
  color: var(--bg-dark) !important;
  text-shadow: none;
}

body.inner .centered-nav a:hover {
  color: var(--cta-orange) !important;
}

/* ----------------------------------
   HERO (index only)
---------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 7rem 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

#hero-sub {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

/* fallback */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, #34526f, #2c3e50);
  opacity: 0.9;
  z-index: -2;
}

/* dynamic overlay */
.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* readability gradient */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(0, 0, 0, 0.4), transparent 50%)
    linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.85));
  mix-blend-mode: multiply;
  z-index: -1;
}

/* Hero blur card */
.hero-content {
  max-width: 900px;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  margin: 0 auto;
}

/* Compliance hero with fixed background */
.hero-compliance {
  background: url("/images/compliance-bg.png") center/cover no-repeat;
  background-attachment: fixed;
  padding: 6rem 2rem;
  position: relative;
}

.hero-compliance::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);    /* soft dark overlay for readability */
  z-index: 0;
}

.hero-compliance .hero-content {
  position: relative;
  z-index: 2;
}

/* Mobile devices often hate background-attachment: fixed */
@media (max-width: 768px) {
  .hero-compliance {
    background-attachment: scroll;
    background-position: center top;
  }
}

/* Force white text in hero */
.hero h1,
.hero h2,
.hero p,
.hero-content * {
  color: #ffffff !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Static hero line (brand positioning) */
.static-hero-line {
  margin-top: 1rem;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: #ffffff;
  max-width: 48rem;
  text-align: center;
  opacity: 0.95;
}

/* ----------------------------------
   CTA Buttons
---------------------------------- */
.cta {
  display: inline-block;
  min-width: 220px;
  padding: 0.75em 1.6em;
  background: var(--cta-orange);
  color: #ffffff;
  font-weight: 600;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.1s ease;
  text-align: center;
}

.cta:hover {
  background: #e65c00;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Secondary CTA button. Calm but visible on dark backgrounds */

.cta.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.cta.secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

/* ----------------------------------
   SERVICES + ABOUT styling
---------------------------------- */
section.services,
section.about {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.services-header {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 auto 0.35rem;
}

.page-heading {
  font-size: clamp(2rem, 2.5vw + 1rem, 2.6rem);
  color: var(--bg-dark);
}

/* service grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-box {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  transition: 0.2s;
  text-align: center;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ----------------------------------
   CONTACT
---------------------------------- */
.contact {
  max-width: 960px;
  margin: 4rem auto;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #0b1726 0%, #13263a 100%);
  border-radius: 18px;
  position: relative;
  color: #fff;
}

.contact h1 {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0 0 1rem;
  color: #ffffff;
}

.contact .intro {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1.08rem;
  color: #f2f2f2;
}

/* contact form */
.form-wrapper {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  padding: 2.25rem;
  border-radius: 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form label {
  font-weight: 600;
  color: #f2f2f2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.94);
  color: #333;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #666;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(69, 162, 158, 0.25);
}

/* contact details block */
.contact-details {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 1.05rem;
  color: #f1f1f1;
}

.contact-details p {
  margin: 0.6rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #f8f8f8;
}

.contact-details a[href^="tel"] {
  color: #f8f8f8;
  font-weight: 600;
  text-decoration: none;
}

.contact-details i {
  color: var(--accent);
}

/* ----------------------------------
   Use case highlight
---------------------------------- */
.use-case-highlight {
  background-color: #f7f9fb;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* ----------------------------------
   Floating logo
---------------------------------- */
.floating-logo {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 2rem;
  z-index: 1000;
}

.floating-logo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  background: #fff;
  transition: transform 0.25s ease;
}

.floating-logo:hover img {
  transform: scale(1.08);
}

/* ----------------------------------
   Footer
---------------------------------- */
footer {
  background: #111827;
  color: #e5e7eb;
  padding: 2.5rem 1.5rem 2rem;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #4682b4;
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #002b4c;
  text-decoration: underline;
}

footer p {
  margin: 0.25rem 0;
}

.acknowledgement {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-top: 1rem;
  line-height: 1.4;
}

/* ----------------------------------
   Animations
---------------------------------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----------------------------------
   Responsive tweaks
---------------------------------- */
@media (max-width: 900px) {
  .brand img {
    height: 70px;
  }

  .site-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 600px) {
  /* Header becomes stacked but keeps light/dark logic */
  .site-header,
  .centered-header {
    position: relative;
    padding: 1rem 1.25rem;
  }

  .brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .brand img {
    height: 64px;
    margin-bottom: 0.5rem;
  }

  .site-title {
    justify-content: center;
    font-size: 1.6rem;
  }

  .centered-nav {
    gap: 1rem;
    justify-content: center;
  }

  .hero {
    padding-top: 2rem;
    min-height: 75vh;
  }

  .contact {
    background-attachment: scroll;
  }

  .floating-logo img {
    width: 70px;
    height: 70px;
  }
}

/* FAQ block for About page */
.faq {
  margin-top: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  background: #ffffff;
  padding: 0.9rem 1rem;
  margin: 0.75rem 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--bg-dark);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.75rem 0 0;
  color: #2b2b2b;
}

/* About hero panel. Dark institutional authority treatment */
.about-hero-panel {
  background: linear-gradient(135deg, #0b1726 0%, #13263a 100%);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 56px 48px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.about-hero-panel .about-title,
.about-hero-panel .about-lead,
.about-hero-panel .eyebrow {
  color: #ffffff;
}

.about-hero-panel .trust-pill {
  background: rgba(255,255,255,.08);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.16);
}

/* Make the pills behave like a grid, not one long line */
.pill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 1rem;
}

/* Make Diagnose, Stabilise, Improve look like real service cards */
.service-boxes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.service-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 1.15rem;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  min-height: 170px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.service-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--brand-blue);
  margin-bottom: 0.75rem;
}

.service-box h4 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.service-box p {
  margin: 0;
  max-width: 38ch;
  line-height: 1.45;
}

/* Mobile */
@media (max-width: 900px) {
  .pill-grid {
    grid-template-columns: 1fr;
  }

  .service-boxes {
    grid-template-columns: 1fr;
  }

  .service-box {
    min-height: auto;
  }
}

/* ----------------------------------
   SERVICES PAGE UPGRADES
---------------------------------- */

.services-hero {
  position: relative;
  padding: 4.5rem 1.5rem 3.5rem;
  background: url("/images/hero-dec-corporate.webp") center/cover no-repeat;
  overflow: hidden;
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17, 24, 39, 0.75), rgba(17, 24, 39, 0.55));
}

.services-hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  padding: 2.25rem 1.5rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.services-hero-title {
  margin: 0.5rem 0 0.75rem;
  font-size: clamp(2rem, 2.8vw + 1rem, 3rem);
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.services-hero-sub {
  max-width: 46rem;
  margin: 0.75rem auto 1.5rem;
  font-size: 1.1rem;
  opacity: 0.95;
}

.services-hero-cta {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.cta.secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.cta.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.services-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 1.5rem auto 0;
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
}

.services-hero-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.services-wrap {
  max-width: 1100px;
  margin: 2.75rem auto;
  padding: 0 1.5rem;
}

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

.services-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.6rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.services-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  color: var(--bg-dark);
}

.services-card .micro {
  margin-top: 0.75rem;
  color: #4b5563;
  font-size: 0.95rem;
}

.services-list {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
}

.service-box {
  position: relative;
  text-align: left;
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.service-box .icon {
  font-size: 1.25rem;
  color: var(--brand-blue);
  margin-bottom: 0.65rem;
}

.service-meta {
  display: block;
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.how-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.how-step {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border-left: 4px solid var(--cta-orange);
}

.how-step h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.faq {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.faq-item {
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  padding: 0.9rem 0;
}

.faq-item:first-of-type {
  border-top: none;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--bg-dark);
}

.services-cta {
  margin-top: 3.25rem;
  padding: 3rem 1.5rem;
  background: linear-gradient(to bottom, #0b1220, #111827);
}

.services-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.services-cta-inner h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.services-cta-inner p {
  margin: 0 auto 1.3rem;
  max-width: 44rem;
  opacity: 0.92;
}

@media (max-width: 900px) {
  .services-split {
    grid-template-columns: 1fr;
  }

  .how-strip {
    grid-template-columns: 1fr;
  }

  .service-box {
    text-align: left;
  }
}

/* ----------------------------------
   FIX: Secondary CTA text contrast
   Ensure text is readable on dark backgrounds
---------------------------------- */

.services-hero .cta.secondary,
.services-cta .cta.secondary {
  color: #ffffff !important;
}

/* ----------------------------------
   DOCUMENT INTELLIGENCE HERO - FINAL
---------------------------------- */

.hero.document-hero {
  min-height: auto;
  padding: 9rem 1.5rem 4rem;
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  justify-content: flex-start;
  gap: 2.75rem;
  text-align: center;
  background: linear-gradient(to bottom, #2c3e50, #212f3d);
  overflow: visible;
}

.hero.document-hero::before {
  background-image: linear-gradient(to bottom, #2c3e50, #212f3d);
  opacity: 1;
}

.hero.document-hero::after {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 45%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.35));
  mix-blend-mode: normal;
}

.hero.document-hero .hero-image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.hero.document-hero .hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.hero.document-hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 1.75rem 2rem;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
  border-radius: 12px;
}

.hero.document-hero .hero-content h2 {
  margin-top: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.15;
}

.hero.document-hero .hero-content p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile */
@media (max-width: 768px) {
  .hero.document-hero {
    padding: 2rem 1rem 3rem;
    gap: 1.5rem;
  }

  .hero.document-hero .hero-content {
    padding: 1.4rem;
  }

  .hero.document-hero .hero-content h2 {
    font-size: 1.6rem;
  }
}
