/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Meta/Google Modern Design System */
:root {
    /* Meta Brand Colors */
    --meta-blue: #1877F2;
    --meta-blue-dark: #166FE5;
    --meta-blue-light: #42A5F5;
    
    /* Google Brand Colors */
    --google-blue: #4285F4;
    --google-red: #EA4335;
    --google-yellow: #FBBC04;
    --google-green: #34A853;
    
    /* Modern Neutrals */
    --white: #FFFFFF;
    --gray-50: #F8F9FA;
    --gray-100: #F1F3F4;
    --gray-200: #E8EAED;
    --gray-300: #DADCE0;
    --gray-400: #BDC1C6;
    --gray-500: #9AA0A6;
    --gray-600: #80868B;
    --gray-700: #5F6368;
    --gray-800: #3C4043;
    --gray-900: #202124;
    
    /* Primary Colors */
    --primary: var(--meta-blue);
    --primary-hover: var(--meta-blue-dark);
    --secondary: var(--google-green);
    --accent: var(--google-red);
    --warning: var(--google-yellow);
    
    /* Text Colors */
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-700);
    --text-tertiary: var(--gray-500);
    --text-inverse: var(--white);
    
    /* Background Colors */
    --bg-primary: var(--white);
    --bg-secondary: var(--gray-50);
    --bg-tertiary: var(--gray-100);
    
    /* Modern Gradients */
    --gradient-primary: linear-gradient(135deg, var(--meta-blue) 0%, var(--google-blue) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--google-green) 0%, var(--google-blue) 100%);
    --gradient-accent: linear-gradient(135deg, var(--google-red) 0%, var(--meta-blue) 100%);
    --gradient-subtle: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    
    /* Modern Shadows */
    --shadow-1: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    --shadow-2: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
    --shadow-3: 0 4px 8px 3px rgba(60, 64, 67, 0.15), 0 1px 3px 0 rgba(60, 64, 67, 0.3);
    --shadow-4: 0 2px 3px 0 rgba(60, 64, 67, 0.3), 0 6px 10px 4px rgba(60, 64, 67, 0.15);
    --shadow-5: 0 4px 4px 0 rgba(60, 64, 67, 0.3), 0 8px 12px 6px rgba(60, 64, 67, 0.15);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Spacing Scale */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
    
    /* Animation */
    --ease-standard: cubic-bezier(0.4, 0.0, 0.2, 1);
    --ease-decelerate: cubic-bezier(0.0, 0.0, 0.2, 1);
    --ease-accelerate: cubic-bezier(0.4, 0.0, 1, 1);
    
    /* Legacy mappings for compatibility */
    --primary-coral: var(--google-red);
    --secondary-lavender: var(--meta-blue);
    --accent-mint: var(--google-green);
    --accent-peach: var(--google-yellow);
    --accent-sky: var(--google-blue);
    --text-dark: var(--text-primary);
    --shadow-soft: var(--shadow-1);
    --shadow-medium: var(--shadow-2);
    --shadow-elegant: var(--shadow-3);
    --shadow-dramatic: var(--shadow-4);
}

/* Modern Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Google Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 { 
    font-size: 2.5rem; 
    font-weight: 400;
    line-height: 1.2;
}
h2 { 
    font-size: 2rem; 
    font-weight: 400;
    line-height: 1.3;
}
h3 { 
    font-size: 1.5rem; 
    font-weight: 500;
    line-height: 1.4;
}

p, li {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Modern Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    padding: var(--space-4) 0;
    box-shadow: var(--shadow-1);
    border-bottom: 1px solid var(--gray-200);
}

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

.nav-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-logo {
    font-family: 'Google Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.nav-tagline {
    font-family: 'Google Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    margin: 0;
    color: var(--text-tertiary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    gap: var(--space-8);
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.875rem;
    transition: all 0.2s var(--ease-standard);
    position: relative;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
}

.nav-link:hover {
    color: var(--primary);
    background-color: var(--bg-secondary);
}

.nav-link::after {
    display: none;
}



/* Modern Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    overflow: hidden;
    padding: 0 var(--space-6);
    margin-top: 72px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(66, 133, 244, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(52, 168, 83, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: var(--space-16) var(--space-6);
    color: var(--text-primary);
}

/* Author Introduction Styling */
.author-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
    padding: var(--space-6);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2);
    border: 1px solid var(--gray-200);
}

