:root {
    --ink: #111512;
    --forest: #073d35;
    --forest-2: #0f5b4d;
    --mint: #d9f3df;
    --ivory: #fbf7ed;
    --paper: #fffdf7;
    --coral: #e5563f;
    --amber: #f2b441;
    --line: rgba(17, 21, 18, 0.12);
    --muted: #657169;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(17, 21, 18, 0.16);
    --soft-shadow: 0 14px 35px rgba(17, 21, 18, 0.08);
    --radius: 8px;
    --max: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--ivory);
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -5rem;
    z-index: 999;
    background: var(--amber);
    color: var(--ink);
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
}

.skip-link:focus {
    top: 1rem;
}

.container {
    width: min(100% - 2rem, var(--max));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 247, 237, 0.88);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(20px);
}

.header-inner {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: max-content;
}

.brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.brand span {
    display: grid;
    line-height: 1.1;
}

.brand strong {
    font-size: 1.16rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.brand small {
    margin-top: 0.2rem;
    color: var(--forest-2);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: #33413a;
    font-size: 0.92rem;
    font-weight: 800;
}

.site-nav a {
    padding: 0.55rem 0;
}

.site-nav a:hover {
    color: var(--coral);
}

.nav-store {
    padding: 0.7rem 1rem !important;
    border: 1px solid var(--forest);
    border-radius: var(--radius);
    color: var(--forest);
}

.menu-button {
    display: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
    padding: 0.65rem 0.85rem;
    font-weight: 900;
}

.hero {
    position: relative;
    min-height: calc(100vh - 78px);
    overflow: hidden;
    display: grid;
    align-items: center;
    background: var(--forest);
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 35, 30, 0.94) 0%, rgba(4, 35, 30, 0.80) 36%, rgba(4, 35, 30, 0.22) 72%, rgba(4, 35, 30, 0.04) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.3));
}

.hero-grid {
    position: relative;
    z-index: 1;
    padding: 6rem 0;
}

.hero-copy {
    max-width: 680px;
    color: var(--white);
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--amber);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 30px;
    height: 2px;
    background: currentColor;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.04;
    letter-spacing: -0.055em;
}

h1 {
    margin-top: 1.2rem;
    font-size: clamp(3rem, 7vw, 6.25rem);
    max-width: 11ch;
}

.hero-copy p {
    max-width: 640px;
    margin: 1.45rem 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2.1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.86rem 1.25rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 16px 35px rgba(229, 86, 63, 0.28);
}

.btn-primary:hover {
    background: #f0664f;
}

.btn-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
    color: var(--ink);
    border-color: var(--line);
    background: var(--paper);
}

.btn-outline-dark:hover {
    border-color: var(--forest);
    box-shadow: var(--soft-shadow);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 2rem;
}

.trust-row span {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 800;
}

.conversion-band {
    background: var(--coral);
    color: var(--white);
}

.band-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.band-grid div {
    padding: 1.35rem 1.4rem;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.band-grid div:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.band-grid strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.band-grid span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

.section {
    padding: 6.5rem 0;
}

.split-layout,
.quality-grid,
.cta-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.section h2 {
    margin-top: 0.9rem;
    font-size: clamp(2.25rem, 5vw, 4.6rem);
}

.intro-copy {
    display: grid;
    gap: 1rem;
    color: var(--muted);
    font-size: 1.05rem;
}

.intro-copy p {
    margin: 0;
}

.three-d-callout {
    padding: 5.5rem 0;
    background: var(--paper);
}

.three-d-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(135deg, #ffffff 0%, #eef8f2 100%);
    box-shadow: var(--shadow);
}

.three-d-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.25rem, 4vw, 3rem);
}

.three-d-copy h2 {
    margin-top: 0.9rem;
    font-size: clamp(2.1rem, 4.8vw, 4.2rem);
}

.three-d-copy p {
    max-width: 620px;
    color: var(--muted);
    font-size: 1.04rem;
}

.three-d-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.three-d-panel {
    min-height: 420px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--ink);
}

.three-d-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-dark {
    background: var(--ink);
    color: var(--white);
}

.section-dark .section-head p,
.section-dark .segment-card p {
    color: rgba(255, 255, 255, 0.72);
}

.section-head {
    display: grid;
    gap: 1rem;
    max-width: 900px;
    margin-bottom: 2.6rem;
}

.section-head p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 1.06rem;
}

