/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #1c1919;
    background-color: #f6f5f2;
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 90px 0;
}

.section-dark {
    background-color: #1c1919;
    color: #ffffff;
}

/* ============================================
   SHARED COMPONENTS
   ============================================ */
.eyebrow {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #c2a859;
    margin-bottom: 14px;
}

.eyebrow-center {
    display: block;
    text-align: center;
}

.callout-pill {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #c2a859;
    padding: 8px 18px;
    border: 1px solid rgba(194, 168, 89, 0.5);
    border-radius: 100px;
    margin-bottom: 22px;
    background-color: rgba(194, 168, 89, 0.08);
}

.callout-pill-gold {
    color: #c2a859;
}

.section-heading {
    font-size: clamp(22px, 3.4vw, 36px);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-align: center;
    margin-bottom: 0;
}

.section-heading::after {
    content: '';
    display: block;
    width: 44px;
    height: 3px;
    background-color: #c2a859;
    border-radius: 2px;
    margin: 18px auto 40px;
}

/* ============================================
   CHECKOUT HEADER + PROGRESS
   ============================================ */
.checkout-header {
    background-color: #1c1919;
    border-bottom: 1px solid rgba(194, 168, 89, 0.18);
    padding: 22px 0;
}

.checkout-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-logo {
    width: 150px;
    opacity: 0.9;
    flex-shrink: 0;
}

.progress {
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.progress-label {
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.progress-step.is-complete .progress-num {
    background-color: #c2a859;
    border-color: #c2a859;
    color: #1c1919;
}

.progress-step.is-complete .progress-label {
    color: rgba(255, 255, 255, 0.85);
}

.progress-step.is-active .progress-num {
    border-color: #c2a859;
    color: #c2a859;
    background-color: rgba(194, 168, 89, 0.12);
}

.progress-step.is-active .progress-label {
    color: #c2a859;
}

.progress-line {
    width: 34px;
    height: 1.5px;
    background-color: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.55);
    flex-shrink: 0;
}

.secure-badge svg {
    color: #c2a859;
}

/* ============================================
   CHECKOUT HERO STRIP
   ============================================ */
.checkout-hero {
    background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(194, 168, 89, 0.1) 0%, transparent 60%), #1c1919;
    color: #ffffff;
    padding: 60px 0 83px;
    text-align: center;
}

.checkout-hero h1 {
    font-size: clamp(26px, 3.6vw, 40px);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: 0.03em;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.checkout-hero-sub {
    font-size: clamp(15px, 1.6vw, 17px);
    color: rgba(255, 255, 255, 0.68);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ============================================
   CHECKOUT MAIN GRID
   ============================================ */
.checkout-main {
    padding: 55px 0 45px;
    background-color: #f6f5f2;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: -120px;
}

/* ============================================
   CHECKOUT CARDS
   ============================================ */
.checkout-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 32px 34px 34px;
    margin-bottom: 20px;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(28, 25, 25, 0.05);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.card-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #1c1919;
    color: #c2a859;
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.card-title {
    font-size: 16px;
    font-weight: 800;
    color: #1c1919;
    letter-spacing: 0.08em;
    margin: 0;
}

.accepted-methods {
    display: flex;
    gap: 6px;
    margin-left: auto;
}

.method-chip {
    font-family: 'Sora', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #555;
    padding: 5px 10px;
    background-color: #f0f0f0;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* ============================================
   STRIPE MOUNT
   ============================================ */
.stripe-mount {
    min-height: 240px;
    border: 1.5px dashed #d5d2ca;
    border-radius: 8px;
    background-color: #fafaf7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.stripe-placeholder {
    text-align: center;
    max-width: 340px;
}

.stripe-placeholder-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(194, 168, 89, 0.12);
    border-radius: 50%;
    color: #c2a859;
}

.stripe-placeholder-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #1c1919;
    margin-bottom: 8px;
}

.stripe-placeholder-note {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

.payment-legal {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #f0efeb;
    font-size: 12px;
    color: #888;
    line-height: 1.6;
}

.payment-legal svg {
    color: #c2a859;
    flex-shrink: 0;
    margin-top: 2px;
}

.payment-disclaimer {
    margin-top: 12px;
    font-size: 11px;
    line-height: 1.5;
    color: #999;
}

/* ============================================
   RIGHT COLUMN - ORDER SUMMARY
   ============================================ */
.checkout-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 28px;
    align-self: start;
}

.summary-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 28px 28px 26px;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(28, 25, 25, 0.05);
    border-top: 3px solid #c2a859;
}

.summary-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #1c1919;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0efeb;
}

.summary-item-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-transform: none;
    color: #1c1919;
    margin-bottom: 4px;
    line-height: 1.35;
}

.summary-item-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 2px;
}

.summary-item-host {
    font-size: 12px;
    color: #999;
    text-align: center;
}

.summary-item-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #1c1919;
    flex-shrink: 0;
}

.summary-includes {
    list-style: none;
    padding: 18px 0 4px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.summary-includes li {
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.55;
}

.summary-includes .check {
    color: #c2a859;
    font-weight: 900;
    flex-shrink: 0;
}

.summary-divider {
    height: 1px;
    background-color: #f0efeb;
    margin: 14px 0 18px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #1c1919;
}

.summary-total-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #c2a859;
    letter-spacing: -0.01em;
}

.summary-foot {
    font-size: 12px;
    color: #999;
    text-align: right;
    margin-top: 6px;
}

/* Guarantee card */
.guarantee-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 22px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid rgba(28, 25, 25, 0.05);
    border-left: 3px solid #c2a859;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.guarantee-icon {
    flex-shrink: 0;
}

.guarantee-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1c1919;
    margin-bottom: 6px;
}

