/* =========================================
   CSS Variables & Design System
   ========================================= */
:root {
    /* Color Palette - Neutral, Trustworthy, Professional */
    --color-navy: #0F172A; /* Slate 900 - Deep, professional */
    --color-slate-800: #1E293B;
    --color-slate-600: #475569;
    --color-slate-400: #94A3B8;
    --color-slate-300: #CBD5E1;
    --color-slate-100: #F1F5F9;
    --color-warm-white: #F8F9FA;
    --color-white: #FFFFFF;
    
    /* Accents */
    --color-gold: #D4AF37; /* Muted Gold for subtle premium feel */
    --color-gold-light: rgba(212, 175, 55, 0.1);
    --color-teal: #0D9488; /* Calm teal alternative */

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-handwriting: 'Caveat', cursive;

    /* Spacing & Layout */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    --container-max: 1200px;
    --border-radius: 8px;
    --transition-standard: 0.3s ease-in-out;
}

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



body {
    font-family: var(--font-body);
    color: var(--color-slate-800);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.splash-active {
    overflow: hidden;
}

body.splash-active main, body.splash-active header {
    opacity: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-navy);
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--color-slate-600);
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

.bg-light { background-color: transparent; } /* Replaced explicit background to allow body shift */
.bg-dark { background-color: var(--color-navy); }
.text-white h2, .text-white h3, .text-white h4, .text-white p { color: var(--color-white); }
.text-center { text-align: center; }
.mt-4 { margin-top: var(--spacing-sm); }
.mt-6 { margin-top: var(--spacing-lg); }
.mx-auto { margin-left: auto; margin-right: auto; }

/* =========================================
   Buttons & UI Elements
   ========================================= */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-standard);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-teal);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-navy);
    transform: translateY(-2px);
    color: var(--color-white);
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-navy);
    border-color: var(--color-slate-300);
}

.btn-secondary:hover {
    border-color: var(--color-navy);
    background-color: var(--color-slate-100);
}

.btn.magnetic-active {
    transition: background-color var(--transition-standard), color var(--transition-standard), box-shadow var(--transition-standard);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
}

.eyebrow.badge {
    background-color: var(--color-teal);
    color: var(--color-white);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(13, 148, 136, 0.2);
}

.highlight {
    color: var(--color-gold);
}

/* =========================================
   Header & Navigation
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-slate-100);
    transition: padding var(--transition-standard);
}

.site-header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Mobile Section Indicator - Sticky label below header */
.mobile-section-indicator {
    display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
    .mobile-section-indicator {
        display: block;
        position: fixed;
        top: 60px; /* Just below the header */
        left: 0;
        width: 100%;
        z-index: 999;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--color-slate-100);
        padding: 0.4rem 1.25rem;
        box-sizing: border-box;
        transition: opacity 0.3s ease;
    }

    .section-indicator-text {
        font-family: var(--font-heading);
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--color-teal);
        display: block;
        transition: opacity 0.25s ease;
    }

    /* Adjust header top position when scrolled */
    .site-header.scrolled ~ .mobile-section-indicator {
        top: 50px;
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
    letter-spacing: -0.02em;
}

.logo-accent {
    color: var(--color-gold);
}

.nav-logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    position: relative;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-slate-600);
    position: relative;
    display: block;
}

.nav-dot {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-teal);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.main-nav a:hover {
    color: var(--color-navy);
}

.main-nav .nav-btn {
    color: var(--color-white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-navy);
    transition: 0.3s;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    padding: 12rem 0 8rem;
    background: linear-gradient(135deg, var(--color-warm-white) 0%, var(--color-white) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
}

.hero p.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-slate-600);
    max-width: 650px;
    margin-bottom: var(--spacing-lg);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* =========================================
   The Problem Section
   ========================================= */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.problem-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid var(--color-slate-100);
    transition: transform var(--transition-standard), box-shadow var(--transition-standard);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: var(--color-gold-light);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* =========================================
   Services Section
   ========================================= */
.services-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.services-header {
    position: sticky;
    top: 120px;
    align-self: start;
}

.service-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-slate-100);
    transform-style: preserve-3d;
    transition: transform 0.4s ease;
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-icon .service-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-slate-300);
    line-height: 1;
}

/* =========================================
   Why Partner Section
   ========================================= */
.value-props {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.value-prop-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: var(--border-radius);
}

.vp-header h4 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-prop-card p {
    color: var(--color-slate-300);
    margin-bottom: 0;
}

