:root {
  --bg: #031224;
  --bg-deep: #020b17;
  --panel: rgba(3, 21, 39, 0.72);
  --panel-strong: rgba(2, 16, 32, 0.86);
  --line: rgba(232, 169, 88, 0.72);
  --line-soft: rgba(232, 169, 88, 0.3);
  --gold: #e8aa5a;
  --gold-2: #f4c783;
  --gold-dark: #a86f2d;
  --white: #fff7ef;
  --text: #f3efe9;
  --muted: rgba(246, 240, 232, 0.78);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --max: 1640px;
  --pad: clamp(22px, 5vw, 88px);
  --header: 98px;
}

body {
  color: var(--text);
  background: var(--bg-deep);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: #081425;
  background: var(--gold-2);
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  position: relative;
  z-index: 4;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding-inline: var(--pad);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header);
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

body.menu-open .site-header {
  background: rgba(1, 10, 22, 0.72);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.nav-shell {
  height: 100%;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding-inline: clamp(10px, 5vw, 88px);
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.5vw, 70px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: clamp(4px, 1.2vw, 16px);
  flex: 0 0 auto;
  min-width: 0;
}

.brand-mark {
  width: clamp(26px, 6vw, 72px);
  height: clamp(26px, 6vw, 72px);
  display: grid;
  place-items: center;
  flex: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.brand-mark svg {
  width: 66%;
  height: 66%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: grid;
  line-height: 1;
  min-width: 0;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: clamp(11px, 2.3vw, 43px);
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-copy em {
  margin-top: 9px;
  color: var(--gold-2);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(4px, 1vw, 60px);
  flex: 1;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2px, 1vw, 44px);
  flex: 1;
  min-width: 0;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: clamp(28px, 6vw, 44px);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(9px, 1.35vw, 16px);
  font-weight: 500;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(3px, 1vw, 10px);
  flex: none;
  min-height: clamp(26px, 7vw, 52px);
  padding: 0 clamp(6px, 2.2vw, 27px);
  border: 1px solid var(--gold-2);
  border-radius: 999px;
  color: var(--white);
  font-size: clamp(9px, 1.35vw, 16px);
  font-weight: 700;
  white-space: nowrap;
  background: rgba(2, 15, 30, 0.28);
}

.header-cta svg {
  width: clamp(12px, 2vw, 20px);
  height: clamp(12px, 2vw, 20px);
  flex: none;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  flex: none;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .menu-toggle {
    display: block;
  }

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

  .brand-copy strong {
    font-size: 24px;
  }

  .nav-panel {
    position: fixed;
    inset: var(--header) 16px auto;
    display: grid;
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--line-soft);
    border-radius: 18px;
    background: rgba(1, 10, 22, 0.95);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(18px);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.menu-open .nav-panel {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    display: grid;
    justify-content: stretch;
    gap: 4px;
  }

  .nav-links a {
    min-height: 44px;
    font-size: 16px;
    justify-content: center;
  }

  .header-cta {
    width: 100%;
    font-size: 16px;
    min-height: 48px;
  }
}

.visual-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-deep);
}

@media (min-width: 1041px) {
  .visual-section {
    min-height: 100dvh;
  }
}

