/* Fontes self-hospedadas. O CSP do .htaccess restringe style-src e font-src a 'self',
   entao nada pode vir do Google Fonts. Manrope e Space Grotesk sao variaveis: um unico
   arquivo por subset cobre toda a faixa de pesos. */

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/assets/fonts/space-grotesk-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/assets/fonts/space-grotesk-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --bg: #0a0d0a;
  --surface: #12100d;
  --surface-soft: #1a1611;
  --surface-tint: #231d15;
  --text: #f4f0e6;
  --muted: #b8c0b3;
  --line: rgba(214, 180, 74, 0.14);
  --line-strong: rgba(214, 180, 74, 0.28);
  --ink: #050605;
  --ink-soft: #101410;
  --gold: #d6b44a;
  --gold-deep: #9f7b1f;
  --gold-soft: #f0df9a;
  --gold-bright: #ebcf71;
  --bronze: #6f5315;
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.26);
  --shadow-strong: 0 28px 70px rgba(0, 0, 0, 0.38);
  --radius: 24px;
  --radius-sm: 18px;
  --shell: 1180px;
  --body-font: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  --heading-font: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--body-font);
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(214, 180, 74, 0.12), transparent 34%),
    radial-gradient(circle at top right, rgba(214, 180, 74, 0.16), transparent 30%),
    linear-gradient(180deg, #0f0d0a 0%, var(--bg) 100%);
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  font-family: var(--heading-font);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 700;
}

h1 {
  font-size: clamp(3.1rem, 6vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p,
ul {
  margin: 0 0 1rem;
}

ul {
  padding-left: 1.2rem;
}

strong {
  color: var(--gold-soft);
}

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 30;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
}

.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead {
  max-width: 45rem;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--muted);
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.button {
  min-height: 3.25rem;
  padding: 0.9rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
}

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

.button-primary {
  color: #140f05;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
}

.button-primary:hover {
  background: linear-gradient(135deg, #f1db8d, #c89d2d);
}

.button-secondary {
  border-color: rgba(214, 180, 74, 0.24);
  background: rgba(18, 16, 13, 0.82);
  color: var(--gold-soft);
}

.button-secondary:hover {
  border-color: rgba(214, 180, 74, 0.5);
  background: rgba(26, 22, 17, 0.94);
}

.text-link {
  color: var(--gold);
}

.text-link:hover {
  color: var(--gold-soft);
}

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(214, 180, 74, 0.45);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(214, 180, 74, 0.14);
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.98), rgba(10, 13, 10, 0.97) 56%, rgba(111, 83, 21, 0.9));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.95rem 0;
}

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

.brand-logo {
  display: block;
  width: clamp(182px, 22vw, 250px);
  height: auto;
}

.menu-toggle {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(214, 180, 74, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav ul a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  white-space: nowrap;
}

.hero {
  position: relative;
  padding: 4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  min-height: calc(100dvh - 80px);
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  max-width: 20ch;
  margin: 0 auto 1.5rem;
  color: #fff8e6;
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.72), 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .lead {
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  color: #ddd8cc;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.6;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}

.hero-content .hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 0;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(240, 223, 154, 0.18), transparent 18%),
    radial-gradient(circle at 22% 72%, rgba(214, 180, 74, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(14, 11, 8, 0.98), rgba(8, 9, 8, 0.96));
  box-shadow: var(--shadow-strong);
}

.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(214, 180, 74, 0.05) 44%, transparent 58%),
    radial-gradient(circle at center, rgba(214, 180, 74, 0.08), transparent 62%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.5rem;
  align-items: stretch;
  padding: 1.1rem;
}

.hero-panel,
.hero-aside {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 8px);
}

.hero-panel {
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(214, 180, 74, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(18, 16, 13, 0.8), rgba(10, 13, 10, 0.86));
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-strong);
}

.hero-panel::before {
  content: "";
  position: absolute;
  right: -2.5rem;
  top: -2.5rem;
  width: 12rem;
  height: 12rem;
  border: 2px solid rgba(214, 180, 74, 0.16);
  border-radius: 50%;
}

