@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@400;500;600&display=swap");

:root {
  --background: #0b0f12;
  --background-alt: #0d1418;
  --surface: #11171b;
  --surface-soft: #151b1f;
  --surface-blue: #10232b;
  --surface-blue-soft: #16343e;

  --gold: #d9ad5b;
  --gold-soft: #e1bd78;
  --gold-pale: #efd394;
  --gold-muted: rgba(217, 173, 91, 0.28);

  --text-primary: #f3f0e9;
  --text-secondary: #aeb5bb;
  --text-muted: #7f888f;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-soft: rgba(255, 255, 255, 0.055);
  --border-gold: rgba(217, 173, 91, 0.28);

  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;

  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;

  --container-max: 1200px;
  --container-pad: clamp(24px, 5vw, 72px);
  --section-space: clamp(86px, 9vw, 132px);
  --section-gap: clamp(34px, 4.3vw, 58px);
  --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.24);
  --shadow-gold: 0 18px 42px rgba(217, 173, 91, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: var(--weight-regular);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::selection {
  background: var(--gold);
  color: var(--background);
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
  background:
    radial-gradient(circle at 14% 2%, rgba(22, 52, 62, 0.28), transparent 34rem),
    radial-gradient(circle at 84% 36%, rgba(217, 173, 91, 0.045), transparent 30rem),
    linear-gradient(180deg, var(--background) 0%, #0a0e11 44%, var(--background-alt) 100%);
}

.container {
  width: min(var(--container-max), calc(100% - (var(--container-pad) * 2)));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 22px max(var(--container-pad), calc((100vw - var(--container-max)) / 2));
  color: var(--text-primary);
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(11, 15, 18, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(217, 173, 91, 0.12), rgba(255, 255, 255, 0.02));
  color: var(--gold-soft);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: var(--weight-semibold);
  line-height: 1;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  color: var(--gold-soft);
  font-size: 0.86rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.02em;
}

.brand-text span {
  color: rgba(243, 240, 233, 0.78);
  font-size: 0.76rem;
  font-weight: var(--weight-medium);
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  color: rgba(243, 240, 233, 0.72);
  font-size: 0.88rem;
  font-weight: var(--weight-medium);
}

.desktop-nav a,
.site-footer a {
  transition: color 180ms ease;
}

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

.header-cta,
.button,
.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: var(--weight-semibold);
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, translate 180ms ease;
}

.header-cta {
  color: var(--gold-soft);
}

.button:hover,
.header-cta:hover,
.mobile-cta:hover {
  translate: 0 -2px;
  border-color: rgba(225, 189, 120, 0.58);
  background: rgba(217, 173, 91, 0.07);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.button.primary {
  border-color: rgba(239, 211, 148, 0.72);
  background: linear-gradient(135deg, #f1d698 0%, var(--gold-soft) 42%, #c89441 100%);
  color: #111315;
  box-shadow: var(--shadow-gold);
}

.button.primary:hover {
  background: linear-gradient(135deg, #f4dda7 0%, #e8c780 48%, #d3a14b 100%);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
}

.menu-button {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background: rgba(11, 15, 18, 0.68);
  color: var(--text-primary);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-nav {
  display: none;
}

.section {
  position: relative;
  padding-block: var(--section-space);
  background:
    radial-gradient(circle at 82% 8%, rgba(22, 52, 62, 0.2), transparent 28rem),
    linear-gradient(180deg, var(--background) 0%, var(--background-alt) 100%);
}

.section-dark {
  background:
    radial-gradient(circle at 12% 10%, rgba(22, 52, 62, 0.34), transparent 30rem),
    linear-gradient(180deg, var(--background) 0%, #080c0f 100%);
}

.hero {
  min-height: 790px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-block: 144px 54px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: saturate(0.68) contrast(1.04);
  mix-blend-mode: luminosity;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 15, 18, 0.98) 0%, rgba(11, 15, 18, 0.91) 48%, rgba(11, 15, 18, 0.78) 100%),
    linear-gradient(180deg, rgba(11, 15, 18, 0.08) 0%, rgba(11, 15, 18, 0.88) 100%),
    radial-gradient(circle at 84% 10%, rgba(217, 173, 91, 0.11), transparent 28rem);
}

.ambient {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(64px);
}

.ambient-one {
  top: -160px;
  right: 7%;
  width: 380px;
  height: 380px;
  background: rgba(217, 173, 91, 0.08);
}

.ambient-two {
  right: 0;
  bottom: 0;
  width: 380px;
  height: 380px;
  background: rgba(22, 52, 62, 0.42);
}

.ambient-three {
  top: 18%;
  right: 0;
  width: 360px;
  height: 360px;
  background: rgba(217, 173, 91, 0.065);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-left: max(var(--container-pad), calc((100vw - var(--container-max)) / 2));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--gold-soft);
  font-size: 0.75rem;
  font-weight: var(--weight-medium);
  letter-spacing: 0.34em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before,
.contact-panel .eyebrow::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 1px;
  background: rgba(217, 173, 91, 0.66);
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  color: var(--text-primary);
  font-weight: var(--weight-semibold);
  letter-spacing: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 32px;
  font-size: clamp(4.2rem, 7.1vw, 7rem);
  line-height: 0.82;
}

.hero-line {
  display: block;
}

.hero-accent,
h2 span {
  color: var(--gold-soft);
  font-style: italic;
  font-weight: var(--weight-regular);
}

.hero-accent {
  margin-block: 0.02em;
  font-size: 0.72em;
  line-height: 0.86;
}

h1 .hero-line:last-child {
  max-width: 700px;
  font-size: 0.62em;
  line-height: 0.94;
}

.hero-copy {
  position: relative;
  max-width: 700px;
  padding-top: 30px;
  color: rgba(243, 240, 233, 0.78);
  font-size: clamp(1.05rem, 1.4vw, 1.26rem);
  line-height: 1.58;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 94px;
  height: 1px;
  background: linear-gradient(90deg, rgba(217, 173, 91, 0.62), transparent);
}

.hero-subcopy {
  max-width: 680px;
  margin-top: 18px;
  color: rgba(174, 181, 187, 0.88);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: clamp(26px, 4.8vw, 72px);
  margin-top: 58px;
  color: rgba(243, 240, 233, 0.78);
}

.proof-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  font-size: 0.94rem;
  font-weight: var(--weight-medium);
}

.proof-item > span:last-child {
  overflow-wrap: anywhere;
}

.icon-box {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(22, 52, 62, 0.92), rgba(17, 23, 27, 0.72));
  color: var(--gold-soft);
}

.icon-box svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-heading {
  max-width: 790px;
  margin-bottom: var(--section-gap);
  text-align: left;
}

.section-heading h2,
.contact-panel h2 {
  font-size: clamp(3.6rem, 5.4vw, 5.25rem);
  line-height: 0.9;
}

.section-heading p:not(.eyebrow),
.contact-panel > p:not(.eyebrow):not(.contact-line) {
  max-width: 820px;
  margin-top: 24px;
  color: var(--text-secondary);
  font-size: clamp(1.04rem, 1.4vw, 1.28rem);
  line-height: 1.48;
}

.services-section {
  background:
    radial-gradient(circle at 22% 18%, rgba(22, 52, 62, 0.2), transparent 30rem),
    linear-gradient(180deg, #0a0e11 0%, var(--background) 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    var(--surface);
  box-shadow: none;
  transition: border-color 180ms ease, background 180ms ease, translate 180ms ease;
}

.service-card:first-child {
  border-color: rgba(217, 173, 91, 0.34);
  background:
    linear-gradient(145deg, rgba(217, 173, 91, 0.09), rgba(255, 255, 255, 0.014)),
    var(--surface-soft);
}

.service-card:hover {
  translate: 0 -3px;
  border-color: rgba(217, 173, 91, 0.42);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 42px;
}

.service-number {
  color: rgba(243, 240, 233, 0.24);
  font-size: 0.82rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.16em;
}

.service-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 2.2vw, 1.82rem);
  line-height: 1.02;
}

