/* =====================================================
   ACHAT-PHOTOBOOTH.CSS - PAGE VENTE PHOTOBOOTH LBAM
===================================================== */

.achat-hero {
    padding: 110px 0 90px;
    background:
        radial-gradient(circle at 15% 20%, rgba(199,161,90,.22), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(0,0,0,.08), transparent 28%),
        linear-gradient(135deg, #faf7f1 0%, #f1e6d4 100%);
    overflow: hidden;
}

.achat-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
}

.achat-hero-content h1 {
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.02;
    font-weight: 900;
    color: #171717;
    letter-spacing: -2px;
    margin: 18px 0 26px;
}

.achat-hero-content p {
    font-size: 19px;
    line-height: 1.8;
    color: #4f4a42;
    max-width: 690px;
    margin-bottom: 34px;
}

.achat-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.achat-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 620px;
}

.achat-hero-stats div {
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(199,161,90,.28);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 16px 40px rgba(0,0,0,.06);
    backdrop-filter: blur(8px);
}

.achat-hero-stats strong {
    display: block;
    color: #171717;
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}

.achat-hero-stats span {
    color: #6c6255;
    font-size: 14px;
    font-weight: 700;
}

.achat-hero-visual {
    position: relative;
}

.photo-card {
    background: #fff;
    padding: 12px;
    border-radius: 38px;
    box-shadow: var(--shadow);
    transform: rotate(2deg);
    animation: float 5s ease-in-out infinite;
    overflow: hidden;
}

.photo-card img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: none;
}


.achat-hero-visual img {
    width: 100%;
}

/* INTRO */

.achat-intro-section {
    margin-top: -42px;
    position: relative;
    z-index: 3;
}

.achat-intro-card {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 36px;
    align-items: center;
    background: #fff;
    border-radius: 28px;
    padding: 42px;
    box-shadow: 0 20px 55px rgba(0,0,0,.09);
    border: 1px solid rgba(0,0,0,.05);
}

.achat-intro-card h2,
.section-heading h2,
.achat-rentability-section h2,
.achat-final-card h2,
.achat-links-card h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    font-weight: 900;
    color: #171717;
    letter-spacing: -1.3px;
    margin: 16px 0 0;
}

.achat-intro-card p,
.section-heading p,
.achat-rentability-section p,
.achat-final-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #625b51;
    margin: 0;
}

/* FEATURES */

.achat-features-section,
.achat-pricing-section,
.achat-target-section {
    padding: 90px 0;
    background: #fff;
}

.section-heading {
    max-width: 850px;
    margin: 0 auto 46px;
    text-align: center;
}

.section-heading p {
    margin-top: 18px;
}

.achat-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.achat-feature-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 26px;
    padding: 32px;
    box-shadow: 0 16px 40px rgba(0,0,0,.055);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.achat-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(199,161,90,.45);
    box-shadow: 0 24px 55px rgba(0,0,0,.09);
}

.achat-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3eadb;
    color: #a47a32;
    font-size: 26px;
    margin-bottom: 22px;
}

.achat-feature-card h3 {
    font-size: 22px;
    color: #171717;
    font-weight: 900;
    margin-bottom: 12px;
}

.achat-feature-card p {
    color: #625b51;
    line-height: 1.75;
    margin: 0;
}

/* PRICING */

.achat-pricing-section {
    background: #f8f4ec;
}

.achat-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    align-items: stretch;
}

.achat-pricing-card {
    position: relative;
    background: #fff;
    border-radius: 30px;
    padding: 38px;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 20px 55px rgba(0,0,0,.07);
    display: flex;
    flex-direction: column;
}

.achat-pricing-featured {
    background: #1f1f1f;
    color: #fff;
    border-color: rgba(199,161,90,.55);
    box-shadow: 0 26px 70px rgba(0,0,0,.2);
}

.achat-popular-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    background: #c7a15a;
    color: #171717;
    font-weight: 900;
    font-size: 13px;
    border-radius: 999px;
    padding: 8px 14px;
}

.achat-pricing-header h3 {
    font-size: 28px;
    font-weight: 900;
    margin: 0 0 12px;
    color: #171717;
    padding-right: 120px;
}

.achat-pricing-featured .achat-pricing-header h3 {
    color: #fff;
}

.achat-pricing-header p {
    color: #625b51;
    line-height: 1.75;
    margin: 0;
}

.achat-pricing-featured .achat-pricing-header p {
    color: rgba(255,255,255,.78);
}

.achat-price {
    font-size: 52px;
    line-height: 1;
    font-weight: 950;
    color: #171717;
    letter-spacing: -2px;
    margin: 32px 0 28px;
}

.achat-pricing-featured .achat-price {
    color: #fff;
}

.achat-price span {
    display: inline-block;
    font-size: 15px;
    font-weight: 800;
    color: #8a8073;
    letter-spacing: 0;
    margin-left: 6px;
}

.achat-pricing-featured .achat-price span {
    color: #c7a15a;
}

.achat-pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 34px;
}

.achat-pricing-card li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 11px 0;
    color: #4f4a42;
    line-height: 1.45;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.achat-pricing-featured li {
    color: rgba(255,255,255,.88);
    border-bottom-color: rgba(255,255,255,.1);
}

