/* ==========================================
   VOZELTZ CORPORATE STYLESHEET (APPLE LIGHT PREMIUM)
   ========================================== */
:root {
    --brand-dark-bg: #F7F8FA; /* Apple clean light gray altern */
    --brand-deep: #ffffff;    /* Stark white */
    --brand-mint: #0d9488;    /* A slightly deeper teal/mint optimized for legible contrast */
    --brand-mint-glow: rgba(13, 148, 136, 0.15);
    --brand-ink: #0B0B0F;     /* Almost black */
    --text-white: #0B0B0F;    /* Primary text */
    --text-gray: #5B6068;     /* Secondary Slate Gray */
    --card-bg: #ffffff;
    --border-light: rgba(0, 0, 0, 0.06);
    --border-card: #ECEDF1;
    --brand-hover: #0b7e74;   /* Darkened brand mint for hover */
    
    --h1-size: clamp(2.4rem, 6vw, 4rem);
    --h2-size: clamp(1.8rem, 4vw, 2.75rem);
    
    /* Animation Control Variables (Updated dynamically by JS) */
    --scroll-percent: 0;
    
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.15s ease;
}

/* ------------------------------------------
   GLOBAL RESET & BASE
   ------------------------------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: var(--brand-ink);
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.0625rem, 1.2vw, 1.125rem);
    overflow-x: hidden;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
    color: var(--brand-ink);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--brand-dark-bg);
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--brand-mint);
}

/* Global progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-mint), #3b82f6, #8b5cf6);
    width: calc(var(--scroll-percent) * 1%);
    z-index: 100;
    transition: width 0.1s linear;
}

/* Utility layout components */
.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Visual Badges */
.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(13, 148, 136, 0.08);
    border: 1px solid rgba(13, 148, 136, 0.25);
    color: var(--brand-mint);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.badge-outline {
    background: transparent;
    border-color: rgba(0, 0, 0, 0.12);
    color: var(--text-gray);
}

.section-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1d1d1f 30%, #515767 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-gray);
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ------------------------------------------
   1. FLOATING HEADER STYLES
   ------------------------------------------ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 99;
    display: flex;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
    transform: translateY(0);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(0, 0, 0, 0.08);
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 30px;
    width: auto;
    display: block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    filter: invert(1) hue-rotate(180deg); /* High-fidelity math: turns white text to black while keeping checkmark blue */
}

.logo-img:hover {
    transform: scale(1.03);
}

.footer-logo-img {
    filter: none; /* Logo letters are naturally white, so we do not invert to keep the blue mark blue */
    opacity: 0.95;
    height: 34px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

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

.header-cta-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: transparent;
    color: var(--brand-ink);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.header-cta-btn:hover {
    background: var(--brand-ink);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Hamburger Menu Button */
.hamburger-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101; /* above header */
    padding: 0;
    margin-left: auto;
}

.hamburger-menu-btn .bar-line {
    width: 100%;
    height: 2px;
    background-color: var(--brand-ink);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* Open state for hamburger animation */
.hamburger-menu-btn.open .bar-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu-btn.open .bar-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu-btn.open .bar-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 98; /* just below header */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-nav a {
    color: var(--brand-ink);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    font-family: 'Space Grotesk', sans-serif;
}

.mobile-nav a:hover {
    color: var(--brand-mint);
}

.mobile-cta-btn {
    margin-top: 16px;
    padding: 14px 28px;
    background-color: var(--brand-mint) !important;
    color: #ffffff !important;
    border-radius: 50px;
    font-size: 1.2rem !important;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.2);
}

@media (max-width: 768px) {
    .main-nav, .header-actions {
        display: none;
    }
    .hamburger-menu-btn {
        display: flex;
    }
    .site-header {
        height: 60px !important;
    }
    .header-container {
        justify-content: space-between !important; /* Logo left, hamburger right */
    }
    .logo-img {
        height: 24px !important; /* Slimmer elegant logo for mobile viewports */
    }
}

/* ------------------------------------------
   1.5. SITE HERO SECTION
   ------------------------------------------ */
.site-hero {
    padding: 160px 0 100px;
    background-color: #ffffff;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: var(--h1-size);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--brand-ink);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 400;
    color: var(--text-gray);
    max-width: 750px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.hero-cta-btn.primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-mint);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    min-height: 52px;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.2);
}

.hero-cta-btn.primary-cta:hover {
    background-color: var(--brand-hover);
    transform: translateY(-1px);
}