.author-photo {
    flex-shrink: 0;
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: var(--shadow-2);
}

.author-info {
    text-align: left;
    flex-grow: 1;
}

.author-info h3 {
    margin: 0 0 var(--space-1) 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.author-title {
    margin: 0 0 var(--space-2) 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.author-stats {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.stat {
    font-size: 0.75rem;
    background: var(--bg-secondary);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

/* Personal tip styling */
.personal-tip {
    margin-top: var(--space-6);
    padding: var(--space-5);
    background: linear-gradient(135deg, var(--yellow-50), var(--yellow-100));
    border-left: 4px solid var(--yellow-400);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-1);
}

.personal-tip h4 {
    margin: 0 0 var(--space-2) 0;
    color: var(--yellow-800);
    font-size: 1rem;
    font-weight: 600;
}

.personal-tip p {
    margin: 0;
    color: var(--yellow-900);
    font-style: italic;
}

/* Responsive adjustments for author intro */
@media (max-width: 768px) {
    .author-intro {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }
    
    .author-info {
        text-align: center;
    }
    
    .author-stats {
        justify-content: center;
    }
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--space-6);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--space-10);
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

.hero-proof {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    margin: var(--space-6) 0;
    flex-wrap: wrap;
}

.proof-badge {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--gray-300);
    box-shadow: var(--shadow-1);
}

/* Urgency and Conversion Elements */
.urgency-banner {
    background: linear-gradient(135deg, var(--warning) 0%, #f57c00 100%);
    color: var(--white);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    margin: var(--space-4) 0;
    text-align: center;
    box-shadow: var(--shadow-2);
    animation: urgency-pulse 2s ease-in-out infinite alternate;
}

.urgency-text {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

@keyframes urgency-pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.02); }
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-8);
}

.hero-cta::before {
    display: none;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* High-Converting CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-family: 'Google Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s var(--ease-standard);
    text-align: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    text-transform: none;
    letter-spacing: 0.02em;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button,
.cta-button * {
    text-decoration: none !important;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--text-inverse) !important;
    box-shadow: var(--shadow-3);
    border: 1px solid transparent;
    position: relative;
    z-index: 1;
}

.cta-button.secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, #2e7d42 100%);
    color: var(--text-inverse) !important;
    box-shadow: var(--shadow-3);
    border: 1px solid transparent;
}

.cta-button.small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.cta-button.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-4);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s var(--ease-standard);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, #0d47a1 100%);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #2e7d42 0%, #1b5e20 100%);
    box-shadow: 0 8px 25px rgba(52, 168, 83, 0.4);
}

/* Pulse animation for primary CTA to draw attention */
.cta-button.primary {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: var(--shadow-3);
    }
    50% { 
        box-shadow: 0 0 20px rgba(24, 119, 242, 0.3), var(--shadow-3);
    }
}

/* Force button text visibility */
.cta-button,
.cta-button:link,
.cta-button:visited,
.cta-button:hover,
.cta-button:active {
    text-decoration: none !important;
}

.cta-button.primary,
.cta-button.primary:link,
.cta-button.primary:visited,
.cta-button.primary:active {
    color: white !important;
}

.cta-button.secondary,
.cta-button.secondary:link,
.cta-button.secondary:visited,
.cta-button.secondary:active {
    color: var(--text-dark) !important;
}

.cta-button.secondary:hover {
    color: white !important;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 3rem;
}

