/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

ul,
ol {
    list-style: none;
}


/* =========================================================
   DESIGN TOKENS
   ========================================================= */

:root {

    /* COLORS */

    --bg: #f8f7f4;

    --bg-soft: #f2f0eb;

    --bg-dark: #171717;

    --surface: #ffffff;

    --text: #232323;

    --text-soft: #5f5f5f;

    --text-light: #d9d9d9;

    --border: #e6e1d8;

    --gold: #b08a55;

    --gold-hover: #967344;


    /* TYPOGRAPHY */

    --font-display: "Cormorant Garamond", serif;

    --font-body: "Inter", sans-serif;


    /* WIDTHS */

    --container: 1200px;

    --container-narrow: 820px;


    /* SPACING */

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;


    /* RADIUS */

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;


    /* SHADOW */

    --shadow-soft:
        0 10px 40px rgba(0, 0, 0, .05);

}


/* =========================================================
   BASE
   ========================================================= */

body {

    background: var(--bg);

    color: var(--text);

    font-family: var(--font-body);

    font-size: 18px;

    line-height: 1.8;

}

::selection {

    background: rgba(176, 138, 85, .18);

}


/* =========================================================
   CONTAINERS
   ========================================================= */

.container {

    width: min(calc(100% - 48px),
            var(--container));

    margin-inline: auto;

}

.container-narrow {

    width: min(calc(100% - 48px),
            var(--container-narrow));

    margin-inline: auto;

}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.hero-title {

    font-family: var(--font-display);

    font-size: 3.4rem;
    line-height: 1.08;
    letter-spacing: -.02em;

}

.hero-title .highlighted {
    color: var(--gold);
}

.hero-subtitle {

    max-width: 720px;

    margin-top: 28px;

    color: var(--text-soft);

    font-size: 1.18rem;

    line-height: 1.8;

}

.section-title {

    font-family: var(--font-display);

    font-size: clamp(2.4rem,
            4vw,
            4rem);

    line-height: 1.12;

    font-weight: 500;

    letter-spacing: -.02em;

    margin-top: 18px;

}

.section-title.light {

    color: white;

}

.section-description {

    max-width: 760px;

    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;

    color: var(--text-soft);

}

.section-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-size: .82rem;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: .18em;

    color: var(--gold);

}

.section-label::before {

    content: "";

    width: 28px;

    height: 1px;

    background: var(--gold);

}

.rich-text {

    margin-top: 40px;

}

.rich-text p {

    margin-bottom: 24px;

    color: var(--text);

}

.rich-text.light p {

    color: var(--text-light);

}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {

    padding-block: 120px;

}

.section-light {

    background: var(--bg-soft);

}

.section-dark {

    background: var(--bg-dark);

}

.section-intro {

    text-align: center;

    margin-bottom: 70px;

}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn-primary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 18px 34px;

    border-radius: 999px;

    background: var(--gold);

    color: white;

    font-weight: 600;

    transition:
        transform .25s ease,
        background .25s ease;

}

.btn-primary:hover {

    background: var(--gold-hover);

    transform: translateY(-2px);

}

.btn-large {

    padding:
        22px 52px;

}


/* =========================================================
   HERO
   ========================================================= */

.hero {

    padding-top: 20px;

    padding-bottom: 80px;

}

.hero-grid {

    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 20px;

    align-items: center;

}

.hero-content {

    max-width: 760px;

}

.mobile {
    display: none;
}

.hero-microcopy {

    margin-top: 32px;

    color: var(--text-soft);

    font-size: .95rem;

}

.hero-actions {

    margin-top: 40px;

}

.hero-visual img {

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-soft);

}

/* ==========================================
   HERO BENEFITS
========================================== */

.hero-benefits {

    margin: 32px 0;

}

.hero-benefits-list {

    list-style: none;

    margin: 0;

    padding: 0;

    display: flex;

    flex-direction: column;

    gap: 14px;

    max-width: 550px;

}

.hero-benefits-list li {

    position: relative;

    padding-left: 30px;

    font-size: 1rem;

    line-height: 1.7;

}

.hero-benefits-list li::before {

    content: "✓";

    position: absolute;

    left: 0;

    top: 0;

    color: var(--gold);

    font-weight: 700;

}


/* =========================================================
   GLOBAL IMAGE SYSTEM
   ========================================================= */

img {

    border-radius: var(--radius-md);

}