.hero-secondary-link {
    display: inline-flex;
    align-items: center;
    color: var(--brand-mint);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
}

.hero-secondary-link:hover {
    color: var(--brand-hover);
    text-decoration: underline;
}

.hero-microcopy {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 10px;
}

@media (max-width: 600px) {
    .site-hero {
        padding: 120px 0 60px;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 16px;
    }
    .hero-cta-btn.primary-cta, .hero-secondary-link {
        width: 100%;
        justify-content: center;
    }
}

/* ------------------------------------------
   2. APPLE INTERACTIVE SPLIT LAYOUT (LIGHT THEME)
   ------------------------------------------ */
.intro-container {
    position: relative;
    min-height: 400vh; /* Scroll length for the 4 states */
    background-color: #ffffff;
}

/* Full-screen sticky viewport for Apple-style scrollytelling */
.interactive-viewport {
    position: sticky;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    z-index: 2;
}

/* Canvas plays full-screen centered with background containment */
.scroll-frame-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Centers the video beautifully */
    z-index: 2;
    background-color: transparent;
    will-change: transform;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Foggy Apple radial glow at the edges for premium depth */
.viewport-overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.4) 65%, rgba(255, 255, 255, 0.85) 100%);
    pointer-events: none;
    z-index: 5;
}

/* Narrative Captions Overlay */
.scroll-captions-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

/* Apple fading slides */
.caption-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 8%;
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.caption-slide.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Alignments to keep text away from the center phone action */
.slide-center {
    justify-content: center;
}

.slide-left {
    justify-content: flex-start;
}

.slide-right {
    justify-content: flex-end;
}

/* Minimal Apple Typography and Layout System */
.slide-split {
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
}

.minimal-welcome {
    position: absolute;
    bottom: 5%;
    left: 8%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 400px;
    pointer-events: auto;
}

.minimal-slide-text {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    pointer-events: auto;
}

.step-num-badge {
    display: inline-block;
    font-family: monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: #86868b;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.apple-heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 4.5vw, 4.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 14px;
}

.apple-heading.text-red {
    color: #ef4444;
    text-shadow: 0 0 30px rgba(239, 68, 68, 0.08);
}

.apple-heading.text-purple {
    color: #6d28d9;
    text-shadow: 0 0 30px rgba(109, 40, 217, 0.08);
}

.apple-heading.text-mint {
    color: var(--brand-mint);
    text-shadow: 0 0 30px rgba(13, 148, 136, 0.1);
}

.apple-subheading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
    font-weight: 400;
    color: #86868b;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.scroll-indicator {
    display: block;
    color: var(--brand-mint);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* Sidebar Client Alert integrated card position override */
.minimal-slide-text .client-alert-card {
    position: relative !important;
    margin-top: 35px;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    opacity: 1 !important;
    transform: none !important;
    width: 100% !important;
    max-width: 320px;
    animation: none !important;
}

/* Floating overlay widgets - High fidelity $10,000 USD Glassmorphism Standard */
.client-alert-card {
    position: absolute;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 18px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
    z-index: 15;
}

.client-alert-card.alert-red-style {
    border-color: rgba(220, 38, 38, 0.15);
    box-shadow: 0 25px 50px rgba(220, 38, 38, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.client-alert-card.alert-mint-style {
    border-color: rgba(13, 148, 136, 0.18);
    box-shadow: 0 25px 50px rgba(13, 148, 136, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.calendar-card {
    position: absolute;
    opacity: 0;
    transform: translateY(30px);
    background: rgba(255, 255, 255, 0.93);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    padding: 20px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
    z-index: 15;
}

/* Positioning alert overlays on screen (floating next to center video focus) */
#client-card {
    bottom: 8%;
    left: 8%;
    width: 320px;
}

#recovered-card {
    bottom: 8%;
    right: 8%;
    width: 320px;
}

#calendar-overlay-card {
    top: 22%;
    right: 8%;
    width: 310px;
}

/* Widget Inner Components Styling */
.avatar-ring {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: 2px solid transparent;
}

.alert-red-style .avatar-ring {
    background-color: rgba(239, 68, 68, 0.06);
    border-color: #ef4444;
}

.alert-mint-style .avatar-ring {
    background-color: rgba(13, 148, 136, 0.06);
    border-color: var(--brand-mint);
}

.alert-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.alert-user {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-ink);
}

.alert-action {
    font-size: 0.8rem;
    font-weight: 600;
}