.guarantee-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   MINI TESTIMONIAL (sidebar)
   ============================================ */
.mini-testimonial {
    background-color: #1c1919;
    color: #ffffff;
    border-radius: 12px;
    padding: 24px 26px;
    border-left: 3px solid #c2a859;
}

.mini-quote {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 16px;
    font-style: italic;
    text-transform: none;
}

.mini-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mini-name {
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #c2a859;
}

.mini-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

/* ============================================
   SOCIAL PROOF STRIP
   ============================================ */
.social-proof {
    background-color: #ffffff;
    border-top: 1px solid #ece9e2;
    border-bottom: 1px solid #ece9e2;
    padding: 40px 0;
}

.proof-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.proof-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 12px;
    border-right: 1px solid #ece9e2;
}

.proof-stat:last-child {
    border-right: none;
}

.proof-num {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 900;
    color: #c2a859;
    letter-spacing: -0.01em;
    line-height: 1;
}

.proof-label {
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #888;
}

/* ============================================
   TESTIMONIALS - DARK
   ============================================ */
.section-testimonials-dark {
    padding: 90px 0;
}

.section-testimonials-dark .section-heading {
    color: #ffffff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}

.testimonial-quote-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(194, 168, 89, 0.18);
    border-radius: 10px;
    padding: 30px 28px 26px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote-mark {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: #c2a859;
    line-height: 0.5;
    opacity: 0.6;
}

.quote-body {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    flex-grow: 1;
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 16px;
    border-top: 1px solid rgba(194, 168, 89, 0.18);
}

.quote-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #c2a859;
}

.quote-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   FAQ
   ============================================ */
.section-faq {
    background-color: #f6f5f2;
    padding-top: 45px;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(28, 25, 25, 0.05);
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    padding: 20px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1c1919;
    text-transform: none;
    letter-spacing: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    transition: color 0.2s ease;
    gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #c2a859;
    transition: transform 0.25s ease;
    line-height: 1;
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    content: '\2013';
}

.faq-item:hover summary { color: #c2a859; }

.faq-body {
    padding: 0 24px 22px;
}

.faq-body p {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
}

/* ============================================
   GOOGLE REVIEWS
   ============================================ */
.section-google-reviews {
    background-color: #ffffff;
    color: #1c1919;
    padding: 80px 0 80px;
    border-top: 1px solid #ece9e2;
}

.section-google-reviews .section-heading {
    color: #1c1919;
}

.google-reviews-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background-color: #0d0e10;
    padding: 48px 0;
    text-align: center;
}

.footer-logo {
    width: 140px;
    margin: 0 auto 16px;
    opacity: 0.55;
}

.footer-email {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 12px;
}

.footer-email a {
    color: #c2a859;
    text-decoration: underline;
    text-decoration-color: rgba(194, 168, 89, 0.4);
}

.copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c2a859;
}

/* ============================================
   RESPONSIVE: TABLET
   ============================================ */
@media (max-width: 1024px) {
    .checkout-grid {
        grid-template-columns: 1.4fr 1fr;
        gap: 28px;
    }

    .checkout-right {
        position: static;
    }

    .progress-line {
        width: 20px;
    }

    .progress-label {
        display: none;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
    }

    .proof-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 16px;
    }

    .proof-stat:nth-child(2) {
        border-right: none;
    }
}

/* ============================================
   RESPONSIVE: MOBILE (<= 768px)
   ============================================ */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .checkout-header {
        padding: 14px 0;
    }

    .checkout-header-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .header-logo {
        width: 110px;
    }

    .secure-badge {
        order: 3;
        width: 100%;
        justify-content: center;
        font-size: 10px;
    }

    .progress {
        order: 2;
        gap: 6px;
    }

    .progress-line {
        width: 18px;
    }

    .checkout-hero {
        padding: 40px 0 60px;
    }

    .checkout-hero h1 {
        font-size: clamp(22px, 6.5vw, 28px);
    }

    .checkout-main {
        padding: 32px 0 70px;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
        margin-top: -70px;
        gap: 16px;
    }

    .checkout-card {
        padding: 22px 20px 24px;
    }

    .card-header {
        gap: 10px;
    }

    .accepted-methods {
        margin-left: 0;
        width: 100%;
        flex-wrap: wrap;
    }

    .stripe-mount {
        min-height: 200px;
        padding: 20px;
    }

    .summary-card,
    .guarantee-card {
        padding: 22px 22px;
    }

    .summary-total-amount {
        font-size: 24px;
    }

    .section-google-reviews {
        padding: 56px 0 56px;
    }

    .section-testimonials-dark {
        padding: 64px 0;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .proof-row {
        grid-template-columns: 1fr 1fr;
        gap: 24px 8px;
    }

    .section-heading {
        font-size: clamp(20px, 5.5vw, 26px);
    }

    .faq-item summary {
        padding: 18px 20px;
        font-size: 14px;
    }

    .faq-body {
        padding: 0 20px 18px;
    }

    .faq-body p {
        font-size: 14px;
    }
}

/* ============================================
   RESPONSIVE: SMALL MOBILE (<= 480px)
   ============================================ */
@media (max-width: 480px) {
    .container,
    .container-narrow {
        padding: 0 16px;
    }

    .checkout-card {
        padding: 20px 16px 22px;
    }

    .summary-card,
    .guarantee-card {
        padding: 20px 18px;
    }

    .progress-num {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .progress-line {
        width: 14px;
    }

    .method-chip {
        font-size: 9px;
        padding: 4px 8px;
    }

    .summary-item-price {
        font-size: 16px;
    }

    .summary-total-amount {
        font-size: 22px;
    }

    .footer-links {
        gap: 16px;
    }
}