.section-bg,
.section-overlay,
.layer {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.section-bg {
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-overlay {
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at 70% 45%, rgba(14, 120, 174, 0.2), transparent 32%),
    linear-gradient(90deg, rgba(1, 9, 20, 0.72) 0%, rgba(1, 13, 28, 0.38) 48%, rgba(1, 9, 20, 0.32) 100%),
    linear-gradient(180deg, rgba(1, 8, 18, 0.22), rgba(1, 8, 18, 0.62));
}

.section-overlay.center-heavy {
  background:
    radial-gradient(circle at 50% 35%, rgba(9, 47, 80, 0.34), transparent 42%),
    linear-gradient(90deg, rgba(1, 8, 18, 0.64), rgba(1, 13, 28, 0.28), rgba(1, 8, 18, 0.54)),
    linear-gradient(180deg, rgba(1, 8, 18, 0.18), rgba(1, 8, 18, 0.55));
}

.section-overlay.left-readable {
  background:
    linear-gradient(90deg, rgba(1, 9, 20, 0.82) 0%, rgba(1, 13, 28, 0.76) 38%, rgba(1, 13, 28, 0.18) 67%, rgba(1, 9, 20, 0.26) 100%),
    linear-gradient(180deg, rgba(1, 8, 18, 0.18), rgba(1, 8, 18, 0.64));
}

.layer {
  z-index: 2;
  height: auto;
  max-width: none;
  filter: drop-shadow(0 36px 42px rgba(0, 0, 0, 0.46));
}

.layer-woman {
  z-index: 3;
  transform-origin: bottom center;
}

.hero-woman {
  right: clamp(-420px, -22vw, -300px);
  bottom: -38px;
  width: min(92vw, 1540px);
}

.hero-iemanja {
  right: clamp(18px, 3vw, 56px);
  top: 50%;
  transform: translateY(-50%);
  width: min(22vw, 380px);
  opacity: 0.88;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.48)) drop-shadow(0 0 24px rgba(78, 167, 230, 0.25));
}

.section-iemanja {
  right: clamp(26px, 6vw, 125px);
  top: 50%;
  transform: translateY(-50%);
  width: min(31vw, 560px);
  opacity: 0.92;
}

.testimonials-iemanja,
.help-iemanja {
  right: clamp(34px, 6vw, 120px);
  top: 50%;
  transform: translateY(-50%);
  width: min(24vw, 420px);
  opacity: 0.92;
}

.about-woman {
  right: clamp(-420px, -22vw, -300px);
  bottom: -38px;
  width: min(92vw, 1540px);
}

.about-iemanja {
  right: clamp(22px, 4vw, 86px);
  top: 50%;
  transform: translateY(-50%);
  width: min(19vw, 340px);
  opacity: 0.82;
}

@media (max-width: 767px) {
  .hero-iemanja,
  .section-iemanja,
  .testimonials-iemanja,
  .help-iemanja,
  .about-iemanja,
  .hero-woman,
  .about-woman {
    display: none;
  }
}

.statue-inline {
  display: block;
  width: clamp(120px, 42vw, 190px);
  margin: 4px auto 22px;
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.4));
}

.astro-inline {
  display: block;
  width: min(90%, 340px);
  aspect-ratio: 2 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  margin: 4px auto 22px;
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.4));
}

@media (min-width: 768px) {
  .statue-inline,
  .astro-inline {
    display: none;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-2);
  font-size: clamp(12px, 0.9vw, 16px);
  font-weight: 800;
  letter-spacing: 4px;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow.centered {
  justify-content: center;
}

h1,
h2 {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.34);
}

h1 {
  max-width: 780px;
  margin-top: clamp(6px, 2vh, 24px);
  font-size: clamp(32px, 4.4vw, 84px);
}

h1 span,
h2 span {
  color: var(--gold-2);
}

h2 {
  font-size: clamp(30px, 5vw, 94px);
  text-transform: uppercase;
}

.lead,
.section-lead,
.about-copy p,
.testimonial-card blockquote {
  color: var(--text);
  font-size: clamp(13px, 1.35vw, 25px);
  line-height: 1.4;
}

.lead {
  max-width: 690px;
}

.section-lead {
  width: min(780px, 100%);
  margin: clamp(6px, 1.4vh, 18px) auto 0;
  text-align: center;
}

.section-lead.narrow {
  width: min(690px, 100%);
  margin-top: clamp(8px, 2vh, 28px);
}

.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: min(660px, 100%);
  margin: clamp(8px, 2.5vh, 28px) auto clamp(6px, 2vh, 20px);
  color: var(--gold-2);
}

.title-divider.align-left {
  justify-content: flex-start;
  margin-inline: 0;
}

