:root {
    --ink: #111014;
    --ink-soft: #29272d;
    --gold: #f7b91e;
    --gold-dark: #d99c00;
    --cream: #fff9ea;
    --paper: #ffffff;
    --muted: #69666f;
    --line: #e9e6eb;
    --success: #147447;
    --danger: #a72c2c;
    --shadow: 0 22px 60px rgba(17, 16, 20, .12);
    --radius: 24px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
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.65;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 100px 0; }
.skip-link {
    position: fixed; left: 16px; top: -70px; z-index: 9999;
    padding: 11px 16px; background: var(--gold); color: var(--ink); font-weight: 800;
    border-radius: 0 0 10px 10px;
}
.skip-link:focus { top: 0; }

.site-header {
    position: fixed; inset: 0 0 auto; z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: .25s ease;
}
.site-header.scrolled {
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(16px);
    border-bottom-color: rgba(17,16,20,.08);
    box-shadow: 0 8px 30px rgba(17,16,20,.06);
}
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { width: 58px; height: 50px; object-fit: contain; border-radius: 12px; }
.brand span { display: flex; flex-direction: column; line-height: 1; }
.brand strong { font-size: 1.17rem; letter-spacing: .08em; }
.brand small { margin-top: 5px; color: var(--muted); letter-spacing: .04em; }
.primary-nav { display: flex; align-items: center; gap: 32px; font-weight: 700; font-size: .94rem; }
.primary-nav > a:not(.nav-cta) { position: relative; }
.primary-nav > a:not(.nav-cta)::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px;
    background: var(--gold); transition: right .2s ease;
}
.primary-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 12px 18px; background: var(--ink); color: #fff; border-radius: 12px; }
.nav-cta:hover { background: var(--gold); color: var(--ink); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 9px; }
.nav-toggle span { display: block; width: 26px; height: 2px; margin: 5px; background: var(--ink); transition: .2s ease; }