.service-card p {
  margin-bottom: 24px;
  color: rgba(174, 181, 187, 0.9);
  font-size: 0.98rem;
  line-height: 1.7;
}

.service-card a {
  margin-top: auto;
  color: var(--gold-soft);
  font-size: 0.92rem;
  font-weight: var(--weight-semibold);
}

.about {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 28%, rgba(217, 173, 91, 0.07), transparent 25rem),
    linear-gradient(180deg, var(--background) 0%, #0a0d10 100%);
}

.two-columns {
  display: grid;
  grid-template-columns: minmax(280px, 0.32fr) minmax(0, 0.68fr);
  align-items: center;
  gap: clamp(44px, 5.2vw, 70px);
}

.about-copy {
  order: 2;
  max-width: 790px;
  margin-bottom: 0;
}

.about-copy h2 {
  font-size: clamp(3.9rem, 5.8vw, 5.6rem);
}

.about-copy p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--text-secondary);
  font-size: clamp(1.02rem, 1.22vw, 1.14rem);
  line-height: 1.72;
}

.about-copy p.about-closing {
  max-width: 760px;
  margin-top: 32px;
  color: var(--text-primary);
  font-weight: var(--weight-semibold);
  line-height: 1.62;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.about-highlights article {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)), var(--surface);
}