.hero-panel::after {
  content: "";
  position: absolute;
  left: -1.5rem;
  bottom: -1.5rem;
  width: 8rem;
  height: 8rem;
  border: 2px solid rgba(214, 180, 74, 0.16);
  border-radius: 50%;
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

/* Styling for the overview layout in the fold below */
.lead-support {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0 1.5rem;
}

.hero-aside {
  min-height: 100%;
  color: #fff;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(5, 6, 5, 0.42), rgba(5, 6, 5, 0.86)),
    linear-gradient(135deg, rgba(5, 6, 5, 0.72), rgba(36, 29, 16, 0.78) 58%, rgba(214, 180, 74, 0.38));
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-strong);
}

.hero-aside::before {
  content: "";
  position: absolute;
  width: 22rem;
  height: 22rem;
  right: -6rem;
  top: -4rem;
  border: 2px solid rgba(214, 180, 74, 0.3);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.hero-aside::after {
  content: "";
  position: absolute;
  width: 15rem;
  height: 15rem;
  left: -4rem;
  bottom: -5rem;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: rotate(18deg);
}

.hero-photo-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: clamp(2rem, 4vw, 3rem) 2rem 2rem;
}

.hero-map-grid,
.hero-map-lines {
  position: absolute;
}

.hero-map-grid {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(214, 180, 74, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(214, 180, 74, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 96%);
}

.hero-map-image {
  opacity: 0.22;
  filter:
    brightness(1.1)
    sepia(1)
    hue-rotate(350deg)
    saturate(0.75)
    contrast(1.06);
  fill: #000;
}

.hero-map-lines {
  inset: 0;
  width: 100%;
  height: 100%;
}

.route {
  stroke-linecap: round;
  stroke-dasharray: 8 12;
  stroke-dashoffset: 0;
  animation: route-flow 20s linear infinite;
}

/* Asia → Europe via Suez (primary trunk) */
.route-1 {
  stroke: rgba(240, 223, 154, 0.88);
  stroke-width: 2.4;
  opacity: 0.84;
  filter: drop-shadow(0 0 10px rgba(214, 180, 74, 0.30));
  animation-duration: 26s;
}

/* Trans-Pacific (split at date line) */
.route-2 {
  stroke: rgba(240, 223, 154, 0.78);
  stroke-width: 2.0;
  opacity: 0.76;
  filter: drop-shadow(0 0 8px rgba(214, 180, 74, 0.22));
  animation-duration: 22s;
  animation-delay: 1s;
}

/* Trans-Atlantic: New York → Rotterdam */
.route-3 {
  stroke: rgba(214, 180, 74, 0.74);
  stroke-width: 1.9;
  opacity: 0.72;
  animation-duration: 18s;
  animation-delay: 0.5s;
}

/* South America → Europe */
.route-4 {
  stroke: rgba(214, 180, 74, 0.64);
  stroke-width: 1.7;
  opacity: 0.64;
  animation-duration: 22s;
  animation-delay: 3s;
}

/* Australia → Asia */
.route-5 {
  stroke: rgba(240, 223, 154, 0.60);
  stroke-width: 1.7;
  opacity: 0.60;
  animation-duration: 20s;
  animation-delay: 1.5s;
}

/* Americas: Panama → New York */
.route-6 {
  stroke: rgba(214, 180, 74, 0.56);
  stroke-width: 1.5;
  opacity: 0.57;
  animation-duration: 13s;
  animation-delay: 2.5s;
}

/* Cape of Good Hope */
.route-7 {
  stroke: rgba(240, 223, 154, 0.48);
  stroke-width: 1.5;
  opacity: 0.50;
  animation-duration: 24s;
  animation-delay: 4s;
}

.port-node {
  fill: #ebcf71;
  stroke: rgba(10, 8, 6, 0.88);
  stroke-width: 2;
  filter: drop-shadow(0 0 6px rgba(240, 223, 154, 0.45));
  animation: port-pulse 3.2s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.port-ring {
  fill: none;
  stroke: rgba(214, 180, 74, 0.32);
  stroke-width: 1.2;
  animation: ring-expand 3.2s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

/* Delays escalonados dos nos portuarios, um por porto, aplicados ao par
   .port-ring + .port-node. Ficam em classes porque o CSP do .htaccess
   (style-src 'self') bloqueia atributos style inline. */
.port-d1   { animation-delay: 0.1s; }
.port-d2   { animation-delay: 0.6s; }
.port-d3   { animation-delay: 1.0s; }
.port-d4   { animation-delay: 1.4s; }
.port-d5   { animation-delay: 0.4s; }
.port-d6   { animation-delay: 1.8s; }
.port-d7   { animation-delay: 1.1s; }
.port-d8   { animation-delay: 2.2s; }
.port-d9   { animation-delay: 2.8s; }
.port-d10  { animation-delay: 1.6s; }
.port-d11  { animation-delay: 3.2s; }

@keyframes route-flow {
  to {
    stroke-dashoffset: -240;
  }
}

@keyframes port-pulse {
  0%, 100% { transform: scale(0.88); }
  55%       { transform: scale(1.18); }
}

@keyframes ring-expand {
  0%   { transform: scale(1);   opacity: 0.55; }
  65%  { transform: scale(2.6); opacity: 0;    }
  100% { transform: scale(1);   opacity: 0;    }
}

.hero-photo-copy h2,
.hero-panel h2 {
  max-width: none;
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.fact {
  min-height: 100%;
  padding: 1rem;
  border: 1px solid rgba(214, 180, 74, 0.18);
  border-radius: 18px;
  background: rgba(5, 6, 5, 0.32);
  backdrop-filter: blur(6px);
}

.fact strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: 0.82rem;
}

.fact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
}

.section {
  padding: 4.25rem 0;
}

.section.alt {
  position: relative;
  background:
    linear-gradient(180deg, rgba(18, 16, 13, 0.92), rgba(10, 13, 10, 0.96));
  border-block: 1px solid var(--line);
}

.section.alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(214, 180, 74, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(214, 180, 74, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.grid-4,
.grid-3,
.contact-layout,
.service-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

.panel,
.service-card,
.step-card,
.contact-form,
.faq-list details {
  position: relative;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 16, 13, 0.94);
  box-shadow: var(--shadow-soft);
}

.panel,
.step-card,
.contact-form {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.panel::before,
.service-card::before,
.step-card::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
  border-top-left-radius: inherit;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 100%;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background:
    linear-gradient(180deg, rgba(26, 22, 17, 0.98), rgba(10, 13, 10, 0.94));
}

.service-card h3 {
  font-size: 1.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-card h3 a {
  text-decoration: none;
}

.service-card ul {
  margin-bottom: 0.2rem;
  color: var(--muted);
}

.service-card li + li {
  margin-top: 0.35rem;
}

.service-card .text-link {
  margin-top: auto;
}

.step-list {
  counter-reset: steps;
}

.step-card {
  padding-top: 3.35rem;
}

.step-card::before {
  counter-increment: steps;
  content: "0" counter(steps);
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  border-radius: 999px;
  color: #140f05;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.28);
}

.limit-note {
  padding: 1.6rem 1.6rem 1.6rem 1.85rem;
  border: 1px solid rgba(214, 180, 74, 0.24);
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background:
    linear-gradient(180deg, rgba(36, 28, 11, 0.96), rgba(22, 18, 8, 0.98));
  box-shadow: var(--shadow-soft);
}

.cta-band {
  padding: 4rem 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.3rem;
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(125deg, rgba(5, 6, 5, 0.98), rgba(28, 22, 13, 0.96) 55%, rgba(214, 180, 74, 0.88));
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.page-hero {
  position: relative;
  padding: 3.7rem 0 2.2rem;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at right top, rgba(214, 180, 74, 0.16), transparent 20%),
    radial-gradient(circle at left bottom, rgba(111, 83, 21, 0.12), transparent 24%);
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 180, 74, 0.22), transparent);
}

.page-hero .shell {
  position: relative;
  z-index: 1;
}

.page-hero .lead {
  max-width: 42rem;
}

.contact-layout {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.contact-form {
  padding: 1.6rem;
}

.form-status {
  min-height: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gold-bright);
  font-weight: 600;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-grid label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

.full-span {
  grid-column: 1 / -1;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(214, 180, 74, 0.16);
  border-radius: 16px;
  background: rgba(10, 9, 7, 0.9);
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

textarea {
  resize: vertical;
}

input:hover,
textarea:hover,
select:hover {
  border-color: rgba(214, 180, 74, 0.34);
}

input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"] {
  border-color: #a33e22;
  box-shadow: 0 0 0 3px rgba(163, 62, 34, 0.12);
}

.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.75rem;
}

.checkbox input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  padding: 1.2rem 1.3rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

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

.site-footer {
  padding: 3.3rem 0 2rem;
  color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(214, 180, 74, 0.14);
  background:
    linear-gradient(135deg, #050605, #10100d 58%, #3c2d10);
}

.site-footer strong,
.site-footer h2 {
  color: #fff;
}

.site-footer h2 {
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
  letter-spacing: -0.03em;
}

.footer-grid,
.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer-grid {
  padding-bottom: 2rem;
}

.footer-grid > * {
  flex: 1;
}

.legal-name {
  font-size: 0.82rem;
  white-space: nowrap;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0.55rem;
}

.footer-links a,
.footer-meta a,
.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-links a:hover,
.footer-meta a:hover,
.site-footer a:hover {
  color: var(--gold-soft);
}

.footer-base {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
}

.footer-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ═══════════ PAGE HERO UPGRADE ═══════════ */
.page-hero {
  padding: 3rem 0 5.5rem;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(240, 223, 154, 0.16), transparent 26%),
    radial-gradient(circle at 12% 80%, rgba(111, 83, 21, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(12, 10, 7, 0.98) 0%, rgba(10, 13, 10, 0.95) 100%);
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(214, 180, 74, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(214, 180, 74, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 90% 100% at 65% 0%, rgba(0,0,0,0.9) 40%, transparent 88%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 60rem;
}

.page-hero h1 {
  background: linear-gradient(125deg, #fff8e6 20%, var(--gold-bright) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════ SERVICES PAGE ═══════════ */
.svc-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.25rem;
  align-items: stretch;
  box-sizing: border-box;
}

.svc-grid > .svc-card {
  flex: 1 1 0%;
  min-width: 0;
  box-sizing: border-box;
}

.svc-card {
  position: relative;
  overflow: hidden;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background: linear-gradient(160deg, rgba(22, 18, 13, 0.97), rgba(10, 13, 10, 0.94));
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.svc-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-strong);
}

.svc-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), transparent);
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.svc-card::after {
  content: "";
  position: absolute;
  right: -3rem;
  top: -3rem;
  width: 14rem;
  height: 14rem;
  border: 1px solid rgba(214, 180, 74, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.svc-card-header {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.svc-card-header .eyebrow {
  margin-bottom: 0;
}

.svc-num {
  font-family: var(--heading-font);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(214, 180, 74, 0.2);
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.svc-card-header .eyebrow {
  font-size: 0.85rem;
  line-height: 1.3;
}

.svc-card h2 {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  margin-bottom: 0;
  line-height: 1.15;
}

.svc-summary {
  color: var(--muted);
  font-size: 0.98rem;
  margin: 0;
  line-height: 1.6;
}

.svc-list {
  padding: 0;
  list-style: none;
  margin: 0.25rem 0 0.5rem;
  display: grid;
  gap: 0.55rem;
}

.svc-list li {
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.93rem;
  position: relative;
}

.svc-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.82rem;
  top: 0.1em;
}

.svc-card .button {
  margin-top: auto;
  align-self: stretch;
  text-align: center;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.pkg-card {
  position: relative;
  padding: 2rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 16, 13, 0.94);
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.pkg-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.pkg-badge {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1.25rem;
  border: 1px solid rgba(214, 180, 74, 0.3);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(214, 180, 74, 0.14), rgba(214, 180, 74, 0.04));
  color: var(--gold);
  font-family: var(--heading-font);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pkg-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
  color: var(--gold-soft);
}

.pkg-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ═══════════ METODOLOGIA PAGE ═══════════ */
.method-stack {
  display: grid;
  gap: 1.5rem;
}

.method-item {
  position: relative;
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(22, 18, 13, 0.97), rgba(10, 13, 10, 0.94));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: border-color var(--transition);
}

.method-item:hover {
  border-color: var(--line-strong);
}

.method-item::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 16rem;
  height: 16rem;
  border: 1px solid rgba(214, 180, 74, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.method-item-num {
  font-family: var(--heading-font);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-top: 0.15rem;
}

.method-item-body h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.75rem;
}

.method-item-body > p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.method-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.method-deliverables span {
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(214, 180, 74, 0.22);
  border-radius: 999px;
  background: rgba(214, 180, 74, 0.07);
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.principles-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.25rem;
  margin: 2rem 0 0;
  box-sizing: border-box;
}

.principle {
  flex: 1 1 0%;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background: rgba(18, 16, 13, 0.94);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.principle:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.principle::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), transparent);
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.principle-num {
  display: block;
  font-family: var(--heading-font);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.045em;
  color: rgba(214, 180, 74, 0.18);
  margin-bottom: 1.25rem;
}

.principle h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: var(--gold-soft);
  line-height: 1.3;
}

.principle p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ═══════════ SOBRE PAGE ═══════════ */
.about-intro-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.5rem;
  margin-bottom: 0;
  align-items: stretch;
  box-sizing: border-box;
}

.about-intro-grid > .about-card {
  flex: 1 1 0%;
  min-width: 0;
  box-sizing: border-box;
}

.about-card {
  position: relative;
  overflow: hidden;
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background: linear-gradient(160deg, rgba(22, 18, 13, 0.97), rgba(10, 13, 10, 0.94));
  box-shadow: var(--shadow-soft);
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), transparent);
  border-top-left-radius: inherit;
}