.alert-red-style .alert-action {
    color: #ef4444;
}

.alert-mint-style .alert-action {
    color: var(--brand-mint);
}

/* Calendar widget details */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-b: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 12px;
    margin-bottom: 14px;
}

.calendar-title {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--brand-ink);
}

.calendar-status {
    font-size: 0.7rem;
    color: var(--brand-mint);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.calendar-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.grid-cell {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.8rem;
    color: var(--text-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s ease;
}

.grid-cell.filled {
    background: rgba(0, 0, 0, 0.03);
    text-decoration: line-through;
    color: #a3aec5;
}

.grid-cell.slot-booking {
    border-color: rgba(13, 148, 136, 0.4);
    background-color: rgba(13, 148, 136, 0.05);
    color: var(--brand-mint);
    font-weight: 700;
    flex-direction: row-reverse;
}

/* Slot booking dynamic highlight active style */
.caption-slide.active .grid-cell.slot-booking {
    border-color: var(--brand-mint);
    background-color: rgba(13, 148, 136, 0.1);
    color: var(--brand-ink);
    box-shadow: 0 0 20px rgba(13, 148, 136, 0.15);
}

.booking-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--brand-mint);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: bold;
    transform: scale(0.5) rotate(-45deg);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.6s, opacity 0.5s ease 0.6s;
}

.caption-slide.active .booking-check {
    transform: scale(1) rotate(0deg);
    opacity: 1;
}

.booking-text {
    flex-grow: 1;
    text-align: left;
    padding-left: 10px;
}

/* Animations for pulsing elements */
.animate-pulse-red {
    animation: pulseRed 2s infinite ease-in-out;
}

.animate-pulse-mint {
    animation: pulseMint 2s infinite ease-in-out;
}

@keyframes pulseRed {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.3); }
    70% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

@keyframes pulseMint {
    0% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.3); }
    70% { box-shadow: 0 0 0 8px rgba(13, 148, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0); }
}

/* Animate overlays into view when their parent slide becomes active */
.caption-slide.active .client-alert-card,
.caption-slide.active .calendar-card {
    opacity: 1;
    transform: translateY(0);
}

/* ------------------------------------------
   RESPONSIVE OVERLAY ADJUSTMENTS FOR MOBILE
   ------------------------------------------ */
@media (max-width: 992px) {
    .intro-container {
        min-height: 200vh !important; /* Shorter scroll height for faster, more dynamic mobile animation */
    }
    
    /* Viewport sticky covers the full screen just like desktop for scrolling parity */
    .interactive-viewport {
        position: sticky;
        top: 0;
        height: 100vh;
        width: 100vw;
        overflow: hidden;
        background-color: #ffffff;
    }
    
    /* Phone positioned elegantly in the center without cropping */
    .scroll-frame-canvas {
        position: absolute;
        top: 60px; /* Slim header offset */
        height: 46vh !important;
        width: 81.77vh !important;
        left: calc(50vw - 40.88vh) !important;
        object-fit: contain;
        z-index: 2;
        transform-origin: center center;
    }
    
    .viewport-overlay-glow {
        display: none;
    }
    
    /* Captions overlay positioned perfectly in the bottom half of the screen */
    .scroll-captions-overlay {
        position: absolute;
        top: auto !important; /* Clear desktop top: 0 */
        bottom: 0;
        left: 0;
        width: 100%;
        height: 52vh; /* Fills the bottom half of the screen */
        z-index: 10;
        pointer-events: none;
    }
    
    /* Slides fade in and out absolute positioned inside bottom overlay (ZERO overlaps!) */
    .caption-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 24px;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
        gap: 15px !important;
        padding-top: 20px !important;
        padding-bottom: 50px !important; /* Pushes the card/alert up, clear of the black strip! */
    }
    
    .apple-heading {
        font-size: 1.8rem !important;
        letter-spacing: -1px !important;
        line-height: 1.1 !important;
        margin-bottom: 8px !important;
    }
    
    .apple-subheading {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
    }
    
    .caption-slide.active {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .minimal-slide-text, .minimal-welcome {
        max-width: 100% !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Floating alert cards and calendar styled to fit centered in bottom layout */
    .client-alert-card, .calendar-card {
        position: relative !important;
        margin: 15px auto 0 !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        top: auto !important;
        width: 100% !important;
        max-width: 290px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
        padding: 14px !important;
        border-radius: 14px !important;
    }
    
    .calendar-card {
        margin: 10px auto 0 !important;
        padding: 12px 16px !important;
    }
    
    .calendar-grid {
        gap: 6px !important;
    }
    
    .grid-cell {
        padding: 6px 10px !important;
    }
}

/* ------------------------------------------
   3. BRIDGE HERO & AUDIO PLAYER
   ------------------------------------------ */
.home-bridge-hero {
    background-color: #ffffff;
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.audio-demo-player {
    max-width: 550px;
    margin: 40px auto 0;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background-color: var(--brand-mint);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.25);
}

.play-btn:hover {
    transform: scale(1.05);
}

.player-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.player-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--brand-ink);
}