.case-gallery img,
.hero-visual img {

    object-fit: cover;

}


/* =========================================================
   SIMPLE MOTION
   ========================================================= */

.hero,
.section {

    animation: fadeIn .8s ease;

}

@keyframes fadeIn {

    from {

        opacity: 0;
        transform: translateY(12px);

    }

    to {

        opacity: 1;
        transform: translateY(0);

    }

}

/* =========================================================
   CASES
   ========================================================= */

.case-block {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;

    margin-bottom: 90px;

}

.case-block.reverse {

    direction: rtl;

}

.case-block.reverse>* {

    direction: ltr;

}

.case-gallery {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

}

.case-gallery img {

    aspect-ratio: 1 / 1;

    object-fit: cover;

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-soft);

}

.case-item {

    flex: 1;

}

.case-tag {

    display: block;

    margin-bottom: 10px;

    text-align: center;

    font-size: .72rem;

    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;

    color: var(--color-primary);

}

.case-content h3 {

    font-family: var(--font-display);

    font-size: 2.6rem;

    line-height: 1.25;

    margin-bottom: 30px;

}

.case-content p {

    margin-bottom: 28px;

}

.case-benefits {

    list-style: none;

    margin: 30px 0;

    padding: 0;

}

.case-benefits li {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 16px;

    line-height: 1.65;

}

.case-benefits li::before {

    content: "✓";

    color: var(--color-primary);

    font-weight: 700;

    flex-shrink: 0;

}

.case-content blockquote {

    margin-top: 35px;

    padding-left: 24px;

    border-left: 3px solid var(--gold);

    font-style: italic;

    color: var(--text-soft);

}

.case-content blockquote span {

    display: block;

    margin-top: 12px;

    font-style: normal;

    font-weight: 600;

    color: var(--text);

}


/* =========================================================
   METHOD PREVIEW
   ========================================================= */

.method-preview {

    margin-top: 90px;

    padding: 60px;

    border-radius: var(--radius-lg);

    background: rgba(255, 255, 255, .04);

    border: 1px solid rgba(255, 255, 255, .08);

}

.method-preview h3 {

    text-align: center;

    color: white;

    font-family: var(--font-display);

    font-size: 2.2rem;

    margin-bottom: 50px;

}

.flow-intro {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;

    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .78);
}

.flow-intro::before {
    content: "";
    display: block;
    width: 72px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 20px;
    opacity: .9;
}

.flow {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 14px;

}

.flow-item {

    width: 100%;

    max-width: 680px;

    padding: 22px 28px;

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: var(--radius-md);

    text-align: center;

}

.flow-item strong {

    display: block;

    color: white;

    font-size: 1.05rem;

    margin-bottom: 6px;

}

.flow-item span {

    color: rgba(255, 255, 255, .75);

    font-size: .95rem;

}

.flow-arrow {

    color: var(--gold);

    font-size: 1.5rem;

}


/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonial-video-card {

    max-width: 900px;

    margin: 0 auto;

    background: white;

    padding: 60px;

    border-radius: var(--radius-lg);

    border: 1px solid var(--border);

    box-shadow: var(--shadow-soft);

    text-align: center;

}

.testimonial-highlight {

    font-size: 1.25rem;

    line-height: 1.8;

    margin-bottom: 24px;

    color: var(--text);

}

.testimonial-author {

    margin-bottom: 24px;

}

.testimonial-author strong {

    display: block;

    font-size: 1.1rem;

    margin-bottom: 8px;

}

.testimonial-author span {

    color: #6b6b6b;

    font-size: 1rem;

    font-weight: 500;

}

.testimonial-video-card .btn-secondary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 28px;

    border-radius: 999px;

    border: 1px solid #c6a063;

    background: transparent;

    color: #c6a063;

    text-decoration: none;

    font-weight: 600;

    transition: .25s ease;

    cursor: pointer;

}

.testimonial-video-card .btn-secondary:hover {

    background: #c6a063;

    color: white;

}

/* MODAL */

.video-modal {

    position: fixed;

    inset: 0;

    display: none;

    justify-content: center;

    align-items: center;

    z-index: 9999;

}

.video-modal.active {

    display: flex;

}

.video-modal-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .75);

}

.video-modal-content {

    position: relative;

    width: min(900px, 90vw);

    z-index: 2;

}

