.booths-hero {
    padding: 90px 0 70px;
    background: linear-gradient(135deg, #fff8ef 0%, #ffffff 55%, #f7efe4 100%);
}

.booths-hero-grid,
.booths-showcase-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: #f2dfc2;
    color: #8a6331;
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.booths-hero h1,
.booths-showcase h2,
.booths-actions h2,
.booths-features h2,
.next-model h2,
.booths-cta h2 {
    color: #1f1f1f;
    font-weight: 800;
    line-height: 1.12;
}

.booths-hero h1 {
    font-size: clamp(38px, 5vw, 64px);
    margin-bottom: 22px;
}

.booths-hero p,
.showcase-content p,
.next-model p,
.booths-cta p {
    color: #5c5c5c;
    font-size: 17px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-actions.center {
    justify-content: center;
}


.photo-card {
    background: var(--white);
    padding: 18px;
    border-radius: 38px;
    box-shadow: var(--shadow);
    transform: rotate(2deg);
    animation: float 5s ease-in-out infinite;
}

.photo-card img {
    border-radius: 28px;
    height: 560px;
    object-fit: cover;
}


.btn-main,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: .25s ease;
}

.btn-main {
    background: #c59d5f;
    color: #fff;
    box-shadow: 0 12px 28px rgba(197, 157, 95, .28);
}

.btn-main:hover {
    background: #ad8547;
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #fff;
    color: #222;
    border: 1px solid rgba(0,0,0,.12);
}

.btn-secondary:hover {
    background: #222;
    color: #fff;
}

.btn-secondary.light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.35);
}

.booths-hero-image img,
.showcase-image img {
    width: 100%;
    border-radius: 28px;
    display: block;
    box-shadow: 0 22px 60px rgba(0,0,0,.16);
    object-fit: cover;
}

.booths-actions,
.booths-features,
.next-model {
    padding: 80px 0;
    background: #fff;
}

.booths-actions h2,
.booths-features h2 {
    font-size: clamp(30px, 4vw, 46px);
    margin-bottom: 34px;
}

.booths-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.booth-action-card,
.feature-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 24px;
    padding: 28px;
    text-decoration: none;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
    transition: .25s ease;
}

.booth-action-card:hover,
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,.10);
}

.booth-action-card i,
.feature-card i {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: #f4e6d1;
    color: #b8843e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.booth-action-card h3,
.feature-card h3 {
    color: #222;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 10px;
}

.booth-action-card p,
.feature-card p {
    color: #666;
    line-height: 1.65;
    margin: 0;
}

.booths-showcase {
    padding: 90px 0;
    background: #f8f5ef;
}

.booths-showcase h2 {
    font-size: clamp(32px, 4vw, 50px);
    margin-bottom: 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.booths-stats {
    background: #1f1f1f;
    padding: 55px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stats-grid div {
    padding: 24px 12px;
}

.stats-grid strong {
    display: block;
    color: #c59d5f;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 8px;
}

.stats-grid span {
    color: #fff;
    font-weight: 600;
}

.next-model-card {
    background: linear-gradient(135deg, #fff8ef, #ffffff);
    border: 1px solid rgba(197,157,95,.24);
    border-radius: 28px;
    padding: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 16px 45px rgba(0,0,0,.07);
}

.next-model h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 14px;
}

.booths-cta {
    background: #222;
    text-align: center;
    padding: 85px 0;
}

.booths-cta h2 {
    color: #fff;
    font-size: clamp(32px, 4vw, 52px);
    margin-bottom: 16px;
}

.booths-cta p {
    color: rgba(255,255,255,.78);
    max-width: 680px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .booths-hero-grid,
    .booths-showcase-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .booths-actions-grid,
    .features-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .next-model-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .booths-hero,
    .booths-actions,
    .booths-features,
    .booths-showcase,
    .next-model,
    .booths-cta {
        padding: 55px 0;
    }

    .booths-actions-grid,
    .features-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .booth-action-card,
    .feature-card,
    .next-model-card {
        padding: 24px;
        border-radius: 20px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-main,
    .btn-secondary {
        width: 100%;
    }
}


.booths-features {
    text-align: center;
}

.booths-features .section-badge {
    margin-left: auto;
    margin-right: auto;
}

.booths-features h2 {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    margin-top: 34px;
}

.feature-card {
    text-align: left;
}