:root {
    --ink: #101820;
    --ink-soft: #26333d;
    --paper: #f6f3ed;
    --white: #ffffff;
    --muted: #66727a;
    --line: #e4e0d8;
    --accent: #f5a623;
    --accent-dark: #d98909;
    --accent-soft: #fff2da;
    --sage: #dfe7df;
    --radius-sm: 12px;
    --radius: 22px;
    --radius-lg: 34px;
    --shadow-sm: 0 12px 36px rgba(16, 24, 32, .08);
    --shadow-lg: 0 30px 80px rgba(16, 24, 32, .18);
    --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 68px;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); }
.container { max-width: var(--container); }

.btn {
    border-radius: 999px;
    font-weight: 750;
    padding: .82rem 1.35rem;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 1rem 1.55rem; font-size: 1rem; }
.btn-accent { background: var(--accent); color: var(--ink); border-color: var(--accent); box-shadow: 0 12px 28px rgba(245, 166, 35, .22); }
.btn-accent:hover, .btn-accent:focus { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white); }
.btn-dark { background: var(--ink); border-color: var(--ink); }
.btn-outline-light { border-width: 1.5px; }

.section-space { padding: 76px 0; }
.section-heading { max-width: 720px; margin-bottom: 2rem; }
.section-heading h2,
.why-us-section h2,
.material-section h2,
.contact-form-card h2,
.values-section h2,
.faq-section h2 {
    font-size: clamp(2rem, 5vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: -.045em;
    font-weight: 850;
    margin: .55rem 0 1.1rem;
}
.section-heading p { font-size: 1.06rem; margin-bottom: 0; }
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--accent-dark);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.section-kicker::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.section-kicker-light { color: #ffd286; }
.lead-copy { font-size: 1.12rem; }
.text-link { display: inline-flex; align-items: center; gap: .5rem; font-weight: 800; }
.text-link:hover { color: var(--accent-dark); }

.topbar { background: #0b1117; color: #c8d0d6; font-size: .82rem; padding: .55rem 0; }
.topbar a { color: #c8d0d6; }
.topbar i { color: var(--accent); margin-right: .35rem; }
.site-header { z-index: 1030; box-shadow: 0 8px 30px rgba(16,24,32,.06); }
.navbar { background: rgba(255,255,255,.97); min-height: 80px; backdrop-filter: blur(12px); }
.navbar-brand img { display: block; }
.navbar-toggler { border: 0; padding: .55rem; box-shadow: none !important; }
.navbar-nav .nav-link {
    padding: .7rem .9rem !important;
    color: var(--ink-soft);
    font-weight: 700;
    position: relative;
}
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: .9rem;
    right: .9rem;
    bottom: .35rem;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform .2s ease;
}
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { transform: scaleX(1); }
.header-phone { display: inline-flex; align-items: center; gap: .65rem; }
.header-phone-icon { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); }
.header-phone span:last-child { display: grid; line-height: 1.15; }
.header-phone small { color: var(--muted); font-size: .72rem; }
.header-phone strong { font-size: .92rem; }
.offcanvas { max-width: 88vw; }
.mobile-nav { display: grid; }
.mobile-nav a { font-size: 1.18rem; font-weight: 800; padding: 1rem .15rem; border-bottom: 1px solid var(--line); }
.mobile-nav a.active { color: var(--accent-dark); }
.mobile-contact-box { border-radius: var(--radius); background: var(--ink); color: white; padding: 1.25rem; display: grid; }
.mobile-contact-box span, .mobile-contact-box small { color: #bfc8ce; }
.mobile-contact-box a { color: #ffd286; font-weight: 850; font-size: 1.25rem; }

.hero-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 20%, rgba(245,166,35,.14), transparent 32%),
        linear-gradient(135deg, #0e171f 0%, #18262f 55%, #0e171f 100%);
    color: white;
    padding: 82px 0 64px;
}
.hero-grid {
    position: absolute; inset: 0; opacity: .07;
    background-image: linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(to right, black, transparent 72%);
}
.eyebrow { display: inline-flex; align-items: center; gap: .65rem; color: #d8e0e5; font-weight: 750; font-size: .84rem; letter-spacing: .06em; text-transform: uppercase; }
.eyebrow span { width: 30px; height: 2px; background: var(--accent); }
.hero-section h1 {
    font-size: clamp(2.65rem, 9vw, 5rem);
    line-height: .98;
    letter-spacing: -.06em;
    font-weight: 900;
    max-width: 820px;
    margin: 1rem 0 1.35rem;
}
.hero-section h1 em { color: var(--accent); font-style: normal; }
.hero-text { color: #c9d2d8; font-size: 1.08rem; max-width: 700px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.8rem; }
.hero-actions .btn { width: 100%; }
.hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-top: 2.3rem; max-width: 650px; }
.hero-trust div { display: grid; padding-right: .8rem; border-right: 1px solid rgba(255,255,255,.15); }
.hero-trust div:last-child { border-right: 0; }
.hero-trust strong { color: white; font-size: 1.45rem; line-height: 1; }
.hero-trust span { color: #aebbc3; font-size: .72rem; margin-top: .4rem; }
.hero-visual { position: relative; max-width: 530px; margin-inline: auto; }
.hero-image-card { border-radius: 180px 180px 30px 30px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); background: #dfe7df; box-shadow: var(--shadow-lg); }
.hero-image-card img { width: 100%; display: block; aspect-ratio: .9; object-fit: cover; }
.floating-card { position: absolute; display: flex; align-items: center; gap: .7rem; background: rgba(255,255,255,.96); color: var(--ink); padding: .8rem 1rem; border-radius: 15px; box-shadow: var(--shadow-sm); }
.floating-card i { color: var(--accent-dark); font-size: 1.35rem; }
.floating-card span { display: grid; line-height: 1.25; }
.floating-card strong { font-size: .85rem; }
.floating-card small { color: var(--muted); font-size: .7rem; }
.floating-card-top { top: 12%; left: -4%; }
.floating-card-bottom { bottom: 10%; right: -3%; }

.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); padding: 1.4rem 0; }
.trust-item { display: flex; align-items: center; gap: .65rem; font-weight: 750; font-size: .82rem; }
.trust-item i { color: var(--accent-dark); font-size: 1.15rem; }

.services-preview { background: var(--paper); }
.service-card { background: white; padding: 1.55rem; border-radius: var(--radius); border: 1px solid rgba(16,24,32,.06); box-shadow: 0 8px 30px rgba(16,24,32,.04); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.service-icon { width: 54px; height: 54px; border-radius: 16px; background: var(--accent-soft); color: var(--accent-dark); display: grid; place-items: center; font-size: 1.45rem; margin-bottom: 1.2rem; }
.service-card h3 { font-size: 1.25rem; font-weight: 850; letter-spacing: -.02em; }
.service-card p { font-size: .92rem; }
.service-card a { font-size: .88rem; font-weight: 800; display: inline-flex; gap: .4rem; align-items: center; }
.service-card a:hover { color: var(--accent-dark); }

.process-section { background: var(--ink); position: relative; overflow: hidden; }
.process-section::before { content:""; position:absolute; width:420px; height:420px; border-radius:50%; background:rgba(245,166,35,.08); right:-140px; top:-180px; }
.process-intro { color: #aebbc3; margin: 0; }
.process-card { position: relative; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 1.4rem; min-height: 220px; background: rgba(255,255,255,.035); }
.process-card > span { color: var(--accent); font-weight: 900; font-size: .85rem; }
.process-card h3 { color: white; font-size: 1.18rem; margin: 2.4rem 0 .7rem; }
.process-card p { color: #aebbc3; font-size: .9rem; margin: 0; }

.project-card { display: block; position: relative; overflow: hidden; border-radius: var(--radius); background: var(--ink); }
.project-card img { width: 100%; object-fit: cover; transition: transform .45s ease; }
.project-card:hover img { transform: scale(1.035); }
.project-card-large img { aspect-ratio: 1.15; }
.project-card-small img { aspect-ratio: 1.85; }
.project-overlay { position: absolute; inset: auto 0 0; padding: 2.5rem 1.35rem 1.3rem; background: linear-gradient(transparent, rgba(10,16,21,.9)); color: white; display: grid; }
.project-overlay small { color: #ffd286; font-weight: 800; }
.project-overlay strong { font-size: 1.15rem; }

.why-us-section { background: #fff; }
.why-visual { position: relative; }
.why-visual > img { width: 100%; border-radius: var(--radius-lg); background: var(--sage); }
.why-badge { position: absolute; left: 1rem; bottom: 1rem; border-radius: 18px; background: var(--accent); padding: .9rem 1.1rem; display: grid; line-height: 1.1; }
.why-badge strong { font-size: 1.4rem; }
.why-badge span { font-size: .75rem; }
.feature-list { display: grid; gap: 1rem; margin-top: 1.5rem; }
.feature-list > div { display: flex; gap: .8rem; align-items: flex-start; }
.feature-list i { flex: 0 0 30px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--accent-soft); color: var(--accent-dark); font-weight: 900; }
.feature-list span { display: grid; }
.feature-list strong { font-size: .98rem; }
.feature-list small { color: var(--muted); }
.feature-list.compact { gap: 1.25rem; }

.testimonials-section { background: var(--paper); }
.review-card { margin: 0; border-radius: var(--radius); background: white; padding: 1.55rem; border: 1px solid var(--line); }
.review-stars { color: var(--accent-dark); letter-spacing: .08em; margin-bottom: 1rem; }
.review-card blockquote { font-size: 1rem; color: var(--ink-soft); margin-bottom: 1.5rem; }
.review-card figcaption { display: grid; }
.review-card figcaption span { color: var(--muted); font-size: .82rem; }

.faq-section .accordion-item { border-color: var(--line); }
.faq-section .accordion-button { padding: 1.2rem 0; font-weight: 800; font-size: 1rem; background: transparent; box-shadow: none; }
.faq-section .accordion-button:not(.collapsed) { color: var(--accent-dark); }
.faq-section .accordion-button::after { background-size: 1rem; }
.faq-section .accordion-body { padding: 0 0 1.2rem; color: var(--muted); }

.cta-section { padding: 0 0 76px; background: linear-gradient(to bottom, white 0 48%, var(--ink) 48% 100%); }
.cta-section.compact-cta { background: var(--paper); padding: 0 0 76px; }
.cta-box { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(135deg, #24333d, #101820); color: white; padding: 2rem; display: grid; gap: 1.5rem; align-items: center; box-shadow: var(--shadow-lg); }
.cta-box::after { content:""; position:absolute; right:-70px; top:-90px; width:260px; height:260px; border-radius:50%; border:55px solid rgba(245,166,35,.13); }
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { font-size: clamp(1.8rem, 5vw, 3rem); line-height: 1.06; letter-spacing: -.04em; font-weight: 850; margin: .5rem 0 .8rem; }
.cta-box p { color: #bdc8cf; margin: 0; }
.cta-actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.cta-phone { display: grid; line-height: 1.15; }
.cta-phone small { color: #aebbc3; }
.cta-phone strong { color: white; font-size: 1.15rem; }

.page-hero { background: linear-gradient(135deg, #101820, #263842); color: white; padding: 70px 0 58px; }
.page-hero h1 { font-size: clamp(2.6rem, 8vw, 5rem); line-height: .98; letter-spacing: -.055em; font-weight: 900; max-width: 900px; margin: .8rem 0 1rem; }
.page-hero p { color: #c3cdd3; font-size: 1.08rem; max-width: 760px; margin: 0; }

.service-detail { display: grid; gap: 1rem; border-bottom: 1px solid var(--line); padding: 2rem 0; }
.service-detail:first-child { padding-top: 0; }
.service-detail-number { font-size: .85rem; color: var(--accent-dark); font-weight: 900; }
.service-detail-content > span { color: var(--muted); font-size: .82rem; font-weight: 750; }
.service-detail-content h2 { font-size: clamp(1.55rem, 4vw, 2.35rem); letter-spacing: -.035em; font-weight: 850; margin: .35rem 0 .7rem; }
.service-detail-content p { margin: 0; }
.service-checks { list-style: none; padding: 0; margin: 0; display: grid; gap: .65rem; }
.service-checks li { display: flex; gap: .55rem; color: var(--ink-soft); font-weight: 650; }
.service-checks i { color: var(--accent-dark); }
.material-section { background: var(--paper); }
.rounded-visual { border-radius: var(--radius-lg); width: 100%; background: var(--sage); }

.project-filter { display: flex; overflow-x: auto; gap: .6rem; padding-bottom: .5rem; margin-bottom: 2rem; scrollbar-width: none; }
.project-filter::-webkit-scrollbar { display:none; }
.project-filter button { white-space: nowrap; border: 1px solid var(--line); background: white; border-radius: 999px; padding: .65rem 1rem; font-weight: 750; color: var(--ink-soft); }
.project-filter button.active, .project-filter button:hover { background: var(--ink); color: white; border-color: var(--ink); }
.portfolio-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: white; transition: transform .25s ease, box-shadow .25s ease; }
.portfolio-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.portfolio-card img { width: 100%; aspect-ratio: 1.45; object-fit: cover; background: var(--paper); }
.portfolio-content { padding: 1.3rem; }
.portfolio-content > span { color: var(--accent-dark); font-size: .76rem; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.portfolio-content h2 { font-size: 1.25rem; font-weight: 850; margin: .35rem 0; }
.portfolio-content p { margin: 0; font-size: .85rem; }
.project-item.is-hidden { display: none; }
.content-note { display: flex; gap: .8rem; background: var(--accent-soft); border: 1px solid #f0d29c; border-radius: var(--radius-sm); padding: 1rem 1.15rem; }
.content-note i { color: var(--accent-dark); }
.content-note p { margin: 0; font-size: .9rem; }

.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-top: 1.7rem; }
.stats-row div { display: grid; padding: 1rem; background: var(--paper); border-radius: var(--radius-sm); }
.stats-row strong { font-size: 1.45rem; }
.stats-row span { color: var(--muted); font-size: .75rem; }
.values-section { background: var(--paper); }
.value-card { height: 100%; background: white; padding: 1.4rem; border-radius: var(--radius); border: 1px solid var(--line); }
.value-card > span { color: var(--accent-dark); font-size: .8rem; font-weight: 900; }
.value-card h3 { margin: 1.8rem 0 .5rem; font-weight: 850; }
.value-card p { margin: 0; font-size: .9rem; }

.contact-section { background: var(--paper); }
.contact-form-card { background: white; border-radius: var(--radius-lg); padding: 1.4rem; box-shadow: var(--shadow-sm); }
.form-label { font-weight: 750; font-size: .88rem; }
.form-control, .form-select { border-radius: 12px; border-color: #d9d6cf; min-height: 52px; padding: .75rem .9rem; }
textarea.form-control { min-height: 150px; }
.form-control:focus, .form-select:focus { border-color: var(--accent); box-shadow: 0 0 0 .22rem rgba(245,166,35,.16); }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.privacy-copy { color: var(--muted); }
.alert { border-radius: 14px; border: 0; }
.contact-sidebar { background: var(--ink); color: white; border-radius: var(--radius-lg); padding: 1.5rem; position: sticky; top: 110px; }
.contact-sidebar h2 { font-size: 1.7rem; font-weight: 850; }
.contact-sidebar > p { color: #b9c4ca; }
.contact-method { display: flex; gap: .9rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-method > i { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(245,166,35,.15); color: var(--accent); }
.contact-method span { display: grid; }
.contact-method small { color: #aebbc3; }
.contact-method strong { color: white; font-size: .92rem; word-break: break-word; }
.contact-hours { display: grid; gap: .2rem; margin-top: 1.2rem; padding: 1rem; border-radius: 14px; background: rgba(255,255,255,.06); }
.contact-hours span { color: #aebbc3; font-size: .78rem; }
.contact-hours strong { font-size: .9rem; }

.error-page { min-height: 68vh; display: grid; place-items: center; background: var(--paper); padding: 5rem 0; }
.error-code { font-size: clamp(5rem, 24vw, 11rem); font-weight: 950; color: var(--accent); line-height: .8; }
.error-page h1 { font-weight: 900; letter-spacing: -.04em; margin-top: 1rem; }

.site-footer { background: var(--ink); color: white; }
.footer-lead { color: #aebbc3; max-width: 420px; }
.social-links { display: flex; gap: .65rem; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); }
.social-links a:hover { background: var(--accent); color: var(--ink); }
.footer-title { font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; color: #ffd286; margin-bottom: 1.2rem; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.footer-links a { color: #b7c2c8; }
.footer-links a:hover { color: white; }
.footer-contact li { display: flex; gap: .65rem; align-items: flex-start; color: #b7c2c8; }
.footer-contact i { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.2rem 0 5.7rem; color: #84929b; font-size: .78rem; }

.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1040; background: white; box-shadow: 0 -8px 30px rgba(16,24,32,.15); padding: .55rem; display: flex; gap: .5rem; }
.mobile-cta .btn { padding: .78rem .75rem; font-size: .85rem; }
.back-to-top { position: fixed; right: 1rem; bottom: 5.2rem; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--ink); color: white; box-shadow: var(--shadow-sm); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; z-index: 1020; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

@media (min-width: 576px) {
    .hero-actions .btn { width: auto; }
    .contact-form-card { padding: 2rem; }
}

@media (min-width: 768px) {
    body { padding-bottom: 0; }
    .section-space { padding: 100px 0; }
    .hero-section { padding: 110px 0 90px; }
    .hero-text { font-size: 1.18rem; }
    .hero-trust span { font-size: .78rem; }
    .service-card, .review-card { padding: 1.8rem; }
    .process-card { padding: 1.7rem; }
    .cta-box { padding: 2.8rem; grid-template-columns: 1fr auto; }
    .cta-actions { align-items: flex-end; }
    .page-hero { padding: 90px 0 75px; }
    .service-detail { grid-template-columns: 70px minmax(0, 1.5fr) minmax(260px, 1fr); gap: 2rem; align-items: start; padding: 3rem 0; }
    .service-detail-reverse { background: linear-gradient(90deg, transparent, rgba(246,243,237,.6), transparent); }
    .contact-form-card { padding: 2.5rem; }
    .contact-sidebar { padding: 2rem; }
    .footer-bottom { padding-bottom: 1.2rem; }
    .back-to-top { bottom: 1.5rem; }
}

@media (min-width: 992px) {
    .hero-section .row { min-height: 610px; }
    .hero-section h1 { font-size: 5rem; }
    .hero-visual { margin-left: auto; }
    .project-card-large img { aspect-ratio: 1.12; }
    .project-card-small img { aspect-ratio: 2.1; }
    .why-badge { left: -1.1rem; bottom: 2rem; }
    .cta-box { padding: 3.2rem 3.5rem; }
    .cta-box > div:first-child { max-width: 760px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* v2 content and branding */
.navbar-brand img { width: 210px; height: 62px; object-fit: contain; object-position: left center; }
.offcanvas-header img { height: 62px; object-fit: contain; }
.site-footer img { height: 84px; object-fit: contain; object-position: left center; }
.mega-menu { min-width: 290px; border: 0; padding: .75rem; border-radius: 18px; box-shadow: 0 24px 70px rgba(11,32,56,.17); }
.mega-menu .dropdown-item { border-radius: 10px; padding: .65rem .8rem; font-weight: 650; }
.mega-menu .dropdown-item:hover { background: var(--accent-soft); color: var(--ink); }
.breadcrumb-nav { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.2rem; color: #bdc9d1; font-size: .86rem; }
.breadcrumb-nav a:hover { color: white; }
.compact-list { padding-left: 1.1rem; color: var(--muted); display: grid; gap: .4rem; }
.info-tile { height: 100%; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; background: white; box-shadow: var(--shadow-sm); }
.info-tile > i { font-size: 2rem; color: var(--accent-dark); display: block; margin-bottom: 1rem; }
.info-tile h3 { font-size: 1.12rem; font-weight: 850; }
.info-tile p { margin: 0; }
.info-tile.horizontal { display: flex; align-items: center; gap: 1rem; }
.info-tile.horizontal > i { margin: 0; }
.risk-grid { display: grid; gap: 1rem; }
.risk-grid > div { display: flex; align-items: flex-start; gap: 1rem; padding: 1.05rem; border: 1px solid var(--line); border-radius: 16px; }
.risk-grid i { width: 44px; height: 44px; flex: 0 0 44px; display: grid; place-items: center; border-radius: 12px; background: var(--accent-soft); color: var(--accent-dark); font-size: 1.2rem; }
.risk-grid span { display: grid; }
.risk-grid strong { font-weight: 850; }
.risk-grid small { color: var(--muted); line-height: 1.5; }
.check-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .85rem; }
.check-grid > div { display: flex; align-items: flex-start; gap: .7rem; border: 1px solid var(--line); border-radius: 14px; padding: 1rem; }
.check-grid i { color: var(--accent-dark); font-size: 1.2rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: .7rem; }
.tag-list span { padding: .65rem 1rem; border-radius: 999px; background: var(--paper); font-weight: 700; }
.content-callout { background: var(--ink); color: white; padding: 2rem; border-radius: var(--radius); }
.content-callout h2,.content-callout h3 { color: white; font-weight: 850; }
.content-callout p,.content-callout li { color: #c4cfd6; }
.content-callout a { color: #ffd286; font-weight: 800; }
.side-cta { top: 110px; background: var(--paper); padding: 2rem; border-radius: var(--radius); border: 1px solid var(--line); }
.side-cta-icon { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 18px; background: var(--accent); font-size: 1.8rem; margin-bottom: 1.2rem; }
.side-cta h2 { font-size: 1.5rem; font-weight: 900; }
.side-cta ul { padding-left: 1.2rem; color: var(--muted); }
.side-phone { display: grid; text-align: center; margin-top: 1rem; }
.side-phone small { color: var(--muted); }
.side-phone strong { font-size: 1.25rem; }
.timeline-long { max-width: 940px; margin: 0 auto; position: relative; }
.timeline-long::before { content:""; position:absolute; left: 31px; top: 40px; bottom: 40px; width: 2px; background: var(--line); }
.timeline-long article { display: grid; grid-template-columns: 64px 1fr; gap: 1.5rem; padding: 0 0 3.2rem; position: relative; }
.timeline-number { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: white; font-weight: 900; position: relative; z-index: 1; }
.timeline-long h2 { font-size: 1.7rem; font-weight: 900; }
.stage-note { display: flex; gap: .65rem; padding: .85rem 1rem; border-radius: 12px; background: var(--accent-soft); color: #6d4a00; font-size: .9rem; }
.definition-table { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.definition-table > div { display: grid; grid-template-columns: 180px 1fr; gap: 1.2rem; padding: 1.15rem 1.3rem; border-bottom: 1px solid var(--line); }
.definition-table > div:last-child { border: 0; }
.definition-table strong { font-weight: 850; }
.definition-table span { color: var(--muted); }
.numbered-list { list-style: none; padding: 0; counter-reset: steps; display: grid; gap: .8rem; }
.numbered-list li { counter-increment: steps; display: grid; grid-template-columns: 44px 1fr; gap: .8rem; align-items: start; }
.numbered-list li::before { content: counter(steps); width: 38px; height: 38px; display: grid; place-items: center; background: var(--accent); border-radius: 50%; font-weight: 900; }
.numbered-list li strong,.numbered-list li span { grid-column: 2; }
.numbered-list li strong { margin-top: -38px; font-weight: 850; }
.numbered-list li span { color: var(--muted); }
.comparison-list { display: grid; gap: .8rem; padding-left: 1.2rem; }
.calculator-card { border: 1px solid var(--line); box-shadow: var(--shadow-sm); padding: 2rem; border-radius: var(--radius); }
.calculator-result { margin-top: 1.5rem; background: var(--paper); border-radius: 18px; padding: 1.5rem; display: grid; }
.calculator-result span { color: var(--muted); }
.calculator-result strong { font-size: clamp(2rem,7vw,3.5rem); line-height: 1.1; letter-spacing: -.04em; color: var(--ink); }
.faq-group { margin-bottom: 3rem; }
.faq-group > h2 { font-size: 1.7rem; font-weight: 900; margin-bottom: 1rem; }
.document-page { background: #eef1f4; padding-bottom: 0; }
.public-document-toolbar { position: sticky; top: 0; z-index: 10; background: white; padding: .8rem 1.2rem; box-shadow: 0 6px 24px rgba(0,0,0,.08); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.document-public-brand img { width: 190px; height: 62px; object-fit: contain; }
.public-document-wrap { padding: 2rem 1rem; }
.document-sheet { width: 100%; max-width: 1100px; min-height: 1450px; background: white; margin: 0 auto; padding: 48px; box-shadow: 0 20px 60px rgba(11,32,56,.12); color: #14213d; font-family: Arial, sans-serif; }
.document-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; border-bottom: 3px solid #f08c00; padding-bottom: 20px; }
.document-header img { width: 300px; height: 105px; object-fit: contain; object-position: left center; }
.company-data { display: grid; text-align: right; font-size: 13px; color: #64748b; }
.company-data strong { color: #0b2038; font-size: 15px; }
.document-title { display: flex; justify-content: space-between; gap: 2rem; margin: 32px 0; }
.document-title > div:first-child span { color: #f08c00; font-weight: 800; letter-spacing: .08em; font-size: 12px; }
.document-title h1 { font-size: 26px; font-weight: 800; margin: 6px 0; }
.document-number { display: grid; text-align: right; font-size: 13px; }
.document-number strong { font-size: 20px; color: #f08c00; }
.document-parties { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: #dbe2e8; border: 1px solid #dbe2e8; margin-bottom: 26px; }
.document-parties > div { display: grid; align-content: start; background: #f7f9fb; padding: 16px; min-height: 115px; font-size: 12px; }
.document-parties small { color: #64748b; letter-spacing: .1em; font-weight: 700; }
.document-parties strong { margin: 6px 0; font-size: 14px; }
.document-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.document-table th { background: #0b2038; color: white; padding: 10px 8px; text-align: left; }
.document-table td { border: 1px solid #dbe2e8; padding: 8px; vertical-align: top; }
.document-table th:nth-child(1),.document-table td:nth-child(1) { width: 42px; text-align: center; }
.document-table th:nth-child(n+3),.document-table td:nth-child(n+3) { white-space: nowrap; }
.document-table .num { text-align: right; }
.document-table .section-row td { background: #eaf0f5; color: #0b2038; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.document-bottom { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; margin-top: 26px; }
.document-terms { font-size: 12px; }
.document-terms p { color: #334155; }
.document-totals { display: grid; align-content: start; }
.document-totals > div { display: flex; justify-content: space-between; border-bottom: 1px solid #dbe2e8; padding: 8px 0; }
.document-totals .total-grand { background: #0b2038; color: white; padding: 14px; margin-top: 7px; font-size: 17px; }
.document-signatures { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 70px; }
.document-signatures > div { text-align: center; display: grid; gap: 8px; }
.document-signatures div div { height: 1px; background: #64748b; }
.document-footer { border-top: 1px solid #dbe2e8; margin-top: 50px; padding-top: 12px; color: #64748b; font-size: 10px; text-align: center; }
@media(max-width:767px){.check-grid{grid-template-columns:1fr}.definition-table>div{grid-template-columns:1fr;gap:.25rem}.document-sheet{padding:20px;min-height:auto}.document-header,.document-title{flex-direction:column}.company-data,.document-number{text-align:left}.document-parties{grid-template-columns:1fr}.document-bottom{grid-template-columns:1fr}.document-table{font-size:10px}.public-document-toolbar{align-items:flex-start}.document-public-brand img{width:120px;height:48px}}
@media print { body.document-page{background:white}.public-document-toolbar,.mobile-cta,.site-header,.site-footer{display:none!important}.public-document-wrap{padding:0}.document-sheet{box-shadow:none;max-width:none;min-height:0;padding:12mm;margin:0}.document-table{font-size:9pt}.document-header img{width:65mm;height:auto}@page{size:A4;margin:0} }