.hero {
    position: relative; overflow: hidden;
    min-height: 760px; padding: 150px 0 95px;
    background:
        radial-gradient(circle at 10% 20%, rgba(247,185,30,.13), transparent 30%),
        linear-gradient(135deg, #fff 0%, #fffdf7 55%, #f5f1e9 100%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: #5d5961; font-size: .79rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span { width: 30px; height: 3px; border-radius: 20px; background: var(--gold); }
.eyebrow.light { color: #d7d3dc; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 22px; font-size: clamp(3rem, 6.2vw, 5.65rem); line-height: .98; letter-spacing: -.057em; }
h1 em { color: var(--gold-dark); font-style: normal; }
.hero-copy > p { max-width: 680px; margin-bottom: 31px; color: var(--muted); font-size: 1.15rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
    display: inline-flex; align-items: center; justify-content: center; min-height: 52px;
    padding: 0 23px; border: 1px solid transparent; border-radius: 13px;
    font-weight: 850; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--ink); box-shadow: 0 12px 28px rgba(247,185,30,.27); }
.btn-primary:hover { background: #ffca3d; box-shadow: 0 16px 34px rgba(247,185,30,.36); }
.btn-secondary { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: 0 10px 30px rgba(17,16,20,.06); }
.btn-secondary:hover { border-color: #cfc9d2; }
.btn-full { width: 100%; }

.trust-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 42px; padding-top: 25px; border-top: 1px solid var(--line); }
.trust-row div { display: flex; flex-direction: column; }
.trust-row strong { font-size: 1rem; }
.trust-row span { color: var(--muted); font-size: .83rem; }

.hero-card {
    position: relative; overflow: hidden; isolation: isolate;
    padding: 42px; background: rgba(255,255,255,.88); border: 1px solid rgba(17,16,20,.07);
    border-radius: 36px; box-shadow: var(--shadow); transform: rotate(1.5deg);
}
.hero-card::before { content: ""; position: absolute; inset: 15px; z-index: -1; border: 1px solid rgba(17,16,20,.06); border-radius: 26px; }
.hero-card-glow { position: absolute; z-index: -2; width: 320px; height: 320px; right: -80px; top: -110px; background: rgba(247,185,30,.28); filter: blur(45px); border-radius: 50%; }
.hero-card > img { width: min(100%, 390px); margin: 0 auto 20px; border-radius: 28px; }
.availability { display: flex; align-items: center; justify-content: center; gap: 9px; margin: 0 auto 25px; color: var(--success); font-size: .85rem; font-weight: 800; }
.availability span { width: 9px; height: 9px; background: #28a86b; border-radius: 50%; box-shadow: 0 0 0 6px rgba(40,168,107,.13); }
.mini-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.mini-grid div { padding: 15px 8px; text-align: center; background: #f8f7f9; border-radius: 14px; }
.mini-grid b { display: block; font-size: 1.08rem; }
.mini-grid small { color: var(--muted); font-size: .73rem; }
.hero-shape { position: absolute; border-radius: 50%; border: 1px solid rgba(17,16,20,.06); }
.hero-shape-one { width: 540px; height: 540px; right: -190px; bottom: -230px; }
.hero-shape-two { width: 220px; height: 220px; left: -90px; top: 120px; }

.strip { padding: 24px 0; background: var(--ink); color: #fff; }
.strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; white-space: nowrap; overflow: hidden; }
.strip-inner > span { color: var(--gold); font-size: .73rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.strip-inner > div { font-weight: 750; }
.strip-inner i { flex: 0 0 5px; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

.section-heading { max-width: 700px; }
.section-heading h2, .quality-panel h2, .contact-copy h2 { margin-bottom: 20px; font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1.06; letter-spacing: -.04em; }
.section-heading > p, .quality-panel > p { color: var(--muted); font-size: 1.05rem; }
.cards { display: grid; gap: 24px; margin-top: 50px; }
.three-col { grid-template-columns: repeat(3,1fr); }
.service-card { position: relative; overflow: hidden; min-height: 320px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: .25s ease; }
.service-card::after { content: ""; position: absolute; right: -55px; bottom: -70px; width: 150px; height: 150px; background: var(--cream); border-radius: 50%; transition: .25s ease; }
.service-card:hover { transform: translateY(-8px); border-color: #ded5bb; box-shadow: var(--shadow); }
.service-card:hover::after { transform: scale(1.25); }
.icon-box { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 58px; background: var(--gold); border-radius: 17px; box-shadow: 0 11px 26px rgba(247,185,30,.25); }
.icon-box svg { width: 27px; height: 27px; fill: var(--ink); }
.service-card h3 { position: relative; z-index: 1; margin-bottom: 12px; font-size: 1.42rem; }
.service-card p { position: relative; z-index: 1; color: var(--muted); }

.process-section { background: #f7f6f8; }
.process-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 85px; align-items: start; }
.process-grid .section-heading { position: sticky; top: 130px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-weight: 850; }
.text-link span { color: var(--gold-dark); font-size: 1.4rem; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.steps { border-top: 1px solid #dcd8df; }
.step { display: grid; grid-template-columns: 70px 1fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid #dcd8df; }
.step b { display: grid; place-items: center; width: 52px; height: 52px; background: var(--ink); color: var(--gold); border-radius: 15px; }
.step h3 { margin-bottom: 6px; font-size: 1.28rem; }
.step p { margin-bottom: 0; color: var(--muted); }

.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.quality-panel { padding: 52px; border-radius: 30px; background: var(--ink); color: #fff; box-shadow: var(--shadow); }
.quality-panel > p { color: #c9c5ce; }
.quality-badge { display: inline-block; margin-bottom: 24px; padding: 7px 12px; background: rgba(247,185,30,.12); border: 1px solid rgba(247,185,30,.4); border-radius: 999px; color: var(--gold); font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.check-list { display: grid; gap: 12px; margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 29px; color: #ece9ef; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 900; }
.metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.metrics article { min-height: 190px; padding: 27px; border: 1px solid var(--line); border-radius: 20px; }
.metrics strong { color: var(--gold-dark); font-size: .82rem; letter-spacing: .12em; }
.metrics h3 { margin: 28px 0 8px; }
.metrics p { color: var(--muted); font-size: .9rem; }

.about-section { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.about-logo { position: relative; display: grid; place-items: center; min-height: 480px; background: #fff; border-radius: 34px; box-shadow: var(--shadow); }
.about-logo::before { content: ""; position: absolute; width: 310px; height: 310px; background: rgba(247,185,30,.18); border-radius: 50%; filter: blur(30px); }
.about-logo img { position: relative; width: min(88%, 430px); border-radius: 30px; }
.about-grid .section-heading p + p { margin-top: -4px; }
.contact-person { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.avatar { display: grid; place-items: center; width: 54px; height: 54px; flex: 0 0 54px; background: var(--ink); color: var(--gold); border-radius: 16px; font-weight: 900; }
.contact-person div:last-child { display: flex; flex-direction: column; }
.contact-person span { color: var(--muted); font-size: .88rem; }

.contact-section { background: var(--ink); color: #fff; }
.contact-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 65px; align-items: start; }
.contact-copy > p { max-width: 580px; color: #c7c3cc; font-size: 1.06rem; }
.contact-links { display: grid; gap: 11px; margin-top: 35px; }
.contact-links a { display: flex; align-items: center; gap: 15px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.11); border-radius: 15px; transition: .2s ease; }
.contact-links a:hover { transform: translateX(5px); border-color: rgba(247,185,30,.55); background: rgba(255,255,255,.04); }
.contact-icon { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 42px; background: var(--gold); color: var(--ink); border-radius: 12px; font-weight: 950; }
.contact-links a > span:last-child { display: flex; flex-direction: column; min-width: 0; }
.contact-links small { color: #a9a5ae; }
.contact-links strong { overflow-wrap: anywhere; font-size: .93rem; }
.contact-form-wrap { padding: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 30px; }
.contact-form { padding: 35px; background: #fff; color: var(--ink); border-radius: 22px; }
.contact-form h3 { margin-bottom: 3px; font-size: 1.65rem; }
.contact-form > p { margin-bottom: 26px; color: var(--muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label { display: block; margin-bottom: 16px; font-size: .87rem; font-weight: 800; }
.contact-form label > span { color: var(--danger); }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; margin-top: 7px; padding: 13px 14px; border: 1px solid #dcd9df; border-radius: 11px; background: #fff; color: var(--ink); outline: 0; transition: .2s ease;
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold-dark); box-shadow: 0 0 0 4px rgba(247,185,30,.14); }
.form-note { display: block; margin-top: 13px; color: var(--muted); text-align: center; }
.form-alert { margin-bottom: 20px; padding: 13px 15px; border-radius: 11px; font-size: .9rem; }
.form-alert.success { background: #e9f7f0; color: var(--success); border: 1px solid #bce4cf; }
.form-alert.error { background: #fff0f0; color: var(--danger); border: 1px solid #f1c4c4; }
.form-alert ul { margin: 6px 0 0; padding-left: 20px; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { padding: 65px 0 20px; background: #0a090c; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 55px; padding-bottom: 42px; }
.footer-brand .brand small { color: #aaa6ae; }
.footer-brand p { max-width: 350px; margin-top: 20px; color: #9c98a1; }
.footer-grid h3 { margin-bottom: 16px; color: var(--gold); font-size: .85rem; letter-spacing: .11em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid > div:not(.footer-brand) a { color: #bdb9c1; }
.footer-grid > div:not(.footer-brand) a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); color: #8e8a92; font-size: .83rem; }
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 900; display: grid; place-items: center; width: 54px; height: 54px; background: var(--gold); color: var(--ink); border-radius: 18px; box-shadow: 0 15px 35px rgba(0,0,0,.24); font-weight: 950; transition: .2s ease; }
.floating-whatsapp:hover { transform: translateY(-4px) rotate(-3deg); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
    .nav-toggle { display: block; z-index: 2; }
    .primary-nav {
        position: fixed; inset: 75px 20px auto; display: grid; gap: 0;
        padding: 15px; background: #fff; border: 1px solid var(--line); border-radius: 18px;
        box-shadow: var(--shadow); transform: translateY(-20px); opacity: 0; pointer-events: none; transition: .2s ease;
    }
    .primary-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .primary-nav a { padding: 13px; }
    .primary-nav > a:not(.nav-cta)::after { display: none; }
    .nav-cta { margin-top: 5px; text-align: center; }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .hero { min-height: auto; }
    .hero-grid, .process-grid, .quality-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero-grid { gap: 48px; }
    .hero-copy { text-align: center; }
    .hero-copy > p { margin-inline: auto; }
    .hero-actions { justify-content: center; }
    .hero-card { max-width: 620px; margin-inline: auto; transform: none; }
    .three-col { grid-template-columns: 1fr 1fr; }
    .process-grid { gap: 45px; }
    .process-grid .section-heading { position: static; }
    .quality-grid { gap: 35px; }
    .about-grid { gap: 45px; }
    .about-logo { min-height: 390px; }
    .contact-grid { gap: 45px; }
}

@media (max-width: 720px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 76px 0; }
    .nav-wrap { min-height: 74px; }
    .brand img { width: 50px; height: 43px; }
    .brand strong { font-size: 1rem; }
    .brand small { font-size: .72rem; }
    .hero { padding: 125px 0 75px; }
    h1 { font-size: clamp(2.75rem, 13vw, 4.5rem); }
    .hero-copy > p { font-size: 1rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .trust-row { gap: 8px; }
    .trust-row span { font-size: .72rem; }
    .hero-card { padding: 24px; border-radius: 25px; }
    .mini-grid { grid-template-columns: 1fr; }
    .strip-inner { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
    .strip-inner::-webkit-scrollbar { display: none; }
    .three-col, .metrics, .form-row, .footer-grid { grid-template-columns: 1fr; }
    .service-card { min-height: auto; }
    .icon-box { margin-bottom: 38px; }
    .quality-panel { padding: 30px; }
    .metrics article { min-height: 160px; }
    .about-logo { min-height: 300px; }
    .contact-form { padding: 24px; }
    .footer-grid { gap: 34px; }
    .footer-bottom { flex-direction: column; }
    .floating-whatsapp { right: 14px; bottom: 14px; }
}

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

/* Privacy policy and ownership verification page */
.legal-page .site-header { background: rgba(255,255,255,.96); border-bottom-color: rgba(17,16,20,.08); }
.legal-page .primary-nav a[aria-current="page"] { color: var(--gold-dark); }
.legal-hero {
    padding: 155px 0 72px;
    background:
        radial-gradient(circle at 88% 15%, rgba(247,185,30,.2), transparent 28%),
        linear-gradient(135deg, #fff 0%, #fffaf0 100%);
    border-bottom: 1px solid var(--line);
}
.legal-hero-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 70px; align-items: center; }
.legal-hero h1 { margin-bottom: 18px; font-size: clamp(3rem, 6vw, 5rem); }
.legal-hero p { max-width: 720px; margin-bottom: 0; color: var(--muted); font-size: 1.1rem; }
.verification-card { padding: 30px; background: var(--ink); color: #fff; border-radius: 24px; box-shadow: var(--shadow); }
.verification-label { display: block; margin-bottom: 7px; color: var(--gold); font-size: .74rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.verification-card > strong { display: block; margin-bottom: 24px; font-size: 1.75rem; }
.verification-card dl { display: grid; gap: 12px; margin: 0; }
.verification-card dl div { display: grid; grid-template-columns: 95px 1fr; gap: 15px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.1); }
.verification-card dt { color: #a9a5ae; font-size: .83rem; }
.verification-card dd { margin: 0; overflow-wrap: anywhere; font-weight: 750; }
.verification-card a:hover { color: var(--gold); }
.legal-content-section { padding: 75px 0 100px; }
.legal-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 68px; align-items: start; }
.legal-toc { position: sticky; top: 115px; display: flex; flex-direction: column; gap: 8px; padding: 23px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.legal-toc strong { margin-bottom: 8px; font-size: .88rem; letter-spacing: .08em; text-transform: uppercase; }
.legal-toc a { padding: 7px 9px; color: var(--muted); border-radius: 8px; font-size: .86rem; }
.legal-toc a:hover { color: var(--ink); background: var(--cream); }
.legal-copy { max-width: 820px; }
.legal-copy section { scroll-margin-top: 115px; padding: 33px 0; border-bottom: 1px solid var(--line); }
.legal-copy section:last-child { border-bottom: 0; }
.legal-copy h2 { margin-bottom: 13px; font-size: 1.55rem; letter-spacing: -.02em; }
.legal-copy p { color: #55515a; }
.ownership-notice { padding: 23px 25px; border: 1px solid #ecd897; border-left: 5px solid var(--gold); border-radius: 15px; background: var(--cream); }
.ownership-notice strong { display: block; margin-bottom: 5px; }
.ownership-notice p { margin-bottom: 0; color: var(--ink-soft); }
.policy-contact { padding: 21px; background: #f7f6f8; border-radius: 14px; font-style: normal; }
.policy-contact a { color: #8a6200; font-weight: 750; }
.footer-bottom a { color: #c5c1c9; }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 980px) {
    .legal-hero-grid, .legal-layout { grid-template-columns: 1fr; }
    .legal-hero-grid { gap: 35px; }
    .legal-toc { position: static; display: grid; grid-template-columns: repeat(2, 1fr); }
    .legal-toc strong { grid-column: 1 / -1; }
    .legal-copy { max-width: none; }
}

@media (max-width: 720px) {
    .legal-hero { padding: 125px 0 55px; }
    .legal-content-section { padding: 48px 0 70px; }
    .legal-toc { grid-template-columns: 1fr; }
    .verification-card { padding: 24px; }
    .verification-card dl div { grid-template-columns: 1fr; gap: 2px; }
    .legal-copy section { padding: 27px 0; }
}
