/* ===================================
   CSS VARIABLES & RESET
   =================================== */
:root {
    /* Colors */
    --mint-green: #A8E6CF;
    --sand-beige: #F6EDE3;
    --deep-teal: #2C6E66;
    --charcoal: #1E1E1E;
    --cloud-white: #FAFAFA;
    --pure-white: #FFFFFF;
    
    /* Gradients */
    --gradient-subtle: linear-gradient(135deg, rgba(168, 230, 207, 0.1) 0%, rgba(246, 237, 227, 0.1) 100%);
    --gradient-accent: linear-gradient(135deg, #A8E6CF 0%, #7DD3AE 100%);
    
    /* Shadows */
    --shadow-soft: 0 8px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 12px 30px rgba(0, 0, 0, 0.12);
    --shadow-float: 0 16px 40px rgba(0, 0, 0, 0.15);
    --shadow-deep: 0 20px 50px rgba(0, 0, 0, 0.2);
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
    
    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Typography */
    --font-heading: 'Poppins', 'Inter', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* ===================================
   NAVIGATION
   =================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 250, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(30, 30, 30, 0.05);
    padding: var(--spacing-sm) 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 28px;
    color: var(--deep-teal);
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 11px;
    color: var(--charcoal);
    opacity: 0.6;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -4px;
}

.nav-cta {
    background: var(--deep-teal);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.nav-cta:hover {
    background: #245A53;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    margin-top: 0px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('assets/hero-background-living-room.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 120px var(--spacing-lg) var(--spacing-xxl);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(1px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.hero-main {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge-wrapper {
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(44, 110, 102, 0.1);
    color: var(--deep-teal);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.hero-badge svg {
    color: var(--deep-teal);
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(56px, 7vw, 92px);
    line-height: 1.1;
    color: white;
    margin-bottom: var(--spacing-md);
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--mint-green) 0%, #7DD3AE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    text-shadow: none;
}

.hero-description {
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.6;
    color: white;
    opacity: 0.95;
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

.hero-cta-primary {
    background: var(--deep-teal);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(44, 110, 102, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-cta-primary:hover {
    background: #1A5248;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(44, 110, 102, 0.4);
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: white;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    color: var(--deep-teal);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    color: var(--charcoal);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(0, 0, 0, 0.1);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease-out 0.8s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--deep-teal);
    font-size: 15px;
    font-weight: 600;
}

.hero-feature svg {
    flex-shrink: 0;
    color: var(--deep-teal);
}

/* ===================================
   FEATURES CARD SECTION
   =================================== */
.features-card-section {
    padding: 0 var(--spacing-lg);
    margin-top: calc(var(--spacing-xxl) * -1.5);
    position: relative;
    z-index: 10;
}

.features-card-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    padding: var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--spacing-xl);
    border: 1px solid rgba(44, 110, 102, 0.08);
}

.feature-card-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.feature-card-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-teal);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(44, 110, 102, 0.1);
}

.feature-card-content {
    flex: 1;
}

.feature-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--charcoal);
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.feature-card-text {
    font-size: 14px;
    color: var(--charcoal);
    opacity: 0.7;
    line-height: 1.5;
}

.feature-card-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(44, 110, 102, 0.15),
        transparent
    );
    flex-shrink: 0;
}

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

/* ===================================
   BENTO GRID
   =================================== */
.bento-section {
    padding: var(--spacing-xxl) var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    grid-auto-flow: dense;
}

@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bento-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-deep);
}

.card-large {
    grid-column: span 2;
    min-height: 420px;
}

.card-medium {
    min-height: 380px;
}

.card-small {
    min-height: 280px;
}

.card-badge {
    display: inline-block;
    background: transparent;
    color: var(--deep-teal);
    padding: 0;
    border-radius: 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-sm);
}

.card-badge.light {
    background: rgba(255, 255, 255, 0.95);
    color: var(--deep-teal);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    backdrop-filter: blur(10px);
}

.card-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--charcoal);
}

.card-small .card-title {
    font-size: 22px;
}

.card-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    opacity: 0.7;
    margin-bottom: var(--spacing-md);
}

/* Card Specific Styles */

/* Showing Prep Card */
.card-showing-prep {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
    overflow: hidden;
}

.card-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.card-overlay-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.before-after-labels {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 2;
}

.label-before,
.label-after {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--deep-teal);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-overlay-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--deep-teal);
    border: 2px solid var(--mint-green);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 3;
    text-align: center;
    line-height: 1.4;
    opacity: 0;
    pointer-events: none;
}

