/* MOBILE CAROUSEL STYLES */
@media (max-width: 768px) {
  .what-you-get-wrapper,
  .who-is-this-for-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0; /* Remove extra gap for smooth snap */
    padding-bottom: 32px; /* Space for dots */
    scrollbar-width: none; /* Firefox */
  }
  .what-you-get-wrapper::-webkit-scrollbar,
  .who-is-this-for-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }
  .what-you-get-card,
  .who-is-this-for-card {
    min-width: 100%;
    flex: 0 0 100%;
    scroll-snap-align: center;
    box-sizing: border-box;
    margin: 0;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    background: #fff;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  /* Center carousel wrapper */
  .what-you-get-section,
  .who-is-this-for-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  /* Dots indicator styles */
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: -16px;
    margin-bottom: 8px;
  }
  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
    transition: background 0.3s;
  }
  .carousel-dot.active {
    background: #007aff;
  }
}
.premium-modal-actions-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}
.premium-btn-block {
    width: 100%;
    display: block;
}
/* Payment Integration Card Modal (reuse premium-modal styles) */
.subscription-modal.premium-modal .subscription-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 18px 24px 18px;
    background: linear-gradient(135deg, #f7f6f4 0%, #ece9e6 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(30,30,40,0.12), 0 1.5px 6px rgba(0,0,0,0.07);
    min-width: 270px;
    max-width: 370px;
    margin: 0 auto;
}
.subscription-modal.premium-modal .premium-modal-title {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #181818;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.subscription-modal.premium-modal .premium-btn-secondary {
    margin-top: 8px;
    width: 100%;
    font-size: 1rem;
    padding: 13px 0;
    border-radius: 14px;
    border: 1.5px solid #e0e0e0;
    background: transparent;
    color: #222;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
}
.subscription-modal.premium-modal .premium-btn-secondary:hover {
    border-color: #181818;
    color: #181818;
    background: #f7f6f4;
}
@media (max-width: 767px) {
    .nav-auth .member-login {
        font-size: 13px !important;
        padding: 6px 14px !important;
        border-radius: 5px !important;
        min-width: unset !important;
    }
}
/* ============================================
   VOGUEPATH - MODERN RESPONSIVE CSS
   Mobile-first, clean, premium design
   ============================================ */

/* ============ RESET & VARIABLES ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-dark: #1a1a1a;
    --primary-light: #ffffff;
    --accent-color: #d4a574;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --background-light: #f9f9f9;
    --success-green: #2ecc71;
    --warning-red: #e74c3c;
    
    /* Typography */
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-dark);
    background-color: var(--primary-light);
}

/* Top banner offset to prevent content being covered */
:root {
    --top-banner-height: 0px;
}

/* When banner present, push content down so it doesn't block interactions */
body {
    padding-top: 0;
}

/* ============ CONTAINER & LAYOUT ============ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--primary-dark);
    font-weight: 600;
}

h1 {
    font-size: clamp(28px, 5vw, 56px);
    margin-bottom: var(--spacing-lg);
}

h2 {
    font-size: clamp(24px, 4vw, 40px);
    margin-bottom: var(--spacing-lg);
}

h3 {
    font-size: clamp(18px, 3vw, 28px);
    margin-bottom: var(--spacing-md);
}

h4 {
    font-size: 18px;
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
    line-height: 1.8;
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-color);
}

/* ============ NAVIGATION ============ */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
}

.nav-links {
    display: none;
    list-style: none;
    gap: var(--spacing-xl);
}

.nav-links a {
    font-weight: 500;
    color: var(--primary-dark);
}

/* Top floating banner */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--top-banner-height);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.7);
    color: #ffffff;
    font-size: 13px;
    z-index: 1200;
    pointer-events: none; /* allow interactions through banner area */
}

.top-banner::selection { background: transparent; }

.nav-links a:hover {
    color: var(--accent-color);
}

/* Mobile-first: Show nav links on larger screens */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

/* Navigation auth buttons (Login / Sign Up) */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 16px;
}

.nav-auth .auth-link {
    color: var(--primary-dark);
    font-weight: 500;
    text-decoration: none;
    padding: 6px 8px;
}

