:root {
  --bg: #07101b;
  --bg-soft: #0d1726;
  --surface: rgba(13, 23, 38, 0.86);
  --surface-strong: rgba(8, 16, 29, 0.96);
  --surface-contrast: rgba(14, 28, 45, 0.96);
  --text: #f7fbff;
  --text-muted: #adc0d5;
  --line: rgba(255, 255, 255, 0.1);
  --blue: #2378ff;
  --blue-strong: #0d56db;
  --gold: #f6c14b;
  --gold-soft: #ffdd86;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(35, 120, 255, 0.2), transparent 30%),
    radial-gradient(circle at top right, rgba(246, 193, 75, 0.14), transparent 24%),
    linear-gradient(180deg, #03060d 0%, #07101b 36%, #081424 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 80%);
  opacity: 0.35;
}

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

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

section[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: #101010;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 108px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(246, 193, 75, 0.35);
  border-radius: 999px;
  background: rgba(246, 193, 75, 0.08);
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-heading h2,
.spotlight-copy h2,
.service-area-copy h2,
.final-cta-card h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.section-copy,
.hero-lead,
.final-cta-card p,
.spotlight-cta-copy {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.5vw, 1.08rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.98rem;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}

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

.btn-primary {
  color: #04101d;
  background: linear-gradient(135deg, var(--gold) 0%, #ffd25f 48%, #f8b91f 100%);
  box-shadow: 0 14px 34px rgba(246, 193, 75, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 40px rgba(246, 193, 75, 0.34);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(35, 120, 255, 0.55);
  background: rgba(35, 120, 255, 0.12);
}

.btn-large {
  min-height: 60px;
  padding-inline: 30px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid transparent;
  background: rgba(4, 8, 15, 0.62);
  backdrop-filter: blur(16px);
  transition:
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(4, 8, 15, 0.88);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

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

.brand-copy strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.brand-copy span {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  color: var(--text-muted);
  font-weight: 700;
  transition: color 0.2s ease;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav > a:not(.nav-cta):hover,
.site-nav > a:not(.nav-cta):focus-visible {
  color: var(--text);
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: clip;
  padding-top: 56px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(35, 120, 255, 0.28) 0%, rgba(35, 120, 255, 0.03) 62%, transparent 72%);
  filter: blur(12px);
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(246, 193, 75, 0.2) 0%, rgba(246, 193, 75, 0.02) 60%, transparent 70%);
  filter: blur(16px);
}

.hero-shell {
  position: relative;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(140deg, rgba(16, 27, 42, 0.92), rgba(7, 16, 27, 0.96)),
    rgba(7, 16, 27, 0.88);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(35, 120, 255, 0.1), transparent 28%),
    linear-gradient(250deg, rgba(246, 193, 75, 0.08), transparent 26%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 34px;
  align-items: center;
}

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

.hero-tag {
  margin-bottom: 20px;
}

.hero-copy h1 {
  font-family: "Sora", sans-serif;
  max-width: 12ch;
  font-size: clamp(2.2rem, 4.1vw, 3.55rem);
  line-height: 0.97;
  letter-spacing: -0.05em;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-actions .btn-primary {
  min-width: min(100%, 312px);
}

.hero-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(246, 193, 75, 0.12), rgba(35, 120, 255, 0.08)),
    rgba(255, 255, 255, 0.03);
}

.hero-cta-copy strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero-cta-copy p {
  margin-top: 8px;
  color: #d1dfef;
}

.hero-cta-inline {
  flex-shrink: 0;
  min-height: 50px;
  padding-inline: 22px;
  white-space: nowrap;
}

.hero-lead {
  max-width: 58ch;
}

.hero-proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.hero-proof-list li {
  position: relative;
  padding: 15px 16px 15px 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 700;
}

.hero-proof-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translateY(-50%);
  background:
    radial-gradient(circle at center, #06111d 28%, transparent 30%),
    linear-gradient(135deg, var(--gold) 0%, var(--blue) 100%);
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
}

.hero-photo-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background: #0b1420;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 9, 17, 0.04) 0%, rgba(4, 9, 17, 0.1) 46%, rgba(4, 9, 17, 0.18) 100%);
}

.hero-photo-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(7, 16, 27, 0.74);
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-photo-badge-top {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

.trust-bar {
  padding-top: 20px;
  padding-bottom: 28px;
}

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

.trust-item {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(8, 18, 31, 0.82);
}

.trust-item strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.06rem;
}

.trust-item span {
  color: var(--text-muted);
}

.service-grid,
.benefits-grid,
.problem-grid {
  display: grid;
  gap: 22px;
}

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

.info-card,
.mini-card,
.problem-card,
.spotlight-note,
.step-card,
.service-area-panel,
.final-cta-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(8, 18, 31, 0.84);
  box-shadow: var(--shadow);
}

.info-card,
.mini-card,
.problem-card {
  padding: 26px;
}

.icon-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(35, 120, 255, 0.18), rgba(246, 193, 75, 0.18));
  color: var(--gold);
}