.player-duration {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-family: monospace;
}

.soundwave-container {
    display: flex;
    align-items: flex-end;
    height: 40px;
    gap: 4px;
}

.soundwave-container .bar {
    flex: 1;
    height: 5%;
    background-color: rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    transition: height 0.1s ease;
}

.soundwave-container.playing .bar {
    background-color: var(--brand-mint);
    animation: bounceBar 1.2s infinite ease-in-out alternate;
}

.soundwave-container.playing .bar:nth-child(1) { animation-delay: -0.2s; }
.soundwave-container.playing .bar:nth-child(2) { animation-delay: -0.8s; }
.soundwave-container.playing .bar:nth-child(3) { animation-delay: -0.4s; }
.soundwave-container.playing .bar:nth-child(4) { animation-delay: -1.1s; }
.soundwave-container.playing .bar:nth-child(5) { animation-delay: -0.6s; }
.soundwave-container.playing .bar:nth-child(6) { animation-delay: -0.9s; }
.soundwave-container.playing .bar:nth-child(7) { animation-delay: -0.3s; }
.soundwave-container.playing .bar:nth-child(8) { animation-delay: -0.7s; }
.soundwave-container.playing .bar:nth-child(9) { animation-delay: -0.5s; }
.soundwave-container.playing .bar:nth-child(10) { animation-delay: -1.0s; }
.soundwave-container.playing .bar:nth-child(11) { animation-delay: -0.1s; }
.soundwave-container.playing .bar:nth-child(12) { animation-delay: -0.85s; }
.soundwave-container.playing .bar:nth-child(13) { animation-delay: -0.45s; }
.soundwave-container.playing .bar:nth-child(14) { animation-delay: -0.75s; }
.soundwave-container.playing .bar:nth-child(15) { animation-delay: -0.25s; }
.soundwave-container.playing .bar:nth-child(16) { animation-delay: -0.65s; }

@keyframes bounceBar {
    0% { height: 10%; }
    100% { height: 100%; }
}

/* ------------------------------------------
   4. SECTION PAIN (APPLE LIGHT)
   ------------------------------------------ */
.section-pain {
    background-color: var(--brand-dark-bg);
    padding: 100px 0;
    border-top: 1px solid var(--border-light);
}

.pain-header {
    max-width: 750px;
    margin-bottom: 60px;
}

.mono-badge {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--brand-mint);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 700;
}

.pain-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--brand-ink);
}

.pain-stories {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pain-block {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
}

.pain-block .num {
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--brand-mint);
    font-weight: 700;
}

.story-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--brand-ink);
    margin-bottom: 8px;
}

.story-content p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.story-content .punchline {
    font-weight: 600;
    color: var(--brand-ink);
    margin-bottom: 0;
}

.pain-callout {
    margin-top: 50px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brand-ink);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

@media (max-width: 768px) {
    .pain-block {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* ------------------------------------------
   5. SECTION PILARES (APPLE LIGHT)
   ------------------------------------------ */
.section-pillars {
    padding: 100px 0;
    background-color: #ffffff;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pillar-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    border-color: var(--brand-mint);
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(13, 148, 136, 0.08);
}

.pillar-icon {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.pillar-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--brand-ink);
    margin-bottom: 12px;
}

.pillar-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ------------------------------------------
   6. SECTION CÓMO FUNCIONA (APPLE LIGHT)
   ------------------------------------------ */
.section-how {
    padding: 100px 0;
    background-color: var(--brand-dark-bg);
    border-top: 1px solid var(--border-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    position: relative;
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}

.step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(13, 148, 136, 0.1);
    line-height: 1;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brand-ink);
    margin-bottom: 12px;
}

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

/* ------------------------------------------
   7. SECTION SECTORES (APPLE LIGHT)
   ------------------------------------------ */