/* Content Sections */
.content-section {
    margin-bottom: 8rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.content-section.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-container.reverse {
    direction: rtl;
}

.section-container.reverse > * {
    direction: ltr;
}

.section-content {
    padding: 2rem 0;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.section-text ul {
    padding-left: 1.5rem;
}

.section-text li {
    margin-bottom: 0.5rem;
    position: relative;
}

.section-text li::marker {
    color: var(--terracotta);
}

.section-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.section-image:hover {
    transform: scale(1.02);
}

.section-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Highlight Section */
.highlight-section {
    background: var(--gradient-secondary);
    border-radius: 20px;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

/* CTA Intermittent */
.cta-intermittent {
    background: var(--gradient-primary);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 4rem 0;
    color: white;
}

.cta-intermittent h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Templates Section */
.templates-section {
    background: var(--white);
    border-radius: 20px;
    padding: 4rem 2rem;
    margin: 4rem 0;
    box-shadow: var(--shadow);
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: var(--shadow);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid rgba(255, 200, 221, 0.2);
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 200, 221, 0.05);
    color: var(--text-primary);
    border-color: rgba(255, 200, 221, 0.3);
}

.accordion-header.active {
    background: rgba(255, 200, 221, 0.1);
    color: var(--text-primary);
    border-color: rgba(255, 200, 221, 0.4);
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}

.accordion-content.active {
    max-height: 800px;
    overflow-y: auto;
}

/* Custom scrollbar for accordion content */
.accordion-content::-webkit-scrollbar {
    width: 8px;
}

.accordion-content::-webkit-scrollbar-track {
    background: var(--neutral-light);
    border-radius: 10px;
}

.accordion-content::-webkit-scrollbar-thumb {
    background: var(--primary-coral);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.accordion-content::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-lavender);
}

.template-box {
    padding: 2rem;
    border-top: 1px solid #e0e0e0;
}

.message-template {
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--light-cream);
    border-radius: 8px;
}

