/* Core Variables & Resets */
:root {
    --primary-bg: #faf9fd;
    --text-primary: #1c1c1e;
    --text-secondary: #6e6e73;
    
    /* Pastel Glows */
    --gradient-primary: linear-gradient(135deg, #FFB6B9 0%, #fae3d9 50%, #BBE1FA 100%);
    --gradient-btn: linear-gradient(135deg, #ff8c94 0%, #ffaba1 50%, #9cb8fa 100%);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 8px 32px 0 rgba(143, 153, 178, 0.15);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;
    
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;

    /* Fluid Typography Roots */
    --step-0: clamp(0.9rem, 0.86rem + 0.18vw, 1rem); /* Base */
    --step-1: clamp(1.1rem, 1.05rem + 0.25vw, 1.25rem);
    --step-2: clamp(1.35rem, 1.28rem + 0.35vw, 1.55rem);
    --step-3: clamp(1.65rem, 1.55rem + 0.5vw, 1.95rem);
    --step-4: clamp(2.1rem, 1.95rem + 0.75vw, 2.6rem);
    --step-5: clamp(2.8rem, 2.5rem + 1.25vw, 3.8rem);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--primary-bg);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--gradient-btn));
    border-radius: 10px;
    border: 3px solid var(--primary-bg);
}
::-webkit-scrollbar-thumb:hover {
    filter: brightness(0.9);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for sticky navbar */
}


body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background-color: var(--primary-bg);
    line-height: 1.5;
    position: relative;
    min-height: 100vh;
}

/* Background Animated Shapes */
.bg-shapes {
    position: fixed;
    top: 0; left: 0; width: 100vw; min-height: 100vh;
    z-index: -1;
    overflow: visible;
    pointer-events: none;
}

.shape {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 20s infinite ease-in-out alternate;
    will-change: transform;
}

.shape-1 {
    width: 40vw; height: 40vw;
    background: #FFB6B9;
    top: -10vw; left: -10vw;
    animation-duration: 25s;
}

.shape-2 {
    width: 30vw; height: 30vw;
    background: #BBE1FA;
    bottom: -5vw; right: -5vw;
    animation-delay: -5s;
}

.shape-3 {
    width: 20vw; height: 20vw;
    background: #E8D3FF;
    top: 40%; left: 50%;
    animation-duration: 30s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5%, 10%) scale(1.1); }
    100% { transform: translate(-5%, 5%) scale(0.9); }
}

/* Typography Utilities */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

/* Buttons & Links */
a { text-decoration: none; color: inherit; }

.btn-primary, .btn-primary-sm, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    border-radius: var(--radius-full);
    outline: none;
    user-select: none;
}

.btn-primary:active, .btn-primary-sm:active, .btn-secondary:active, .btn-outline:active {
    transform: scale(0.96);
}

.btn-primary {
    background: var(--gradient-btn);
    color: white;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 182, 185, 0.4);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 182, 185, 0.5);
}

.glow-effect {
    animation: glow-pulse 3s infinite alternate;
}

@keyframes glow-pulse {
    0% { box-shadow: 0 4px 15px rgba(255, 182, 185, 0.4); }
    100% { box-shadow: 0 4px 25px rgba(255, 182, 185, 0.8); }
}

.btn-secondary {
    background: var(--glass-bg);
    background: rgba(255, 255, 255, 0.1); /* fallback */
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.8rem 1.8rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--glass-bg);
    background: rgba(255, 255, 255, 0.08); /* fallback */
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--glass-shadow);
}

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 1001; /* Above navbar */
    background: transparent;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-btn);
    box-shadow: 0 0 10px rgba(255, 182, 185, 0.5);
    transition: width 0.1s ease-out;
}


