/* DivorcioRápido — Editorial Design System */

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

:root {
  --cream: #F5F2EB;
  --white: #FFFFFF;
  --dark: #0C1525;
  --dark-surface: #131D30;
  --text: #1A1A1F;
  --body: #4A4A4F;
  --muted: #8A8A90;
  --faint: #C0BFB8;
  --green: #2B6B4D;
  --green-h: #387D5E;
  --green-pale: #EAF2ED;
  --border: #DAD7CF;
  --border-lt: #ECEAE3;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --dur: .35s;
  --mx: 1120px;
}

/* ── Lenis Fixes ── */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none !important
}

input,
textarea,
select,
label {
  cursor: auto !important;
}

@media(pointer: coarse), (max-width:1024px) {

  *,
  *::before,
  *::after {
    cursor: auto !important
  }

  #cursor {
    display: none !important;
  }
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

/* animated grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: grain 8s steps(10) infinite;
}

@keyframes grain {

  0%,
  100% {
    transform: translate(0, 0)
  }

  10% {
    transform: translate(-5%, -5%)
  }

  30% {
    transform: translate(5%, 10%)
  }

  50% {
    transform: translate(-10%, 5%)
  }

  70% {
    transform: translate(10%, -10%)
  }
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none
}

input,
textarea {
  font-family: inherit
}

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

.container {
  max-width: var(--mx);
  margin: 0 auto;
  padding: 0 28px
}

/* ── CUSTOM CURSOR ── */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transition: transform 0.15s ease-out, opacity 0.3s ease, background 0.3s ease;
  mix-blend-mode: normal;
}

#cursor.hover {
  transform: scale(4);
  background: rgba(43, 107, 77, 0.2);
}

/* ── PRELOADER ── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
}

.loader-content {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.loader-brand {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  color: #fff;
  display: block;
  transform: translateY(100%);
}

.loader-brand em {
  font-style: normal;
  color: var(--green);
}

/* ── SCROLL PROGRESS ── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--green);
  z-index: 1001;
  transition: width 0.1s linear;
}

/* ── Typography ── */
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.15
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 48px;
  max-width: 640px
}

/* Line reveal targets */
.line-reveal {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
}

.line-reveal span {
  display: block;
  transform: translateY(100%);
}

.label {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--green);
  margin-bottom: 16px;
}

section .label+h2 {
  margin-top: 0
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease)
}

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

/* ═══════ HEADER ═══════ */
#hdr {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(245, 242, 235, .85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-lt);
  transition: background var(--dur);
}

#hdr nav {
  max-width: var(--mx);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
}

.brand {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--text)
}

.brand em {
  font-style: normal;
  color: var(--green)
}

.nav-link {
  font-size: .82rem;
  font-weight: 500;
  color: var(--body);
  transition: color var(--dur);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link:hover {
  color: var(--green)
}

.nav-link span {
  transition: transform var(--dur)
}

.nav-link:hover span {
  transform: translateX(3px)
}

/* ═══════ HERO ═══════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 140px 28px 80px;
  max-width: var(--mx);
  margin: 0 auto;
  overflow: visible;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 640px
}

.eyebrow {
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 28px;
  animation: fadeUp .8s var(--ease) both;
}

.hero h1 {
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  letter-spacing: -.03em;
  margin-bottom: 28px;
}

.hero h1 .line {
  display: block
}

.hero h1 .line:nth-child(1) {
  animation: fadeUp .8s .1s var(--ease) both
}

.hero h1 .line:nth-child(2) {
  animation: fadeUp .8s .2s var(--ease) both
}

.hero h1 .line.accent {
  color: var(--green);
  animation: fadeUp .8s .3s var(--ease) both
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--body);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeUp .8s .4s var(--ease) both;
}

.hero-foot {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeUp .8s .5s var(--ease) both;
}

.hero-price {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--text);
}

.hero-price small {
  font-family: var(--sans);
  font-size: .75rem;
  color: var(--muted);
  font-weight: 400;
  margin-left: 4px;
}

/* Giant 48 watermark */
.hero-bg {
  position: absolute;
  right: -8%;
  top: 48%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: clamp(14rem, 32vw, 30rem);
  font-weight: 400;
  line-height: .85;
  letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--border);
  user-select: none;
  pointer-events: none;
  opacity: .6;
  animation: fadeIn 1.2s .6s var(--ease) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: .6
  }
}

/* ── Button ── */
.btn-wrap {
  display: inline-block;
  position: relative;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  transition: background var(--dur), transform 0.1s ease-out;
  position: relative;
  z-index: 1;
}

.btn:hover {
  background: var(--green-h);
}

.btn.wide {
  width: 100%;
  justify-content: center
}

/* ═══════ MARQUEE ═══════ */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
  background: var(--cream);
}

.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.marquee-track span {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted);
}

