:root {
  --ink: #102a2c;
  --ink-2: #17383a;
  --ink-soft: #536767;
  --paper: #fbfaf6;
  --paper-deep: #f0ede4;
  --white: #fff;
  --green: #147866;
  --green-dark: #0d5c50;
  --mint: #9ee2d3;
  --gold: #d5a54c;
  --line: #dcded8;
  --shadow: 0 24px 70px rgba(16, 42, 44, .15);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a, select, summary { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: -60px; padding: 10px 14px; color: var(--ink); background: var(--white); border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(16,42,44,.1); background: rgba(251,250,246,.94); backdrop-filter: blur(14px); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; text-decoration: none; }
.brand-logo { display: block; width: 235px; height: auto; }
.desktop-nav { display: flex; gap: clamp(14px, 1.6vw, 24px); margin-left: auto; }
.desktop-nav a { position: relative; color: var(--ink-soft); text-decoration: none; font-size: 13px; font-weight: 680; white-space: nowrap; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--green); transition: right .2s ease; }
.desktop-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.language-select { min-height: 42px; max-width: 165px; padding: 0 34px 0 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: var(--white); font-size: 14px; cursor: pointer; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border: 0; border-radius: 999px; color: var(--white); background: var(--green); box-shadow: 0 10px 25px rgba(20,120,102,.18); text-decoration: none; text-align: center; font-weight: 760; cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--green-dark); box-shadow: 0 14px 28px rgba(20,120,102,.23); }
.button-small { min-height: 42px; padding-inline: 17px; font-size: 14px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 50%; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--ink); transition: transform .2s, opacity .2s; }
.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); }
.mobile-menu { position: fixed; inset: 78px 0 0; z-index: 49; background: var(--paper); }
.mobile-menu-inner { display: grid; gap: 0; padding-block: 30px; }
.mobile-menu a:not(.button) { padding: 17px 4px; border-bottom: 1px solid var(--line); text-decoration: none; font: 500 26px/1.2 Georgia, serif; }
.mobile-menu .button { margin-top: 28px; }