.nav-auth .auth-cta {
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 6px;
}

@media (max-width: 767px) {
    .nav-auth { gap: 8px; }
    .nav-auth .auth-cta { padding: 6px 10px; font-size: 13px; }
}

/* ============ BUTTONS ============ */
.cta-button {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-xl);
    background-color: var(--primary-dark);
    color: var(--primary-light);
    border: 2px solid var(--primary-dark);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-align: center;
}

.cta-button:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-dark);
}

.cta-button:active {
    transform: translateY(2px);
}

.primary-cta {
    width: 100%;
    margin: var(--spacing-lg) 0;
}

.pricing-cta {
    width: 100%;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg) var(--spacing-xl);
    font-size: 18px;
}

@media (min-width: 768px) {
    .primary-cta {
        width: auto;
    }
    
    .pricing-cta {
        width: auto;
    }
}

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 700px;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.hero-logo {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 700;
    color: var(--primary-light);
    margin: 0;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: clamp(16px, 3vw, 24px);
    color: rgba(255, 255, 255, 0.95);
    margin: var(--spacing-md) 0;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero .primary-cta {
    width: auto;
    margin: var(--spacing-xl) 0 0 0;
    padding: var(--spacing-md) var(--spacing-xxl);
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 600;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    border: 2px solid var(--accent-color);
    transition: all var(--transition-smooth);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.3);
    letter-spacing: 0.5px;
}

.hero .primary-cta:hover {
    background-color: transparent;
    color: var(--accent-color);
    box-shadow: 0 8px 32px rgba(212, 165, 116, 0.5);
    transform: translateY(-2px);
}

.hero .primary-cta:active {
    transform: translateY(0);
}

.trust-text {
    font-size: clamp(12px, 2vw, 14px);
    color: #ffffff;
    margin: var(--spacing-md) 0 0 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .hero {
        min-height: 500px;
    }
    
    .hero-logo {
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-title {
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-subtitle {
        margin-bottom: var(--spacing-md);
    }
    
    .hero-content {
        gap: var(--spacing-md);
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero {
        min-height: 600px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero {
        min-height: 100vh;
    }
}

/* Pricing Hero Display */
.pricing-hero {
    margin: var(--spacing-xxl) 0;
    padding: var(--spacing-xl) var(--spacing-md);
    background-color: var(--primary-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.original-price {
    font-size: 24px;
    color: var(--text-light);
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--warning-red);
}

.current-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
}

.period {
    font-size: 24px;
    font-weight: 500;
}

.offer-badge {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: center;
}

.discount-tag {
    display: inline-block;
    background-color: var(--success-green);
    color: var(--primary-light);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.limited-tag {
    display: inline-block;
    background-color: var(--warning-red);
    color: var(--primary-light);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
}

.trust-text {
    font-size: 14px;
    color: #ffffff;
    margin-top: var(--spacing-lg);
}

@media (min-width: 768px) {
    .hero {
        padding: var(--spacing-xxl) var(--spacing-lg);
    }
    
    .price-display {
        flex-direction: row;
        justify-content: center;
        gap: var(--spacing-xl);
        align-items: baseline;
    }
    
    .offer-badge {
        flex-direction: row;
        gap: var(--spacing-md);
    }
}

/* ============ SECTION STYLES ============ */
section {
    padding: var(--spacing-xxl) var(--spacing-md);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--primary-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto var(--spacing-xxl);
}

/* ============ SERVICE GRID - GRID-BASED CARD LAYOUT ============ */

/* Section Background */
.what-you-get {
    background-color: #f5f3f0;
    padding: var(--spacing-xxl) var(--spacing-md);
}

/* Main Grid Container - FORCES 3 COLUMNS ON DESKTOP */
.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xxl);
    width: 100%;
}

/* Individual Service Card - MANDATORY VERTICAL STRUCTURE */
.service-card {
    background-color: var(--primary-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-smooth);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0ebe7;
    
    /* FORCE vertical flexbox layout */
    display: flex;
    flex-direction: column;
    
    /* ENSURE equal height for all cards in row */
    height: 100%;
    min-height: 500px;
}

.service-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-6px);
}

/* IMAGE BLOCK - ALWAYS AT TOP, FIXED HEIGHT */
.service-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #e8e4e0 0%, #f0ebe7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #d0ccc8;
    flex-shrink: 0;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

/* CONTENT WRAPPER - GROWS TO FILL SPACE */
.service-content {
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-lg) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    gap: var(--spacing-md);
}