.icon-shell svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.info-card h3,
.mini-card h3,
.problem-card h3,
.service-area-panel h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.16rem;
  line-height: 1.28;
}

.info-card p,
.mini-card p,
.problem-card p,
.step-card p,
.spotlight-note p,
.footer-brand p,
.footer-column ul,
.service-area-copy p {
  margin-top: 14px;
  color: var(--text-muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--gold-soft);
  font-weight: 800;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

.spotlight-section {
  position: relative;
}

.spotlight-grid,
.service-area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.check-list li {
  position: relative;
  padding: 14px 16px 14px 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 16px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #03101b 28%, transparent 30%),
    linear-gradient(135deg, var(--gold) 0%, var(--blue) 100%);
}

.spotlight-panel {
  display: grid;
  gap: 18px;
}

.spotlight-note {
  padding: 28px;
}

.pill-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(35, 120, 255, 0.16);
  color: #b7d3ff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spotlight-note strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.6rem;
  line-height: 1.22;
}

.spotlight-steps {
  display: grid;
  gap: 18px;
}

.step-card {
  padding: 24px;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(246, 193, 75, 0.12);
  color: var(--gold-soft);
  font-weight: 800;
}

.step-card strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

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

.mini-card::before,
.info-card::before,
.problem-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  opacity: 0.9;
}

.problem-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(246, 193, 75, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(3, 6, 13, 0.8), rgba(7, 16, 27, 0));
}

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

.problem-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.problem-cta p {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.service-area-copy {
  max-width: 560px;
}

.service-area-panel {
  padding: 28px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.area-list li {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
}

.final-cta-section {
  padding-top: 40px;
}

.final-cta-card {
  padding: 42px;
  background:
    radial-gradient(circle at top right, rgba(246, 193, 75, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(35, 120, 255, 0.18), rgba(7, 16, 27, 0.96));
  text-align: center;
}

.final-cta-card .section-tag {
  margin-inline: auto;
}

.final-cta-card p {
  max-width: 740px;
  margin-inline: auto;
}

.final-cta-card .btn {
  margin-top: 28px;
}

.site-footer {
  padding: 60px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 5, 10, 0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.7fr;
  gap: 28px;
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.footer-brand img {
  width: 72px;
  height: auto;
  flex: 0 0 auto;
  align-self: flex-start;
  object-fit: contain;
}

.footer-license {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  width: fit-content;
  padding: 10px 16px 10px 12px;
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(22, 163, 74, 0.22) 0%,
    rgba(34, 197, 94, 0.1) 100%
  );
  color: #effff4;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.18);
}

.footer-license-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #22c55e;
  color: #062710;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14);
}

.footer-brand strong,
.footer-column h3 {
  font-family: "Sora", sans-serif;
}

.footer-column ul {
  display: grid;
  gap: 12px;
}

.footer-column a {
  color: var(--text-muted);
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--gold-soft);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.footer-bottom a {
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 110;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1dc95b 0%, #14a74b 100%);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(29, 201, 91, 0.32);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(29, 201, 91, 0.38);
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .spotlight-grid,
  .service-area-grid,
  .footer-grid,
  .benefits-grid,
  .problem-grid,
  .trust-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 4.4vw, 3.2rem);
    max-width: 12ch;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(4, 8, 15, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease,
      transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav > a:not(.nav-cta) {
    padding: 10px 0;
  }

  .nav-cta {
    margin-top: 6px;
    width: 100%;
  }

  .hero-grid,
  .spotlight-grid,
  .service-area-grid,
  .benefits-grid,
  .problem-grid,
  .trust-grid,
  .service-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 88px 0;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-shell {
    padding: 24px 18px;
    border-radius: 28px;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(1.9rem, 7vw, 2.7rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .hero-cta-inline {
    width: 100%;
  }

  .hero-cta-box {
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
  }

  .hero-proof-list {
    grid-template-columns: 1fr;
  }

  .hero-photo-card {
    min-height: 380px;
  }

  .hero-photo-card img {
    min-height: 380px;
  }

  .problem-cta,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand-copy span {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(1.7rem, 9vw, 2.2rem);
  }

  .hero-proof-list li {
    padding: 14px 14px 14px 40px;
  }

  .hero-photo-card {
    min-height: 300px;
    border-radius: 24px;
  }

  .hero-photo-card img {
    min-height: 300px;
  }

  .hero-photo-badge-top {
    top: 14px;
    left: 14px;
  }

  .hero-panel,
  .final-cta-card,
  .info-card,
  .mini-card,
  .problem-card,
  .service-area-panel,
  .spotlight-note,
  .step-card,
  .problem-cta {
    padding: 22px;
  }

  .hero-logo-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    padding: 14px;
  }

  .floating-whatsapp span {
    display: none;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