.about-card h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  margin-bottom: 1rem;
}

.about-card > p {
  color: var(--muted);
  font-size: 0.98rem;
}

.about-card > p + p {
  margin-top: 0.85rem;
}

.about-card-image {
  padding: 0;
  display: flex;
  min-height: 100%;
}

.about-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.about-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.about-meta-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.about-meta-item strong {
  min-width: 5rem;
  color: var(--gold-soft);
}

.about-meta-item span {
  color: var(--muted);
}

.pillars-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.25rem;
  margin-top: 2rem;
  align-items: stretch;
  box-sizing: border-box;
}

.pillars-grid > .pillar {
  flex: 1 1 0%;
  min-width: 0;
  box-sizing: border-box;
}

.pillar {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 16, 13, 0.94);
  box-shadow: var(--shadow-soft);
  transition: border-color var(--transition), transform var(--transition);
}

.pillar:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.pillar::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 10rem;
  height: 10rem;
  border: 1px solid rgba(214, 180, 74, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.pillar-label {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.6rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pillar h3 {
  font-size: 1rem;
  margin-bottom: 0.55rem;
  color: var(--gold-soft);
}

.pillar > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ═══════════ LOCATION (SOBRE) ═══════════ */
.location-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: stretch;
  box-sizing: border-box;
}

.location-info,
.location-map {
  flex: 1 1 0%;
  min-width: 0;
  box-sizing: border-box;
}

.location-info {
  position: relative;
  overflow: hidden;
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background: linear-gradient(160deg, rgba(22, 18, 13, 0.97), rgba(10, 13, 10, 0.94));
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.location-info::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), transparent);
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.location-address {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}

