/* Core Variables */
:root {
    --bg-cream: #FDF9F1;
    --text-dark: #4A4238;
    --accent-brown: #5D4A3E; 
    --accent-pink: #E8A8B6;
    --accent-pink-hover: #D695A3;
    --card-bg: #FFFFFF;
}

body {
    font-family: 'Lora', serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    scroll-behavior: smooth; 
}

/* =========================================
   SaaS-Level Navigation Bar
   ========================================= */
.saas-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px max(40px, calc(50vw - 550px)); 
    background-color: rgba(253, 249, 241, 0.95); 
    backdrop-filter: blur(8px); 
    border-bottom: 1px solid rgba(224, 220, 211, 0.6);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none; 
}

/* Nav Logo Text (Pink Default, Brown Hover) */
.nav-brand-text {
    font-family: 'Dancing Script', cursive;
    color: var(--accent-pink); 
    font-size: 2.2rem;
    font-weight: 700;
    transition: transform 0.3s ease, color 0.3s ease;
    display: block;
}

.nav-brand-text:hover {
    transform: scale(1.05);
    color: var(--accent-brown); 
}

.nav-logo-img {
    height: 45px; 
    width: auto;
    margin-right: 15px; 
    display: block;
    transition: transform 0.3s ease;
}

.logo-link:hover .nav-logo-img {
    transform: translateY(-2px);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-links li { display: inline-block; }

.nav-links a, .nav-links a:link, .nav-links a:visited {
    text-decoration: none !important; 
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.nav-links a:hover { color: var(--accent-pink); }
.nav-links a.active { color: var(--accent-brown); }

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-pink);
    transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

/* Nav CTA Button (Pink Default, Brown Hover) */
.nav-cta {
    background-color: var(--accent-pink); 
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-family: 'Lora', serif;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(232, 168, 182, 0.4); 
    transition: background-color 0.3s;
    position: relative;
    overflow: hidden; 
    z-index: 1;
}

.nav-cta:hover { background-color: var(--accent-brown); }

/* =========================================
   Funnel Progress Bar with Cupcake (SCROLL TRACKING)
   ========================================= */
.progress-container {
    width: 100%;
    height: 6px; 
    background: rgba(224, 220, 211, 0.8);
    position: fixed; 
    top: 0; 
    left: 0; 
    z-index: 99999; 
}

.progress-bar {
    height: 100%;
    width: 0%; 
    background: var(--accent-brown);
    box-shadow: 2px 0 10px rgba(93, 74, 62, 0.5); 
    transition: width 0.1s ease-out; 
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    position: relative; 
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0px; 
    right: -16px; 
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%235D4A3E' d='M149.3 352l21.3 128h170.7l21.3-128H149.3z'/%3E%3Cpath fill='%23E8A8B6' d='M384 256c0-53-43-96-96-96-10.2 0-19.9 1.6-29.1 4.6C246.3 128.5 210.4 103 170.7 103c-47.1 0-85.3 38.2-85.3 85.3 0 11.2 2.2 21.8 6.1 31.6C60.2 233.1 38 261 38 293.4c0 45.4 36.8 82.2 82.2 82.2h271.6c45.4 0 82.2-36.8 82.2-82.2 0-32.3-22.1-60.1-53.4-73.3z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(0 4px 6px rgba(93, 74, 62, 0.2)); 
    opacity: 0; 
    transition: opacity 0.4s ease;
}

.progress-bar[style*="width"]::after {
    opacity: 1;
}

/* =========================================
   Upgraded Split Hero Section
   ========================================= */
.hero-section {
    display: flex;
    flex-direction: row !important; 
    align-items: center;
    justify-content: space-between;
    max-width: 1200px !important; 
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    min-height: 70vh;
    text-align: left !important; 
}

.hero-content {
    flex: 1;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
}

.hero-pre-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-brown);
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    color: var(--text-dark);
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #7A7268;
    margin: 0 0 40px 0;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.hero-cta {
    background-color: var(--accent-pink);
    color: white;
    border: none;
    padding: 18px 45px;
    border-radius: 40px;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Lora', serif;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(232, 168, 182, 0.4);
    transition: all 0.3s ease;
    align-self: flex-start;
    position: relative;
    overflow: hidden; 
    z-index: 1;
}