.message-template h4 {
    color: var(--terracotta);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.copy-button {
    background: var(--white);
    color: var(--text-primary);
    border: 1px solid rgba(205, 180, 219, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 6px rgba(205, 180, 219, 0.1);
}

.copy-button:hover {
    background: rgba(205, 180, 219, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(205, 180, 219, 0.15);
    border-color: rgba(205, 180, 219, 0.4);
}

.copy-button.copied {
    background: rgba(162, 210, 255, 0.1);
    border-color: rgba(162, 210, 255, 0.4);
    box-shadow: 0 2px 6px rgba(162, 210, 255, 0.15);
}

/* Final CTA */
.final-cta {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 4rem 0;
}

.final-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.show {
    transform: translateY(0);
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.sticky-cta-text {
    font-weight: 600;
    color: var(--text-dark);
}

.sticky-cta-buttons {
    display: flex;
    gap: 0.5rem;
}

/* Footer */
.footer {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    box-shadow: var(--shadow-xl);
}

.footer-content p {
    color: white;
    margin: 0;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .section-container.reverse {
        direction: ltr;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    
    .main-content {
        padding: 2rem 1rem;
    }
    
    .content-section {
        margin-bottom: 3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .sticky-cta-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .sticky-cta-buttons {
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 120px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .templates-section,
    .highlight-section,
    .final-cta,
    .cta-intermittent {
        margin: 2rem 0;
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container,
    .main-content {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 0 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .accordion-header {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .template-box {
        padding: 1rem;
    }
}

/* Enhanced Content Styling */
.tip-box {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 3px solid rgba(255, 175, 204, 0.3);
    box-shadow: 0 2px 8px rgba(255, 175, 204, 0.08);
    border: 1px solid rgba(255, 175, 204, 0.1);
    color: var(--text-primary);
}

.tip-box i {
    color: var(--text-dark);
    margin-right: 0.5rem;
}

.enhanced-list {
    list-style: none;
    padding: 0;
}

.enhanced-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enhanced-list li:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.enhanced-list li i {
    color: var(--primary-blue);
    margin-right: 1rem;
    margin-top: 0.2rem;
    font-size: 1.2rem;
}

.budget-tip, .why-white-box, .linen-checklist, .maintenance-schedule {
    background: var(--neutral-cream);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    border: 2px solid var(--accent-peach);
}

/* Linen Calculator */
.linen-calculator {
    background: var(--neutral-cream);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border: 2px solid var(--accent-peach);
}

.apartment-selector {
    margin-bottom: 1.5rem;
}

.apartment-selector label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.apartment-selector select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--primary-coral);
    border-radius: 10px;
    background: white;
    font-size: 1rem;
    color: var(--text-dark);
    cursor: pointer;
}

.apartment-selector select:focus {
    outline: none;
    border-color: var(--secondary-lavender);
    box-shadow: 0 0 0 3px rgba(184, 169, 255, 0.2);
}

.linen-results {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: var(--shadow-soft);
}

.linen-results h5 {
    color: var(--primary-coral);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.linen-results ul {
    list-style: none;
    padding: 0;
}

.linen-results li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--neutral-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.linen-results li:last-child {
    border-bottom: none;
}

.linen-results li .item-name {
    color: var(--text-dark);
    font-weight: 500;
}

.linen-results li .item-quantity {
    background: var(--accent-mint);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.total-budget {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
}

/* Revenue Calculator */
.revenue-calculator {
    background: var(--neutral-cream);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 2px solid var(--accent-mint);
}

.calculator-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.input-group input,
.input-group select {
    padding: 0.75rem;
    border: 2px solid var(--primary-coral);
    border-radius: 10px;
    background: white;
    font-size: 1rem;
    color: var(--text-dark);
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--secondary-lavender);
    box-shadow: 0 0 0 3px rgba(184, 169, 255, 0.2);
}

.calculate-btn {
    grid-column: 1 / -1;
    background: #1877F2 !important;
    color: #FFFFFF !important;
    border: none !important;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600 !important;
    cursor: pointer;
    font-size: 1.1rem !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3) !important;
    text-shadow: none !important;
    text-decoration: none !important;
}

.calculate-btn * {
    color: #FFFFFF !important;
}

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

.revenue-results {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    margin-top: 1.5rem;
}

.revenue-results h5 {
    color: var(--primary-coral);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.revenue-breakdown-display {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.revenue-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--neutral-light);
}

.revenue-item:last-child {
    border-bottom: none;
}

.revenue-item.highlight {
    background: var(--accent-peach);
    padding: 1rem;
    border-radius: 8px;
    border-bottom: none;
}

.revenue-item.final {
    background: var(--gradient-primary);
    color: white;
    padding: 1.2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    border-bottom: none;
}

@media (max-width: 768px) {
    .calculator-inputs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Business Sections Styling */
.business-paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.path-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2);
    transition: all 0.2s var(--ease-standard);
    text-align: center;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.path-card::before {
    display: none;
}

.path-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-3);
}

.path-card.location {
    border-top: 3px solid var(--primary);
}

.path-card.experience {
    border-top: 3px solid var(--secondary);
}

.path-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.path-card ul {
    text-align: left;
    margin: 1.5rem 0;
}

.path-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.location-btn {
    background: rgba(255, 175, 204, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 175, 204, 0.3);
    box-shadow: 0 2px 8px rgba(255, 175, 204, 0.1);
}

.location-btn:hover {
    background: rgba(255, 175, 204, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 175, 204, 0.15);
}

.experience-btn {
    background: rgba(162, 210, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(162, 210, 255, 0.3);
    box-shadow: 0 2px 8px rgba(162, 210, 255, 0.1);
}

.experience-btn:hover {
    background: rgba(162, 210, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(162, 210, 255, 0.15);
}

.path-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Modern Business Section Headers */
.business-section {
    margin: var(--space-24) 0;
    padding: var(--space-16) 0;
    position: relative;
}

.location-section {
    background: var(--bg-primary);
    position: relative;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(66, 133, 244, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.experience-section {
    background: var(--bg-secondary);
    position: relative;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(52, 168, 83, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    color: var(--text-primary);
    margin-bottom: var(--space-16);
    padding: var(--space-12) var(--space-6);
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-4);
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Experience Types */
.experience-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.experience-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.experience-card.featured {
    background: linear-gradient(135deg, #f8fafc, #e2f3f0);
    border: 2px solid var(--green);
    position: relative;
}

.experience-card.featured::before {
    content: "⭐ Mon choix";
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--green);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.experience-card h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.price-range {
    display: inline-block;
    background: var(--white);
    color: var(--text-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    border: 1px solid rgba(255, 200, 221, 0.3);
    box-shadow: 0 1px 4px rgba(255, 200, 221, 0.1);
}

/* Creation Steps */
.creation-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
}

.step-number {
    background: var(--primary-purple);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: var(--shadow-purple);
}

.step-item h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Responsive Design Enhancements */
@media (max-width: 768px) {
    .business-paths {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .experience-types {
        grid-template-columns: 1fr;
    }
    
    .path-card {
        padding: 1.5rem;
    }
    
    .creation-steps {
        gap: 1rem;
    }
    
    .step-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .business-section {
        padding: 2rem 0;
    }
    
    .section-header {
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .experience-card {
        padding: 1rem;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

.budget-tip h4, .why-white-box h4, .linen-checklist h4, .maintenance-schedule h4 {
    color: var(--primary-coral);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.team-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--secondary-lavender);
    margin-bottom: 1rem;
}

.contact-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.key-solutions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.solution-option {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--accent-sky);
}

.solution-option h4 {
    color: var(--primary-coral);
    margin-bottom: 1rem;
}

.pro-tip {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.pro-tip i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.rules-framework {
    margin: 2rem 0;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--primary-coral);
}

.rule-item i {
    color: var(--primary-coral);
    font-size: 1.5rem;
    margin-right: 1.5rem;
    margin-top: 0.2rem;
}

.rule-item strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.5rem;
}

.screening-tips {
    background: var(--accent-peach);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.welcome-package {
    margin: 2rem 0;
}

.welcome-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.welcome-item:hover {
    transform: translateX(5px);
}

.welcome-item i {
    color: var(--accent-mint);
    font-size: 1.3rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.roi-calculation {
    background: var(--gradient-accent);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

.experience-intro {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
    box-shadow: var(--shadow-medium);
}

.experience-ideas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.experience-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--secondary-lavender);
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.experience-card i {
    font-size: 2.5rem;
    color: var(--primary-coral);
    margin-bottom: 1rem;
}

.experience-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.price-tag {
    background: var(--accent-mint);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 1rem;
}

.experience-benefits {
    background: var(--neutral-cream);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.communication-golden-rules {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.communication-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.pillar {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.pillar i {
    font-size: 2rem;
    color: var(--accent-sky);
    margin-bottom: 1rem;
}

.response-time-impact {
    background: var(--accent-peach);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.pricing-strategy, .pricing-calendar {
    margin: 2rem 0;
}

.pricing-tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.tool-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border-top: 3px solid var(--secondary-lavender);
}

.tool-card h5 {
    color: var(--primary-coral);
    margin-bottom: 1rem;
}

.recommendation {
    background: var(--accent-mint);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    float: right;
}

.revenue-breakdown {
    background: var(--gradient-accent);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.revenue-example {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    box-shadow: var(--shadow-soft);
}

.social-impact {
    text-align: center;
    margin: 2rem 0;
}

.job-creation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.job-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--accent-peach);
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.job-card i {
    font-size: 2rem;
    color: var(--primary-coral);
    margin-bottom: 1rem;
}

.mentorship {
    background: var(--neutral-cream);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.economic-impact {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
    font-weight: 600;
    box-shadow: var(--shadow-medium);
}

/* Template Section Enhancements */
.template-content {
    background: var(--neutral-cream);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
    border-left: 4px solid var(--primary-coral);
}

.template-category {
    margin: 2rem 0;
}

.template-category h4 {
    color: var(--primary-coral);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.message-templates {
    display: grid;
    gap: 1rem;
}

.message-template {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    border-top: 3px solid var(--accent-sky);
}

.message-template h5 {
    color: var(--secondary-lavender);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.copy-all-button {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    margin: 1rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.copy-all-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Placeholder Image Styles */
.section-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-secondary);
    z-index: -1;
}

.section-image img {
    background: var(--neutral-cream);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}