.location-contact {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.location-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.location-contact-item strong {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.location-contact-item a,
.location-contact-item span {
  color: var(--text);
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition);
}

.location-contact-item a:hover {
  color: var(--gold-soft);
}

.location-map {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 16, 13, 0.94);
  box-shadow: var(--shadow-soft);
  min-height: 380px;
}

.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.4) brightness(0.85) contrast(1.05);
  transition: filter var(--transition);
}

.location-map:hover iframe {
  filter: grayscale(0) brightness(1) contrast(1);
}

/* ═══════════ DIAGNÓSTICO PAGE ═══════════ */
.trigger-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 1.25rem;
  padding: 0;
  list-style: none;
}

.trigger-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(18, 16, 13, 0.86);
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.85);
  transition: border-color var(--transition);
}

.trigger-item:hover {
  border-color: var(--line-strong);
}

.trigger-mark {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.05rem;
  border: 1px solid rgba(214, 180, 74, 0.38);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
}

.diag-note {
  margin: 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid rgba(214, 180, 74, 0.4);
  background: rgba(214, 180, 74, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ═══════════ ROADMAP ═══════════ */
.roadmap {
  display: grid;
  grid-template-columns: 5rem 1fr;
  row-gap: 2rem;
  position: relative;
}

/* Linha criada via JS — um único elemento por conexão */
.roadmap-line-connector {
  position: absolute;
  width: 2px;
  overflow: hidden;
  background: rgba(214, 180, 74, 0.12);
  pointer-events: none;
  z-index: 0;
}

.roadmap-line-connector::after {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: calc(100% + 28px);
  background: repeating-linear-gradient(
    to bottom,
    rgba(214, 180, 74, 0.75) 0px,
    rgba(214, 180, 74, 0.75) 5px,
    transparent 5px,
    transparent 14px
  );
  animation: road-flow 1.4s linear infinite;
}

.roadmap-result {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.roadmap-result .eyebrow {
  margin-bottom: 0.3rem;
}

.roadmap-result strong {
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.5;
}

.roadmap-item {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 2rem;
  align-items: center;
}

.roadmap-node-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.roadmap-node {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-deep) 100%);
  box-shadow:
    0 0 0 5px rgba(214, 180, 74, 0.1),
    0 0 0 10px rgba(214, 180, 74, 0.05),
    0 10px 30px rgba(214, 180, 74, 0.28);
}

.roadmap-node::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1.5px solid rgba(214, 180, 74, 0.38);
  animation: node-ring 3s ease-out infinite;
}