.section-sectors {
    padding: 100px 0;
    background-color: #ffffff;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.sector-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sector-card:hover {
    border-color: var(--brand-mint);
    transform: scale(1.02);
    box-shadow: 0 15px 45px rgba(13, 148, 136, 0.08);
}

.sector-icon {
    font-size: 1.8rem;
}

.sector-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--brand-ink);
}

.sector-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ------------------------------------------
   8. SECTION PRECIOS (APPLE LIGHT)
   ------------------------------------------ */
.section-pricing {
    padding: 100px 0;
    background-color: var(--brand-dark-bg);
    border-top: 1px solid var(--border-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
    align-items: stretch;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}

.pricing-card:hover {
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.pricing-card.highlighted {
    border-color: var(--brand-mint);
    box-shadow: 0 20px 50px var(--brand-mint-glow);
}

.card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--brand-mint);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--brand-ink);
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
    color: var(--brand-ink);
    font-family: 'Space Grotesk', sans-serif;
}

.pricing-card .period {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.setup-cost {
    font-size: 0.85rem;
    color: var(--brand-mint);
    font-weight: 700;
    margin-bottom: 24px;
}

.pricing-card.highlighted .setup-cost {
    color: var(--brand-mint);
}

.pricing-features {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.minutes-feature {
    font-size: 1.05rem;
    color: var(--brand-ink);
    line-height: 1.4;
}

.approx-calls {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 2px;
}

.extra-minute {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.pricing-note {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-gray);
    padding: 20px;
    background: rgba(0, 0, 0, 0.01);
    border: 1px solid var(--border-light);
    border-radius: 12px;
}

.custom-card {
    border-style: dashed;
    border-width: 2px;
}

.pricing-card.custom-card .price {
    font-size: 2.2rem;
    margin-top: 6px;
    margin-bottom: 12px;
}

.audience {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--brand-ink);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.pricing-card.highlighted .pricing-btn {
    background-color: var(--brand-mint);
    border: none;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.2);
}

.outline-btn {
    background-color: transparent;
    border: 1px solid var(--brand-ink);
    color: var(--brand-ink);
}

.outline-btn:hover {
    background-color: var(--brand-ink);
    color: #ffffff;
}

.pricing-btn:hover {
    background-color: var(--brand-ink);
    color: #ffffff;
}

/* ------------------------------------------
   9. SECTION FAQ (APPLE LIGHT)
   ------------------------------------------ */
.section-faq {
    padding: 100px 0;
    background-color: #ffffff;
}

.faq-container {
    max-width: 750px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 6px 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.01);
    transition: var(--transition-smooth);
    list-style: none;
}

.faq-item[open] {
    border-color: rgba(0, 0, 0, 0.15);
}

.faq-item summary {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 18px 12px;
    color: var(--brand-ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    outline: none;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--brand-mint);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 12px 18px;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    margin-top: 6px;
    padding-top: 12px;
}

/* ------------------------------------------
   10. FINAL CTA / FORM (APPLE LIGHT)
   ------------------------------------------ */
.section-final-cta {
    padding: 120px 0;
    background: radial-gradient(circle at bottom, rgba(13, 148, 136, 0.06) 0%, transparent 60%), #f5f5f7;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.cta-form-container {
    max-width: 600px;
    margin: 50px auto 0;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    text-align: left;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    color: var(--brand-ink);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--brand-mint);
    box-shadow: 0 0 0 3px var(--brand-mint-glow);
}

.form-submit-btn {
    padding: 16px;
    border-radius: 10px;
    border: none;
    background-color: var(--brand-mint);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.25);
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.form-submit-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.form-msg {
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 8px;
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 15px 0;
    text-align: left;
}

.form-group-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--brand-mint);
    flex-shrink: 0;
}

.form-group-checkbox label {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-gray);
    cursor: pointer;
}

.form-group-checkbox label a {
    color: var(--brand-mint);
    text-decoration: underline;
    font-weight: 600;
}

.form-privacy-notice {
    font-size: 0.75rem;
    line-height: 1.5;
    color: #515767;
    margin: 15px 0;
    padding: 14px;
    background-color: var(--brand-dark-bg);
    border-radius: 8px;
    border: 1px solid var(--border-light);
    text-align: left;
}

.form-privacy-notice strong {
    color: var(--brand-ink);
}

.form-privacy-notice a {
    color: var(--brand-mint);
    text-decoration: underline;
}