.about-highlights .icon-box {
  width: 38px;
  height: 38px;
  border-color: rgba(217, 173, 91, 0.24);
  background: rgba(16, 35, 43, 0.72);
}

.about-highlights .icon-box svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.5;
}

.about-highlights strong {
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: var(--weight-semibold);
  line-height: 1.28;
}

.strategy-visual {
  position: relative;
  order: 1;
  align-self: center;
  width: 100%;
  height: clamp(330px, 31vw, 390px);
  min-height: 0;
  aspect-ratio: 1.02;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 28% 18%, rgba(22, 52, 62, 0.36), transparent 14rem),
    linear-gradient(150deg, rgba(22, 52, 62, 0.28), rgba(11, 15, 18, 0.1) 58%),
    #0a1115;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.18);
}

.strategy-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(225, 189, 120, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 189, 120, 0.018) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 48% 52%, black 0 38%, transparent 78%);
}

.strategy-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, transparent 0 44%, rgba(255, 255, 255, 0.022) 51%, transparent 62%),
    radial-gradient(circle at 50% 48%, transparent 0 54%, rgba(10, 17, 21, 0.58) 100%);
  pointer-events: none;
}

.strategy-grid {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 58%, rgba(217, 173, 91, 0.035) 59%, transparent 61%),
    radial-gradient(circle at 58% 44%, rgba(22, 52, 62, 0.12), transparent 62%);
  opacity: 0.82;
}

.strategy-plane {
  position: absolute;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.004));
  clip-path: polygon(0 14%, 86% 0, 100% 78%, 12% 100%);
}

.strategy-plane-one {
  left: 15%;
  top: 22%;
  width: 54%;
  height: 34%;
}

.strategy-plane-two {
  right: 13%;
  bottom: 18%;
  width: 48%;
  height: 32%;
  background: rgba(16, 35, 43, 0.16);
  clip-path: polygon(12% 0, 100% 18%, 82% 100%, 0 74%);
}

.strategy-abstract {
  position: absolute;
  inset: 8% 6%;
  z-index: 2;
  width: 88%;
  height: 84%;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.abstract-arc {
  stroke: rgba(225, 189, 120, 0.28);
  stroke-width: 1;
}

.abstract-arc-two {
  stroke: rgba(243, 240, 233, 0.12);
}

.abstract-line {
  stroke: rgba(225, 189, 120, 0.18);
  stroke-width: 1;
}

.abstract-line-short {
  stroke: rgba(243, 240, 233, 0.1);
}

.abstract-point {
  fill: rgba(225, 189, 120, 0.42);
  stroke: none;
}

.abstract-point-muted {
  fill: rgba(243, 240, 233, 0.22);
}

.strategy-node {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(225, 189, 120, 0.35);
  box-shadow: 0 0 16px rgba(225, 189, 120, 0.12);
}

.strategy-node-one {
  left: 24%;
  bottom: 24%;
}

.strategy-node-two {
  right: 22%;
  top: 25%;
  background: rgba(243, 240, 233, 0.2);
}

#diferenciais {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(16, 35, 43, 0.2), transparent 30rem),
    linear-gradient(180deg, #080c0f 0%, #090d10 100%);
}

#diferenciais .section-heading {
  max-width: 980px;
  margin-bottom: clamp(62px, 7vw, 92px);
}

#diferenciais .section-heading h2 {
  max-width: 980px;
}

#diferenciais .section-heading p:not(.eyebrow) {
  max-width: 840px;
  line-height: 1.6;
}

.feature-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.006)),
    rgba(10, 16, 20, 0.78);
}