.hero { overflow: hidden; padding: 96px 0 80px; background: radial-gradient(circle at 83% 12%, rgba(213,165,76,.20), transparent 28%), linear-gradient(180deg, #fbfaf6, #f3f0e7); }
.hero-grid { display: grid; grid-template-columns: 1.08fr .82fr; gap: clamp(44px, 6vw, 78px); align-items: center; }
.hero-copy { position: relative; z-index: 1; }
.eyebrow { margin: 0 0 15px; color: var(--green); font-size: 13px; font-weight: 820; letter-spacing: .12em; text-transform: uppercase; }
.hero h1 { max-width: 760px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(48px, 6.1vw, 79px); line-height: 1.01; letter-spacing: -.045em; font-weight: 500; }
.hero h1 em { color: var(--green); font-weight: inherit; }
.hero-lead { max-width: 680px; margin: 27px 0 0; color: var(--ink-soft); font-size: clamp(18px, 2vw, 21px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; }
.text-link { font-weight: 760; text-decoration: none; }
.text-link span:last-child { display: inline-block; transition: transform .2s ease; }
.text-link:hover span:last-child { transform: translateX(4px); }
.trust-list { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 33px 0 0; padding: 0; list-style: none; color: var(--ink-soft); font-size: 14px; }
.trust-list li::before { content: "✓"; margin-right: 7px; color: var(--green); font-weight: 900; }
.hero-card { position: relative; padding: clamp(28px, 3.4vw, 40px); border-radius: var(--radius); color: var(--white); background: var(--ink); box-shadow: var(--shadow); }
.hero-card::before, .hero-card::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.20); border-radius: 50%; pointer-events: none; }
.hero-card::before { width: 82px; height: 82px; right: -15px; top: -18px; }
.hero-card::after { width: 36px; height: 36px; right: 56px; top: 40px; border-color: rgba(213,165,76,.45); }
.card-kicker { margin: 0 0 10px; color: var(--mint); font-size: 12px; font-weight: 820; letter-spacing: .09em; text-transform: uppercase; }
.hero-card h2 { max-width: 420px; margin: 0; font-family: Georgia, serif; font-size: clamp(28px, 3vw, 35px); line-height: 1.16; font-weight: 500; }
.hero-card ul { margin: 26px 0 30px; padding: 0; list-style: none; }
.hero-card li { position: relative; padding: 10px 0 10px 26px; border-bottom: 1px solid rgba(255,255,255,.12); }
.hero-card li::before { content: "•"; position: absolute; left: 5px; color: var(--gold); }
.button-light { width: 100%; color: var(--ink); background: var(--white); box-shadow: none; }
.button-light:hover { color: var(--white); }

.signal-bar { color: var(--white); background: var(--green-dark); }
.signal-grid { min-height: 122px; display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); align-items: stretch; }
.signal-intro { display: flex; flex-direction: column; justify-content: center; margin: 0; padding-right: 28px; }
.signal-intro span { color: var(--mint); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.signal-intro strong { font-family: Georgia, serif; font-size: 23px; line-height: 1.25; font-weight: 500; }
.signal-item { display: flex; align-items: center; gap: 14px; padding: 20px 24px; border-left: 1px solid rgba(255,255,255,.18); }
.signal-item span { color: var(--gold); font-family: Georgia, serif; font-size: 24px; }
.signal-item p { margin: 0; font-size: 14px; line-height: 1.45; }

.section { padding: 108px 0; }
.section-heading { display: grid; grid-template-columns: 1.1fr .7fr; gap: clamp(40px, 7vw, 100px); align-items: end; margin-bottom: 58px; }
.section-title { max-width: 760px; margin: 0; font-family: Georgia, serif; font-size: clamp(38px, 4.5vw, 58px); line-height: 1.08; font-weight: 500; letter-spacing: -.035em; }
.section-intro { max-width: 530px; margin: 0; color: var(--ink-soft); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { min-height: 270px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.56); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(20,120,102,.4); box-shadow: 0 18px 45px rgba(16,42,44,.08); }
.service-card.featured { color: var(--white); border-color: var(--green); background: var(--green); }
.service-number { margin-bottom: auto; color: var(--green); font: 500 17px Georgia, serif; }
.featured .service-number { color: var(--mint); }
.service-card h3 { margin: 32px 0 9px; font-family: Georgia, serif; font-size: 26px; line-height: 1.15; font-weight: 500; }
.service-card p { margin: 0; color: var(--ink-soft); font-size: 15px; }
.featured p { color: rgba(255,255,255,.82); }

.about-section { position: relative; overflow: hidden; background: var(--white); }
.about-section::after { content: ""; position: absolute; width: 420px; height: 420px; right: -210px; bottom: -250px; border: 1px solid rgba(20,120,102,.12); border-radius: 50%; pointer-events: none; }
.about-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(48px, 8vw, 120px); align-items: start; }
.about-heading { position: sticky; top: 122px; }
.about-copy > p { margin: 0 0 20px; color: var(--ink-soft); font-size: 16px; }
.about-copy .about-lead { color: var(--ink); font: 500 25px/1.45 Georgia, serif; }
.about-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 34px; }
.about-highlights div { min-height: 150px; display: flex; flex-direction: column; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); }
.about-highlights strong { margin-bottom: 10px; color: var(--green); font: 500 20px/1.2 Georgia, serif; }
.about-highlights span { margin-top: auto; color: var(--ink-soft); font-size: 13px; line-height: 1.5; }

.rights-section { background: var(--paper-deep); }
.rights-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 120px); align-items: start; }
.rights-copy { position: sticky; top: 122px; }
.rights-copy > p:not(.eyebrow) { max-width: 560px; margin: 28px 0 22px; color: var(--ink-soft); font-size: 17px; }
.rights-list { border-top: 1px solid rgba(16,42,44,.2); }
.rights-list article { display: grid; grid-template-columns: 64px 1fr; gap: 22px; padding: 32px 0; border-bottom: 1px solid rgba(16,42,44,.2); }
.rights-icon { width: 55px; height: 55px; display: grid; place-items: center; border-radius: 50%; color: var(--green); background: var(--white); font: 500 24px Georgia, serif; }
.rights-list h3 { margin: 0 0 7px; font-family: Georgia, serif; font-size: 27px; font-weight: 500; }
.rights-list p { margin: 0; color: var(--ink-soft); }