.achat-pricing-card li i {
    color: #c7a15a;
    margin-top: 2px;
}

.achat-pricing-card a {
    margin-top: auto;
    align-self: flex-start;
}

/* RENTABILITY */

.achat-rentability-section {
    padding: 90px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(199,161,90,.18), transparent 32%),
        #171717;
    color: #fff;
}

.achat-rentability-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 44px;
    align-items: center;
}

.achat-rentability-section h2 {
    color: #fff;
}

.achat-rentability-section p {
    color: rgba(255,255,255,.78);
    margin-top: 20px;
}

.achat-rentability-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.achat-rentability-card div {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    padding: 28px 22px;
    text-align: center;
}

.achat-rentability-card strong {
    display: block;
    font-size: 38px;
    color: #c7a15a;
    font-weight: 950;
    line-height: 1;
    margin-bottom: 12px;
}

.achat-rentability-card span {
    color: rgba(255,255,255,.8);
    font-weight: 700;
}

/* COMPARISON */

.achat-compare-section {
    padding: 90px 0;
    background: #fff;
}

.achat-table-wrap {
    overflow-x: auto;
    border-radius: 28px;
    box-shadow: 0 20px 55px rgba(0,0,0,.08);
}

.achat-compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    overflow: hidden;
}

.achat-compare-table th {
    background: #171717;
    color: #fff;
    padding: 20px 22px;
    text-align: left;
    font-size: 16px;
}

.achat-compare-table td {
    padding: 20px 22px;
    border-bottom: 1px solid #eee;
    color: #514b43;
    font-weight: 600;
}

.achat-compare-table tr:last-child td {
    border-bottom: 0;
}

.achat-compare-table td:first-child {
    color: #171717;
    font-weight: 900;
}

.yes {
    color: #24864d;
    font-weight: 900;
}

.no {
    color: #b23b3b;
    font-weight: 900;
}

/* TARGET */

.achat-target-section {
    background: #f8f4ec;
}

.achat-target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.achat-target-grid div {
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    text-align: center;
    font-size: 18px;
    font-weight: 900;
    color: #171717;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: 0 14px 36px rgba(0,0,0,.055);
}

/* LINKS */

.achat-links-section {
    padding: 70px 0;
    background: #fff;
}

.achat-links-card {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 32px;
    align-items: center;
    background: #f8f4ec;
    border-radius: 30px;
    padding: 42px;
}

.achat-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.achat-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: #fff;
    color: #171717;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.achat-links a:hover {
    background: #c7a15a;
    color: #171717;
    transform: translateY(-2px);
}

/* FINAL CTA */

.achat-final-cta {
    padding: 70px 0 100px;
    background: #fff;
}

.achat-final-card {
    text-align: center;
    background:
        radial-gradient(circle at 80% 20%, rgba(199,161,90,.2), transparent 30%),
        #171717;
    border-radius: 34px;
    padding: 64px 34px;
    color: #fff;
    box-shadow: 0 28px 70px rgba(0,0,0,.18);
}

.achat-final-card h2 {
    color: #fff;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.achat-final-card p {
    color: rgba(255,255,255,.78);
    max-width: 760px;
    margin: 22px auto 34px;
}

/* RESPONSIVE */

@media (max-width: 991px) {
    .achat-hero-grid,
    .achat-intro-card,
    .achat-rentability-grid,
    .achat-links-card {
        grid-template-columns: 1fr;
    }

    .achat-hero-visual img {
        height: 460px;
    }

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

    .achat-pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .achat-hero {
        padding: 82px 0 70px;
    }

    .achat-hero-content h1 {
        letter-spacing: -1px;
    }

    .achat-hero-content p {
        font-size: 17px;
    }

    .achat-hero-stats,
    .achat-features-grid,
    .achat-target-grid,
    .achat-rentability-card {
        grid-template-columns: 1fr;
    }

    .achat-hero-visual::before {
        inset: 22px -12px -12px 22px;
        border-radius: 26px;
    }

    .achat-hero-visual img {
        height: 360px;
        border-radius: 26px;
    }

    .achat-intro-card,
    .achat-pricing-card,
    .achat-links-card {
        padding: 28px;
        border-radius: 24px;
    }

    .achat-features-section,
    .achat-pricing-section,
    .achat-rentability-section,
    .achat-compare-section,
    .achat-target-section {
        padding: 70px 0;
    }

    .achat-pricing-header h3 {
        padding-right: 0;
        font-size: 24px;
    }

    .achat-popular-badge {
        position: static;
        display: inline-block;
        margin-bottom: 18px;
    }

    .achat-price {
        font-size: 42px;
    }

    .achat-compare-table th,
    .achat-compare-table td {
        padding: 15px;
        font-size: 14px;
    }

    .achat-final-card {
        padding: 44px 24px;
        border-radius: 26px;
    }
}

.btn-main,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: all .25s ease;
}

.btn-main {
    background: #151515;
    color: #fff;
    border: 2px solid #151515;
}

.btn-main:hover {
    background: #c7a15a;
    border-color: #c7a15a;
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #fff;
    color: #151515;
    border: 2px solid rgba(0,0,0,.14);
}

.btn-secondary:hover {
    background: #151515;
    color: #fff;
    border-color: #151515;
    transform: translateY(-2px);
}