.marquee-track .sep {
  color: var(--border);
  font-size: .5rem
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ═══════ TRIAGE (dark) ═══════ */
.triage-section {
  background: var(--dark);
  color: #fff;
  padding: 100px 0
}

.triage-section .label {
  color: rgba(255, 255, 255, .4)
}

.triage-section h2 {
  color: #fff
}

.triage-card {
  max-width: 580px;
  margin: 0 auto;
  background: var(--dark-surface);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 48px 40px;
}

.triage-meta {
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .35);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 32px;
}

.triage-meta span {
  color: var(--green)
}

.t-step {
  display: none;
  animation: stepIn .4s var(--ease)
}

.t-step.active {
  display: block
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateX(30px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.t-step h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: #fff;
}

.t-step p {
  color: rgba(255, 255, 255, .5);
  font-size: .92rem;
  margin-bottom: 28px;
  line-height: 1.7
}

.t-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.btn-opt {
  flex: 1;
  min-width: 180px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .6);
  border: 1px solid rgba(255, 255, 255, .12);
  background: transparent;
  transition: all var(--dur);
}

.btn-opt:hover {
  border-color: rgba(255, 255, 255, .25);
  color: #fff;
  background: rgba(255, 255, 255, .04)
}

.btn-opt.primary {
  border-color: var(--green);
  color: var(--green)
}

.btn-opt.primary:hover {
  background: var(--green);
  color: #fff
}

.t-back {
  display: block;
  margin: 20px auto 0;
  font-size: .8rem;
  color: rgba(255, 255, 255, .3);
  transition: color var(--dur);
}

.t-back:hover {
  color: rgba(255, 255, 255, .6)
}

/* Results */
.t-result {
  display: none;
  animation: stepIn .5s var(--ease)
}

.t-result.active {
  display: block
}

.r-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.r-badge.ok {
  background: rgba(43, 107, 77, .2);
  color: #5ec28b
}

.r-badge.alt {
  background: rgba(255, 180, 80, .15);
  color: #f0a040
}

.t-result h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #fff
}

.t-result>p {
  color: rgba(255, 255, 255, .5);
  font-size: .92rem;
  margin-bottom: 24px
}

/* Price card */
.price-card {
  background: rgba(43, 107, 77, .08);
  border: 1px solid rgba(43, 107, 77, .2);
  border-radius: 10px;
  padding: 28px;
  margin-bottom: 24px;
  text-align: left;
}

.price-label {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 12px;
  display: block;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px
}

.price-val {
  font-family: var(--serif);
  font-size: 3rem;
  color: #fff
}

.price-val small {
  font-size: 1.4rem
}

.price-alt {
  font-size: .82rem;
  color: rgba(255, 255, 255, .4)
}

.includes {
  list-style: none;
  display: grid;
  gap: 8px
}

.includes li {
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
  padding-left: 20px;
  position: relative;
}

.includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5ec28b;
  font-weight: 700
}

/* Notary widget */
.notary-widget {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.nw-head {
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .5);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5ec28b;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(94, 194, 139, .4)
  }

  50% {
    box-shadow: 0 0 0 5px transparent
  }
}

.nw-slots {
  display: grid;
  gap: 6px
}

.slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: 6px;
  font-size: .82rem;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .02);
  transition: all var(--dur);
}

.slot:hover,
.slot.sel {
  border-color: var(--green);
  background: rgba(43, 107, 77, .08)
}

.slot.sel {
  box-shadow: inset 0 0 0 1px var(--green)
}

.slot-d {
  color: rgba(255, 255, 255, .5);
  font-weight: 500
}

.slot-t {
  color: #5ec28b;
  font-weight: 600
}

.slot-tag {
  font-size: .62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #5ec28b
}

/* Lead forms (dark) */
.triage-section .lead-form {
  display: grid;
  gap: 12px;
  margin-top: 20px
}

.triage-section .lead-form input,
.triage-section .lead-form textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 6px;
  font-size: .9rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  outline: none;
  transition: border-color var(--dur);
}

.triage-section .lead-form input:focus,
.triage-section .lead-form textarea:focus {
  border-color: var(--green);
}

.triage-section .lead-form textarea {
  resize: vertical
}

/* ═══════ REQUISITOS ═══════ */
.requisitos {
  padding: 100px 0
}

.req-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  perspective: 1000px;
}

.req-item {
  display: flex;
  gap: 20px;
  padding: 28px 24px;
  border: 1px solid var(--border-lt);
  border-radius: 10px;
  background: var(--white);
  transition: border-color var(--dur), transform 0.1s ease-out;
  transform-style: preserve-3d;
}

.req-item:hover {
  border-color: var(--border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.req-n {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
  transition: color var(--dur);
}

.req-item:hover .req-n {
  color: var(--green)
}

.req-item h4 {
  font-size: 1rem;
  margin-bottom: 6px
}

.req-item p {
  font-size: .88rem;
  color: var(--body);
  line-height: 1.6
}

/* ═══════ DOCUMENTACIÓN ═══════ */
.docs {
  padding: 100px 0;
  background: var(--white)
}

.doc-list {
  max-width: 620px;
  display: grid;
  gap: 0
}

.doc-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-lt);
}