.card-turnover:hover .image-overlay-btn {
    opacity: 1;
    pointer-events: auto;
}

.image-overlay-btn:hover {
    background: white;
    border-color: var(--deep-teal);
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 12px 32px rgba(44, 110, 102, 0.3);
}

.image-overlay-btn svg {
    flex-shrink: 0;
    color: var(--deep-teal);
}

.image-overlay-btn span {
    display: block;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: var(--spacing-md);
    max-width: 90%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bento-card:hover .overlay-text {
    opacity: 1;
}

.overlay-text h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 12px;
    color: white;
    letter-spacing: -0.5px;
}

.overlay-text p {
    font-size: 14px;
    line-height: 1.6;
    color: white;
    opacity: 0.95;
}

.card-showing-prep .card-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-lg);
}

.card-title-overlay {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.turnover-stats {
    font-size: 13px;
    color: white;
    opacity: 0.95;
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.book-btn-white {
    padding: 12px 24px;
    background: white;
    color: var(--deep-teal);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.book-btn-white:hover {
    background: var(--mint-green);
    transform: translateY(-2px);
}

.swipe-indicator {
    position: absolute;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.card-icon-overlay {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    z-index: 2;
}

/* Turnover Card */
.card-turnover {
    background: var(--sand-beige);
}

.before-after-labels {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.ba-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid;
}

.ba-label-before {
    background: #dc3545;
    color: #ffffff;
    border-color: #bd2130;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.ba-label-before:hover {
    background: #c82333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

.ba-label-after {
    background: #28a745;
    color: #ffffff;
    border-color: #218838;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.ba-label-after:hover {
    background: #218838;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

.ba-label-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-teal);
}

.ba-label-divider svg {
    width: 20px;
    height: 20px;
}

.before-after-images {
    margin-top: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.ba-image-container {
    flex: 1;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
}

.ba-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-label-overlay {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.ba-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.swipe-icon {
    background: var(--deep-teal);
    color: white;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Deep Clean Card */
.card-deep-clean {
    background: white;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deep-clean-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.card-title-small {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--deep-teal);
    margin-bottom: var(--spacing-md);
}

.service-icons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.service-item svg {
    color: var(--deep-teal);
}

.service-item span {
    font-size: 11px;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.3;
}

/* Comparison Card */
.card-comparison {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid rgba(44, 110, 102, 0.1);
    position: relative;
    overflow: hidden;
}

.card-comparison::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 230, 207, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.comparison-header {
    margin-bottom: var(--spacing-lg);
}

.comparison-main-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 28px;
    color: var(--charcoal);
    margin-top: 8px;
    letter-spacing: -0.5px;
}

.comparison-container {
    display: flex;
    gap: var(--spacing-md);
    align-items: stretch;
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.comparison-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    background: white;
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.comparison-column:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.comparison-column.old-way {
    border: 2px solid #e8e8e8;
}

.comparison-column.new-way {
    border: 2px solid var(--mint-green);
    background: linear-gradient(135deg, #ffffff 0%, rgba(168, 230, 207, 0.05) 100%);
}

.column-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: var(--spacing-xs);
}

.column-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.column-icon.old {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    color: #666;
}

.column-icon.new {
    background: linear-gradient(135deg, var(--mint-green) 0%, #7DD3AE 100%);
    color: var(--deep-teal);
    box-shadow: 0 4px 12px rgba(168, 230, 207, 0.3);
}

.comparison-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: -0.3px;
}

.comparison-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.comparison-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #fafafa;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.old-way .comparison-step {
    background: #f8f8f8;
    border-color: #f0f0f0;
}

.old-way .comparison-step:hover {
    background: #f5f5f5;
    transform: translateX(2px);
}

.new-way .comparison-step.highlight {
    background: rgba(168, 230, 207, 0.15);
    border-color: var(--mint-green);
}

.new-way .comparison-step.highlight:hover {
    background: rgba(168, 230, 207, 0.25);
    transform: translateX(-2px);
}

.step-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-icon.old-step {
    background: #e8e8e8;
    color: #999;
}

.step-icon.new-step {
    background: var(--deep-teal);
    color: white;
    box-shadow: 0 2px 8px rgba(44, 110, 102, 0.2);
}

.step-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.step-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.3;
}

.step-detail {
    font-size: 12px;
    font-weight: 500;
    color: var(--charcoal);
    opacity: 0.6;
    line-height: 1.3;
}

.comparison-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    margin-top: 4px;
    transition: all 0.3s ease;
}

.comparison-time.old-time {
    background: #f0f0f0;
    color: #666;
    border: 1px solid #e0e0e0;
}

.comparison-time.success-time {
    background: linear-gradient(135deg, var(--deep-teal) 0%, #1e5248 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(44, 110, 102, 0.3);
}

.comparison-time svg {
    flex-shrink: 0;
}

.comparison-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 var(--spacing-sm);
    flex-shrink: 0;
    position: relative;
}

.divider-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(168, 230, 207, 0.5),
        transparent
    );
}

.divider-icon {
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.social-proof-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid var(--mint-green);
    position: relative;
    z-index: 1;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-align: left;
}

.proof-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(168, 230, 207, 0.2) 0%, rgba(168, 230, 207, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-teal);
    flex-shrink: 0;
    border: 1px solid rgba(168, 230, 207, 0.3);
}

.proof-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.proof-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: var(--deep-teal);
    line-height: 1;
    letter-spacing: -0.5px;
}