.hero-cta:hover { 
    background-color: var(--accent-pink-hover); 
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(232, 168, 182, 0.5);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #7A7268;
}

.hero-trust .stars {
    color: #F5B041;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* NEW: Slideshow Containers */
.hero-slideshow {
    display: grid; /* Grid allows us to stack items seamlessly */
    width: 100%;
    max-width: 500px;
}

.hero-slide {
    grid-area: 1 / 1; /* Forces all slides into the exact same grid space */
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    position: relative; /* Anchors the floating badges to each specific slide */
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-main-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(74, 66, 56, 0.15);
    animation: float-gentle 6s ease-in-out infinite;
}

.hero-main-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(74, 66, 56, 0.15);
    animation: float-gentle 6s ease-in-out infinite;
}

.floating-value-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(224, 220, 211, 0.6);
}

.badge-1 { top: 10%; right: -20px; animation: float-gentle 5s ease-in-out infinite alternate; }
.badge-2 { bottom: 15%; left: -30px; animation: float-gentle 7s ease-in-out infinite alternate-reverse; }

@keyframes float-gentle {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Animated Button Shine */
.hero-cta::after, .checkout-btn::after, .nav-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.4) 50%, 
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    animation: sweep-shine 4s infinite cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

@keyframes sweep-shine {
    0% { left: -150%; }
    15% { left: 150%; }
    100% { left: 150%; } 
}

/* =========================================
   Builder Steps & Cards
   ========================================= */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.builder-step {
    padding-top: 80px; 
    margin-bottom: 60px;
    scroll-margin-top: 100px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Dancing Script', cursive;
    color: var(--accent-brown);
    margin-bottom: 5px;
}

.step-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #7A7268;
    margin-bottom: 40px;
}

.aesthetic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Selectable Cards UI */
.selectable {
    background-color: var(--card-bg);
    border: 2px solid #E0DCD3;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.selectable:hover {
    border-color: var(--accent-pink);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(232, 168, 182, 0.2), 0 5px 15px rgba(93, 74, 62, 0.1);
}

.selectable.selected {
    border: 3px solid var(--accent-brown);
    background-color: rgba(93, 74, 62, 0.02);
    transform: scale(1.03) translateY(-3px); 
    box-shadow: 0 15px 35px rgba(93, 74, 62, 0.15); 
    z-index: 5; 
}

.selection-indicator {
    opacity: 0;
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: var(--accent-brown);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(93, 74, 62, 0.3);
    transition: opacity 0.3s ease;
}

.selectable.selected .selection-indicator { opacity: 1; }

.card-image-standard {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.aesthetic-card h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--text-dark);
    margin: 10px 0 5px 0;
}

.aesthetic-card .meaning { font-size: 1rem; margin-bottom: 10px; line-height: 1.5; }
.aesthetic-card .palette { font-size: 0.95rem; font-style: italic; color: #7A7268; margin: 0;}

/* SVG Shimmer Effect (Step 1) */
.palette-swatches {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 80px; 
    height: 30px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden; 
    border-radius: 15px; 
}

.palette-swatches::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.9) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: sweep-shine 4.5s infinite cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none; 
}

.aesthetic-card:nth-child(2) .palette-swatches::after { animation-delay: 0.5s; }
.aesthetic-card:nth-child(3) .palette-swatches::after { animation-delay: 1s; }