/* 1. NAVBAR */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 100;
    transition: all 0.4s ease;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo i {
    color: #FFB6B9;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-primary);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none; border: none; font-size: 1.5rem; cursor: pointer;
    color: var(--text-primary);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    width: 80%;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.mobile-nav-overlay.active .mobile-nav-content {
    transform: translateY(0);
}

.mobile-link {
    font-size: 1.8rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-link:active {
    color: #FFB6B9;
}

.mobile-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 45px; height: 45px;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.mobile-close-btn:active {
    background: #f0f0f0;
}

/* 2. HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
}

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

.hero-title {
    font-size: var(--step-5);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: var(--step-1);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
}


.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Generic Section Layout */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-title {
    font-size: var(--step-4);
    margin-bottom: 3rem;
    font-weight: 700;
}


/* 4. CATEGORY FILTER & TEMPLATES */
.category-filter {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.category-filter::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--text-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0, 0.05);
}

.template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.template-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), 
                opacity 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 0.4s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.template-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(143, 153, 178, 0.25);
}

.card-img-wrapper {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f0f0f0;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.template-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.price-tag {
    position: absolute;
    top: 1rem; right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.premium-tag {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    color: white;
}

.card-content {
    padding: 1.5rem 1rem;
}

.card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.card-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-outline, .btn-primary-sm {
    flex: 1;
    padding: 0.6rem;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
}

.btn-outline {
    background: transparent;
    border: 1px solid #ddd;
}
.btn-outline:hover { background: rgba(0,0,0, 0.05); }

.btn-primary-sm {
    background: var(--text-primary);
    color: white;
}
.btn-primary-sm:hover { 
    background: #000; 
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Extra UI Elements */
.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.4);
    z-index: 5;
    animation: floating-badge 3s infinite ease-in-out;
}

@keyframes floating-badge {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -5px); }
}

.offer-tag {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(255, 107, 107, 0.9);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

.price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.price-original {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    opacity: 0.6;
}

.feature-icons {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.feature-item i {
    font-size: 0.9rem;
    color: #FFB6B9;
}

.glow-btn:hover {
    box-shadow: 0 0 15px rgba(255, 182, 185, 0.6), 0 0 30px rgba(211, 164, 255, 0.3);
}

/* 5. HOW IT WORKS */
.steps-grid.four-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.step-card {
    text-align: left;
    position: relative;
    z-index: 2;
    padding: 2rem;
    transition: all 0.4s ease;
}

.step-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 182, 185, 0.4);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.step-card h4 { margin-bottom: 0.8rem; font-size: 1.2rem; }
.step-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* Connecting line logic via pseudo-elements */
.steps-grid.four-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 182, 185, 0.5), transparent);
    z-index: 1;
}

/* 6. REVIEWS CAROUSEL */
.reviews-section {
    overflow: hidden;
}

.reviews-carousel {
    display: flex;
    width: 100%;
}

.reviews-track {
    display: flex;
    gap: 2rem;
    animation: scroll-carousel 30s linear infinite;
    padding: 1rem 0;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.review-card {
    min-width: 320px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stars { color: #f6d365; }

.review-card p { font-style: italic; color: var(--text-secondary); flex-grow: 1; }

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}

.avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
}

@keyframes scroll-carousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-320px * 3 - 6rem)); } 
    /* Adjust based on number of distinct cards */
}

/* 7. CTA SECTION */
.cta-section {
    padding: 0 2rem 6rem;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.cta-container h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
}

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

/* 7. CONTACT SECTION */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon-wrapper i {
    font-size: 2rem;
    opacity: 0.9;
}

.contact-item h4 {
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

.contact-item a, .contact-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--text-primary);
}

.contact-form-wrapper {
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease-out;
}

.contact-submit-wrapper {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease-out;
}

.fade-in-section.is-visible .form-group,
.fade-in-section.is-visible .contact-submit-wrapper {
    opacity: 1;
    transform: none;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid rgba(255, 182, 185, 0.4);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    outline: none;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    background: #f0f0f0;
    border-color: #FFB6B9;
    box-shadow: 0 0 0 4px rgba(255, 182, 185, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0a0a0;
}

.contact-submit {
    margin-top: 1rem;
    width: 100%;
    font-size: 1.1rem;
    padding: 1.2rem;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #d3a4ff 0%, #FFB6B9 100%);
    color: white;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(211, 164, 255, 0.4);
}

/* 8. FOOTER */
.footer {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    padding: 4rem 2rem 1rem;
    border-top: 1px solid var(--glass-border);
}

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

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

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col a, .footer-desc {
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0, 0.05);
}