.proof-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--charcoal);
    opacity: 0.6;
    line-height: 1.2;
}

.proof-divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(44, 110, 102, 0.15),
        transparent
    );
}

/* Calendar Mockup */
.card-booking {
    background: var(--mint-green);
}

.calendar-mockup {
    background: white;
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--charcoal);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid #E8E8E8;
}

.calendar-icon {
    color: var(--deep-teal);
}

.calendar-days,
.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    text-align: center;
}

.day {
    font-size: 11px;
    font-weight: 600;
    color: var(--charcoal);
    opacity: 0.4;
    padding: 8px 4px;
}

.date {
    padding: 10px 4px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.date.inactive {
    opacity: 0.3;
    color: #999;
}

.date:not(.inactive):hover {
    background: var(--mint-green);
    color: var(--deep-teal);
}

.date.selected {
    background: var(--deep-teal);
    color: white;
    font-weight: 700;
}

.time-slots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
}

.time-slot {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border: 2px solid #E8E8E8;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}

.time-slot:hover {
    border-color: var(--mint-green);
    background: rgba(168, 230, 207, 0.1);
}

.time-slot.selected {
    border-color: var(--deep-teal);
    background: var(--deep-teal);
    color: white;
}

.time-slot svg {
    color: var(--deep-teal);
}

.time-slot.selected svg {
    color: white;
}

.book-btn {
    width: 100%;
    padding: 14px;
    background: var(--deep-teal);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: var(--spacing-md);
}

.book-btn:hover {
    background: #245A53;
    transform: translateY(-2px);
}


/* Pro Card */
.card-pro {
    background: var(--mint-green);
    color: white;
}

.card-subtitle {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.pro-features-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.pro-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pro-feature-item svg {
    flex-shrink: 0;
    color: var(--deep-teal);
}

.pro-feature-item span {
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
}

/* Pricing Card */
.card-pricing {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 100%);
    color: var(--charcoal);
    border: 2px solid rgba(44, 110, 102, 0.1);
    position: relative;
    overflow: hidden;
}

.card-pricing::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(44, 110, 102, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.pricing-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.pricing-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2C6E66 0%, #1e4d47 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(44, 110, 102, 0.2);
}

.pricing-badge svg {
    filter: brightness(0) invert(1);
}

.pricing-showcase {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(44, 110, 102, 0.1);
}

.pricing-example {
    text-align: center;
}

.pricing-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    margin-bottom: 8px;
}

.pricing-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--sage-green);
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-desc {
    font-size: 13px;
    font-weight: 500;
    color: #2C6E66;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pricing-item:hover {
    background: white;
    transform: translateX(4px);
}

.pricing-item svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.pricing-item:hover svg {
    transform: scale(1.1);
}

.pricing-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
}

.pro-profile {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: var(--spacing-md);
}

.pro-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.avatar-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--cloud-white);
}

.verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 22px;
    height: 22px;
    background: var(--mint-green);
    color: var(--deep-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pro-info {
    flex: 1;
    min-width: 0;
}

.pro-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.pro-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.rating-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--charcoal);
}

.rating-count {
    font-size: 12px;
    color: var(--charcoal);
    opacity: 0.5;
}

.pro-stats {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: var(--charcoal);
    opacity: 0.6;
    font-weight: 600;
}

.stat-dot {
    opacity: 0.3;
}

.pro-review {
    background: var(--gradient-subtle);
    padding: 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    opacity: 0.4;
}

