/* ========================================
   BLACK COVEN SALON - Landing Page
   Conversion-Focused Design
   ======================================== */

/* CSS Variables */
:root {
    --black: #0d0d0d;
    --black-light: #141418;
    --black-lighter: #1a1a22;
    --gray-dark: #252530;
    --gray: #35354a;
    --gray-medium: #555568;
    --gray-light: #9999aa;
    --white: #ffffff;
    --white-off: #f0f0f5;
    --cream: #faf8f5;
    --purple: #7c5cbf;
    --purple-light: #a78bfa;
    --purple-dark: #5b3d99;
    --purple-glow: rgba(124, 92, 191, 0.3);
    --emerald: #1a5c4c;
    --emerald-light: #2a8c7c;
    --gold: #d4af37;
    --gold-light: #f0d875;

    --font-display: 'Marcellus', Georgia, serif;
    --font-body: 'Nunito', 'Helvetica Neue', sans-serif;

    --transition: all 0.3s ease;
    --shadow: 0 10px 40px rgba(0,0,0,0.4);
    --shadow-light: 0 5px 20px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 60px rgba(124, 92, 191, 0.2);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   STICKY HEADER
   ======================================== */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-dark);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 45px;
    width: auto;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
}

.header-phone:hover {
    background: linear-gradient(135deg, var(--purple-light), var(--purple));
    transform: scale(1.02);
}

.header-phone svg {
    flex-shrink: 0;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-lighter) 50%, var(--purple-dark) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.2), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(255,255,255,0.5), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkle 5s infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    padding-right: 20px;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--purple-light);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 92, 191, 0.2);
    border: 1px solid var(--purple);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 25px;
}

.hero-location svg {
    color: var(--purple-light);
    flex-shrink: 0;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.stars-rating {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.trust-badge span {
    font-size: 0.9rem;
    color: var(--white-off);
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: linear-gradient(135deg, var(--white) 0%, #e6e6e6 100%);
    color: var(--black);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
}

.cta-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(107, 76, 154, 0.4);
}

/* Hero Form */
.hero-form-wrapper {
    position: relative;
}

.form-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 5px;
}

.form-subtitle {
    text-align: center;
    color: var(--purple-light);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--gray-dark);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input::placeholder {
    color: var(--gray-light);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--purple);
    background: rgba(107, 76, 154, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

.form-group select option {
    background: var(--black);
    color: var(--white);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--purple-light), var(--purple));
    border: none;
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(107, 76, 154, 0.4);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-light);
    margin-top: 15px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    padding: 100px 0;
    background: var(--black);
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-row:last-child {
    margin-bottom: 0;
}

.service-row.reverse {
    direction: rtl;
}

.service-row.reverse > * {
    direction: ltr;
}

.service-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-image.placeholder {
    background: linear-gradient(135deg, var(--purple-dark), var(--emerald));
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
}

.placeholder-content span {
    font-size: 4rem;
    color: var(--white);
    display: block;
    margin-bottom: 10px;
}

.placeholder-content p {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 3px;
}

.service-content {
    padding: 20px 0;
}

.service-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(107, 76, 154, 0.2);
    border: 1px solid var(--purple);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--purple-light);
    margin-bottom: 20px;
}

.service-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 15px;
}

.service-content > p {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: var(--white-off);
    font-size: 0.95rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--white) 0%, #e6e6e6 100%);
    color: var(--black);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--purple-dark), var(--black));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--white);
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--purple-light);
}

.stat-label {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-section {
    padding: 100px 0;
    background: var(--black);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--gray-light);
    font-size: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team-section {
    padding: 100px 0;
    background: var(--black);
}

.team-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.team-image {
    border-radius: 20px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    transition: var(--transition);
}

.team-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 20px;
}