/* 9. PRODUCT PAGE STYLES */
.product-page {
    background: var(--bg-color);
}

.product-wrapper {
    max-width: 1300px;
    margin: 100px auto 4rem;
    padding: 0 5%;
    position: relative;
    z-index: 10;
    overflow: visible !important;
    min-height: auto;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    position: relative;
    z-index: 10;
    overflow: visible !important;
}

/* Left Col: Preview */
.product-preview-col {
    position: relative;
    height: 100%;
}

.preview-sticky {
    position: sticky;
    top: 100px;
}

.main-preview {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    padding: 0;
    box-shadow: 0 20px 40px rgba(0,0,0, 0.05);
}

.main-preview img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.main-preview:hover img {
    transform: scale(1.02);
}

.preview-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0, 0.04999999999999999);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-preview:hover .preview-overlay {
    opacity: 1;
}

/* Right Col: Details */
.product-details-col {
    padding-bottom: 4rem;
}

.category-tag {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: inline-block;
}

.product-title {
    font-size: var(--step-5);
    margin-bottom: 1rem;
    line-height: 1.1;
    font-weight: 800;
}

.product-desc {
    font-size: var(--step-1);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}


.price-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.product-price {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-primary);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

.badge i {
    color: #BBE1FA;
    font-size: 1.1rem;
}

.product-divider {
    height: 1px;
    background: rgba(0,0,0, 0.05);
    margin: 3rem 0;
    width: 100%;
}

/* Order Section */
.order-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.order-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.upload-area {
    border: 2px dashed rgba(255, 182, 185, 0.5);
    background: rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.upload-area:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: #FFB6B9;
}

.upload-area i {
    font-size: 2.5rem;
}

/* Payment Box */
.payment-box {
    margin-top: 3rem;
    padding: 2rem;
    border: 1px solid rgba(255, 182, 185, 0.3);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.summary-row strong {
    color: var(--text-primary);
    font-weight: 600;
}

.summary-divider {
    height: 1px;
    background: rgba(0,0,0, 0.05);
    margin: 1.5rem 0;
}

.final-total {
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0;
}

.final-total span:last-child {
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Reviews Stack */
.overall-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.review-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* 10. ABOUT ME SECTION */
.about-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    margin-bottom: 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-photo-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
}

.about-photo-ring {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(0,0,0, 0.05); /* Clean neutral shadow */
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid white;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    filter: none !important; /* Explicitly reset filters */
    mix-blend-mode: normal !important; /* Explicitly reset mix blend mode */
    background: transparent !important;
}

.about-photo-wrapper:hover .about-photo {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0, 0.05);
    filter: none !important; /* Block any cascaded hover color filters */
}

.about-content {
    padding: 3.5rem;
}

.about-headline {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.about-subheadline {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.about-desc p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

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

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}

.highlight-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 182, 185, 0.3);
    border-radius: 30px;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.highlight-badge:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0, 0.05);
}

.highlight-badge i {
    color: #FFB6B9;
    font-size: 1.2rem;
}

@keyframes spin-gradient {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.about-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    opacity: 0.4;
}

.a-shape-1 {
    width: 300px;
    height: 300px;
    background: #d3a4ff;
    top: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite;
}

.a-shape-2 {
    width: 250px;
    height: 250px;
    background: #BBE1FA;
    bottom: -50px;
    right: 10%;
    animation: float 10s ease-in-out infinite reverse;
}

/* Animations Trigger Utils Removed for Stability */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), 
                transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

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

/* ═══════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ═══════════════════════════════════════════════════════════ */

.announcement-bar {
    background: var(--gradient-btn);
    color: #000;
    padding: 10px 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 1100;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), 
                opacity 0.4s ease,
                margin-top 0.4s ease;
}

.announcement-hiding {
    transform: translateY(-100%);
    opacity: 0;
    margin-top: -40px;
}

.announcement-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.65rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.88rem;
    flex-wrap: wrap;
}