.selectable:hover .palette-swatches svg {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Card Badges */
.card-badge {
    position: absolute;
    top: -15px; 
    left: 50%;
    transform: translateX(-50%); 
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    white-space: nowrap; 
    z-index: 10;
    animation: premium-pulse 2.5s infinite ease-in-out;
}

.badge-pink { background-color: var(--accent-pink); animation: pink-glow-pulse 2s infinite ease-in-out; }
.badge-green, .badge-brown { background-color: var(--accent-brown); }
.badge-dark { background-color: var(--text-dark); }

@keyframes premium-pulse {
    0%, 100% { transform: translateX(-50%) scale(1); box-shadow: 0 4px 10px rgba(0,0,0,0.15); }
    50% { transform: translateX(-50%) scale(1.05); box-shadow: 0 8px 15px rgba(0,0,0,0.2); }
}

@keyframes pink-glow-pulse {
    0% { transform: translateX(-50%) scale(1); box-shadow: 0 0 0 0 rgba(232, 168, 182, 0.7); }
    70% { transform: translateX(-50%) scale(1.05); box-shadow: 0 0 0 10px rgba(232, 168, 182, 0); }
    100% { transform: translateX(-50%) scale(1); box-shadow: 0 0 0 0 rgba(232, 168, 182, 0); }
}

/* =========================================
   Summary Box & Checkout (Step 4)
   ========================================= */
.summary-box {
    background-color: var(--card-bg);
    border: 1px solid #E0DCD3;
    border-radius: 15px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.summary-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin: 0 0 20px 0;
}

.order-preview-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 25px;
}

.order-preview-img img { width: 100%; height: 100%; object-fit: cover; }

.summary-item { display: flex; justify-content: space-between; margin-bottom: 12px; }
.summary-details p { font-size: 1.1rem; margin: 10px 0; color: var(--text-dark); }
.summary-details span { color: var(--accent-brown); font-weight: bold; }

.scheduling-section {
    margin: 25px 0;
    padding: 20px;
    background-color: rgba(253, 249, 241, 0.6); 
    border: 1px solid #E0DCD3;
    border-radius: 12px;
    text-align: left;
}

.scheduling-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-family: 'Lora', serif;
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 600;
}

.scheduling-inputs { display: flex; gap: 15px; }

/* =========================================
   Scheduling Alignment Fix
   ========================================= */
.input-group { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    position: relative; /* Allows us to anchor the helper text at the bottom */
    padding-bottom: 25px; /* Creates a permanent reserved space for the helper text */
}