.section-dark { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.section-dark::after { content: ""; position: absolute; right: -220px; bottom: -250px; width: 540px; height: 540px; border: 1px solid rgba(158,226,211,.17); border-radius: 50%; }
.eyebrow-light { color: var(--mint); }
.section-intro-light { color: rgba(255,255,255,.66); }
.process-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.process-grid li { min-height: 270px; padding: 30px; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; background: rgba(255,255,255,.035); }
.process-grid li > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--mint); font-weight: 800; }
.process-grid h3 { margin: 46px 0 10px; font-family: Georgia, serif; font-size: 27px; font-weight: 500; }
.process-grid p { margin: 0; color: rgba(255,255,255,.66); }
.process-cta { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 20px; padding: 28px 32px; border-radius: 18px; color: var(--ink); background: var(--gold); }
.process-cta p { margin: 0; }
.process-cta .button { width: auto; min-width: 230px; }

.trust-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 120px); }
.trust-points { border-top: 1px solid var(--line); }
.trust-points article { display: grid; grid-template-columns: 38px 1fr; gap: 18px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.trust-points article > span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--green); font-weight: 900; }
.trust-points h3 { margin: 0 0 5px; font-size: 17px; }
.trust-points p { margin: 0; color: var(--ink-soft); }
.trust-points strong { color: var(--ink); }

.examples-section { padding-top: 44px; background: var(--paper-deep); }
.examples-heading { margin-bottom: 42px; }
.examples-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.example-card { min-height: 290px; padding: 30px; border: 1px solid rgba(16,42,44,.13); border-radius: 18px; background: var(--white); box-shadow: 0 14px 40px rgba(16,42,44,.06); }
.example-card > span { display: inline-grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: var(--white); background: var(--green); font: 600 15px Georgia, serif; }
.example-card .example-name { margin: 25px 0 5px; color: var(--green); font-size: 13px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.example-card h3 { margin: 0 0 12px; font: 500 27px/1.2 Georgia, serif; }
.example-card p { margin: 0; color: var(--ink-soft); font-size: 15px; }

.faq-section { padding-top: 32px; }
.faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 8vw, 120px); }
.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; font: 500 22px/1.35 Georgia, serif; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 21px; color: var(--green); font: 400 28px/1 sans-serif; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: -4px 42px 24px 0; color: var(--ink-soft); }