.video-close {

    position: absolute;

    top: -50px;

    right: 0;

    background: transparent;

    border: none;

    color: white;

    font-size: 42px;

    cursor: pointer;

}

.video-wrapper {

    position: relative;

    padding-bottom: 56.25%;

    height: 0;

    overflow: hidden;

    border-radius: 12px;

}

.video-wrapper iframe {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    border: none;

}

/* =========================================================
   CONTENT RHYTHM HELPERS
   ========================================================= */

.section .rich-text {

    max-width: 760px;

}

.container-narrow .rich-text {

    margin-inline: auto;

}

.section-dark .rich-text {
    max-width: 820px;
    margin: auto;

}

.section-dark .section-intro {

    margin-bottom: 50px;

}


/* =========================================================
   VISUAL BREATHING
   ========================================================= */

.section+.section {

    position: relative;

}

.section+.section::before {

    content: "";

    position: absolute;

    top: 0;

    left: 50%;

    transform: translateX(-50%);

    width: 120px;

    height: 1px;

    background: rgba(0, 0, 0, .05);

}

.section-dark+.section::before,
.section+.section-dark::before {

    display: none;

}


/* =========================================================
   QUOTES / EDITORIAL BLOCKS
   ========================================================= */

blockquote {

    position: relative;

}

blockquote::before {

    content: "“";

    position: absolute;

    left: -12px;

    top: -20px;

    font-size: 4rem;

    line-height: 1;

    opacity: .08;

    font-family: var(--font-display);

}

.offer-section {

    background: var(--bg-soft);

}

.offer-card {

    max-width: 820px;

    margin: 0 auto;

    text-align: center;

    background: white;

    border-radius: 32px;

    padding: 80px 60px;

    box-shadow: 0 25px 80px rgba(0, 0, 0, .12);

}

.offer-title {

    font-family: var(--font-display);

    font-size: 3rem;

    line-height: 1.05;

    font-weight: 500;

    margin-top: 20px;

}

.offer-description {

    max-width: 640px;

    margin: 28px auto 0;

    color: var(--text-soft);

}

.offer-features {

    margin-top: 50px;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;

    text-align: left;

}

.offer-feature {

    padding: 18px 20px;

    background: var(--bg-soft);

    border-radius: var(--radius-md);

    font-weight: 500;

}

.offer-exclusive {

    margin: 48px 0;

    padding: 36px;

    border: 1px solid rgba(212, 175, 55, .35);

    border-radius: 18px;

    background: #fffdf8;

}

.exclusive-badge {

    display: inline-block;

    padding: 6px 14px;

    border-radius: 999px;

    background: rgba(212, 175, 55, .15);

    color: var(--color-primary);

    font-size: .78rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .08em;

    margin-bottom: 18px;

}

.offer-exclusive h3 {

    margin-bottom: 18px;

}

.offer-exclusive p {

    margin-bottom: 18px;

}

.exclusive-note {

    margin-top: 24px;

    padding-top: 24px;

    border-top: 1px solid rgba(0, 0, 0, .08);

    font-weight: 600;

}

.offer-risk {

    margin: 2rem 0 1.5rem;

    font-size: 0.95rem;

    line-height: 1.6;

    text-align: center;

    color: var(--color-text-light);

    max-width: 560px;

    margin-left: auto;

    margin-right: auto;

}

.offer-risk strong {

    color: var(--color-text);

    font-weight: 600;

}

.price-block {

    margin-top: 30px;

}

.price-label {

    display: block;

    font-size: .85rem;

    text-transform: uppercase;

    letter-spacing: .15em;

    color: var(--text-soft);

}

.price {
    margin-top: 12px;
    font-family: "Inter SemiBold";
    font-weight: 600;
    font-size: 72px;
    letter-spacing: -2px;

    line-height: 1;

}

.installments,
.cash-price {
    margin-top: 12px;
    color: var(--text-soft);
    font-size: 1.5rem;
    font-weight: 500;
}

.offer-result {
    margin: 40px 0;
}

.offer-results {
    max-width: 620px;
    margin: 0 auto;
    text-align: left;
    list-style: none;
    padding: 0;
}

.offer-results li {
    margin-bottom: 18px;
}

.offer-card .btn-primary {
    margin-top: 20px;
}

.offer-guarantee {
    margin-top: 14px;
    font-size: 0.95rem;
    color: #6b6b6b;
    text-align: center;
}

/* =========================================================
   ABOUT
========================================================= */