/* =========================================
   Process Section
   ========================================= */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: var(--spacing-lg);
    position: relative;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--color-white);
    border: 2px solid var(--color-navy);
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-connector {
    flex: 0.5;
    height: 2px;
    background-color: var(--color-slate-300);
    margin-top: 30px; /* Align with middle of number circles */
}

/* =========================================
   About Section
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

/* Greeting label (handwritten + arrow) positioned above the image */
.about-greeting {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0.15rem; /* Small gap between text and arrow */
    margin-bottom: -0.5rem;
    padding-right: 0;
    z-index: 10;
}

.about-handwritten {
    font-size: 1.5rem;
    transform: rotate(-3deg);
    display: inline-block;
    white-space: nowrap;
}

.about-arrow {
    position: relative;
    width: 70px;
    height: 80px;
    margin-top: 0;
    margin-left: -0.5rem;
    /* Redesigned for 'beside text' start and perfect 'middle joint' arrowhead */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 70 80'%3E%3Cpath d='M5,35 C5,15 35,5 55,25 C65,45 55,60 20,75' fill='none' stroke='%230D9488' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpath d='M23,80 L9,80 L17,70 Z' fill='%230D9488'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
    z-index: 10;
}

.about-visual {
    width: 100%;
    aspect-ratio: 4/5;
    background-color: var(--color-white);
    border: 1px solid var(--color-slate-200);
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about-portrait {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 19px;
    display: block;
}

.visual-accent-1 {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--color-slate-100);
    border-radius: 20px;
    z-index: -1;
}

.visual-accent-2 {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60%;
    height: 60%;
    border: 2px solid var(--color-gold-light);
    border-radius: 20px;
    z-index: -2;
}

.about-text p {
    margin-bottom: 0.8rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* =========================================
   CTA Section
   ========================================= */
.cta-card {
    background: var(--color-navy);
    border-radius: var(--border-radius);
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card h2 {
    color: var(--color-white);
    position: relative;
    z-index: 2;
}

.cta-card p {
    color: var(--color-slate-300);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 1rem auto 0;
    position: relative;
    z-index: 2;
}

.cta-card .btn {
    position: relative;
    z-index: 2;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-gold-light) 0%, transparent 70%);
    transform: translate(30%, -30%);
    border-radius: 50%;
}

/* =========================================
   Footer
   ========================================= */
.site-footer {
    background-color: var(--color-slate-100);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--color-slate-300);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    margin-top: 1rem;
    font-size: 1rem;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-email {
    font-weight: 600;
    color: var(--color-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-slate-300);
}

.footer-bottom p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* =========================================
   Personal Touch & Accents
   ========================================= */
.handwritten {
    font-family: var(--font-handwriting);
    font-size: 1.4em;
    font-weight: 500;
    color: var(--color-teal);
    transform: rotate(-2deg);
    display: inline-block;
    letter-spacing: normal;
    text-transform: none;
}

.squiggle-underline {
    position: relative;
    display: inline-block;
}

.squiggle-underline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M0,10 Q25,20 50,10 T100,10' fill='none' stroke='%23D4AF37' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 40px 10px;
}

.marker-arrow {
    position: absolute;
    width: 60px;
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M20,80 Q50,20 80,50' fill='none' stroke='%230D9488' stroke-width='3' stroke-linecap='round'/%3E%3Cpolygon points='80,50 70,45 75,60' fill='%230D9488'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* =========================================
   FAQ Section
   ========================================= */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--color-white);
    border: 1px solid var(--color-slate-200);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: box-shadow var(--transition-standard), border-color var(--transition-standard);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    border-color: var(--color-slate-300);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition-standard);
}

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

.faq-icon {
    flex-shrink: 0;
    margin-left: 1rem;
    color: var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-standard);
}

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

.faq-item.active .faq-question {
    color: var(--color-teal);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
}

.faq-answer-inner p {
    margin-bottom: 0;
    color: var(--color-slate-600);
    font-size: 1rem;
}

/* =========================================
   Pricing Section
   ========================================= */
.pricing-subtitle {
    max-width: 800px;
    margin: 1.5rem auto 3rem;
    color: var(--color-slate-600);
    font-size: 1.25rem;
}

.savings-banner {
    background: var(--color-navy);
    border-radius: var(--border-radius);
    padding: 3rem 4rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    overflow: hidden;
}

.savings-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-gold-light) 0%, transparent 70%);
    transform: translate(30%, -30%);
    border-radius: 50%;
    pointer-events: none;
}