/* SERVICE TITLE - CENTERED */
.service-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.4;
    text-align: center;
    margin: 0;
}

/* SERVICE DESCRIPTION - CENTERED, FLEXIBLE HEIGHT */
.service-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* BUTTON - ALWAYS AT BOTTOM, CENTER ALIGNED */
.book-now-btn {
    align-self: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 700;
    background-color: var(--primary-dark);
    color: var(--primary-light);
    border: 2px solid var(--primary-dark);
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-transform: uppercase;
    margin-top: auto;
    width: auto;
}

.book-now-btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 165, 116, 0.25);
}

.book-now-btn:active {
    transform: translateY(0);
}

/* ============ RESPONSIVE GRID BREAKPOINTS ============ */

/* MOBILE: 1 card per row */
@media (max-width: 767px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .service-card {
        min-height: 480px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-content {
        padding: var(--spacing-md);
    }
    
    .service-title {
        font-size: 16px;
    }
}

/* TABLET: 2 cards per row */
@media (min-width: 768px) and (max-width: 1023px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .service-card {
        min-height: 520px;
    }
    
    .service-image {
        height: 220px;
    }
    
    .service-content {
        padding: var(--spacing-lg);
    }
}

/* DESKTOP: 3 cards per row (FORCED) */
@media (min-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xl);
    }
    
    .service-card {
        min-height: 540px;
    }
    
    .service-image {
        height: 240px;
    }
    
    .service-content {
        padding: var(--spacing-xl);
    }
    
    .service-title {
        font-size: 18px;
    }
}

/* ============ TRANSFORMATION SECTION ============ */
.transformation {
    background-color: var(--primary-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.transformation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-top: var(--spacing-xxl);
}

.transformation-item {
    padding: var(--spacing-xl);
    background-color: var(--background-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.transformation-item h3 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-dark);
}

.transform-before,
.transform-after {
    font-size: 48px;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.transformation-item ul {
    list-style: none;
    padding: 0;
}

.transformation-item li {
    padding-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
    position: relative;
}

.transformation-item li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.arrow-icon {
    display: none;
    font-size: 32px;
    text-align: center;
    color: var(--accent-color);
    font-weight: bold;
}

@media (min-width: 768px) {
    .transformation-grid {
        grid-template-columns: 1fr auto 1fr;
    }
    
    .arrow-icon {
        display: block;
    }
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
    background-color: var(--background-light);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xxl);
}

.step {
    background-color: var(--primary-light);
    padding: var(--spacing-xl);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--primary-light);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: var(--spacing-md);
}

.step h3 {
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
}

.step p {
    color: var(--text-light);
}

.step-connector {
    display: none;
    text-align: center;
    color: var(--accent-color);
    font-size: 24px;
    font-weight: bold;
    margin: var(--spacing-lg) 0;
}

@media (min-width: 768px) {
    .steps-container {
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: var(--spacing-md);
    }
    
    .step {
        flex: 1;
        min-width: 200px;
    }
    
    .step-connector {
        display: flex;
        align-items: center;
        height: 100%;
        margin: 0;
    }
}

/* ============ PRICING SECTION ============ */
.pricing {
    background-color: var(--primary-light);
    border-top: none;
}