.doc-item:first-child {
  padding-top: 0
}

.doc-item:last-child {
  border-bottom: none
}

.doc-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1.5px solid var(--border);
  position: relative;
  transition: all var(--dur);
}

.doc-check.filled {
  background: var(--green);
  border-color: var(--green)
}

.doc-check.filled::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
}

.doc-item:hover .doc-check {
  border-color: var(--green)
}

.doc-item strong {
  display: block;
  font-size: .92rem;
  font-weight: 600;
  margin-bottom: 2px
}

.doc-item p {
  font-size: .82rem;
  color: var(--body);
  margin: 0
}

.doc-item.highlight strong {
  color: var(--green)
}

/* ═══════ FAQ ═══════ */
.faq {
  padding: 100px 0
}

.faq-list {
  max-width: 680px
}

.faq-item {
  border-bottom: 1px solid var(--border-lt)
}

.faq-item:first-child {
  border-top: 1px solid var(--border-lt)
}

.faq-item summary {
  padding: 20px 0;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--dur);
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--muted);
  transition: transform var(--dur);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  content: '−'
}

.faq-item[open] summary {
  color: var(--green)
}

.faq-body {
  padding-bottom: 20px
}

.faq-body p {
  font-size: .9rem;
  color: var(--body);
  line-height: 1.7
}

/* ═══════ FINAL CTA ═══════ */
.final-cta {
  background: var(--dark);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.final-cta h2 {
  color: #fff;
  margin: 0 auto 16px
}

.final-cta p {
  color: rgba(255, 255, 255, .5);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto
}

/* ═══════ FOOTER ═══════ */
footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border-lt)
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap
}

.footer-links a {
  font-size: .8rem;
  color: var(--muted);
  transition: color var(--dur)
}

.footer-links a:hover {
  color: var(--green)
}

.footer-legal {
  text-align: right
}

.footer-legal p {
  font-size: .72rem;
  color: var(--faint);
  line-height: 1.6
}

/* ═══════ WHATSAPP ═══════ */
.wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .3);
  transition: transform var(--dur), box-shadow var(--dur);
  animation: fadeUp .6s 1s var(--ease) both;
}

.wa svg {
  width: 28px;
  height: 28px
}

.wa:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45)
}

/* ═══════ DOMAIN BADGE ═══════ */
#domain-badge {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 85;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: 50px;
  border: 1px solid var(--border-lt);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--body);
}

#open-domain-form {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  margin-left: 4px;
  transition: color var(--dur);
}

#open-domain-form:hover {
  color: var(--green-h);
}

/* ═══════ MODAL ═══════ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur);
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 21, 37, 0.85);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  z-index: 2;
  background: var(--white);
  width: 90%;
  max-width: 480px;
  padding: 48px 40px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform var(--dur) var(--ease);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--muted);
  transition: color var(--dur);
}

.modal-close:hover {
  color: var(--text);
}

.modal h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.modal p {
  font-size: 0.92rem;
  color: var(--body);
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  background: var(--cream);
  outline: none;
  transition: border-color var(--dur);
}

.form-group input:focus {
  border-color: var(--green);
}

/* ═══════ RESPONSIVE ═══════ */
@media(max-width:1024px) {
  :root {
    --mx: 100%;
  }

  .container {
    padding: 0 24px;
  }

  .hero {
    padding-top: 120px;
  }
}

@media(max-width:768px) {
  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
    text-align: left;
  }

  .hero-inner {
    max-width: 100%;
  }

  .hero-bg {
    display: none
  }

  .req-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .t-actions {
    flex-direction: column
  }

  .btn-opt {
    min-width: 100%;
    width: 100%;
  }

  .triage-card {
    padding: 32px 24px;
    border-radius: 8px;
  }

  section {
    padding: 80px 0 !important
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px
  }

  .footer-legal {
    text-align: left
  }

  .hero-foot {
    flex-direction: column;
    align-items: stretch;
    gap: 16px
  }

  .btn-wrap,
  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-price {
    text-align: center;
  }

  .brand {
    font-size: 1.1rem;
  }

  .nav-link {
    font-size: 0.75rem;
  }
}

@media(max-width:480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .triage-card {
    padding: 24px 16px
  }

  .t-step h3 {
    font-size: 1.2rem;
  }

  .price-val {
    font-size: 2.4rem;
  }

  .price-card {
    padding: 20px 16px
  }

  .wa {
    width: 48px;
    height: 48px;
    bottom: 18px;
    right: 18px
  }

  .wa svg {
    width: 24px;
    height: 24px
  }

  .doc-item strong {
    font-size: 0.88rem;
  }

  #domain-badge {
    bottom: auto;
    top: 80px;
    left: 16px;
    right: 16px;
    text-align: center;
  }

  .modal-content {
    padding: 40px 24px;
  }
}