.savings-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.2);
    color: var(--color-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.savings-content {
    position: relative;
    z-index: 2;
}

.savings-content h3 {
    color: var(--color-white);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.savings-content p {
    color: var(--color-slate-300);
    margin-bottom: 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.savings-highlight {
    color: var(--color-gold);
    font-weight: 500;
}

.savings-white {
    color: var(--color-white);
    font-weight: 500;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.pricing-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid var(--color-slate-100);
    transition: transform var(--transition-standard), box-shadow var(--transition-standard);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.pricing-card.popular {
    border: 1px solid var(--color-teal);
    box-shadow: 0 12px 24px rgba(13, 148, 136, 0.08);
}

.pricing-card.popular:hover {
    box-shadow: 0 15px 30px rgba(13, 148, 136, 0.12);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-teal);
    color: var(--color-white);
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(13, 148, 136, 0.2);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.best-for {
    font-size: 1.125rem;
    color: var(--color-slate-600);
    margin-bottom: 2rem;
    line-height: 1.6;
    min-height: 45px;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 2.5rem;
    border-top: 1px solid var(--color-slate-100);
    padding-top: 2rem;
}

.pricing-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.25rem;
    color: var(--color-slate-600);
    font-size: 1.125rem;
    line-height: 1.6;
}

.pricing-features li:last-child {
    margin-bottom: 0;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230D9488' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.pricing-investment {
    text-align: left;
    margin-bottom: 1.5rem;
}

.pricing-investment span {
    display: block;
    font-size: 0.8rem;
    color: var(--color-slate-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pricing-investment strong {
    display: block;
    font-size: 2rem;
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1;
}

.pricing-investment .sub-text {
    font-size: 0.9rem;
    color: var(--color-slate-500);
    font-weight: 400;
    margin-top: 0.5rem;
    display: block;
}

.pricing-card .btn {
    width: 100%;
}

/* =========================================
   Animations & Interaction Elements
   ========================================= */

/* Reveal Opacity Fade */
.reveal-fade {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1);
}

.reveal-fade.active {
    opacity: 1;
}

/* Splash Screen */
.splash-screen {
    position: fixed;
    inset: 0;
    background: var(--color-warm-white);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.splash-screen.hidden {
    opacity: 0;
    transform: scale(1.02);
    pointer-events: none;
}

.splash-content {
    text-align: center;
    color: var(--color-navy);
}

.splash-logo-img {
    height: 80px;
    width: auto;
    display: block;
    margin: 0 auto 1.5rem;
}

.splash-tagline {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-slate-600);
}

.splash-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--color-teal);
    width: 0%;
    transition: width 1s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Scroll Progress Line */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--color-teal);
    width: 0%;
    z-index: 10000;
    pointer-events: none;
}

header, main {
    transition: opacity 1s ease;
}

/* Remove original reveal */
.reveal-up {
    display: block;
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    
    .services-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-header {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto 3rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .savings-banner {
        padding: 2.5rem;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    /* Navigation Mobile */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }
    
    .main-nav.active {
        transform: translateY(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    /* About Section Mobile Adjustments */
    .about-greeting {
        justify-content: center;
        padding-right: 1.5rem;
        margin-bottom: -1rem;
    }
    
    .about-portrait {
        width: 94%;
        height: 94%;
        border-radius: 16px;
    }
    
    /* Grids */
    .value-props {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .step-connector {
        display: none;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* Adjust savings banner for mobile */
    .savings-banner {
        margin-bottom: 2rem;
        padding: 1.5rem;
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .savings-icon {
        width: 40px;
        height: 40px;
        margin-top: 0.25rem;
    }
    
    .savings-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .savings-content h3 {
        font-size: 1.2rem;
    }
    
    .savings-content p {
        font-size: 0.95rem;
    }
    
    /* Adjust Pricing Cards to be more compact on mobile */
    .pricing-grid {
        padding: 1.5rem 7.5vw 1rem 7.5vw !important;
    }
    
    .pricing-card .best-for {
        margin-bottom: 1rem;
        min-height: auto;
    }
    
    .pricing-card .pricing-features {
        margin-bottom: 1.5rem;
        padding-top: 1rem;
    }
    
    .pricing-card .pricing-features li {
        margin-bottom: 0.75rem;
        font-size: 1rem;
    }
    
    .pricing-card h3 {
        font-size: 1.3rem;
    }
    
    .pricing-investment {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    /* Standard Smooth Scrolling (Vertical Snap Removed for Small Device Reliability) */
    html {
        scroll-behavior: smooth;
        scroll-padding-top: 100px;
    }
    
    .site-header {
        z-index: 1000;
    }
    
    /* Relaxed Sections - Strict Block Encapsulation to Prevent Bleed */
    .snap-section {
        width: 100vw;
        max-width: 100%;
        height: auto !important;
        min-height: min-content !important; 
        display: block !important;
        padding-top: 5rem !important;
        padding-bottom: 4rem !important;
        box-sizing: border-box;
    }
    
    /* Hero should still feel prominent */
    .hero.snap-section {
        display: flex !important;
        flex-direction: column;
        min-height: 100svh !important;
        justify-content: center;
        padding-top: 100px; /* Space for the header */
    }
    
    .about.snap-section {
        padding-top: 4rem;
        padding-bottom: 3rem;
    }
    
    .contact-footer-wrap.snap-section {
        padding-top: 2rem;
    }
    .contact-footer-wrap .cta {
        width: 100%;
        padding: 2rem 0 3rem;
    }
    .site-footer {
        padding: 2rem 0 1.5rem;
    }

    /* Standard Box Containers */
    .snap-section > .container {
        width: 90%;
        margin: 0 auto;
        height: auto !important;
        min-height: min-content !important;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 1.5rem; /* Re-establishing safe distance between header and grid */
    }

    /* Typography */
    h1 { font-size: 2.1rem; line-height: 1.1; margin-bottom: 0.5rem; }
    h2 { font-size: 1.65rem; line-height: 1.2; margin-bottom: 0.75rem; }
    h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
    p { font-size: 0.95rem; margin-bottom: 0.5rem; line-height: 1.45; }
    
    .hero.snap-section > .container {
        justify-content: center;
        padding-top: 0;
    }
    .hero p.hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    .hero-actions .btn {
        width: 100%;
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }

    /* Magnetic Carousel Implementation */
    .services-list, .process-steps, .problem-grid, .value-props, .pricing-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        width: 100vw;
        margin-left: -5vw;
        padding: 0 7.5vw;
        scroll-padding: 0 7.5vw;
        gap: 1.25rem;
        align-items: stretch;
    }
    
    .services-list::-webkit-scrollbar, .process-steps::-webkit-scrollbar, 
    .problem-grid::-webkit-scrollbar, .value-props::-webkit-scrollbar,
    .pricing-grid::-webkit-scrollbar {
        display: none;
    }
    
    /* High Contrast Borders and Deep Shadows for Card Visibility */
    .service-item, .step, .problem-card, .value-prop-card, .pricing-card {
        scroll-snap-align: center;
        scroll-snap-stop: always;
        flex: 0 0 85%;
        max-width: 85%;
        margin-bottom: 0.5rem;
        padding: 1.5rem !important;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        height: auto;
        border-radius: var(--border-radius);
        background: var(--color-white);
        border: 1px solid var(--color-slate-300) !important; /* Visible against body shift */
        box-shadow: 0 8px 16px rgba(0,0,0,0.06); /* Distinct depth */
    }
    
    /* Dark Section Card Adaptations */
    .why-me .value-prop-card {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }
    
    /* Navigation Dots Styling */
    .mobile-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 0.75rem;
    }
    .mobile-dots .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--color-slate-400);
        transition: all 0.3s ease;
    }
    .mobile-dots .dot.active {
        background-color: var(--color-teal);
        transform: scale(1.4);
    }

    /* Spacing Overrides */
    .section-padding { padding: 0; }
    
    .section-header {
        margin-bottom: 1rem;
        text-align: center;
        width: 100%;
    }
    
    .about-grid { 
        gap: 1.5rem;
        text-align: center;
    }
    .about-image-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .about-greeting {
        justify-content: center;
        padding-right: 0;
        margin-bottom: -0.25rem;
    }
    .about-handwritten {
        font-size: 1.3rem;
    }
    .about-arrow {
        width: 35px;
        height: 45px;
    }
    .about-visual { 
        max-width: 220px;
        margin: 0 auto;
        aspect-ratio: 3/4;
    }
    .visual-accent-1,
    .visual-accent-2 {
        display: none; /* Remove decorative boxes that collide on mobile */
    }
    .about-text {
        text-align: left;
    }
    
    .step-connector { display: none !important; }
    .hidden-desktop { display: flex !important; }
    
    /* Shrink icon wrappers in cards */
    .icon-wrapper {
        width: 34px;
        height: 34px;
        margin-bottom: 0.5rem;
    }
    .icon-wrapper svg { width: 18px; height: 18px; }
    
    .vp-header h4 { font-size: 1.15rem; margin-bottom: 0.25rem; }
}

@media (min-width: 769px) {
    .hidden-desktop {
        display: none !important;
    }
}