.feature-panel article {
  min-height: 240px;
  padding: 40px 40px 42px;
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.feature-panel article:nth-child(3n) {
  border-right: 0;
}

.feature-panel article:nth-child(n + 4) {
  border-bottom: 0;
}

.differential-item {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
}

.differential-item .icon-box {
  grid-row: 1 / span 2;
}

.differential-item h3,
.differential-item p {
  grid-column: 2;
  min-width: 0;
}

.feature-panel .icon-box {
  width: 60px;
  height: 60px;
  margin: 0;
  border-color: rgba(217, 173, 91, 0.22);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(22, 52, 62, 0.9), rgba(16, 35, 43, 0.92));
}

.feature-panel .icon-box svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.55;
}

.feature-panel h3 {
  max-width: none;
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 1.85vw, 1.78rem);
  font-weight: var(--weight-semibold);
  line-height: 1.05;
}

.feature-panel p {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: var(--weight-regular);
  line-height: 1.62;
}

.process {
  background:
    radial-gradient(circle at 18% 10%, rgba(217, 173, 91, 0.065), transparent 24rem),
    linear-gradient(180deg, var(--background) 0%, #090d10 100%);
}

.process-heading {
  max-width: 760px;
  margin-bottom: clamp(56px, 6vw, 86px);
}

.process-heading h2 span {
  display: block;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 56px);
}

.process-track::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 173, 91, 0.34), transparent);
}

.process-grid article {
  position: relative;
  z-index: 1;
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin-bottom: 34px;
  border: 1px solid rgba(217, 173, 91, 0.24);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, rgba(217, 173, 91, 0.055), transparent 62%), var(--surface);
  color: var(--gold-soft);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: italic;
  font-weight: var(--weight-semibold);
  line-height: 1;
}

.process-grid h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.1vw, 1.95rem);
  line-height: 1;
}

.process-grid p {
  max-width: 260px;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.66;
}

.testimonials {
  background:
    radial-gradient(circle at 82% 12%, rgba(22, 52, 62, 0.2), transparent 30rem),
    linear-gradient(180deg, #090d10 0%, var(--background) 100%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-grid article {
  position: relative;
  min-height: 246px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.01)), var(--surface);
}

.testimonial-grid article::before {
  content: "“";
  position: absolute;
  top: 14px;
  right: 24px;
  color: rgba(217, 173, 91, 0.34);
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 1;
}

.testimonial-grid article::after {
  content: "★★★★★";
  margin-bottom: 18px;
  color: rgba(217, 173, 91, 0.82);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  order: -1;
}

.testimonial-grid p {
  margin-bottom: 26px;
  color: var(--text-secondary);
  font-size: 0.98rem;
  font-weight: var(--weight-regular);
  line-height: 1.66;
}

.testimonial-grid strong {
  margin-top: auto;
  color: var(--text-primary);
  font-size: 0.96rem;
  font-weight: var(--weight-semibold);
}