.title-divider span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.title-divider i {
  font-style: normal;
  font-size: 24px;
  line-height: 1;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: clamp(38px, 8vh, 68px);
  min-width: min(100%, 310px);
  padding: 0 34px;
  border: 1px solid var(--gold-2);
  border-radius: 14px;
  font-size: clamp(15px, 1.2vw, 22px);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.btn-primary {
  color: #130c06;
  background: linear-gradient(180deg, #f4ca86 0%, #dda052 100%);
  box-shadow: 0 18px 34px rgba(216, 150, 68, 0.22);
}

.btn-primary svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

#necessidade .solo-cta svg {
  fill: currentColor;
  stroke: none;
}

.btn-outline {
  color: var(--white);
  background: rgba(3, 18, 35, 0.54);
}

.btn-outline svg {
  fill: currentColor;
}

.solo-cta,
.about-cta {
  min-height: clamp(36px, 7vh, 60px);
  margin-top: clamp(6px, 2vh, 16px);
}

.hero-section {
  padding-top: var(--header);
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: start;
  min-height: calc(100svh - var(--header));
  padding-top: clamp(8px, 4vh, 78px);
  padding-bottom: clamp(84px, 17vh, 176px);
}

.hero-copy {
  max-width: 820px;
}

.hero-copy .button-row {
  margin-top: clamp(10px, 3vh, 36px);
}

.mini-trust,
.bottom-trust {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  color: rgba(255, 247, 239, 0.88);
  font-size: clamp(14px, 1vw, 17px);
}

.mini-trust {
  margin-top: clamp(8px, 3vh, 34px);
  margin-bottom: clamp(60px, 9vh, 70px);
}

.mini-trust li,
.bottom-trust li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.mini-trust svg,
.bottom-trust svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
}

.hero-bottom {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: clamp(10px, 2.5vh, 34px);
  z-index: 5;
  transform: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(8px, 1.5vh, 18px);
  width: auto;
  max-width: none;
  padding-inline: 0;
}

.hero-bottom article,
.feature-cards article,
.service-card,
.testimonial-card,
.authority-bar,
.stat-grid article,
.help-cards article {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(5, 27, 50, 0.82), rgba(2, 16, 32, 0.72));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-bottom article {
  min-height: clamp(56px, 11vh, 118px);
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vh, 18px);
  padding: clamp(8px, 2vh, 20px) clamp(10px, 1.6vw, 22px);
  border-radius: 20px;
}

.hero-bottom svg,
.feature-cards svg,
.service-card svg,
.help-cards svg,
.stat-grid svg,
.authority-bar > svg,
.testimonial-icon svg {
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-bottom svg {
  width: clamp(30px, 6vh, 58px);
  height: clamp(30px, 6vh, 58px);
}

.card-icon {
  width: 66px;
  height: 66px;
  object-fit: contain;
  flex: 0 0 auto;
}

.shell-gpt-icon {
  display: block;
  object-fit: contain;
}

.hero-bottom .card-icon {
  width: clamp(30px, 6vh, 58px);
  height: clamp(30px, 6vh, 58px);
}

.hero-bottom h3,
.feature-cards h3,
.service-card h3,
.help-cards h3 {
  color: var(--gold-2);
  font-size: clamp(13px, 1.2vw, 22px);
  font-weight: 600;
}

.hero-bottom p,
.feature-cards p,
.service-card p,
.help-cards p {
  margin-top: clamp(3px, 0.6vh, 7px);
  color: var(--muted);
  font-size: clamp(11px, 1vw, 17px);
  line-height: 1.4;
}

.center-layout {
  min-height: 100svh;
  padding-top: clamp(56px, 9vh, 150px);
  padding-bottom: clamp(16px, 3vh, 100px);
  text-align: center;
}

.specialists-section .center-layout {
  padding-top: clamp(48px, 8vh, 72px);
  padding-bottom: clamp(16px, 3vh, 38px);
  padding-right: max(var(--pad), 24vw);
}

.feature-cards {
  display: grid;
  gap: clamp(8px, 1.6vh, 20px);
  width: min(760px, 100%);
  margin: clamp(10px, 2.4vh, 28px) auto 0;
}

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

.feature-cards article {
  min-height: clamp(84px, 15vh, 166px);
  padding: clamp(8px, 1.6vh, 18px) 20px;
  border-radius: 18px;
}

.feature-cards svg,
.feature-cards .card-icon {
  width: clamp(30px, 5vh, 54px);
  height: clamp(30px, 5vh, 54px);
  margin: 0 auto clamp(6px, 1.2vh, 14px);
}

.bottom-trust {
  justify-content: center;
  margin-top: clamp(6px, 1.2vh, 12px);
  padding-top: clamp(6px, 1.2vh, 12px);
  border-top: 1px solid var(--line-soft);
}

.needs-section .center-layout {
  padding-top: clamp(52px, 8vh, 78px);
  padding-bottom: clamp(16px, 3vh, 34px);
}

.service-grid {
  width: min(980px, 100%);
  margin: clamp(10px, 2.4vh, 24px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(6px, 1.4vh, 10px) 16px;
}

.service-card {
  display: block;
  min-height: clamp(78px, 14vh, 150px);
  padding: clamp(8px, 1.6vh, 15px) 18px;
  border-radius: 18px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--gold-2);
  background: linear-gradient(180deg, rgba(232, 169, 88, 0.16), rgba(2, 16, 32, 0.72));
}

.service-card svg,
.service-card .card-icon {
  width: clamp(28px, 5vh, 54px);
  height: clamp(28px, 5vh, 54px);
  margin: 0 auto clamp(4px, 1vh, 12px);
}

.service-card h3 {
  text-transform: uppercase;
}

.testimonials-layout {
  min-height: 100svh;
  padding-top: clamp(48px, 6vh, 86px);
  padding-bottom: clamp(12px, 2vh, 34px);
  text-align: center;
}

.testimonial-list {
  width: min(1280px, 100%);
  margin: clamp(10px, 2vh, 18px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.6vh, 16px);
}

.testimonial-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  gap: clamp(8px, 1.5vh, 14px);
  align-items: start;
  min-height: clamp(210px, 32vh, 280px);
  padding: clamp(12px, 2vh, 22px);
  border-radius: 18px;
  text-align: center;
}

