:root {
  --ink: #09131f;
  --ink-2: #102234;
  --ink-3: #183249;
  --paper: #f7f5ef;
  --white: #ffffff;
  --sand: #e8e0d2;
  --gold: #c69a53;
  --gold-bright: #ddb675;
  --blue: #2d6cdf;
  --text: #1a2633;
  --muted: #687482;
  --line: rgba(13, 30, 45, .12);
  --shadow: 0 28px 80px rgba(5, 18, 31, .15);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.announcement {
  min-height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  padding: 7px 20px;
  background: #050c14;
  color: rgba(255,255,255,.74);
  font-size: 13px;
  letter-spacing: .03em;
}
.announcement a { color: var(--gold-bright); font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 19, 31, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--white); }
.brand-mark { width: 38px; height: 38px; color: var(--gold-bright); }
.brand > span:last-child { display: flex; flex-direction: column; line-height: 1; }
.brand strong { font-family: Manrope, sans-serif; font-size: 15px; letter-spacing: .15em; }
.brand small { margin-top: 5px; font-size: 9px; letter-spacing: .38em; color: rgba(255,255,255,.65); }
.main-nav { display: flex; align-items: center; gap: 29px; color: rgba(255,255,255,.76); font-size: 14px; font-weight: 600; }
.main-nav > a:not(.button):hover { color: var(--white); }
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.nav-toggle span { display: block; width: 25px; height: 2px; margin: 5px 0; background: white; transition: .25s; }