@keyframes node-ring {
  0%   { transform: scale(1);    opacity: 0.55; }
  65%  { transform: scale(1.22); opacity: 0; }
  100% { transform: scale(1);    opacity: 0; }
}

.roadmap-node-num {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #140f05;
}

.roadmap-connector {
  flex: 1;
  width: 2px;
  min-height: 2rem;
  position: relative;
  overflow: hidden;
  background: rgba(214, 180, 74, 0.1);
}

.roadmap-connector::after {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: calc(100% + 28px);
  background: repeating-linear-gradient(
    to bottom,
    rgba(214, 180, 74, 0.72) 0px,
    rgba(214, 180, 74, 0.72) 5px,
    transparent 5px,
    transparent 14px
  );
  animation: road-flow 1.4s linear infinite;
}

@keyframes road-flow {
  from { transform: translateY(0); }
  to   { transform: translateY(14px); }
}

.roadmap-card {
  margin-bottom: 0;
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius);
  background: linear-gradient(160deg, rgba(22, 18, 13, 0.97), rgba(10, 13, 10, 0.94));
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition);
}

.roadmap-card:hover {
  border-color: var(--line-strong);
}

.roadmap-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), transparent);
  border-top-right-radius: inherit;
}

.roadmap-card::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 14rem;
  height: 14rem;
  border: 1px solid rgba(214, 180, 74, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.roadmap-card h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.roadmap-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.roadmap-destination {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 2rem;
  align-items: center;
}

.roadmap-destination-node {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  border: 2px solid rgba(214, 180, 74, 0.45);
  background: rgba(214, 180, 74, 0.07);
  color: var(--gold);
  flex-shrink: 0;
}

.roadmap-destination-text .eyebrow {
  margin-bottom: 0.3rem;
}

.roadmap-destination-text strong {
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .grid-3,
  .service-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font: inherit;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(214, 180, 74, 0.2);
    border-radius: 24px;
    background: rgba(10, 13, 10, 0.98);
    box-shadow: var(--shadow-strong);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav a {
    color: var(--text);
  }

  .site-nav ul a::after {
    bottom: -0.2rem;
  }

  .header-cta {
    width: 100%;
  }

  .footer-grid,
  .footer-base,
  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .svc-grid,
  .about-intro-grid,
  .pillars-grid {
    grid-template-columns: 1fr;
    flex-wrap: wrap;
  }

  .svc-grid > .svc-card,
  .about-intro-grid > .about-card,
  .pillars-grid > .pillar {
    flex: 1 1 calc(50% - 0.625rem);
  }

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

  .location-grid {
    flex-wrap: wrap;
  }

  .location-info,
  .location-map {
    flex: 1 1 100%;
  }

  .method-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .method-item-num {
    font-size: 2.5rem;
  }

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

  .roadmap-item,
  .roadmap-destination {
    grid-template-columns: 4rem 1fr;
    gap: 1.5rem;
  }

  .roadmap-node,
  .roadmap-destination-node {
    width: 4rem;
    height: 4rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 2rem;
  }

  .hero-panel,
  .hero-photo-copy,
  .cta-band-inner {
    padding: 1.5rem;
  }

  .hero-facts,
  .grid-4,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .button,
  .button-secondary,
  .button-primary {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
  }

  .brand-logo {
    width: 172px;
  }

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

  .roadmap-item,
  .roadmap-destination {
    grid-template-columns: 3.5rem 1fr;
    gap: 1.25rem;
  }

  .roadmap-node,
  .roadmap-destination-node {
    width: 3.5rem;
    height: 3.5rem;
  }

  .roadmap-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