.testimonial-grid span {
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.contact {
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 76% 0%, rgba(217, 173, 91, 0.12), transparent 28rem),
    radial-gradient(circle at 16% 22%, rgba(22, 52, 62, 0.72), transparent 32rem),
    linear-gradient(180deg, var(--surface-blue) 0%, #0d1f27 52%, #091014 100%);
}

.contact-panel {
  max-width: 980px;
}

.contact-panel .eyebrow {
  justify-content: center;
}

.contact-panel h2 {
  max-width: 930px;
  margin-inline: auto;
  font-size: clamp(3.4rem, 5.2vw, 5.1rem);
}

.contact-panel > p:not(.eyebrow):not(.contact-line) {
  max-width: 790px;
  margin-inline: auto;
  color: rgba(243, 240, 233, 0.76);
}

.contact-panel .hero-actions {
  justify-content: center;
}

.contact-line {
  margin-top: 30px;
  color: rgba(243, 240, 233, 0.7);
  font-weight: var(--weight-medium);
}

.contact-line a {
  color: var(--gold-soft);
  font-weight: var(--weight-semibold);
}

.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: #090d10;
  color: rgba(174, 181, 187, 0.9);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr 0.85fr;
  gap: clamp(34px, 5vw, 72px);
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid h3 {
  margin-bottom: 6px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid p,
.site-footer a {
  max-width: 430px;
  color: rgba(174, 181, 187, 0.82);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-brand {
  margin-bottom: 10px;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  color: rgba(174, 181, 187, 0.62);
  font-size: 0.8rem;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  overflow: hidden;
  border: 1px solid rgba(239, 211, 148, 0.52);
  border-radius: 50%;
  background: linear-gradient(135deg, #efd394, #d9ad5b);
  color: #111315;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
  transition: translate 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.floating-whatsapp:hover {
  translate: 0 -2px;
  background: linear-gradient(135deg, #f3dba2, #dfb86b);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.floating-whatsapp svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1040px) {
  :root {
    --container-pad: clamp(24px, 4.2vw, 44px);
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: var(--container-pad);
    left: var(--container-pad);
    display: none;
    padding: 18px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    background: rgba(11, 15, 18, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
  }

  .mobile-nav.is-open {
    display: grid;
    gap: 10px;
  }

  .mobile-nav a {
    padding: 9px 4px;
    color: rgba(243, 240, 233, 0.84);
  }

  .mobile-nav .mobile-cta {
    margin-top: 8px;
  }

  .hero {
    min-height: 730px;
  }

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

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

  .about-copy {
    display: contents;
  }

  .about-copy > .eyebrow {
    order: 1;
  }

  .about-copy > h2 {
    order: 2;
  }

  .about-copy > p:not(.eyebrow):not(.about-closing) {
    order: 3;
  }

  .about-copy > .about-closing {
    order: 4;
  }

  .strategy-visual {
    order: 5;
  }

  .about-highlights {
    order: 6;
  }

  .strategy-visual {
    width: min(500px, 100%);
    height: 360px;
  }

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

  .feature-panel article {
    min-height: auto;
    border-right: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
  }

  .feature-panel article:nth-child(3n) {
    border-right: 1px solid var(--border-subtle);
  }

  .feature-panel article:nth-child(2n) {
    border-right: 0;
  }

  .feature-panel article:nth-child(n + 4) {
    border-bottom: 1px solid var(--border-subtle);
  }

  .feature-panel article:nth-child(n + 5) {
    border-bottom: 0;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 42px;
  }

  .process-track::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (max-width: 720px) {
  :root {
    --container-pad: 16px;
    --section-space: 78px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-text span {
    font-size: 0.72rem;
  }

  .hero {
    min-height: 760px;
    padding-block: 126px 52px;
  }

  .hero-content {
    width: min(var(--container-max), calc(100% - (var(--container-pad) * 2)));
    margin-inline: auto;
  }

  h1 {
    font-size: clamp(3.45rem, 16vw, 4.95rem);
  }

  h1 .hero-line:last-child {
    font-size: 0.58em;
  }

  .hero-copy {
    padding-top: 24px;
  }

  .hero-actions {
    gap: 12px;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    gap: 16px;
    margin-top: 42px;
  }

  .section-heading h2,
  .contact-panel h2 {
    font-size: clamp(3.05rem, 13vw, 4.15rem);
  }

  .section-heading p:not(.eyebrow),
  .contact-panel > p:not(.eyebrow):not(.contact-line) {
    font-size: 1rem;
    line-height: 1.62;
  }

  .eyebrow {
    gap: 8px;
    margin-bottom: 22px;
    font-size: 0.68rem;
    letter-spacing: 0.26em;
  }

  .eyebrow::before,
  .contact-panel .eyebrow::after {
    width: 34px;
  }

  .service-grid,
  .feature-panel,
  .testimonial-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
    padding: 28px;
  }

  .service-top {
    margin-bottom: 34px;
  }

  .about-copy h2 {
    font-size: clamp(3.25rem, 14vw, 4.3rem);
  }

  .about-highlights {
    display: grid;
    grid-template-columns: 1fr;
  }

  .strategy-visual {
    height: 320px;
  }

  .feature-panel article {
    min-height: auto;
    padding: 30px 26px;
    border-right: 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  .feature-panel article:nth-child(2n),
  .feature-panel article:nth-child(3n) {
    border-right: 0;
  }

  .feature-panel article:nth-child(n + 5) {
    border-bottom: 1px solid var(--border-subtle);
  }

  .feature-panel article:last-child {
    border-bottom: 0;
  }

  .feature-panel .icon-box {
    width: 52px;
    height: 52px;
  }

  .differential-item {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
  }

  .process-grid {
    gap: 34px;
  }

  .process-grid article {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 20px;
    align-items: start;
  }

  .process-grid span {
    width: 76px;
    height: 76px;
    margin-bottom: 0;
    font-size: 1.65rem;
  }

  .process-grid p {
    max-width: none;
  }

  .testimonial-grid article {
    min-height: 0;
    padding: 26px;
  }

  .contact-panel h2 {
    font-size: clamp(3rem, 12.8vw, 4rem);
  }

  .copyright {
    display: grid;
    gap: 8px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }
}
