:root {
  --navy-950: #0b1230;
  --navy-900: #101a3d;
  --navy-800: #172552;
  --blue-650: #28459a;
  --wine-700: #941c3a;
  --wine-600: #b62a4b;
  --green: #1fa855;
  --paper: #f7f6f2;
  --white: #ffffff;
  --ink: #14182a;
  --muted: #5f6578;
  --line: #dedfe6;
  --soft-blue: #edf1fb;
  --shadow-sm: 0 10px 30px rgba(12, 20, 49, .08);
  --shadow-lg: 0 28px 80px rgba(8, 15, 42, .18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(40, 69, 154, .42); outline-offset: 3px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-soft { background: var(--paper); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(222, 223, 230, .72);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: block; flex: 0 0 auto; }
.brand img { width: 220px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a:not(.nav-cta) { text-decoration: none; font-size: .94rem; font-weight: 700; color: #31374b; }
.main-nav > a:not(.nav-cta):hover { color: var(--wine-700); }
.nav-cta {
  text-decoration: none;
  color: var(--white);
  background: var(--navy-900);
  padding: 11px 18px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(16, 26, 61, .18);
}
.nav-cta:hover { background: var(--wine-700); }
.menu-button { display: none; width: 44px; height: 44px; border: 0; border-radius: 10px; background: transparent; }
.menu-button span { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--navy-900); transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 0%, rgba(59, 83, 164, .48), transparent 35%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800) 65%, #1b2858);
  padding: 92px 0 84px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(8px); pointer-events: none; }
.hero-glow-one { width: 340px; height: 340px; right: 12%; top: -170px; background: rgba(182, 42, 75, .24); }
.hero-glow-two { width: 260px; height: 260px; left: -130px; bottom: -130px; background: rgba(78, 108, 209, .28); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.kicker { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; text-transform: uppercase; letter-spacing: .12em; font-size: .73rem; font-weight: 900; color: #d6dcf4; }
.kicker span { width: 26px; height: 2px; background: var(--wine-600); }
.kicker.dark { color: var(--wine-700); }
.kicker.light { color: #e5e9f7; }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(2.7rem, 5.5vw, 5.3rem); line-height: .98; letter-spacing: -.055em; }
.hero h1 em { color: #ff7994; font-style: normal; }
.hero-lead { max-width: 650px; margin: 28px 0 0; color: #d5daeb; font-size: clamp(1.02rem, 1.8vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 24px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--wine-600); box-shadow: 0 14px 34px rgba(182, 42, 75, .28); }
.button-primary:hover { background: #c73559; box-shadow: 0 16px 38px rgba(182, 42, 75, .38); }
.button-secondary { color: var(--white); border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.06); }
.button-secondary:hover { background: rgba(255,255,255,.13); }
.button-dark { color: var(--white); background: var(--navy-900); }
.button-light { color: var(--navy-950); background: var(--white); }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,.48); background: transparent; }
.trust-list { display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 0; margin: 28px 0 0; list-style: none; color: #e1e5f2; font-size: .9rem; }
.trust-list li { display: flex; gap: 8px; align-items: center; }
.trust-list span { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; color: #bff4cf; background: rgba(31,168,85,.18); font-size: .72rem; }
.hero-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 38px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.15); }
.hero-proof div { display: flex; flex-direction: column; gap: 3px; }
.hero-proof strong { font-size: 1rem; }
.hero-proof span { color: #aeb7d3; font-size: .82rem; line-height: 1.45; }

.quote-card { color: var(--ink); background: rgba(255,255,255,.97); border: 1px solid rgba(255,255,255,.55); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-lg); }
.quote-card-head { margin-bottom: 24px; }
.quote-card h2 { margin: 5px 0 8px; color: var(--navy-950); font-size: 1.65rem; line-height: 1.15; letter-spacing: -.025em; }
.quote-card-head > p:last-child { margin: 0; color: var(--muted); font-size: .92rem; }
.mini-label { margin: 0; color: var(--wine-700); text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; font-weight: 900; }
.profile-switch { padding: 0; margin: 0 0 18px; border: 0; }
.profile-switch legend { margin-bottom: 8px; font-size: .82rem; font-weight: 800; color: #3c4255; }
.segmented-control { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; padding: 5px; border: 1px solid var(--line); border-radius: 12px; background: #f1f2f6; }
.profile-button { min-height: 40px; border: 0; border-radius: 9px; color: var(--muted); background: transparent; font-size: .84rem; font-weight: 800; }
.profile-button.is-active { color: var(--white); background: var(--navy-900); box-shadow: 0 5px 14px rgba(16,26,61,.17); }
.field { position: relative; margin-bottom: 14px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label { display: block; margin-bottom: 7px; color: #33394c; font-size: .8rem; font-weight: 800; }
.field label span { color: #888d9d; font-weight: 600; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #d8dbe3; border-radius: 11px; padding: 11px 12px; color: var(--ink); background: var(--white); transition: border-color .18s ease, box-shadow .18s ease; }
.field input, .field select { height: 46px; }
.field textarea { min-height: 84px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--blue-650); box-shadow: 0 0 0 4px rgba(40,69,154,.1); }
.field.has-error input, .field.has-error select { border-color: #c52745; box-shadow: 0 0 0 3px rgba(197,39,69,.08); }
.field-error { display: block; min-height: 0; margin-top: 4px; color: #b51e3b; font-size: .72rem; line-height: 1.3; }
.contact-hint { margin: -6px 0 4px; color: #7a8092; font-size: .73rem; }
.contact-group-error { min-height: 18px; margin: 0 0 8px; color: #b51e3b; font-size: .74rem; font-weight: 750; line-height: 1.35; }
.is-hidden { display: none !important; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.submit-button { width: 100%; border: 0; margin-top: 2px; }
.submit-button[disabled] { cursor: wait; opacity: .78; transform: none; }
.button-loader { display: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
.submit-button.is-loading .button-loader { display: block; }
.submit-button.is-loading .button-label { opacity: .78; }
@keyframes spin { to { transform: rotate(360deg); } }
.privacy-note { margin: 12px 4px 0; color: #777d8e; text-align: center; font-size: .7rem; line-height: 1.45; }
.privacy-note a { color: var(--navy-800); font-weight: 750; }
.form-status { display: none; margin-top: 14px; border-radius: 10px; padding: 11px 12px; font-size: .82rem; line-height: 1.45; }
.form-status.is-success { display: block; color: #145c32; background: #eaf8ef; border: 1px solid #c4eacf; }
.form-status.is-error { display: block; color: #8c1730; background: #fff0f3; border: 1px solid #f1c4cf; }

.operator-strip { padding: 34px 0; border-bottom: 1px solid var(--line); background: var(--white); }
.operator-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.operator-strip p { max-width: 250px; margin: 0; color: var(--muted); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; line-height: 1.4; }
.operator-list { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.operator-list span { padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; color: #454b5f; background: #fafafa; font-size: .8rem; font-weight: 800; }

.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading h2, .process-copy h2, .about-panel h2, .final-cta h2 { margin: 0; color: var(--navy-950); font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1.04; letter-spacing: -.045em; }
.section-heading > p:last-child { margin: 18px 0 0; color: var(--muted); font-size: 1.04rem; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: end; }
.split-heading > p { margin: 0 0 4px; color: var(--muted); font-size: 1.02rem; }
.services-grid { display: grid; grid-template-columns: 1.35fr .825fr .825fr; gap: 20px; align-items: stretch; }
.service-card { display: flex; flex-direction: column; min-height: 360px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(12,20,49,.12); }
.service-featured { color: var(--white); border-color: transparent; background: linear-gradient(145deg, var(--navy-900), #23366f); }
.service-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 28px; border-radius: 14px; color: var(--navy-900); background: var(--soft-blue); font-size: 1.55rem; font-weight: 800; }
.service-featured .service-icon { color: var(--white); background: rgba(255,255,255,.13); }
.card-label { margin: 0 0 8px; color: var(--wine-700); text-transform: uppercase; letter-spacing: .1em; font-size: .68rem; font-weight: 900; }
.service-featured .card-label { color: #ff91a8; }
.service-card h3 { margin: 0 0 12px; font-size: 1.55rem; color: var(--navy-950); letter-spacing: -.025em; }
.service-featured h3 { color: var(--white); }
.service-card > p:not(.card-label) { margin: 0; color: var(--muted); font-size: .95rem; }
.service-featured > p:not(.card-label) { color: #d3d9ed; }
.service-card ul { display: grid; gap: 8px; margin: 20px 0 0; padding: 0; list-style: none; color: #e2e6f4; font-size: .85rem; }
.service-card li { position: relative; padding-left: 18px; }
.service-card li::before { content: ""; position: absolute; left: 0; top: .65em; width: 6px; height: 6px; border-radius: 50%; background: #ff7894; }
.text-link { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 24px; color: var(--navy-800); text-decoration: none; font-size: .88rem; font-weight: 900; }
.service-featured .text-link { color: var(--white); }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.process-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.process-copy { position: sticky; top: 120px; }
.process-copy > p:not(.kicker) { margin: 22px 0 30px; color: var(--muted); font-size: 1.05rem; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 80px 1fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.process-list > li > span { color: var(--wine-700); font-size: .8rem; font-weight: 900; letter-spacing: .1em; }
.process-list h3 { margin: 0 0 7px; color: var(--navy-950); font-size: 1.18rem; }
.process-list p { margin: 0; color: var(--muted); }

.about-section { color: var(--white); background: var(--navy-950); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; }
.about-panel h2 { color: var(--white); }
.about-panel > p:not(.kicker) { margin: 24px 0 0; color: #c8cee2; font-size: 1.02rem; }
.principles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.principles-grid article { min-height: 210px; padding: 24px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.055); }
.principles-grid strong { color: #ff7994; font-size: .75rem; letter-spacing: .1em; }
.principles-grid h3 { margin: 38px 0 8px; color: var(--white); font-size: 1.03rem; }
.principles-grid p { margin: 0; color: #adb6d2; font-size: .86rem; }

.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.faq-heading { position: sticky; top: 120px; margin: 0; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 48px 24px 0; list-style: none; color: var(--navy-950); font-size: 1.02rem; font-weight: 850; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 19px; right: 3px; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; color: var(--wine-700); background: var(--white); font-size: 1.25rem; font-weight: 500; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -4px 48px 24px 0; color: var(--muted); font-size: .94rem; }

.final-cta { padding: 78px 0; color: var(--white); background: linear-gradient(120deg, var(--wine-700), #b4294b 60%, #7f1834); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-cta h2 { max-width: 780px; margin-top: 9px; color: var(--white); font-size: clamp(2rem, 4vw, 3.4rem); }
.final-cta .mini-label { color: #ffdbe3; }
.final-actions { display: flex; flex: 0 0 auto; flex-wrap: wrap; gap: 10px; }

.site-footer { color: #b7bfd8; background: #080e25; padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px; padding-bottom: 48px; }
.footer-brand img { width: 230px; padding: 7px 10px; border-radius: 9px; background: var(--white); }
.footer-brand p { max-width: 300px; margin: 20px 0 0; font-size: .88rem; }
.footer-column { display: flex; flex-direction: column; gap: 9px; }
.footer-column h2 { margin: 0 0 8px; color: var(--white); text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; }
.footer-column a, .footer-column span { color: #b7bfd8; text-decoration: none; font-size: .84rem; }
.footer-column a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .74rem; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 950; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: #25d366; box-shadow: 0 14px 32px rgba(0,0,0,.25); transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }
.mobile-action-bar { display: none; }

.privacy-page { min-height: 100vh; background: var(--paper); }
.privacy-main { padding: 90px 0; }
.privacy-card { max-width: 880px; margin: 0 auto; padding: 46px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.privacy-card h1 { margin: 0 0 18px; color: var(--navy-950); font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1; letter-spacing: -.05em; }
.privacy-card h2 { margin-top: 34px; color: var(--navy-900); font-size: 1.2rem; }
.privacy-card p, .privacy-card li { color: var(--muted); }
.privacy-card a { color: var(--wine-700); font-weight: 800; }

@media (max-width: 1040px) {
  .main-nav { gap: 18px; }
  .hero-grid { gap: 42px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-featured { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 2 / -1; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 78px; }
  .section { padding: 82px 0; }
  .menu-button { display: block; }
  .main-nav { position: fixed; inset: 78px 0 auto 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 16px 20px 24px; border-bottom: 1px solid var(--line); background: var(--white); box-shadow: 0 20px 45px rgba(10,18,48,.13); }
  .main-nav.is-open { display: flex; }
  .main-nav > a:not(.nav-cta) { padding: 14px 4px; border-bottom: 1px solid #ededf1; }
  .nav-cta { margin-top: 14px; text-align: center; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 70px; }
  .hero-grid, .about-grid, .faq-layout, .process-layout, .split-heading { grid-template-columns: 1fr; }
  .hero-grid { gap: 55px; }
  .hero-copy { text-align: center; }
  .hero-copy .kicker, .hero-actions, .trust-list { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-proof { max-width: 610px; margin-inline: auto; text-align: left; }
  .quote-card { max-width: 640px; margin-inline: auto; }
  .operator-strip .container { flex-direction: column; text-align: center; }
  .operator-list { justify-content: center; }
  .split-heading { gap: 16px; }
  .process-copy, .faq-heading { position: static; }
  .process-layout, .faq-layout { gap: 48px; }
  .about-grid { gap: 55px; }
  .final-cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-column:last-child { grid-column: auto; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand img { width: 190px; }
  .nav-wrap { min-height: 72px; }
  .main-nav { inset-block-start: 72px; }
  .hero { padding: 54px 0 68px; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .hero-actions .button { width: 100%; }
  .trust-list { align-items: flex-start; flex-direction: column; max-width: 300px; margin-inline: auto; }
  .hero-proof { grid-template-columns: 1fr; }
  .quote-card { padding: 25px 18px; border-radius: 22px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .services-grid, .principles-grid { grid-template-columns: 1fr; }
  .service-featured { grid-column: auto; }
  .service-card { min-height: 330px; padding: 25px; }
  .process-list li { grid-template-columns: 52px 1fr; gap: 12px; }
  .final-actions, .final-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { display: none; }
  .mobile-action-bar { position: fixed; inset: auto 0 0; z-index: 990; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(12px); }
  .mobile-action-bar a { display: flex; align-items: center; justify-content: center; min-height: 46px; border-radius: 999px; color: var(--white); background: var(--navy-900); text-decoration: none; font-size: .84rem; font-weight: 900; }
  .mobile-action-bar a:last-child { background: var(--green); }
  .site-footer { padding-bottom: 92px; }
  .privacy-card { padding: 30px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}


.operator-note {
  display: block;
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--text-muted, #667085);
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
}