.team-content > p {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.team-specialties {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.specialty {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.specialty-icon {
    color: var(--purple-light);
    font-size: 1.2rem;
}

/* ========================================
   ATMOSPHERE SECTION
   ======================================== */
.atmosphere-section {
    padding: 100px 0;
    background: var(--black-lighter);
}

.atmosphere-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.atmosphere-item {
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.atmosphere-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.atmosphere-item:hover img {
    transform: scale(1.05);
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--purple-dark), var(--black));
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    margin-bottom: 15px;
}

.cta-content > p {
    color: var(--gray-light);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.cta-trust {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.cta-trust span {
    color: var(--white-off);
    font-size: 0.95rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: linear-gradient(135deg, var(--white) 0%, #e6e6e6 100%);
    color: var(--black);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255,255,255,0.2);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 35px;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--black);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 50px 0 30px;
    background: var(--black);
    border-top: 1px solid var(--gray-dark);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-dark);
    margin-bottom: 20px;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-address {
    font-size: 0.95rem;
    color: var(--gray-light);
    margin-bottom: 5px;
}

.footer-phone {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--purple-light);
}

.footer-phone:hover {
    color: var(--white);
}

.footer-link {
    font-size: 0.9rem;
    color: var(--gray-light);
}

.footer-link:hover {
    color: var(--white);
}

.footer-stars {
    font-size: 1.2rem;
    color: var(--purple-light);
    letter-spacing: 5px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-light);
}

/* ========================================
   FLOATING CALL BUTTON (Mobile)
   ======================================== */
.floating-call {
    display: none;
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--purple-light), var(--purple));
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(107, 76, 154, 0.5);
    z-index: 999;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 5px 25px rgba(107, 76, 154, 0.5); }
    50% { box-shadow: 0 5px 40px rgba(107, 76, 154, 0.8); }
    100% { box-shadow: 0 5px 25px rgba(107, 76, 154, 0.5); }
}

.floating-call:hover {
    transform: scale(1.1);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        padding-right: 0;
    }

    .trust-badge {
        justify-content: center;
    }

    .hero-form-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-row.reverse {
        direction: ltr;
    }

    .service-content {
        text-align: center;
    }

    .service-features {
        text-align: left;
        max-width: 300px;
        margin: 0 auto 25px;
    }

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

    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-content {
        text-align: center;
    }

    .team-specialties {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .atmosphere-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .floating-call {
        display: flex;
    }

    .cta-phone {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header-phone span {
        display: none;
    }

    .header-phone {
        padding: 12px;
        border-radius: 50%;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   POPUP MODAL
   ======================================== */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-overlay.active {
    display: flex;
}

.popup-modal {
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--purple-dark) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    position: relative;
    animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--gray-light);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.popup-close:hover {
    color: var(--white);
}

.popup-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 5px;
}

.popup-title span {
    color: var(--purple-light);
}

.popup-subtitle {
    text-align: center;
    color: var(--gray-light);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-form input,
.popup-form select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--gray-dark);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.popup-form input::placeholder {
    color: var(--gray-light);
}

.popup-form input:focus,
.popup-form select:focus {
    outline: none;
    border-color: var(--purple);
    background: rgba(107, 76, 154, 0.1);
}

.popup-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

.popup-form select option {
    background: var(--black);
    color: var(--white);
}

/* Button styles for popup triggers */
button.btn-cta {
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

/* ========================================
   HERO BENEFITS LIST
   ======================================== */
.hero-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 1rem;
    color: var(--white-off);
}

.benefit-icon {
    color: var(--purple-light);
    font-weight: bold;
    font-size: 1.1rem;
}

/* ========================================
   SECTION LABEL
   ======================================== */
.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--purple-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--gray-light);
    font-size: 1.1rem;
    margin-top: 10px;
}

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.trust-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
}

.trust-label {
    font-size: 0.85rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   PAIN SECTION
   ======================================== */
.pain-section {
    padding: 100px 0;
    background: var(--cream);
    color: var(--black);
}

.pain-section h2 {
    color: var(--black);
}

.pain-section .section-label {
    color: var(--purple);
}

.pain-section .pain-intro {
    color: var(--gray-medium);
}

.pain-section .pain-points li {
    color: var(--gray-dark);
}

.pain-section .pain-solution {
    color: var(--gray-dark);
    background: rgba(124, 92, 191, 0.1);
    border-left-color: var(--purple);
}

.pain-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.pain-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    margin-bottom: 20px;
}

.pain-intro {
    color: var(--gray-light);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.pain-points {
    list-style: none;
    margin-bottom: 25px;
}

.pain-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--white-off);
}

.pain-icon {
    color: #ff6b6b;
    font-weight: bold;
    font-size: 1.1rem;
}

.pain-solution {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(107, 76, 154, 0.1);
    border-left: 3px solid var(--purple);
    border-radius: 0 10px 10px 0;
}