/* Form Actions Row & Buttons */
.form-actions-row {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.form-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 12px;
    min-height: 52px;
    border: 1px solid #25d366;
    background-color: transparent;
    color: #25d366;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
    flex: 1;
}

.form-whatsapp-btn:hover {
    background-color: rgba(37, 211, 102, 0.05);
    border-color: #20ba5a;
    color: #20ba5a;
}

.form-submit-btn {
    flex: 1;
    min-height: 52px;
    border-radius: 12px;
}

@media (max-width: 600px) {
    .form-actions-row {
        flex-direction: column;
        gap: 12px;
    }
    .form-submit-btn, .form-whatsapp-btn {
        width: 100%;
        min-height: 48px;
    }
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    .cta-form-container {
        padding: 24px;
    }
}

/* ------------------------------------------
   11. FOOTER (GROUNDED DARK EXCELLENCE)
   ------------------------------------------ */
.site-footer {
    background-color: #0c0d12;
    padding: 80px 0 40px;
    color: #a3aec5;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer .logo {
    color: #ffffff;
}

.site-footer .logo-dot {
    color: var(--brand-mint);
}

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

.footer-col-brand p {
    color: #a3aec5;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col a {
    display: block;
    color: #a3aec5;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.footer-col a:hover {
    color: var(--brand-mint);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-col-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-col-brand p {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .footer-col h4 {
        margin-bottom: 16px;
    }
    
    .footer-col a {
        margin-bottom: 10px;
    }
    
    .footer-logo-img {
        height: 38px; /* Bigger logo in mobile footer */
        margin-bottom: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ------------------------------------------
   LEGAL PAGES STYLES
   ------------------------------------------ */
.legal-page-container {
    padding-top: 120px; /* offset for fixed header */
    padding-bottom: 80px;
    background-color: #ffffff; /* legal texts look best on white background */
    min-height: 80vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--brand-ink);
}

.legal-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    color: var(--brand-ink);
}

.legal-content .last-update {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 500;
}

.legal-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 8px;
    color: var(--brand-ink);
}

.legal-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--brand-ink);
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--text-gray);
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.9rem;
}

.legal-content th, .legal-content td {
    border: 1px solid var(--border-light);
    padding: 12px 14px;
    text-align: left;
}

.legal-content th {
    background-color: var(--brand-dark-bg);
    font-weight: 700;
    color: var(--brand-ink);
}

.legal-content tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.01);
}

.legal-back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    color: var(--brand-mint);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.legal-back-home:hover {
    transform: translateX(-4px);
}

/* ------------------------------------------
   12. MOBILE STICKY CTA (APPLE STYLE)
   ------------------------------------------ */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 999;
    display: none;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.sticky-cta-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 48px;
    background-color: var(--brand-mint);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.2);
    transition: var(--transition-smooth);
}

.sticky-cta-btn:hover {
    background-color: var(--brand-hover);
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }
    body {
        padding-bottom: 80px;
    }
}

/* ------------------------------------------
   1.6. HERO GUARANTEES BAR STYLES
   ------------------------------------------ */
.hero-guarantees-bar {
    background-color: #ffffff;
    padding: 24px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.guarantees-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-gray);
}

.guarantee-icon {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .guarantees-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        justify-items: center;
    }
    .guarantee-item {
        font-size: 0.85rem;
    }
}

/* ------------------------------------------
   7.5. SECTION HONESTY (APPLE LIGHT)
   ------------------------------------------ */
.section-honesty {
    padding: 100px 0;
    background-color: #ffffff;
    border-top: 1px solid var(--border-light);
}

.honesty-box {
    max-width: 800px;
    margin: 0 auto;
    background: #F7F8FA;
    border: 1px solid var(--border-card);
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.honesty-content {
    margin-top: 30px;
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

.honesty-content p {
    margin-bottom: 20px;
}

.honesty-list {
    list-style: none;
    margin: 30px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.honesty-list li {
    position: relative;
    padding-left: 28px;
    font-size: 1rem;
}

.honesty-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand-mint);
    font-weight: 700;
    font-size: 1.1rem;
}

.honesty-list li strong {
    color: var(--brand-ink);
    display: block;
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.honesty-signature {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.95rem;
}

.signature-title {
    font-size: 0.85rem;
    color: var(--text-gray);
}

@media (max-width: 600px) {
    .honesty-box {
        padding: 30px 20px;
        border-radius: 16px;
    }
}