.contact-section { padding: 108px 0; color: var(--white); background: var(--green-dark); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.contact-copy > p:not(.eyebrow) { max-width: 540px; color: rgba(255,255,255,.76); font-size: 17px; }
.direct-contact { display: grid; gap: 12px; margin-top: 38px; }
.direct-contact a { display: flex; flex-direction: column; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.2); text-decoration: none; }
.direct-contact span { color: var(--mint); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.direct-contact strong { font-size: 17px; }
.contact-form { display: grid; gap: 18px; padding: clamp(25px, 4vw, 42px); border-radius: var(--radius); color: var(--ink); background: var(--white); box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 7px; font-size: 14px; font-weight: 720; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: #fdfdfa; }
.contact-form input, .contact-form select { min-height: 50px; padding: 0 13px; }
.contact-form textarea { min-height: 132px; padding: 12px 13px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--green); outline: 2px solid rgba(20,120,102,.14); }
.form-button { width: 100%; }
.form-note { margin: -5px 0 0; color: var(--ink-soft); font-size: 12px; text-align: center; }

.site-footer { padding: 68px 0 28px; color: rgba(255,255,255,.72); background: #091e20; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr .8fr .65fr; gap: 42px; }
.footer-grid > div:first-child p { max-width: 310px; }
.footer-brand { margin-bottom: 18px; color: var(--white); }
.footer-brand .brand-logo { width: 245px; }
.footer-grid h2 { margin: 0 0 15px; color: var(--mint); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid a, .footer-grid p { display: block; margin: 6px 0; overflow-wrap: anywhere; text-decoration: none; font-size: 14px; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 54px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; }
.footer-bottom p { margin: 0; }
.footer-bottom p:first-child { flex: 0 0 auto; }
.footer-bottom p:last-child { margin-left: auto; text-align: right; white-space: nowrap; }

.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 45; width: 54px; height: 54px; display: none; place-items: center; border: 3px solid var(--white); border-radius: 50%; color: var(--white); background: var(--green); box-shadow: 0 10px 30px rgba(0,0,0,.22); text-decoration: none; font-size: 12px; font-weight: 900; }
.noscript { position: fixed; inset: auto 0 0; z-index: 1000; padding: 12px; color: var(--white); background: #8c2b2b; text-align: center; }

.privacy-page { min-height: 100vh; }
.privacy-main { padding: 80px 0 110px; }
.privacy-card { max-width: 850px; padding: clamp(28px, 5vw, 62px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 14px 50px rgba(16,42,44,.08); }
.privacy-card h1 { margin: 0 0 22px; font: 500 clamp(42px, 6vw, 68px)/1 Georgia, serif; letter-spacing: -.04em; }
.privacy-card h2 { margin-top: 36px; font: 500 27px/1.2 Georgia, serif; }
.privacy-card p, .privacy-card li { color: var(--ink-soft); }
.back-link { display: inline-flex; margin-bottom: 28px; color: var(--green); font-weight: 750; text-decoration: none; }
.privacy-language-links { display: flex; flex-wrap: wrap; gap: 8px; margin: -10px 0 24px; }
.privacy-language-links a { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); font-size: 13px; font-weight: 750; text-decoration: none; }
.privacy-language-links a:hover, .privacy-language-links a[aria-current="page"] { border-color: var(--gold); background: rgba(196,143,32,.09); color: var(--green); }

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

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .signal-grid { grid-template-columns: 1.2fr repeat(3, 1fr); }
  .signal-item { padding-inline: 15px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 820px) {
  .hero { padding-top: 66px; }
  .hero-grid, .rights-grid, .trust-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-heading { position: static; }
  .about-highlights { grid-template-columns: 1fr; }
  .about-highlights div { min-height: 130px; }
  .examples-grid { grid-template-columns: 1fr; }
  .example-card { min-height: auto; }
  .hero-grid { gap: 46px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .rights-copy { position: static; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: auto; }
  .process-grid h3 { margin-top: 26px; }
  .process-cta { align-items: stretch; flex-direction: column; }
  .process-cta .button { width: 100%; }
  .signal-grid { grid-template-columns: 1fr 1fr; }
  .signal-intro { min-height: 110px; grid-column: 1 / -1; }
  .signal-item { min-height: 96px; border-top: 1px solid rgba(255,255,255,.18); }
  .signal-item:nth-child(2) { border-left: 0; }
  .signal-item:last-child { grid-column: 1 / -1; border-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
  .footer-bottom p:last-child { margin-left: 0; text-align: left; white-space: normal; }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 76px; }
  .container { width: min(100% - 28px, 1160px); }
  .header-inner { min-height: 68px; gap: 7px; }
  .header-whatsapp { display: none; }
  .brand-logo { width: 155px; }
  .language-select { max-width: min(44vw, 164px); }
  .mobile-menu { inset: 68px 0 0; }
  .hero { padding: 50px 0 54px; }
  .hero h1 { font-size: clamp(43px, 13vw, 60px); }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 17px; }
  .text-link { text-align: center; }
  .trust-list { flex-direction: column; }
  .hero-card { padding: 29px 22px; }
  .section, .contact-section { padding: 76px 0; }
  .section-title { font-size: clamp(36px, 11vw, 48px); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 235px; }
  .signal-grid { grid-template-columns: 1fr; }
  .signal-intro, .signal-item:last-child { grid-column: auto; }
  .signal-item { border-left: 0; }
  .rights-list article { grid-template-columns: 50px 1fr; gap: 14px; }
  .rights-icon { width: 46px; height: 46px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .floating-whatsapp { display: grid; }
}

@media (max-width: 390px) {
  .language-select { width: 100px; padding-left: 9px; font-size: 13px; }
  .brand-logo { width: 112px; }
  .footer-brand .brand-logo { width: 210px; }
  .contact-form { padding-inline: 18px; }
}