.review-text {
    font-size: 11px;
    line-height: 1.5;
    color: var(--charcoal);
    opacity: 0.8;
    font-style: italic;
    margin: 0;
    padding-left: 4px;
}

.pro-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--mint-green);
    color: var(--deep-teal);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.pro-badge svg {
    flex-shrink: 0;
}

/* How It Works Card */
.card-how-it-works {
    background: linear-gradient(135deg, #F6EDE3 0%, #FAFAFA 100%);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--deep-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(44, 110, 102, 0.3);
}

.step-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.step-content p {
    font-size: 14px;
    color: var(--charcoal);
    opacity: 0.7;
    line-height: 1.5;
}

/* Photo Gallery */
.card-photos {
    background: white;
}

.card-description {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: var(--spacing-md);
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.photo-tile {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.photo-tile:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: var(--shadow-medium);
    z-index: 10;
}

.photo-large {
    grid-column: span 2;
    grid-row: span 2;
}

.photo-medium {
    grid-column: span 2;
    grid-row: span 1;
}

.photo-small {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.view-gallery-btn {
    width: 100%;
    padding: 12px;
    background: var(--cloud-white);
    color: var(--deep-teal);
    border: 2px solid #E8E8E8;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-gallery-btn:hover {
    background: var(--mint-green);
    border-color: var(--mint-green);
    transform: translateY(-2px);
}

.mockup-label {
    text-align: center;
    font-size: 11px;
    color: var(--charcoal);
    opacity: 0.5;
    margin-top: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ===================================
   WHY JOIN SECTION
   =================================== */
.why-join-section {
    padding: var(--spacing-xxl) var(--spacing-lg);
    background: white;
}

.why-join-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: var(--charcoal);
    opacity: 0.7;
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.benefit-card {
    background: var(--gradient-subtle);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--mint-green);
    background: white;
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-sm);
}

.benefit-card h3 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: var(--spacing-xs);
    color: var(--deep-teal);
}

.benefit-card p {
    font-size: 15px;
    color: var(--charcoal);
    opacity: 0.7;
    line-height: 1.6;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features-section {
    padding: var(--spacing-xxl) var(--spacing-lg);
    background: var(--sand-beige);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(36px, 5vw, 52px);
    margin-bottom: var(--spacing-xl);
    color: var(--charcoal);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.feature {
    padding: var(--spacing-lg);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-sm);
}

.feature h3 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: var(--spacing-xs);
    color: var(--deep-teal);
}

.feature p {
    color: var(--charcoal);
    opacity: 0.7;
    font-size: 15px;
}

/* ===================================
   PRICING PREVIEW
   =================================== */
.pricing-preview {
    padding: var(--spacing-xxl) var(--spacing-lg);
    background: var(--sand-beige);
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.price-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-float);
}

.price-card h3 {
    font-weight: 700;
    font-size: 18px;
    color: var(--deep-teal);
    margin-bottom: var(--spacing-sm);
}

.price {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 48px;
    color: var(--charcoal);
    margin-bottom: var(--spacing-xs);
}

.price span {
    font-size: 24px;
    opacity: 0.5;
}

.price-card p {
    font-size: 14px;
    color: var(--charcoal);
    opacity: 0.6;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    padding: var(--spacing-xxl) var(--spacing-lg);
    background: white;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    text-align: left;
}

.faq-item {
    background: var(--gradient-subtle);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--mint-green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    background: white;
}

.faq-question {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--deep-teal);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.faq-answer {
    font-size: 15px;
    line-height: 1.6;
    color: var(--charcoal);
    opacity: 0.8;
    margin: 0;
}

/* ===================================
   FINAL CTA
   =================================== */
.final-cta {
    padding: var(--spacing-xxl) var(--spacing-lg);
    background: var(--gradient-subtle);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--charcoal);
}

.highlight {
    color: var(--deep-teal);
    font-style: italic;
}

.cta-description {
    font-size: 20px;
    color: var(--charcoal);
    opacity: 0.7;
    margin-bottom: var(--spacing-lg);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: #F0F0F0;
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--deep-teal);
}

.footer-copyright {
    font-size: 13px;
    color: var(--charcoal);
    opacity: 0.5;
}