.testimonial-icon {
  display: grid;
  justify-items: center;
  gap: clamp(5px, 1vh, 10px);
  color: var(--gold-2);
}

.testimonial-icon svg,
.testimonial-icon .card-icon {
  width: clamp(36px, 6vh, 62px);
  height: clamp(36px, 6vh, 62px);
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.testimonial-icon .card-icon {
  padding: 9px;
  object-fit: contain;
}

.testimonial-avatar {
  width: clamp(58px, 7vh, 84px);
  height: clamp(58px, 7vh, 84px);
  border: 2px solid var(--line);
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.34);
}

.testimonial-icon span {
  color: var(--gold);
  font-size: clamp(14px, 1.1vw, 18px);
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  position: relative;
  max-width: none;
  grid-column: auto;
  font-size: clamp(12px, 0.95vw, 16px);
  line-height: 1.38;
}

.testimonial-card blockquote::before {
  content: "“";
  position: static;
  display: block;
  margin-bottom: -10px;
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: clamp(38px, 3.4vw, 54px);
  line-height: 1;
}

.testimonial-card cite {
  grid-column: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 0;
  color: var(--gold-2);
  font-size: clamp(13px, 0.95vw, 16px);
  font-style: normal;
}

.testimonial-card cite svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.authority-bar {
  width: min(1360px, 100%);
  min-height: clamp(60px, 10vh, 104px);
  margin: clamp(8px, 1.6vh, 14px) auto 0;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 120px minmax(220px, 0.65fr);
  align-items: center;
  gap: 28px;
  padding: clamp(8px, 1.6vh, 18px) 30px;
  border-radius: 18px;
  text-align: left;
}

.authority-bar > svg {
  width: clamp(44px, 7vh, 82px);
  height: clamp(44px, 7vh, 82px);
  justify-self: center;
}

.authority-bar > .shell-gpt-icon {
  width: clamp(52px, 8vh, 92px);
  height: clamp(52px, 8vh, 92px);
  justify-self: center;
}

.authority-bar div {
  border-left: 1px solid var(--line);
  padding-left: 30px;
}