.pricing-card {
    max-width: 520px;
    margin: var(--spacing-xxl) auto;
    padding: var(--spacing-xxl) var(--spacing-xl);
    background-color: var(--primary-light);
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.pricing-title {
    color: var(--primary-dark);
    margin-bottom: var(--spacing-lg);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.pricing-display {
    padding: var(--spacing-lg) 0;
    margin: var(--spacing-lg) 0;
    position: relative;
}

.price-original {
    font-size: 18px;
    color: var(--text-light);
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    text-decoration-color: #ccc;
    margin-bottom: var(--spacing-sm);
    display: block;
    font-weight: 400;
}

.discount-badge {
    display: inline-block;
    background-color: rgba(212, 165, 116, 0.12);
    color: var(--accent-color);
    padding: 6px 14px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 12px;
    margin: var(--spacing-md) 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(212, 165, 116, 0.3);
}

.price-final {
    font-size: 52px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: var(--spacing-lg) 0 var(--spacing-md) 0;
    line-height: 1;
    letter-spacing: -1px;
}

.per-month {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.2px;
}

.pricing-subtitle {
    color: var(--text-light);
    font-size: 15px;
    margin: var(--spacing-lg) 0;
    font-weight: 400;
    line-height: 1.5;
}

.pricing-cta {
    width: 100%;
    margin-top: var(--spacing-xl) !important;
    padding: 14px 32px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    background-color: var(--accent-color) !important;
    color: var(--primary-light) !important;
    border: 1px solid var(--accent-color) !important;
    border-radius: 8px !important;
    letter-spacing: 0.4px;
    transition: all var(--transition-smooth) !important;
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.2);
}

.pricing-cta:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: var(--accent-color) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-2px) !important;
}

.pricing-cta:active {
    transform: translateY(0) !important;
}

.pricing-benefits {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.pricing-benefits p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

.pricing-benefits p:before {
    content: "✓ ";
    color: var(--accent-color);
    font-weight: 700;
    margin-right: 6px;
}

/* ============ WHO IS THIS FOR ============ */
.who-is-this-for {
    background-color: var(--background-light);
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xxl);
    width: 100%;
}

/* Individual Audience Card - MATCHES service-card structure */
.audience-card {
    background-color: var(--primary-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-smooth);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0ebe7;
    
    /* FORCE vertical flexbox layout */
    display: flex;
    flex-direction: column;
    
    /* ENSURE equal height for all cards in row */
    height: 100%;
    min-height: 420px;
}

.audience-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-6px);
}

/* IMAGE BLOCK - ALWAYS AT TOP, FIXED HEIGHT */
.audience-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #e8e4e0 0%, #f0ebe7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #d0ccc8;
    flex-shrink: 0;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.audience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

/* CONTENT WRAPPER - GROWS TO FILL SPACE */
.audience-content {
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-md) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 0;
    gap: var(--spacing-sm);
}

/* AUDIENCE TITLE - CENTERED */
.audience-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.4;
    text-align: center;
    margin: 0;
}

/* AUDIENCE DESCRIPTION - CENTERED, FLEXIBLE HEIGHT */
.audience-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
    margin: 0;
}