/* ===================================
   MODAL
   =================================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 100%;
    padding: var(--spacing-xl);
    position: relative;
    box-shadow: var(--shadow-float);
    animation: modalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: none;
    border: none;
    font-size: 32px;
    color: var(--charcoal);
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    opacity: 1;
    background: var(--cloud-white);
}

.modal-header {
    margin-bottom: var(--spacing-lg);
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 32px;
    margin-bottom: var(--spacing-xs);
    color: var(--charcoal);
}

.modal-header p {
    color: var(--charcoal);
    opacity: 0.7;
    font-size: 16px;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--charcoal);
}

.form-group input,
.form-group select {
    padding: 14px 18px;
    border: 2px solid #E0E0E0;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--mint-green);
    background: rgba(168, 230, 207, 0.05);
}

.submit-btn {
    background: var(--deep-teal);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
}

.submit-btn:hover {
    background: #245A53;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--charcoal);
    opacity: 0.6;
    margin-top: -8px;
}

.success-message {
    text-align: center;
    padding: var(--spacing-lg) 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--mint-green);
    color: var(--deep-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 900;
    margin: 0 auto var(--spacing-md);
    animation: successPop 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes successPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.success-message h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--spacing-xs);
}

.success-message p {
    color: var(--charcoal);
    opacity: 0.7;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .card-large {
        grid-column: span 2;
    }
    
    .card-medium,
    .card-small {
        grid-column: span 1;
    }
    
    .hero {
        min-height: 80vh;
        padding: 100px var(--spacing-md) var(--spacing-xl);
    }
    
    .hero-content {
        flex-direction: column;
        gap: var(--spacing-xl);
    }
    
    .hero-main {
        max-width: 100%;
    }
    
    .features-card {
        gap: var(--spacing-lg);
    }
    
    .hero-title {
        font-size: clamp(48px, 9vw, 72px);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 var(--spacing-md);
    }
    
    .hero {
        min-height: 100vh;
        padding: 80px var(--spacing-md) var(--spacing-lg);
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-title {
        font-size: clamp(40px, 10vw, 56px);
        margin-bottom: var(--spacing-md);
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }
    
    .hero-cta-primary {
        padding: 18px 32px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        width: 100%;
        justify-content: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .features-card-section {
        margin-top: calc(var(--spacing-lg) * -1);
        padding: 0 var(--spacing-md);
    }
    
    .features-card {
        flex-direction: column;
        padding: var(--spacing-lg);
        gap: var(--spacing-lg);
    }
    
    .feature-card-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(
            to right,
            transparent,
            rgba(44, 110, 102, 0.15),
            transparent
        );
    }
    
    .bento-section,
    .features-section,
    .pricing-preview,
    .final-cta {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .why-join-section {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-grid {
        grid-template-columns: 1fr !important;
    }
    
    .card-large,
    .card-medium,
    .card-small {
        grid-column: span 1 !important;
    }
    
    .features-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .photo-large,
    .photo-medium,
    .photo-small {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .service-icons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .before-after-images {
        flex-direction: column;
    }
    
    .ba-divider {
        transform: rotate(90deg);
    }
    
    .before-after-labels {
        padding: 6px 12px;
        gap: 8px;
        bottom: 12px;
    }
    
    .ba-label {
        font-size: 10px;
        padding: 4px 10px;
        letter-spacing: 1px;
    }
    
    .ba-label-divider svg {
        width: 16px;
        height: 16px;
    }
    
    /* Comparison Card Mobile */
    .comparison-main-title {
        font-size: 22px;
    }
    
    .comparison-container {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .comparison-column {
        padding: var(--spacing-md);
    }
    
    .column-header {
        margin-bottom: var(--spacing-sm);
    }
    
    .column-icon {
        width: 40px;
        height: 40px;
    }
    
    .comparison-title {
        font-size: 16px;
    }
    
    .comparison-step {
        padding: 10px;
    }
    
    .step-icon {
        width: 28px;
        height: 28px;
    }
    
    .step-label {
        font-size: 13px;
    }
    
    .step-detail {
        font-size: 11px;
    }
    
    .comparison-divider {
        flex-direction: row;
        width: 100%;
        padding: var(--spacing-sm) 0;
    }
    
    .divider-line {
        width: 80px;
        height: 2px;
        background: linear-gradient(
            to right,
            transparent,
            rgba(168, 230, 207, 0.5),
            transparent
        );
    }
    
    .divider-icon {
        transform: rotate(90deg);
    }
    
    .social-proof-banner {
        flex-direction: column;
        gap: var(--spacing-lg);
        padding: var(--spacing-md);
    }
    
    .proof-item {
        width: 100%;
        justify-content: flex-start;
    }
    
    .proof-icon {
        width: 44px;
        height: 44px;
    }
    
    .proof-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(
            to right,
            transparent,
            rgba(44, 110, 102, 0.15),
            transparent
        );
    }
}