.about-grid {

    display: grid;

    grid-template-columns: 340px 1fr;

    gap: 60px;

    align-items: center;

}

.about-photo img {

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-soft);

}

.about-caption {

    margin-top: 22px;

}

.about-caption strong {

    display: block;

    font-size: 1.15rem;

    margin-bottom: 4px;

}

.about-caption span {

    color: var(--text-soft);

    font-size: .95rem;

}

.about-instagram {

    display: inline-block;

    margin-top: 18px;

    color: var(--gold);

    font-size: .92rem;
    opacity: .88;

    font-weight: 600;

    transition: .25s ease;

}

.about-instagram:hover {

    color: var(--gold-hover);

}

.about-content .section-title {
    font-size: clamp(2.9rem, 4vw, 3.7rem);
    margin-top: 18px;

}

.about-content .rich-text {

    margin-top: 36px;

}

/* FAQ */

.faq-list {

    margin-top: 70px;

}

.faq-item {

    padding: 32px 0;

    border-bottom: 1px solid var(--border);

}

.faq-item h3 {

    font-size: 1.15rem;

    margin-bottom: 14px;

    font-weight: 600;

}

.faq-item p {

    color: var(--text-soft);

}



/* FINAL CTA */

.final-cta {

    text-align: center;

}

.final-cta .section-title {

    max-width: 900px;

    margin-inline: auto;

}

.final-cta .section-title+.section-title {

    margin-top: 12px;

}

.final-cta-subtitle {
    max-width: 760px;
    margin: 24px auto 0;
    font-size: 1.7rem;
    line-height: 1.4;
    text-align: center;
}

.final-cta .section-description {

    margin-inline: auto;

    margin-top: 32px;

}

.final-cta .btn-primary {

    margin-top: 42px;

}



/* FOOTER */

.footer {

    padding: 50px 0;

    border-top: 1px solid var(--border);

    background: white;

}

.footer-content {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

    color: var(--text-soft);

    font-size: .95rem;

}



/* TABLET */

@media (max-width: 1024px) {


    .hero-content {

        max-width: 100%;

    }



    .case-block {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .case-block.reverse {

        direction: ltr;

    }

    .about-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }

}



/* MOBILE */

@media (max-width: 768px) {

    body {

        font-size: 16px;

        line-height: 1.75;

    }

    .section {

        padding-block: 40px;

    }

    .hero {

        padding-top: 40px;
        padding-bottom: 40px;

    }

    .hero-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .container,
    .container-narrow {

        width: calc(100% - 32px);

    }

    .hero-title {
        font-size: 3rem;

    }

    .hero-benefits {

        margin: 26px 0;

    }

    .hero-benefits-list li {

        font-size: .95rem;

        line-height: 1.6;

    }

    .section-title {

        font-size: 2.5rem;

    }

    .section-intro {

        margin-bottom: 50px;

    }

    .case-gallery {

        grid-template-columns: 1fr;

    }

    .offer-features {

        grid-template-columns: 1fr;

    }

    .offer-card {

        padding: 50px 28px;

    }

    .method-preview {

        padding: 30px 20px;

    }

    .flow-item {

        padding: 18px;

    }

    .footer-content {

        flex-direction: column;

        text-align: center;

    }

    .about-photo {

        max-width: 340px;

        margin: 0 auto;

    }

    .final-cta-subtitle {
        font-size: 1.4rem;
    }

}



/* SMALL MOBILE */

@media (max-width: 480px) {

    .hero-title {

        font-size: 2.1rem;

    }

    .hero-subtitle {
        margin-top: 21px;
    }

    .section-title {

        font-size: 2.1rem;

    }

    .btn-primary {

        width: 100%;

    }

    .offer-card {

        border-radius: 24px;

    }

}

@media (max-width: 425px) {
    .mobile {
        display: inline;
    }

    .hero-content .desktop {
        display: none;
    }
}



/* POLISH */

.case-gallery img,
.hero-visual img {

    transition:
        transform .4s ease,
        box-shadow .4s ease;

}

.case-gallery img:hover,
.about-image img:hover,
.hero-visual img:hover {

    transform: translateY(-4px);

}

.offer-card {

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}

/* READING COMFORT */

.rich-text p {

    max-width: 72ch;

}

.case-content p {

    max-width: 65ch;

}

.offer-description {

    max-width: 60ch;

}