@media (min-width: 768px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============ FAQ SECTION ============ */
.faq {
    background-color: var(--primary-light);
}

.faq-container {
    max-width: 800px;
    margin: var(--spacing-xxl) auto;
}

.faq-item {
    margin-bottom: var(--spacing-lg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    background-color: var(--background-light);
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question h3 {
    margin: 0;
    color: var(--primary-dark);
    flex: 1;
    text-align: left;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-color);
    transition: transform var(--transition-smooth);
    flex-shrink: 0;
}

.faq-answer {
    padding: var(--spacing-lg);
    background-color: var(--primary-light);
    display: none;
    animation: slideDown 0.3s ease;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

/* Show answer on active state */
.faq-item.active .faq-answer {
    display: block;
}

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

/* ============ POLICIES SECTION ============ */
.policies {
    background-color: var(--background-light);
}

.policy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xxl);
    margin-bottom: var(--spacing-xxl);
}

.policy-card {
    background-color: var(--primary-light);
    padding: var(--spacing-xl);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.policy-card h3 {
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
}

.policy-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

.policy-link {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    margin-top: var(--spacing-md);
    transition: color var(--transition-fast);
}

.policy-link:hover {
    color: var(--primary-dark);
}

.disclaimer-section {
    background-color: var(--primary-light);
    padding: var(--spacing-xl);
    border-left: 4px solid var(--warning-red);
    border-radius: 4px;
    margin-top: var(--spacing-xxl);
}

.disclaimer-section h3 {
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
}

.disclaimer-section p {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.9;
}

@media (min-width: 768px) {
    .policy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .policy-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============ CONTACT SECTION ============ */
.contact {
    background-color: var(--primary-light);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: var(--spacing-xl) auto;
}

.contact-content p {
    font-size: 16px;
    color: var(--text-dark);
}

.contact-link {
    color: var(--accent-color);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.contact-link:hover {
    color: var(--primary-dark);
}

/* ============ FOOTER ============ */
.footer {
    background-color: var(--primary-dark);
    color: var(--primary-light);
    padding: var(--spacing-xxl) var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
}

.footer-section h4 {
    color: var(--primary-light);
    margin-bottom: var(--spacing-md);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.policy-footer-link {
    color: rgba(255, 255, 255, 0.7) !important;
}

.policy-footer-link:hover {
    color: var(--accent-color) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-bottom: var(--spacing-sm);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============ RESPONSIVE ADJUSTMENTS ============ */
@media (max-width: 767px) {
    section {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .section-subtitle {
        margin-bottom: var(--spacing-xl);
    }
    
    .pricing-card {
        padding: var(--spacing-lg);
        margin: var(--spacing-xl) 0;
    }
}

/* ============ PRINT STYLES ============ */
@media print {
    .navbar,
    .cta-button {
        display: none;
    }
    
    body {
        color: #000;
    }
    
    section {
        page-break-inside: avoid;
    }
}

/* ============ MODAL STYLES (POLICY) ============ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal {
    width: 92%;
    max-width: 900px;
    max-height: 85vh;
    overflow: auto;
    background: var(--primary-light);
    border-radius: 10px;
    padding: var(--spacing-xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-light);
}

.modal-content h3 {
    margin-top: 0;
}

.modal-content p, .modal-content li {
    color: var(--text-light);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .modal { padding: var(--spacing-xxl); }
}

/* ============ SUBSCRIPTION ALERT MODAL STYLES ============ */
/* Premium Subscription Modal Styles */
.subscription-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30, 30, 40, 0.18);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2500;
    transition: background 0.3s;
}

.premium-modal {
    background: linear-gradient(135deg, #f7f6f4 0%, #ece9e6 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(30,30,40,0.12), 0 1.5px 6px rgba(0,0,0,0.07);
    max-width: 420px;
    width: 92%;
    padding: 40px 32px 32px 32px;
    text-align: center;
    animation: fadeInModal 0.35s cubic-bezier(.4,.8,.2,1);
    position: relative;
}

@keyframes fadeInModal {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.premium-modal-title {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #181818;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.premium-modal-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
}

.premium-label {
    font-size: 1rem;
    font-weight: 500;
    color: #222;
    margin-bottom: 6px;
    text-align: left;
}

.premium-input {
    font-size: 1rem;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1.5px solid #e0e0e0;
    background: #faf9f7;
    color: #222;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    margin-bottom: 4px;
}
.premium-input:focus {
    border-color: #181818;
    box-shadow: 0 0 0 2px rgba(30,30,40,0.12);
}

.premium-helper {
    font-size: 0.92rem;
    color: #888;
    margin-bottom: 12px;
    text-align: left;
}

.premium-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 8px;
}

.premium-btn {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 14px;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    outline: none;
    letter-spacing: 0.2px;
}
.premium-btn-primary {
    background: #181818;
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(30,30,40,0.08);
}
.premium-btn-primary:hover {
    background: #000;
    color: #fff;
    box-shadow: 0 6px 16px rgba(30,30,40,0.13);
}
.premium-btn-secondary {
    background: transparent;
    color: #222;
    border: 1.5px solid #e0e0e0;
    box-shadow: none;
}
.premium-btn-secondary:hover {
    border-color: #181818;
    color: #181818;
    background: #f7f6f4;
}

.subscription-modal-close:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.subscription-modal-close:active {
    transform: translateY(0);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .subscription-modal {
        padding: var(--spacing-xl);
        width: 95%;
    }
    
    .subscription-modal-content h2 {
        font-size: 18px;
    }
    
    .subscription-modal-close {
        width: 100%;
    }
}
