:root {
  --navy-950: #061522;
  --navy-900: #0a2032;
  --navy-800: #12334b;
  --navy-700: #1d4964;
  --teal: #2d7772;
  --gold: #cba85f;
  --gold-light: #e2ca98;
  --paper: #fffdf8;
  --ivory: #f5f2eb;
  --mist: #eaf0ed;
  --ink: #102533;
  --muted: #60717c;
  --line: rgba(16, 47, 67, 0.15);
  --white-line: rgba(255, 255, 255, 0.15);
  --shadow: 0 24px 70px rgba(6, 21, 34, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  background: white;
  color: var(--navy-950);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

.container {
  width: min(1180px, calc(100% - 10vw));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 60;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid var(--white-line);
  background: rgba(6, 21, 34, 0.95);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(203, 168, 95, 0.75);
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  color: white;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}

.brand-copy small {
  color: var(--gold-light);
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.8vw, 29px);
}

.nav-links a {
  color: #cfdae1;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: white;
}

.nav-links .nav-cta {
  padding: 11px 16px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
}

.menu-toggle {
  display: none;
}

.home-hero,
.page-hero {
  position: relative;
  display: flex;
  overflow: hidden;
  background: var(--navy-950);
  color: white;
}

.home-hero {
  min-height: min(920px, 100vh);
  align-items: center;
  padding: 150px 0 96px;
}

.page-hero {
  min-height: 650px;
  align-items: end;
  padding: 150px 0 86px;
}

.hero-image,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.home-hero .hero-image {
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 21, 34, 0.98) 0%, rgba(6, 21, 34, 0.91) 44%, rgba(6, 21, 34, 0.34) 100%),
    linear-gradient(0deg, rgba(6, 21, 34, 0.8), transparent 58%);
}

.page-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 21, 34, 0.97), rgba(6, 21, 34, 0.75) 55%, rgba(6, 21, 34, 0.26)),
    linear-gradient(0deg, rgba(6, 21, 34, 0.9), transparent 72%);
}

.hero-grid {
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(790px, 70vw);
}

.page-hero .hero-content {
  width: min(860px, 75vw);
}

.eyebrow {
  margin: 0 0 19px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 33px;
  height: 1px;
  margin: 0 11px 3px 0;
  background: currentColor;
  content: "";
}

.hero-content h1,
.display-title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-content h1 {
  color: white;
  font-size: clamp(3.25rem, 6.4vw, 6.7rem);
}

.page-hero .hero-content h1 {
  font-size: clamp(3rem, 5.5vw, 5.8rem);
}

.hero-content h1 span {
  color: var(--gold-light);
}

.hero-lead {
  max-width: 690px;
  margin: 29px 0 0;
  color: #c9d4db;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.8;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: var(--navy-950);
}

.button-primary:hover {
  background: var(--gold-light);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.38);
  color: white;
}

.button-outline:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.07);
}

.button-dark-outline {
  border-color: var(--navy-700);
  color: var(--navy-900);
}

.button-dark-outline:hover {
  border-color: var(--navy-950);
  background: rgba(10, 32, 50, 0.05);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 44px;
  padding-top: 21px;
  border-top: 1px solid var(--white-line);
  color: #b8c6cf;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-proof span::before {
  margin-right: 8px;
  color: var(--gold);
  content: "•";
}

.breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: #b9c6ce;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--gold-light);
  text-decoration: none;
}

.trust-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 116px;
  padding: 28px 26px;
  border-left: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 1px solid var(--line);
}

.trust-item small {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.trust-item strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  line-height: 1.4;
}

.section {
  padding: 108px 0;
}

.section-soft {
  background: var(--ivory);
}

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

.section-dark {
  background: var(--navy-950);
  color: white;
}

.section-head {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 58px;
}

.section-head-centered {
  max-width: 810px;
  margin: 0 auto 58px;
  text-align: center;
}

.display-title {
  font-size: clamp(2.35rem, 4.5vw, 4.8rem);
}

.section-dark .display-title {
  color: white;
}

.section-intro,
.body-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.section-dark .section-intro,
.section-dark .body-copy {
  color: #bcc9d1;
}

.primary-service {
  display: grid;
  min-height: 650px;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--navy-900);
  color: white;
  box-shadow: var(--shadow);
}