.input-group label {
    font-size: 0.85rem;
    color: #7A7268;
    /* Pushes the input/select boxes down so they perfectly align with each other */
    margin-bottom: auto; 
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group input, .input-group select {
    padding: 12px 15px;
    border: 1px solid #E0DCD3;
    border-radius: 8px;
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box; /* Ensures padding doesn't break the width */
}

.input-group input:focus, .input-group select:focus {
    outline: none;
    border-color: var(--accent-brown);
    box-shadow: 0 0 0 2px rgba(93, 74, 62, 0.1);
}

.pill-scarcity {
    background-color: #FFF0F0;
    color: #D64545;
    border: 1px solid #FAD2D2;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* Forces the pill to sit neatly on its own line */
    display: block; 
    width: fit-content;
    margin-top: 8px; 
    margin-left: 0; 
}

.helper-text-small {
    font-size: 0.75rem;
    color: #7A7268;
    font-style: italic;
    /* Pulls the text out of the flow so it doesn't shove the select box up */
    position: absolute; 
    bottom: 0;
    left: 0;
    width: 100%;
}

/* Fulfillment Helper Texts */
.helper-text {
    font-size: 0.85rem;
    color: var(--accent-brown);
    background-color: rgba(93, 74, 62, 0.05);
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 15px;
    margin-bottom: 5px;
    border-left: 3px solid var(--accent-brown);
}

.divider { border: none; border-top: 1px solid #E0DCD3; }
.total-price { font-size: 1.5rem; font-weight: bold; color: var(--text-dark); margin-bottom: 25px; }
.total-price span { color: var(--accent-brown); font-size: 2rem; margin-left: 10px; }

.checkout-btn {
    background-color: var(--accent-brown);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-family: 'Lora', serif;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.checkout-btn:hover { background-color: #45362E; }

.trust-signals {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--accent-brown);
    display: flex;
    justify-content: center;
    gap: 15px;
}

.locked-step { opacity: 0.3; pointer-events: none; transition: opacity 0.6s ease; }
.footer-text { text-align: center; font-size: 0.9rem; color: #7A7268; padding: 40px 0; }

/* =========================================
   FAQ Modal & Trigger
   ========================================= */
.faq-trigger-btn {
    background: none;
    border: none;
    color: #7A7268;
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    margin-top: 15px;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: rgba(122, 114, 104, 0.3);
    text-underline-offset: 4px;
    transition: color 0.2s ease;
    width: 100%;
    text-align: center;
}

.faq-trigger-btn span { color: var(--accent-brown); font-weight: 600; }
.faq-trigger-btn:hover { color: var(--text-dark); }

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 66, 56, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active { opacity: 1; pointer-events: auto; }

.modal-content {
    background: var(--bg-cream);
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border: 1px solid rgba(224, 220, 211, 0.6);
}

.modal-overlay.active .modal-content { transform: translateY(0); }

.modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #7A7268;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close:hover { color: var(--accent-pink); }

.modal-content h3 {
    font-family: 'Dancing Script', cursive;
    color: var(--accent-brown);
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 25px;
    text-align: center;
}

.faq-item { border-bottom: 1px solid #E0DCD3; }
.faq-item:last-child { border-bottom: none; }

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 0;
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-pink);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { margin: 0 0 18px 0; font-size: 0.95rem; color: #7A7268; line-height: 1.6; }

/* =========================================
   Floating Botanical Background Decor
   ========================================= */
.botanical-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
    overflow: hidden;
    pointer-events: none; 
}

.floating-flower, .floating-leaf {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15; 
    filter: blur(1px); 
    animation: drift-slow 20s infinite ease-in-out;
}

@keyframes drift-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.flower-1 {
    width: 250px; height: 250px; top: 15%; left: -50px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23E8A8B6" d="M256,0C167.641,0,96,71.625,96,160c0,23.328,5.109,45.453,14.125,65.312C63.266,243.625,32,295.344,32,352  c0,70.578,57.422,128,128,128c46.328,0,86.641-24.875,109.938-62.156C283.422,467.578,318.578,480,352,480c70.578,0,128-57.422,128-128  c0-56.656-31.266-108.375-78.125-126.688C410.891,205.453,416,183.328,416,160C416,71.625,344.359,0,256,0z M256,64  c52.938,0,96,43.062,96,96c0,52.938-43.062,96-96,96s-96-43.062-96-96C160,107.062,203.062,64,256,64z"/></svg>');
    animation-duration: 25s;
}

.flower-2 {
    width: 180px; height: 180px; top: 55%; right: -30px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23E8A8B6" d="M473.65,191.13c-23.77-50.53-76.32-75.05-128.52-61.91c-13.6-47.58-57.38-81.22-109.13-81.22  c-51.75,0-95.53,33.63-109.13,81.22c-52.2-13.14-104.75,11.38-128.52,61.91c-23.84,50.69,0.3,109.18,49.88,127.3  c-22.3,47.85,3.95,103.55,54.12,118.8c38.74,11.78,79.5-6.68,98.6-40.45c19.1,33.77,59.85,52.23,98.6,40.45  c50.16-15.25,76.42-70.95,54.12-118.8C473.35,300.31,497.49,241.83,473.65,191.13z"/></svg>');
    animation-delay: -5s; 
}

.flower-3 {
    width: 120px; height: 120px; bottom: 10%; left: 10%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23E8A8B6" d="M256,0C167.641,0,96,71.625,96,160c0,23.328,5.109,45.453,14.125,65.312C63.266,243.625,32,295.344,32,352  c0,70.578,57.422,128,128,128c46.328,0,86.641-24.875,109.938-62.156C283.422,467.578,318.578,480,352,480c70.578,0,128-57.422,128-128  c0-56.656-31.266-108.375-78.125-126.688C410.891,205.453,416,183.328,416,160C416,71.625,344.359,0,256,0z"/></svg>');
    animation-duration: 30s;
}

.leaf-1 {
    width: 150px; height: 150px; top: 5%; right: 15%; opacity: 0.12;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%235D4A3E" d="M495.8,16.2c-19-19-48.4-21.6-70.3-6.2C296.6,101.5,145.4,196.3,47.4,320.6c-26.6,33.7-36.8,77.7-28.1,119.8  l9.1,44.1c3.1,15.1,17.9,24.8,33,21.7c1.6-0.3,3.1-0.8,4.5-1.4l41.6-18.1c39.6-17.2,71.6-47.5,89.5-84.6  c63.4-131.7,185.3-239.5,302.5-274.9C523.5,116.3,524.2,60.8,495.8,16.2z"/></svg>');
    animation-delay: -12s;
}

.leaf-2 {
    width: 200px; height: 200px; bottom: 30%; left: -40px; opacity: 0.1;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%235D4A3E" d="M495.8,16.2c-19-19-48.4-21.6-70.3-6.2C296.6,101.5,145.4,196.3,47.4,320.6c-26.6,33.7-36.8,77.7-28.1,119.8  l9.1,44.1c3.1,15.1,17.9,24.8,33,21.7c1.6-0.3,3.1-0.8,4.5-1.4l41.6-18.1c39.6-17.2,71.6-47.5,89.5-84.6  c63.4-131.7,185.3-239.5,302.5-274.9C523.5,116.3,524.2,60.8,495.8,16.2z"/></svg>');
    transform: scaleX(-1);
}

/* =========================================
   Supercharged Mini Cart (Desktop Base)
   ========================================= */
.mini-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(232, 168, 182, 0.3);
    border-radius: 24px;
    padding: 24px;
    width: 320px; 
    box-shadow: 0 20px 40px rgba(74, 66, 56, 0.15);
    z-index: 9999;
    transform: translateY(150%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    display: block; 
}

.mini-cart h4 {
    font-family: 'Dancing Script', cursive;
    color: var(--accent-brown);
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-cart p {
    display: flex;
    justify-content: space-between;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    margin: 8px 0;
    color: #7A7268;
}

.mini-cart span { font-weight: 600; color: var(--text-dark); }

.cart-total {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(224, 220, 211, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.cart-total span { color: var(--accent-brown); font-size: 1.5rem; font-weight: 700; }

.mini-cart.visible {
    transform: translateY(0);
    pointer-events: auto;
    opacity: 1;
    display: block !important; 
}

/* =========================================
   FOMO Live Activity Pill
   ========================================= */
.fomo-pill {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(232, 168, 182, 0.3);
    z-index: 9998;
    transform: translateX(-150%); 
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.fomo-pill.active { transform: translateX(0); }
.fomo-icon { font-size: 1.2rem; }
.fomo-text { font-size: 0.85rem; color: #7A7268; }
.fomo-text span { font-weight: 700; color: var(--accent-brown); }

/* =========================================
   Cinematic Scroll Reveals
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1); 
}

.reveal.active {
    opacity: 1;
    transform: translateY(0); 
}

/* =========================================
   Mobile Adjustments & Overrides
   ========================================= */
@media (max-width: 900px) {
    .hero-section {
        flex-direction: column !important;
        text-align: center !important;
        padding: 40px 20px;
        gap: 40px;
    }
    .hero-content { align-items: center; }
    .hero-title { font-size: 3rem; }
    .hero-cta { align-self: center; }
    .badge-1 { right: 0; top: 0; }
    .badge-2 { left: 0; bottom: 0; }
}

@media (max-width: 768px) {
    .saas-nav { flex-direction: column; align-items: center; padding: 15px 20px; gap: 10px; }
    .logo-link { justify-content: center; width: 100%; }
    .nav-brand-text { font-size: 1.8rem; }
    .nav-actions { display: none !important; }
    .nav-links {
        width: 100%; justify-content: center; gap: 20px;
        padding-top: 10px; border-top: 1px solid rgba(224, 220, 211, 0.4); margin: 0;
    }
    .hero-section { padding: 50px 15px 40px; }
    .summary-box { padding: 30px 20px; }
    
    .builder-step { scroll-margin-top: 70px; }
    
    .selectable.selected { animation: mobile-select-pop 0.3s ease-out; }
    
    .fomo-pill { bottom: 20px; left: 15px; right: 15px; transform: translateY(200%); }
    .fomo-pill.active { transform: translateY(0); }

    .mini-cart { display: none !important; }
    .mini-cart.visible { display: none !important; }

    .progress-container { 
        top: 0; 
        position: fixed; 
        left: 0;
    }
    .progress-bar::after {
        width: 26px; height: 26px; top: 0px; right: -13px;
    }
}

@media (max-width: 600px) {
    .scheduling-inputs { flex-direction: column; }
}

@keyframes mobile-select-pop {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); } 
    100% { transform: scale(1.03); }
}