.narrow {
    max-width: 760px;
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.segment-card {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: #1f2722;
    cursor: pointer;
    isolation: isolate;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.segment-card:hover {
    transform: translateY(-6px);
    border-color: rgba(242, 180, 65, 0.65);
}

.segment-card.featured {
    grid-column: span 2;
}

.segment-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.segment-card:hover img {
    transform: scale(1.06);
}

.segment-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(17, 21, 18, 0.04) 0%, rgba(17, 21, 18, 0.52) 42%, rgba(17, 21, 18, 0.94) 100%);
}

.segment-card div {
    padding: 1.35rem;
}

.segment-card span {
    display: inline-flex;
    color: var(--amber);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    margin-bottom: 0.6rem;
}

.segment-card h3 {
    font-size: 1.35rem;
    letter-spacing: -0.035em;
}

.segment-card p {
    margin: 0.65rem 0 0;
    font-size: 0.9rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.process-grid article,
.quality-panel,
.quote-form {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--soft-shadow);
}

.process-grid article {
    padding: 1.5rem;
}

.process-grid span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 1.4rem;
    border-radius: 50%;
    background: var(--forest);
    color: var(--white);
    font-weight: 900;
}

.process-grid h3 {
    font-size: 1.18rem;
    letter-spacing: -0.025em;
}

.process-grid p {
    margin: 0.7rem 0 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.quality-section {
    background: linear-gradient(135deg, var(--mint), var(--ivory));
}

.quality-grid p {
    color: var(--muted);
    font-size: 1.05rem;
}

.text-link {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--forest);
    font-weight: 900;
    border-bottom: 2px solid var(--coral);
}

.quality-panel {
    padding: 2rem;
}

.quality-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.quality-panel li {
    padding-left: 1.1rem;
    border-left: 4px solid var(--coral);
    color: var(--muted);
}

.quality-panel strong {
    color: var(--ink);
}

.cta-section {
    background: var(--forest);
    color: var(--white);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.76);
}

.quote-form {
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
    color: var(--ink);
}

.quote-form label {
    display: grid;
    gap: 0.4rem;
    color: #2a332e;
    font-size: 0.86rem;
    font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    padding: 0.88rem 0.95rem;
    resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus,
.btn:focus-visible,
.segment-card:focus-visible,
.site-nav a:focus-visible,
.whatsapp-float:focus-visible {
    outline: 3px solid rgba(242, 180, 65, 0.5);
    outline-offset: 3px;
}

.site-footer {
    background: #080b09;
    color: rgba(255, 255, 255, 0.72);
    padding: 4.5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr;
    gap: 2.5rem;
}

.footer-brand strong,
.footer-brand small {
    color: var(--white);
}

.site-footer h3 {
    margin: 0 0 1rem;
    color: var(--white);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-footer a {
    display: block;
    margin-bottom: 0.55rem;
}

.site-footer a:hover {
    color: var(--amber);
}

.site-footer p {
    margin: 0.55rem 0;
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.85rem;
}

.whatsapp-float {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 1rem;
    border-radius: 999px;
    background: #25d366;
    color: var(--white);
    font-weight: 900;
    box-shadow: 0 18px 35px rgba(37, 211, 102, 0.32);
}

@media (max-width: 1024px) {
    .segments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .menu-button {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        top: 78px;
        left: 1rem;
        right: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.75rem;
        background: var(--paper);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        padding: 0.9rem;
    }

    .hero {
        min-height: auto;
    }

    .hero-media::after {
        background: linear-gradient(90deg, rgba(4, 35, 30, 0.92), rgba(4, 35, 30, 0.74));
    }

    .hero-grid {
        padding: 5rem 0;
    }

    h1 {
        max-width: 12ch;
    }

    .band-grid,
    .split-layout,
    .three-d-grid,
    .quality-grid,
    .cta-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .band-grid div,
    .band-grid div:last-child {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 1.25rem, var(--max));
    }

    .header-inner {
        height: 70px;
    }

    .brand small {
        display: none;
    }

    .site-nav {
        top: 70px;
    }

    .hero-grid {
        padding: 4rem 0;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .three-d-callout {
        padding: 4rem 0;
    }

    .three-d-grid {
        padding: 0.65rem;
    }

    .three-d-actions .btn {
        width: 100%;
    }

    .three-d-panel {
        min-height: 280px;
    }

    .section {
        padding: 4.4rem 0;
    }

    .segments-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .segment-card,
    .segment-card.featured {
        grid-column: span 1;
        min-height: 350px;
    }

    .whatsapp-float {
        left: 1rem;
        right: 1rem;
    }
}