.pain-image {
    border-radius: 20px;
    overflow: hidden;
}

.pain-image img {
    width: 100%;
    height: auto;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--white-off);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.author-name {
    font-weight: 600;
    color: var(--white);
}

.author-service {
    font-size: 0.85rem;
    color: var(--purple-light);
}

.testimonials-cta {
    text-align: center;
}

/* ========================================
   VALUE SECTIONS
   ======================================== */
.value-section {
    padding: 100px 0;
    background: var(--black);
}

.value-section.alt {
    background: var(--cream);
    color: var(--black);
}

.value-section.alt h2,
.value-section.alt .section-label {
    color: var(--purple-dark);
}

.value-section.alt p,
.value-section.alt .value-benefits li {
    color: var(--gray-dark);
}

.value-section.alt .value-benefits li strong {
    color: var(--black);
}

.value-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.value-row.reverse {
    direction: rtl;
}

.value-row.reverse > * {
    direction: ltr;
}

.value-image {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.value-image:hover img {
    transform: scale(1.05);
}

.value-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 15px;
}

.value-content > p {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.value-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.value-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--white-off);
}

.value-benefits li strong {
    color: var(--white);
}

/* ========================================
   COMPARISON TABLE
   ======================================== */
.comparison-section {
    padding: 100px 0;
    background: var(--cream);
    color: var(--black);
}

.comparison-section h2 {
    color: var(--black);
}

.comparison-section .section-label {
    color: var(--purple);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.comparison-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 18px 25px;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.comparison-table th {
    background: var(--gray-dark);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
}

.comparison-table th.highlight {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: var(--white);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--black);
}

.comparison-table td.highlight {
    background: rgba(124, 92, 191, 0.1);
}

.comparison-table .check {
    color: #22c55e;
    font-size: 1.3rem;
    font-weight: bold;
}

.comparison-table .x {
    color: #ef4444;
    font-size: 1rem;
}

.comparison-table tbody tr:hover {
    background: rgba(124, 92, 191, 0.05);
}

.comparison-cta {
    text-align: center;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--purple-dark) 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 15px;
    position: relative;
    backdrop-filter: blur(10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--purple-light), var(--purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin: 0 auto 25px;
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.step-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.steps-cta {
    text-align: center;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    padding: 100px 0;
    background: var(--cream);
    color: var(--black);
}

.faq-section h2 {
    color: var(--black);
}

.faq-section .section-label {
    color: var(--purple);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto 40px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    background: none;
    border: none;
    color: var(--black);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--purple);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--purple);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 25px;
}

.faq-answer p {
    color: var(--gray-dark);
    font-size: 1rem;
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
}

.faq-cta p {
    color: var(--gray-dark);
    margin-bottom: 15px;
}

/* ========================================
   URGENCY SECTION
   ======================================== */
.urgency-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--black) 50%, var(--purple-dark) 100%);
    text-align: center;
}

.urgency-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    margin-bottom: 15px;
}

.urgency-content > p {
    color: var(--gray-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.urgency-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--white-off);
}

.urgency-icon {
    font-size: 1.3rem;
}

.urgency-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 22px 45px;
    background: linear-gradient(135deg, var(--white) 0%, #e6e6e6 100%);
    color: var(--black);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 10px 40px rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255,255,255,0.3);
}

.urgency-phone {
    color: var(--gray-light);
    font-size: 1rem;
}

.urgency-phone a {
    color: var(--purple-light);
    font-weight: 600;
}

.urgency-phone a:hover {
    color: var(--white);
}

/* ========================================
   RESPONSIVE UPDATES
   ======================================== */
@media (max-width: 1024px) {
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .pain-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pain-image {
        order: -1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .value-row.reverse {
        direction: ltr;
    }

    .value-content {
        text-align: center;
    }

    .value-benefits {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 30px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .trust-number {
        font-size: 2rem;
    }

    .urgency-benefits {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .hero-benefits {
        text-align: left;
        max-width: 350px;
        margin: 0 auto 30px;
    }
}

@media (max-width: 480px) {
    .trust-items {
        grid-template-columns: 1fr 1fr;
    }

    .trust-number {
        font-size: 1.8rem;
    }

    .btn-cta-large {
        padding: 18px 30px;
        font-size: 1rem;
    }
}