.authority-bar strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(13px, 1.15vw, 22px);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.authority-bar span {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(13px, 1vw, 18px);
  line-height: 1.3;
  text-transform: uppercase;
}

.authority-bar p {
  border-left: 1px solid var(--line);
  padding-left: 28px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(13px, 1.4vw, 25px);
  line-height: 1.45;
  text-transform: uppercase;
}

.about-layout {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 740px) minmax(320px, 1fr);
  align-items: center;
  padding-top: clamp(56px, 8vh, 90px);
  padding-bottom: clamp(16px, 3vh, 38px);
}

.about-copy {
  max-width: 760px;
}

.about-copy h2 {
  margin-top: clamp(6px, 1.6vh, 16px);
  font-size: clamp(40px, 6vw, 106px);
}

.about-copy p {
  font-size: clamp(13px, 1.1vw, 18px);
  line-height: 1.4;
}

.about-copy p + p {
  margin-top: clamp(6px, 1.4vh, 18px);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(6px, 1.4vh, 18px);
}

.stat-grid article {
  min-height: clamp(72px, 12vh, 132px);
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(8px, 1.6vh, 18px);
  border-radius: 16px;
  text-align: center;
}

.stat-grid svg {
  width: clamp(22px, 4vh, 38px);
  height: clamp(22px, 4vh, 38px);
  margin-bottom: clamp(4px, 0.8vh, 8px);
}

.stat-grid .shell-gpt-icon {
  width: clamp(26px, 4.8vh, 46px);
  height: clamp(26px, 4.8vh, 46px);
  margin-bottom: clamp(4px, 0.8vh, 8px);
}

.stat-grid strong {
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: clamp(34px, 2.8vw, 50px);
  font-weight: 600;
  line-height: 1;
}

.stat-grid span {
  margin-top: 6px;
  color: var(--white);
  font-size: clamp(16px, 1.15vw, 21px);
  line-height: 1.18;
}

.help-section .center-layout {
  padding-top: clamp(56px, 8vh, 92px);
  padding-bottom: clamp(16px, 3vh, 34px);
  padding-right: max(var(--pad), 24vw);
}

.help-cards {
  width: min(850px, 100%);
  margin: clamp(10px, 2.4vh, 30px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(3, 21, 39, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.help-cards article {
  min-height: clamp(96px, 17vh, 188px);
  padding: clamp(10px, 2vh, 22px) 20px;
  border: 0;
  border-right: 1px solid var(--line-soft);
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  backdrop-filter: none;
}

.help-cards article:last-child {
  border-right: 0;
}

.help-cards svg {
  width: clamp(30px, 5vh, 56px);
  height: clamp(30px, 5vh, 56px);
  margin: 0 auto clamp(4px, 1vh, 12px);
}

.help-cards .card-icon {
  width: clamp(30px, 5vh, 56px);
  height: clamp(30px, 5vh, 56px);
  margin: 0 auto clamp(4px, 1vh, 12px);
}

.centered-actions {
  justify-content: center;
  margin-top: clamp(8px, 2vh, 28px);
}

.final-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(8px, 2vh, 26px);
  padding-top: clamp(6px, 1.6vh, 22px);
  border-top: 1px solid var(--line-soft);
  color: var(--white);
  font-size: clamp(13px, 1.25vw, 21px);
}

.final-note svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 1.6;
}

.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #20c463;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.floating-wa svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1320px) {
  :root {
    --pad: clamp(20px, 4vw, 56px);
  }

  .brand-copy em {
    display: none;
  }

  .specialists-section .center-layout,
  .help-section .center-layout {
    padding-right: var(--pad);
  }

  .about-woman {
    right: -360px;
    opacity: 0.78;
  }
}