.section { padding: 112px 0; }
.section-dark { position: relative; overflow: hidden; background: var(--ink); color: var(--white); }
.section-light { background: var(--paper); }
.section-soft { background: #eee9df; }
.section-ink { background: var(--ink-2); color: var(--white); }

.hero { padding: 98px 0 0; }
.hero-glow { position: absolute; border-radius: 999px; filter: blur(2px); pointer-events: none; }
.hero-glow-one { width: 560px; height: 560px; top: -280px; right: -80px; background: radial-gradient(circle, rgba(198,154,83,.25), transparent 68%); }
.hero-glow-two { width: 520px; height: 520px; bottom: -250px; left: -160px; background: radial-gradient(circle, rgba(45,108,223,.14), transparent 70%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.16fr) minmax(380px, .84fr); gap: 78px; align-items: center; padding-bottom: 88px; }
.hero-copy { padding: 20px 0; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 23px; color: var(--gold-bright); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 26px; height: 1px; background: currentColor; }
.eyebrow-dark { color: #9a6e2e; }
h1, h2, h3 { font-family: Manrope, sans-serif; margin-top: 0; line-height: 1.1; letter-spacing: -.035em; }
h1 { max-width: 780px; margin-bottom: 26px; font-size: clamp(48px, 6vw, 78px); font-weight: 700; }
h1 em { color: var(--gold-bright); font-style: normal; }
h2 { margin-bottom: 22px; font-size: clamp(35px, 4.2vw, 54px); }
h3 { margin-bottom: 13px; font-size: 23px; }
.hero-lead { max-width: 700px; margin: 0 0 34px; color: rgba(255,255,255,.7); font-size: 19px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 31px; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 19px; color: rgba(255,255,255,.6); font-size: 13px; }
.hero-notes i { color: var(--gold-bright); font-style: normal; }

.button { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 13px 23px; border: 1px solid transparent; border-radius: 999px; cursor: pointer; font-size: 14px; font-weight: 800; letter-spacing: .01em; transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease; }
.button:hover { transform: translateY(-2px); }
.button-sm { min-height: 42px; padding: 9px 18px; }
.button-primary { background: var(--gold); color: #111820; box-shadow: 0 12px 32px rgba(198,154,83,.22); }
.button-primary:hover { background: var(--gold-bright); }
.button-secondary { border-color: rgba(9,19,31,.16); background: transparent; color: var(--ink); }
.button-secondary:hover { border-color: var(--ink); }
.button-outline { border-color: rgba(255,255,255,.25); color: white; }
.button-ghost { border-color: rgba(255,255,255,.17); color: white; }
.button-full { width: 100%; }

.hero-panel { position: relative; padding: 32px; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; background: linear-gradient(160deg, rgba(255,255,255,.105), rgba(255,255,255,.045)); box-shadow: 0 40px 90px rgba(0,0,0,.3); backdrop-filter: blur(14px); }
.hero-panel::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(221,182,117,.6), transparent 38%, rgba(255,255,255,.08)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.panel-topline { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 20px; color: rgba(255,255,255,.57); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.status-dot { color: #bfe8cf; }
.status-dot::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: #6ed39c; box-shadow: 0 0 0 5px rgba(110,211,156,.12); }
.hero-panel h2 { margin-bottom: 8px; font-size: 30px; }
.hero-panel > p { margin: 0 0 21px; color: rgba(255,255,255,.62); }
.price-block { display: flex; align-items: flex-start; margin-bottom: 23px; }
.price-block .currency { padding-top: 10px; color: var(--gold-bright); font-size: 24px; }
.price-block strong { font-family: Manrope, sans-serif; font-size: 54px; line-height: 1; letter-spacing: -.05em; }
.price-block .tax { align-self: flex-end; margin: 0 0 5px 8px; color: rgba(255,255,255,.5); font-size: 12px; }
.check-list { padding: 0; margin: 0 0 27px; list-style: none; }
.check-list li { position: relative; padding: 9px 0 9px 27px; border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.76); font-size: 14px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-bright); font-weight: 800; }
.check-list.compact { margin-bottom: 18px; }
.included-choice { display: grid; grid-template-columns: 1fr auto 1fr; gap: 9px; align-items: center; padding: 17px; margin: 0 0 20px; border-radius: 16px; background: rgba(4,12,20,.38); text-align: center; }
.included-choice > span { grid-column: 1 / -1; color: rgba(255,255,255,.52); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.included-choice strong { color: var(--white); font-size: 13px; }
.included-choice div { color: var(--gold-bright); font-size: 11px; text-transform: uppercase; }
.hero-panel > small { display: block; margin-top: 13px; color: rgba(255,255,255,.42); font-size: 10px; line-height: 1.5; text-align: center; }

.trust-strip { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 0; border-top: 1px solid rgba(255,255,255,.09); }
.trust-strip > div { padding: 26px 28px 30px 0; }
.trust-strip > div + div { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.09); }
.trust-number { display: block; margin-bottom: 4px; color: var(--white); font-family: Manrope, sans-serif; font-size: 17px; font-weight: 800; }
.trust-strip > div span:last-child { color: rgba(255,255,255,.46); font-size: 12px; }
.trust-strip > a { align-self: center; color: var(--gold-bright); font-size: 12px; font-weight: 700; white-space: nowrap; }

.section-heading { max-width: 760px; margin-bottom: 55px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading p { margin: 0; color: var(--muted); font-size: 18px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { min-height: 390px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.42); transition: transform .25s, box-shadow .25s, background .25s; }
.service-card:hover { transform: translateY(-5px); background: white; box-shadow: var(--shadow); }
.icon-box { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 45px; border-radius: 12px; background: var(--ink); color: var(--gold-bright); font-family: Manrope, sans-serif; font-size: 12px; font-weight: 800; }
.service-card p { color: var(--muted); }
.service-card ul { padding-left: 18px; margin-top: 25px; color: #3d4b58; font-size: 14px; }
.service-card li { margin-bottom: 8px; }

.split-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.split-copy { position: sticky; top: 135px; }
.split-copy p { color: rgba(255,255,255,.66); font-size: 18px; }
.quote-box { padding: 25px; margin-top: 35px; border-left: 2px solid var(--gold); background: rgba(255,255,255,.045); }
.quote-box p { margin: 0; color: rgba(255,255,255,.78); font-size: 15px; font-style: italic; }
.timeline { position: relative; }
.timeline::before { content: ""; position: absolute; top: 18px; bottom: 18px; left: 79px; width: 1px; background: rgba(255,255,255,.14); }
.timeline-item { position: relative; display: grid; grid-template-columns: 135px 1fr; gap: 25px; padding: 0 0 50px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item > span { position: relative; z-index: 1; width: max-content; padding: 9px 13px; border: 1px solid rgba(221,182,117,.32); border-radius: 999px; background: var(--ink-2); color: var(--gold-bright); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.timeline-item h3 { font-size: 22px; }
.timeline-item p { margin: 0; color: rgba(255,255,255,.57); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.pricing-card { position: relative; display: flex; flex-direction: column; padding: 31px; border: 1px solid var(--line); border-radius: 26px; background: rgba(255,255,255,.52); }
.pricing-card.premium { background: var(--ink); color: white; box-shadow: var(--shadow); transform: translateY(-9px); }
.plan-badge { position: absolute; top: -14px; left: 28px; padding: 7px 13px; border-radius: 999px; background: var(--gold); color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.plan-head > span, .mini-label { display: block; margin-bottom: 13px; color: #9a6e2e; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.premium .plan-head > span { color: var(--gold-bright); }
.plan-head h3 { margin-bottom: 8px; font-size: 27px; }
.plan-head p { min-height: 48px; margin: 0; color: var(--muted); font-size: 14px; }
.premium .plan-head p { color: rgba(255,255,255,.55); }
.plan-price { display: flex; flex-wrap: wrap; align-items: flex-start; margin: 29px 0 22px; }
.plan-price > span { padding-top: 7px; color: #9a6e2e; font-size: 19px; }
.premium .plan-price > span { color: var(--gold-bright); }
.plan-price strong { font-family: Manrope, sans-serif; font-size: 42px; line-height: 1; letter-spacing: -.055em; }
.plan-price small { width: 100%; margin: 8px 0 0 20px; color: var(--muted); font-size: 11px; }
.premium .plan-price small { color: rgba(255,255,255,.45); }
.pricing-card .check-list { flex: 1; }
.pricing-card:not(.premium) .check-list li { border-color: rgba(9,19,31,.08); color: #40505e; }
.pricing-card:not(.premium) .check-list li::before { color: #9a6e2e; }
.bundle-card { display: grid; grid-template-columns: 1fr auto auto; gap: 32px; align-items: center; padding: 30px 34px; margin-top: 28px; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: 0 18px 50px rgba(9,19,31,.06); }
.bundle-card h3 { margin-bottom: 6px; }
.bundle-card p { margin: 0; color: var(--muted); }
.bundle-price { display: flex; flex-direction: column; align-items: flex-end; }
.bundle-price small, .bundle-price span { color: var(--muted); font-size: 11px; }
.bundle-price strong { font-family: Manrope, sans-serif; font-size: 32px; line-height: 1.1; }
.complex-box { display: grid; grid-template-columns: 1fr auto; gap: 45px; align-items: center; padding: 32px 35px; margin-top: 20px; border: 1px dashed rgba(9,19,31,.24); border-radius: 22px; }
.complex-box h3 { margin-bottom: 7px; }
.complex-box p { margin: 0; color: var(--muted); }
.complex-prices { display: flex; flex-direction: column; gap: 9px; min-width: 245px; }
.complex-prices span { display: flex; justify-content: space-between; gap: 15px; padding-bottom: 9px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.complex-prices b { color: var(--ink); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-step { position: relative; min-height: 245px; padding: 28px; border-radius: 20px; background: rgba(255,255,255,.6); }
.process-step::after { content: ""; position: absolute; top: 50px; left: calc(100% - 9px); width: 36px; height: 1px; background: rgba(9,19,31,.18); }
.process-step:last-child::after { display: none; }
.process-step > span { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 39px; border-radius: 50%; background: var(--ink); color: var(--gold-bright); font-weight: 800; }
.process-step h3 { font-size: 21px; }
.process-step p { margin: 0; color: var(--muted); font-size: 14px; }

.rules-section { padding: 105px 0; }
.rules-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 110px; align-items: start; }
.rules-grid > div:first-child { position: sticky; top: 135px; }
.rules-grid > div:first-child p { color: rgba(255,255,255,.6); font-size: 18px; }
.rules-list > div { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 23px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.rules-list span { color: var(--gold-bright); font-family: Manrope, sans-serif; font-size: 12px; font-weight: 800; }
.rules-list p { margin: 0; color: rgba(255,255,255,.67); }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; align-items: start; }
.faq-layout .section-heading { position: sticky; top: 135px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 22px 50px 22px 0; cursor: pointer; list-style: none; font-family: Manrope, sans-serif; font-size: 18px; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 8px; top: 19px; color: #9a6e2e; font-size: 25px; font-weight: 400; transition: transform .2s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { max-width: 750px; padding: 0 45px 23px 0; margin: 0; color: var(--muted); }

.contact-section { position: relative; overflow: hidden; background: linear-gradient(135deg, #0b1826 0%, #122b40 100%); color: white; }
.contact-section::before { content: ""; position: absolute; width: 650px; height: 650px; right: -240px; bottom: -350px; border-radius: 50%; background: radial-gradient(circle, rgba(198,154,83,.21), transparent 68%); }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: start; }
.contact-copy { position: sticky; top: 135px; padding-top: 22px; }
.contact-copy p { color: rgba(255,255,255,.64); font-size: 18px; }
.contact-detail { display: flex; flex-direction: column; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-detail span { color: rgba(255,255,255,.44); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.contact-detail strong { margin-top: 5px; font-size: 14px; }
.lead-form { padding: 34px; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: rgba(255,255,255,.07); backdrop-filter: blur(12px); }
.lead-form label { display: flex; flex-direction: column; gap: 8px; margin-bottom: 17px; color: rgba(255,255,255,.74); font-size: 12px; font-weight: 700; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; outline: none; background: rgba(5,12,20,.38); color: white; padding: 14px 15px; transition: border-color .2s, box-shadow .2s; }
.lead-form input::placeholder, .lead-form textarea::placeholder { color: rgba(255,255,255,.28); }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198,154,83,.1); }
.lead-form select option { color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.checkbox-label { flex-direction: row !important; align-items: flex-start; gap: 10px !important; font-weight: 400 !important; }
.checkbox-label input { flex: 0 0 auto; width: 16px; margin-top: 3px; accent-color: var(--gold); }
.lead-form > small { display: block; margin-top: 13px; color: rgba(255,255,255,.35); font-size: 10px; text-align: center; }

.site-footer { padding: 55px 0 22px; background: #050c14; color: rgba(255,255,255,.58); }
.footer-grid { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 50px; align-items: start; }
.footer-brand { width: max-content; }
.footer-grid p { margin: 0; max-width: 500px; font-size: 13px; }
.footer-links { display: grid; grid-template-columns: repeat(2, auto); justify-content: end; gap: 8px 25px; font-size: 13px; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 30px; margin-top: 35px; border-top: 1px solid rgba(255,255,255,.08); font-size: 10px; }

.floating-whatsapp { position: fixed; z-index: 40; right: 22px; bottom: 22px; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: white; box-shadow: 0 16px 35px rgba(0,0,0,.23); transition: transform .2s; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.03); }
.floating-whatsapp svg { width: 29px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 980px) {
  .main-nav { position: fixed; inset: 78px 0 auto 0; display: none; flex-direction: column; align-items: stretch; padding: 28px 20px 35px; background: rgba(9,19,31,.99); border-top: 1px solid rgba(255,255,255,.08); }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid { grid-template-columns: 1fr; gap: 45px; }
  .hero-panel { max-width: 610px; }
  .trust-strip { grid-template-columns: repeat(3, 1fr); }
  .trust-strip > a { grid-column: 1 / -1; padding: 0 0 26px; }
  .service-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.premium { transform: none; }
  .pricing-card:last-child { grid-column: 1 / -1; }
  .split-layout, .rules-grid, .faq-layout, .contact-grid { grid-template-columns: 1fr; gap: 55px; }
  .split-copy, .rules-grid > div:first-child, .faq-layout .section-heading, .contact-copy { position: static; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 700px) {
  .announcement { justify-content: space-between; font-size: 10px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .hero { padding-top: 62px; }
  h1 { font-size: 44px; }
  h2 { font-size: 36px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-panel { padding: 25px 20px; }
  .price-block strong { font-size: 43px; }
  .included-choice { grid-template-columns: 1fr; }
  .included-choice > span { grid-column: auto; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip > div { padding: 20px 0; }
  .trust-strip > div + div { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.09); }
  .service-grid, .pricing-grid, .process-grid { grid-template-columns: 1fr; }
  .pricing-card:last-child { grid-column: auto; }
  .timeline::before { left: 18px; }
  .timeline-item { grid-template-columns: 1fr; padding-left: 48px; }
  .timeline-item > span { position: absolute; left: 0; top: 0; width: 37px; height: 37px; overflow: hidden; padding: 10px 0; border-radius: 50%; color: transparent; }
  .timeline-item > span::first-letter { color: var(--gold-bright); }
  .bundle-card, .complex-box { grid-template-columns: 1fr; align-items: stretch; }
  .bundle-price { align-items: flex-start; }
  .complex-prices { min-width: 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: start; }
  .footer-bottom { flex-direction: column; }
}