.primary-service-media,
.split-media {
  min-height: 520px;
  overflow: hidden;
}

.primary-service-media img,
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.primary-service-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 86px);
}

.service-label {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.primary-service-copy h2,
.subservice-card h3,
.split-copy h2,
.prose h2,
.contact-copy h1,
.legal h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.primary-service-copy h2,
.split-copy h2,
.contact-copy h1,
.legal h1 {
  font-size: clamp(2.2rem, 3.7vw, 4.1rem);
}

.primary-service-copy p {
  color: #c1ced6;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 27px 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  color: var(--muted);
  line-height: 1.55;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "✓";
}

.primary-service .check-list li,
.section-dark .check-list li {
  color: #c7d2d9;
}

.text-link {
  align-self: flex-start;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.subservice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.subservice-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--navy-900);
  color: white;
}

.subservice-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.39;
  transition: transform 500ms ease;
}

.subservice-card:hover img {
  transform: scale(1.025);
}

.subservice-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 21, 34, 0.98), rgba(6, 21, 34, 0.1));
}

.subservice-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(30px, 4vw, 52px);
}

.subservice-card h3 {
  max-width: 520px;
  font-size: clamp(1.85rem, 3vw, 3rem);
}

.subservice-card p {
  max-width: 540px;
  margin: 16px 0 24px;
  color: #c6d1d8;
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-card {
  min-height: 280px;
  padding: 30px 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-card > span {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.25rem;
}

.process-card h3 {
  margin: 46px 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.16rem;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.audience-grid,
.sector-grid,
.feature-grid,
.category-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

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

.sector-grid,
.category-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.info-card,
.sector-card,
.category-card {
  min-height: 200px;
  padding: 30px;
  background: var(--paper);
}

.section-dark .sector-card,
.section-dark .info-card {
  background: var(--navy-900);
}

.info-card span,
.sector-card span,
.category-card span {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.info-card h3,
.sector-card h3,
.category-card h3 {
  margin: 34px 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  line-height: 1.2;
}

.info-card p,
.sector-card p,
.category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.section-dark .info-card p,
.section-dark .sector-card p {
  color: #b9c7cf;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
}

.split-section-reverse .split-copy {
  order: 1;
}

.split-section-reverse .split-media {
  order: 2;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 8vw, 110px);
}

.split-copy .body-copy {
  margin-top: 24px;
}

.notice {
  margin-top: 28px;
  padding: 20px 22px;
  border-left: 3px solid var(--gold);
  background: rgba(203, 168, 95, 0.1);
  color: var(--muted);
  line-height: 1.7;
}

.numbered-list {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.numbered-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 15px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.numbered-item > span {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
}

.numbered-item h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.12rem;
}

.numbered-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.17rem;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 4px;
  color: var(--gold);
  content: "+";
  font-family: Arial, sans-serif;
  font-size: 1.5rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 790px;
  margin: -5px 0 25px;
  color: var(--muted);
  line-height: 1.8;
}

.cta-band {
  padding: 82px 0;
  background: var(--navy-900);
  color: white;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.cta-inner h2 {
  max-width: 760px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.15rem, 4vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.cta-inner p {
  max-width: 680px;
  margin: 18px 0 0;
  color: #bfcbd3;
  line-height: 1.75;
}

.quote-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 7vw;
  align-items: start;
}

.contact-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.direct-contact {
  display: grid;
  gap: 11px;
  margin-top: 32px;
}

.direct-contact a {
  display: flex;
  flex-direction: column;
  padding: 17px 19px;
  border: 1px solid var(--line);
  text-decoration: none;
}

.direct-contact small {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.direct-contact strong {
  overflow-wrap: anywhere;
  font-size: 0.88rem;
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 5vw, 52px);
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #dce5ea;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 0;
  outline: 0;
  background: var(--navy-950);
  color: white;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(203, 168, 95, 0.18);
}

.quote-form textarea {
  min-height: 132px;
  resize: vertical;
}

.form-note {
  margin: -4px 0 0;
  color: #9fb0bb;
  font-size: 0.68rem;
  line-height: 1.6;
  text-align: center;
}

.article-layout {
  display: grid;
  grid-template-columns: 0.32fr 0.68fr;
  gap: 7vw;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 110px;
  padding: 27px;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.article-toc strong {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.64rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.article-toc a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
  text-decoration: none;
}

.prose {
  max-width: 780px;
}

.prose h2 {
  margin: 58px 0 18px;
  font-size: clamp(2rem, 3vw, 3rem);
  scroll-margin-top: 105px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 34px 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
}

.prose p,
.prose li {
  color: var(--muted);
  line-height: 1.85;
}

.prose ul,
.prose ol {
  padding-left: 22px;
}

.prose-callout {
  margin: 34px 0;
  padding: 27px;
  border-left: 4px solid var(--gold);
  background: var(--mist);
}

.prose-callout strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
}

.legal {
  max-width: 840px;
}

.legal h1 {
  margin-bottom: 26px;
}

.legal h2 {
  margin: 42px 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
}

.legal p,
.legal li {
  color: var(--muted);
  line-height: 1.8;
}

.site-footer {
  background: var(--navy-950);
  color: #b8c5cd;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 6vw;
  padding: 64px 0 45px;
}

.footer-main p {
  max-width: 420px;
  margin: 18px 0 0;
  font-size: 0.82rem;
  line-height: 1.75;
}

.footer-column strong {
  display: block;
  margin-bottom: 15px;
  color: var(--gold-light);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  padding: 6px 0;
  color: #c8d2d8;
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 34px;
  border-top: 1px solid var(--white-line);
  font-size: 0.7rem;
}

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

.floating-whatsapp {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  background: #1f9d61;
  box-shadow: 0 12px 28px rgba(6, 21, 34, 0.28);
  color: white;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 0.62rem;
  }

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

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

@media (max-width: 900px) {
  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--white-line);
    background: transparent;
  }

  .menu-toggle span {
    width: 20px;
    height: 1px;
    background: white;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
    align-items: stretch;
    padding: 22px 5vw 30px;
    background: var(--navy-950);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 13px 0;
    border-bottom: 1px solid var(--white-line);
    font-size: 0.68rem;
  }

  .nav-links .nav-cta {
    margin-top: 10px;
    padding: 14px;
    text-align: center;
  }

  .primary-service,
  .split-section,
  .quote-section,
  .section-head,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .split-section-reverse .split-copy,
  .split-section-reverse .split-media {
    order: initial;
  }

  .audience-grid,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .article-toc {
    position: static;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 42px, 1180px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-copy small {
    max-width: 190px;
    line-height: 1.25;
  }

  .nav-links {
    top: 70px;
    max-height: calc(100vh - 70px);
    padding-right: 21px;
    padding-left: 21px;
  }

  .home-hero {
    min-height: 780px;
    padding: 124px 0 72px;
  }

  .page-hero {
    min-height: 680px;
    padding: 124px 0 65px;
  }

  .hero-content,
  .page-hero .hero-content {
    width: 100%;
  }

  .hero-content h1,
  .page-hero .hero-content h1 {
    font-size: clamp(2.75rem, 12.5vw, 4.25rem);
  }

  .hero-overlay,
  .page-hero .hero-overlay {
    background: linear-gradient(90deg, rgba(6, 21, 34, 0.97), rgba(6, 21, 34, 0.69));
  }

  .hero-actions,
  .button-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    gap: 11px;
  }

  .hero-proof span {
    width: 100%;
  }

  .trust-grid,
  .subservice-grid,
  .process-grid,
  .audience-grid,
  .sector-grid,
  .feature-grid,
  .category-grid,
  .field-row,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:last-child {
    border-right: 1px solid var(--line);
  }

  .section {
    padding: 78px 0;
  }

  .section-head,
  .section-head-centered {
    gap: 28px;
    margin-bottom: 42px;
  }

  .primary-service-media,
  .split-media {
    min-height: 360px;
  }

  .primary-service-copy,
  .split-copy {
    padding: 60px 23px;
  }

  .subservice-card {
    min-height: 440px;
  }

  .process-card {
    min-height: 245px;
  }

  .info-card,
  .sector-card,
  .category-card {
    min-height: 180px;
  }

  .quote-form {
    padding: 28px 21px;
  }

  .cta-band {
    padding: 70px 0;
  }

  .footer-main {
    padding-top: 52px;
  }

  .footer-bottom {
    flex-direction: column;
    padding-bottom: 86px;
  }

  .floating-whatsapp {
    display: inline-flex;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