@media (max-width: 1040px) {
  :root {
    --header: 82px;
  }

  .hero-grid,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 68px;
    padding-bottom: 520px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-woman {
    width: min(920px, 105vw);
    right: -230px;
    opacity: 0.82;
  }

  .center-layout,
  .testimonials-layout,
  .about-layout {
    padding-top: 110px;
  }

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

  .testimonial-list {
    width: min(820px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-card {
    min-height: clamp(190px, 26vh, 250px);
  }

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

  .help-cards article:nth-child(2) {
    border-right: 0;
  }

  .help-cards article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-soft);
  }

  .authority-bar {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .authority-bar p {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid var(--line-soft);
    padding: 18px 0 0;
  }

  .about-layout {
    padding-bottom: 520px;
  }

  .about-woman {
    width: min(930px, 115vw);
    right: -270px;
    opacity: 0.86;
  }
}

@media (max-width: 720px) {
  :root {
    --pad: 18px;
    --header: 76px;
  }

  .visual-section {
    min-height: auto;
  }

  .section-bg {
    object-position: 62% center;
  }

  .section-overlay,
  .section-overlay.center-heavy,
  .section-overlay.left-readable {
    background:
      linear-gradient(180deg, rgba(1, 8, 18, 0.42), rgba(1, 8, 18, 0.88)),
      linear-gradient(90deg, rgba(1, 8, 18, 0.78), rgba(1, 8, 18, 0.38));
  }

  .hero-copy,
  .about-copy {
    text-align: center;
  }

  .eyebrow {
    gap: 8px;
    font-size: 11px;
    letter-spacing: 2.6px;
  }

  h1 {
    margin-top: 18px;
    font-size: clamp(30px, 10vw, 46px);
  }

  h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .needs-section h2 {
    font-size: clamp(30px, 8.5vw, 38px);
  }

  .lead,
  .section-lead,
  .about-copy p,
  .testimonial-card blockquote {
    font-size: 17px;
  }

  .title-divider {
    margin-block: 18px;
  }

  .title-divider.align-left {
    justify-content: center;
    margin-inline: auto;
  }

  .button-row {
    gap: 12px;
    justify-content: center;
  }

  .btn {
    width: 100%;
    min-width: 0;
    min-height: 60px;
    padding: 0 18px;
    border-radius: 13px;
    font-size: 17px;
  }

  .hero-grid {
    padding-top: 44px;
    padding-bottom: 40px;
  }

  .mini-trust,
  .bottom-trust {
    justify-content: center;
    gap: 12px;
    font-size: 13px;
  }

  .mini-trust {
    margin-bottom: 20px;
  }

  .hero-bottom {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    transform: none;
    grid-template-columns: 1fr;
    padding: 0 var(--pad) 34px;
  }

  .hero-bottom article {
    min-height: 0;
    flex-direction: column;
    text-align: center;
    padding: 18px;
  }

  .hero-bottom svg {
    width: 42px;
    height: 42px;
  }

  .center-layout,
  .testimonials-layout,
  .about-layout {
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 58px;
  }

  .about-layout {
    padding-top: 42px;
    padding-bottom: 34px;
  }

  .astro-inline {
    width: min(84vw, 320px);
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    margin: 0 auto 18px;
  }

  .specialists-section .statue-inline {
    width: min(94vw, 370px);
    margin: 0 auto 18px;
  }

  .feature-cards.three,
  .service-grid,
  .testimonial-list,
  .help-cards,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .feature-cards article,
  .service-card,
  .help-cards article,
  .stat-grid article {
    min-height: 0;
    padding: 22px;
  }

  .feature-cards svg,
  .service-card svg,
  .help-cards svg {
    width: 56px;
    height: 56px;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px;
    text-align: center;
  }

  .testimonial-card blockquote {
    max-width: none;
  }

  .testimonial-card blockquote::before {
    display: none;
  }

  .testimonial-card cite {
    justify-content: center;
  }

  .authority-bar {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 22px;
    text-align: center;
  }

  .authority-bar div {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
    padding: 18px 0 0;
  }

  .about-layout {
    padding-bottom: 34px;
  }

  .about-woman {
    width: 850px;
    right: -420px;
    bottom: -38px;
    opacity: 0.68;
  }

  .about-copy {
    max-width: none;
  }

  .help-cards article,
  .help-cards article:nth-child(-n + 2),
  .help-cards article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .help-cards article:last-child {
    border-bottom: 0;
  }

  .final-note {
    align-items: flex-start;
    text-align: left;
  }

  .floating-wa {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }
}