.announcement-inner p {
    margin: 0;
    font-size: 0.88rem;
}

.announcement-sparkle {
    font-size: 1.1rem;
    animation: sparkle-bounce 2s ease-in-out infinite;
}

@keyframes sparkle-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.25); }
}

.announcement-cta {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
    white-space: nowrap;
}

.announcement-cta:hover {
    background: rgba(255, 255, 255, 0.25);
}

.announcement-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 0.3rem;
    transition: color 0.2s;
    line-height: 1;
}

.announcement-close:hover {
    color: white;
}

/* Push navbar down when announcement is visible */
body.has-announcement .navbar {
    top: 38px;
}

body.has-announcement .hero {
    padding-top: 10rem;
}

/* ═══════════════════════════════════════════════════════════
   STATS COUNTER SECTION
   ═══════════════════════════════════════════════════════════ */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1.5rem;
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 182, 185, 0.2);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   PRICING COMPARISON TABLE
   ═══════════════════════════════════════════════════════════ */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: flex-start;
}

.pricing-card {
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(143, 153, 178, 0.2);
}

.pricing-popular {
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transform: scale(1.05);
    z-index: 2;
}

.pricing-popular::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: var(--gradient-btn);
    z-index: -1;
}

.pricing-popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 4px 16px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.4);
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-left: 0.3rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.pricing-features li i {
    font-size: 1.1rem;
    color: #10b981;
    flex-shrink: 0;
}

.pricing-feature-disabled {
    opacity: 0.4;
}

.pricing-feature-disabled i {
    color: var(--text-secondary) !important;
}

.pricing-cta {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════ */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(143, 153, 178, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.3rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    gap: 1rem;
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════════════════════ */

.wa-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9998;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    text-decoration: none;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wa-float.wa-visible {
    opacity: 1;
    transform: scale(1);
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.wa-float svg {
    transition: transform 0.3s;
}

.wa-float:hover svg {
    transform: rotate(-10deg) scale(1.1);
}

.wa-tooltip {
    position: absolute;
    right: 72px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.wa-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.wa-pulse-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 3px solid #25D366;
    animation: wa-ring-pulse 2s ease-out infinite;
}

@keyframes wa-ring-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════
   PWA INSTALL BANNER
   ═══════════════════════════════════════════════════════════ */

.pwa-banner {
    position: fixed;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 9990;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pwa-banner-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.pwa-banner-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    min-width: 350px;
}

.pwa-banner-text {
    flex: 1;
}

.pwa-banner-text strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.pwa-banner-text span {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.pwa-banner-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pwa-btn-install {
    background: var(--gradient-btn);
    color: white;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.pwa-btn-install:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 182, 185, 0.4);
}

.pwa-btn-dismiss {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0 0.3rem;
    line-height: 1;
}

/* ═══════════════════════════════════════════════════════════
   SOCIAL PROOF & LIVE ACTIVITY SYSTEM
   ═══════════════════════════════════════════════════════════ */


/* 1. Floating Live Popup */
.sp-popup {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-120%);
    transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sp-popup-visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.sp-popup-inner {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 1rem 1.2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
                0 2px 8px rgba(0, 0, 0, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    max-width: 380px;
    min-width: 300px;
    animation: sp-popup-glow 3s ease-in-out infinite alternate;
    position: relative;
}

@keyframes sp-popup-glow {
    0% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04); }
    100% { box-shadow: 0 8px 32px rgba(255, 182, 185, 0.2), 0 2px 8px rgba(0, 0, 0, 0.04); }
}

.sp-popup-emoji {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 182, 185, 0.2), rgba(187, 225, 250, 0.2));
    border-radius: 12px;
}

.sp-popup-content {
    flex: 1;
    min-width: 0;
}

.sp-popup-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
    margin: 0;
}

.sp-popup-time {
    font-size: 0.72rem;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-top: 2px;
    display: block;
}

.sp-popup-close {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    line-height: 1;
}

.sp-popup-inner:hover .sp-popup-close {
    opacity: 1;
}

/* 2. Product Badges */
.sp-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.3px;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    animation: sp-badge-shine 4s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes sp-badge-shine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.15); }
}

/* 3. Urgency Text */
.sp-urgency {
    font-size: 0.78rem;
    font-weight: 600;
    color: #e74c3c;
    padding: 0.4rem 0;
    margin-bottom: 0.5rem;
    letter-spacing: 0.2px;
    animation: sp-urgency-pulse 2.5s ease-in-out infinite;
}

@keyframes sp-urgency-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.65; }
}

/* 4. Live Visitor Counter */
.sp-visitor-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    animation: sp-visitor-fade 1s ease-out;
}

.sp-visitor-counter strong {
    color: var(--text-primary);
    font-weight: 700;
}

@keyframes sp-visitor-fade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.sp-pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}

.sp-pulse-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid #10b981;
    animation: sp-dot-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes sp-dot-ping {
    0% { transform: scale(1); opacity: 0.8; }
    75%, 100% { transform: scale(2); opacity: 0; }
}

/* Preview Loader */
.preview-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    max-height: 80vh;
    background: var(--glass-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.preview-loader {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.3s ease;
    color: var(--text-primary);
}

.preview-container.loading .preview-loader { opacity: 1; }
.preview-container:not(.loading) .preview-loader { opacity: 0; pointer-events: none; }

.preview-container img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.preview-container.img-loaded img { opacity: 1; }

.preview-container.img-error img { 
    filter: grayscale(1) brightness(0.7);
    opacity: 1;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255,255,255,0.2);
    border-top: 3px solid;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 0.75rem;
}

.loader-text {
    font-size: 0.95rem;
    font-weight: 500;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Media Queries (Mobile First approach naturally scales down) */
@media (max-width: 900px) {
    .steps-grid.four-steps { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .steps-grid.four-steps::before { display: none; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-info, .contact-form-wrapper { padding: 2.5rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    
    .product-grid { grid-template-columns: 1fr; gap: 3rem; }
    .preview-sticky { position: relative; top: 0; }
    .form-row { grid-template-columns: 1fr; gap: 1rem; }
    
    .about-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .about-photo-ring { width: 260px; height: 260px; margin: 0 auto; }
    .about-highlights { justify-content: center; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; gap: 2.5rem; }
    .pricing-popular { transform: scale(1.02); }
    .pricing-popular:hover { transform: scale(1.02) translateY(-8px); }
}


@media (max-width: 768px) {
    /* Mobile-first responsive tweaks */
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 2rem; }
    
    .fade-in-section,
    .fade-in-section.is-visible {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .fade-in-section .form-group,
    .fade-in-section .contact-submit-wrapper {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .navbar .btn-primary { display: none; }
    
    .hero-ctas { flex-direction: column; }
    
    .steps-grid.four-steps { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; }

    /* Announcement bar — mobile */
    .announcement-inner {
        font-size: 0.78rem;
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }
    .announcement-cta { display: none; }

    /* Stats — mobile */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat-number { font-size: 2rem; }
    .stat-item { padding: 1.2rem 1rem; }

    /* WhatsApp button — mobile */
    .wa-float { width: 52px; height: 52px; bottom: 1rem; right: 1rem; }
    .wa-float svg { width: 24px; height: 24px; }
    .wa-tooltip { display: none; }

    /* PWA banner — mobile */
    .pwa-banner-inner { min-width: auto; flex-wrap: wrap; }
}

/* Social Proof — Mobile Adjustments */
@media (max-width: 600px) {
    .sp-popup {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
    }

    .sp-popup-inner {
        max-width: 100%;
        min-width: 0;
        padding: 0.8rem 1rem;
        gap: 0.65rem;
        border-radius: 12px;
    }

    .sp-popup-emoji {
        font-size: 1.4rem;
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .sp-popup-text {
        font-size: 0.78rem;
    }

    .sp-popup-time {
        font-size: 0.65rem;
    }

    .sp-visitor-counter {
        font-size: 0.78rem;
        padding: 0.4rem 0.9rem;
    }

    .sp-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
    }
}

