/* BASE VARIABLES & SETUP */
:root {
    --primary: #FF2E63;
    --primary-light: #FF85A1;
    --primary-gradient: linear-gradient(135deg, #FF2E63, #FF85A1);
    --secondary: #b497ff;
    --secondary-gradient: linear-gradient(135deg, #b497ff, #d4c1ff);
    --bg-dark: #0F0F0F;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --bg-glass-heavy: rgba(255, 255, 255, 0.08);
    --text-white: #FFFFFF;
    --text-gray: #B0B0B0;
    --garden-green: #B2FFBC;
    --garden-pink: #FFAAD1;
    --shadow-primary: 0px 8px 32px rgba(255, 46, 99, 0.2);
    --shadow-glow: 0 0 15px rgba(255, 46, 99, 0.4);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --radius-pill: 100px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--text-white);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body.effects-off .garden-environment {
    display: none;
}

body.effects-off .hero-environment-glow,
body.effects-off .hero-particles {
    opacity: 0;
}

/* ROMANTIC GARDEN ENVIRONMENT */
.garden-environment {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    display: block;
    visibility: visible;
    opacity: 1;
}

.env-layer {
    position: absolute;
    inset: 0;
    display: block;
    visibility: visible;
}

.env-trees {
    z-index: 1;
}

.tree {
    position: absolute;
    top: -5vh;
    width: min(30vw, 400px);
    height: 120vh;
    opacity: 0.15;
    filter: blur(8px);
    transform: translate3d(0, 0, 0);
    will-change: transform;
    animation: treeSway 15s ease-in-out infinite;
    mask-image: linear-gradient(to bottom, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent);
}

.tree::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 40% 20%, var(--garden-green), transparent 50%),
        radial-gradient(circle at 60% 40%, var(--garden-pink), transparent 60%),
        radial-gradient(circle at 30% 60%, var(--secondary), transparent 50%);
    opacity: 0.6;
}

.tree::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 100 C 30 100, 20 80, 20 60 C 20 40, 40 10, 50 10 C 60 10, 80 40, 80 60 C 80 80, 70 100, 50 100' fill='%23B2FFBC' opacity='0.3'/%3E%3C/svg%3E");
    background-size: cover;
    mix-blend-mode: soft-light;
}

.tree-left {
    left: -10vw;
}

.tree-right {
    right: -10vw;
    transform: scaleX(-1);
    animation-delay: -7s;
}

.env-clouds {
    z-index: 2;
}

.cloud {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0) 70%);
    filter: blur(20px);
    animation: cloudFloat var(--duration, 80s) linear infinite;
    will-change: transform;
}

.cloud::after {
    content: "";
    position: absolute;
    top: 20%; left: 20%; width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 80%);
    filter: blur(10px);
}

.env-rain {
    z-index: 2;
}

.rain-drop {
    position: absolute;
    top: -120px;
    width: 1px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(216, 229, 255, 0.5), rgba(255, 255, 255, 0));
    opacity: 0.09;
    animation: rainFall var(--duration, 9s) linear infinite;
    will-change: transform;
}

.env-petals {
    z-index: 3;
}

.petal {
    position: absolute;
    top: -50px;
    width: var(--size, 12px);
    height: calc(var(--size, 12px) * 1.5);
    border-radius: 80% 20% 70% 30% / 70% 30% 70% 30%;
    background: linear-gradient(135deg, rgba(255, 46, 99, 0.8), rgba(180, 151, 255, 0.6));
    opacity: var(--opacity, 0.3);
    filter: blur(0.5px);
    animation: petalFall var(--duration, 15s) linear infinite;
    will-change: transform;
}

.petal.bloom {
    animation: petalFall var(--duration, 15s) linear infinite, petalBloom 2s ease-in-out infinite;
}

@keyframes petalBloom {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: var(--opacity); }
    50% { transform: scale(1.3) rotate(15deg); opacity: calc(var(--opacity) * 1.5); filter: brightness(1.2) blur(0px); }
}

.env-sparkles {
    z-index: 4;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
    animation: sparklePulse 1.8s ease-out forwards;
}

.effects-toggle {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: var(--radius-pill);
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 500;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.effects-toggle:hover {
    border-color: rgba(255, 77, 141, 0.5);
    box-shadow: 0 0 24px rgba(255, 46, 99, 0.2);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.section-padding {
    padding: 128px 0;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 24px; }
.max-w-800 { max-width: 800px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.dark-section {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

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

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #FF2E63, #FF4D8D);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(255, 46, 99, 0.4);
    position: relative;
    overflow: hidden;
    border-radius: 999px;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.btn-primary:hover::after {
    opacity: 1;
    transform: scale(1.2);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 46, 99, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary-gradient);
    color: var(--text-white);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

/* GLOW SYSTEM */
.glow-text {
    text-shadow: 0 0 10px rgba(255, 46, 99, 0.3);
}

.glow-icon {
    filter: drop-shadow(0 0 5px var(--primary));
}

.glow-card {
    position: relative;
}

.glow-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), transparent);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.glow-card:hover::before {
    opacity: 0.3;
}

/* ANIMATIONS */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 46, 99, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 46, 99, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 46, 99, 0); }
}

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

@keyframes treeSway {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50% { transform: translate3d(10px, 15px, 0) rotate(2deg); }
}

@keyframes cloudFloat {
    from { transform: translate3d(-40vw, 0, 0); }
    to { transform: translate3d(140vw, 0, 0); }
}

@keyframes rainFall {
    from { transform: translate3d(0, -20vh, 0); }
    to { transform: translate3d(10vw, 120vh, 0); }
}

@keyframes petalFall {
    0% { transform: translate3d(0, -10vh, 0) rotate(0deg) scale(1); }
    25% { transform: translate3d(50px, 20vh, 0) rotate(90deg) scale(1.1); }
    50% { transform: translate3d(-30px, 50vh, 0) rotate(180deg) scale(1); }
    75% { transform: translate3d(40px, 80vh, 0) rotate(270deg) scale(0.9); }
    100% { transform: translate3d(0, 110vh, 0) rotate(360deg) scale(1); }
}

@keyframes sparklePulse {
    from { transform: scale(0.4); opacity: 0; }
    35% { transform: scale(1.5); opacity: 0.8; }
    to { transform: scale(2.2); opacity: 0; }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.pulse-animation {
    animation: pulseGlow 2s infinite;
}

.glow-highlight {
    position: relative;
    overflow: hidden;
}

.glow-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent 30%);
    animation: rotateGlow 4s linear infinite;
    pointer-events: none;
    opacity: 0.5;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* HOW IT WORKS ANIMATIONS */
.animate-bounce {
    animation: iconBounce 2s infinite;
}
@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-glow {
    animation: iconGlow 2s infinite;
}
@keyframes iconGlow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(255, 46, 99, 0.2)); }
    50% { filter: drop-shadow(0 0 15px rgba(255, 46, 99, 0.8)); }
}

.animate-heartbeat {
    animation: iconHeartbeat 1.5s infinite;
}
@keyframes iconHeartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
}

/* SUCCESS MODAL */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.success-content {
    background: var(--bg-dark);
    padding: 48px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 500px;
    width: 100%;
}
.success-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.glassmorphism {
    background: var(--bg-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.glassmorphism:hover {
    border-color: rgba(255, 46, 99, 0.3);
    box-shadow: 0 12px 48px rgba(255, 46, 99, 0.15);
    background: var(--bg-glass-heavy);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px; /* Standardized height */
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    transition: 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(15, 15, 15, 0.9);
    height: 64px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 24px;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-right: 32px;
    transition: 0.3s ease;
}

.navbar.scrolled .brand-logo {
    height: 38px;
}

.footer-logo {
    height: 80px;
    margin-bottom: 24px;
}

.logo-icon {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: #FFFFFF;
    font-weight: 500;
    opacity: 0.9;
    position: relative;
    padding-bottom: 4px;
    transition: 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF2E63;
    transition: 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
    color: #FF2E63;
}

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

.nav-links a.active {
    color: #FF2E63;
    text-shadow: 0 0 10px rgba(255, 46, 99, 0.4);
}

.hamburger {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    padding: 32px;
    transition: right 0.4s ease;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 32px;
    cursor: pointer;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 32px;
}

.mobile-links a {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
}

/* Wallpapers special link in mobile sidebar */
.mobile-wallpapers-link {
    display: flex !important;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255,46,99,0.15), rgba(181,126,220,0.15));
    border: 1px solid rgba(255,46,99,0.35);
    border-radius: 14px;
    padding: 10px 24px !important;
    color: #FF2E63 !important;
    font-size: 22px !important;
    transition: background 0.2s, box-shadow 0.2s;
}
.mobile-wallpapers-link:hover,
.mobile-wallpapers-link:active {
    background: linear-gradient(135deg, rgba(255,46,99,0.25), rgba(181,126,220,0.25));
    box-shadow: 0 0 20px rgba(255,46,99,0.3);
}
.mobile-wp-badge {
    font-size: 10px;
    font-weight: 700;
    background: #FF2E63;
    color: #fff;
    padding: 2px 7px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.desktop-only { display: block; }
.mobile-only { display: none; }

/* FLOATING WHATSAPP */
.floating-whatsapp {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(255, 46, 99, 0.4);
    z-index: 40;
    transition: var(--transition);
    animation: pulseGlow 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Offset for nav */
}

.video-background,
.dark-overlay,
.light-gradient-overlay,
.vignette-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.video-background {
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
    opacity: 0.4; /* Improved readability */
}

.dark-overlay {
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.7));
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.light-gradient-overlay {
    z-index: 3;
    background: radial-gradient(circle at 50% 50%, rgba(255, 46, 99, 0.1), transparent 60%);
}

.vignette-overlay {
    z-index: 4;
    background: radial-gradient(circle, transparent 50%, rgba(0,0,0,0.6) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle at 80% 30%, rgba(255, 46, 99, 0.15) 0%, transparent 50%);
    z-index: 4;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    z-index: 5;
}

.hero-content {
    flex: 0 0 55%;
    color: var(--text-white);
}

.hero .subheadline {
    color: var(--text-gray);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero .headline {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800; /* Increased font weight */
}

.text-shadow {
    text-shadow: 0px 4px 20px rgba(0,0,0,0.6);
}

.pure-white {
    color: #FFFFFF !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

.hero .description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 90%;
}

.cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.trust-ticker {
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.hero-visual {
    flex: 0 0 45%;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 15, 15, 1) 0%, transparent 40%);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.hero-visual img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    aspect-ratio: 4/5;
}

/* SIGNATURE PRODUCT */
.signature-product {
    background: var(--bg-dark);
    padding: 0 0 96px 0;
}

.glassmorphism {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    position: relative;
}

.signature-product {
    padding: 60px 0;
}

.compact-spotlight .spotlight-card {
    background: var(--bg-glass);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(255, 46, 99, 0.1);
    border: 1px solid rgba(255, 46, 99, 0.2);
    gap: 32px;
}

.spotlight-desc {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.compact-list {
    margin: 16px 0;
}

.compact-list li {
    margin-bottom: 8px;
    font-size: 15px;
}

.price-box {
    margin-bottom: 24px;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.price-tagline {
    font-size: 13px;
    opacity: 0.7;
    margin-top: 4px;
}

.btn-gradient-pink {
    background: var(--primary-gradient);
    border: none;
    color: white;
}

.text-link-only {
    color: var(--text-white);
    text-decoration: underline;
    font-size: 14px;
    opacity: 0.8;
    margin-left: 16px;
}

.compact-mockup {
    max-width: 400px;
    margin: 0 auto;
}

.play-button-overlay.minimal {
    width: 48px;
    height: 48px;
    font-size: 18px;
}

.spotlight-card {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 48px;
    color: var(--text-white);
    overflow: hidden;
}

.spotlight-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: inherit;
    padding: 2px;
    background: var(--primary-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.spotlight-content {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-popular {
    background: rgba(255, 46, 99, 0.2);
    color: var(--primary);
    margin-bottom: 16px;
}

.badge-limited {
    background: #FFD700;
    color: #333;
    margin-left: 12px;
}

.badge-absolute {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-gradient);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
}

.spotlight-content h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.feature-list {
    margin: 24px 0;
}

.feature-list li {
    margin-bottom: 12px;
    font-size: 16px;
    opacity: 0.9;
}

.price-display {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.strikethrough {
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 24px;
    margin-right: 16px;
}

.current-price {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.spotlight-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
}

.spotlight-visual {
    flex: 1;
}

.video-mockup {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}

.video-mockup img {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.5);
}

.video-mockup:hover .play-button-overlay {
    background: var(--primary-gradient);
    transform: translate(-50%, -50%) scale(1.1);
    border-color: transparent;
}

/* SERVICES */
.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 48px;
}

.tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.tabs {
    display: flex;
    gap: 8px;
    background: #f5f5f5;
    padding: 8px;
    border-radius: var(--radius-pill);
    overflow-x: auto;
    max-width: 100%;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    border: none;
    background: transparent;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.tab-btn.active {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 16px;
}

@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; padding: 0; }
}

.service-card {
    background: var(--bg-glass);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:active {
    transform: scale(0.97);
}

.service-card.selected {
    border: 2px solid #FF2E63;
    background: rgba(255,46,99,0.08);
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(255, 46, 99, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 16px;
    flex: 1;
}

.bestseller-card {
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
                var(--primary-gradient) border-box;
}

.bestseller-badge {
    background: var(--primary-gradient);
    color: white;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.full-width-btn {
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
}

.card-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.card-footer .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
}


/* BUILDER */
.builder-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}

.builder-form-area {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 48px;
}

.progress-container {
    margin-bottom: 40px;
}

.progress-bar {
    height: 8px;
    background: #eee;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0; left: 0; height: 100%;
    width: 25%;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.progress-text {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.builder-step {
    display: none;
    animation: fadeInUp 0.4s ease forwards;
}

.builder-step.active {
    display: block;
}

.builder-step h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.selection-card {
    border: 2px solid #eee;
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.selection-card:hover {
    border-color: var(--primary);
    background: rgba(255, 46, 99, 0.05);
}

.selection-card.selected {
    border-color: var(--primary);
    background: rgba(255, 46, 99, 0.05);
    box-shadow: inset 0 0 0 1px var(--primary);
}

.selection-card .emoji {
    font-size: 40px;
    margin-bottom: 12px;
}

.selection-card h4 {
    font-size: 16px;
    font-weight: 500;
}

.price-tag {
    font-weight: 700;
    color: var(--primary);
    margin-top: 8px;
}

.step-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

.prev-step, .next-step {
    height: 52px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.prev-step {
    flex: 0 0 40%;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: #AAAAAA;
}

.prev-step:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.next-step {
    flex: 0 0 calc(60% - 12px);
    background: linear-gradient(135deg, #FF2E63, #FF4D8D);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 46, 99, 0.25);
}

.next-step:hover, .next-step:active {
    transform: scale(0.97);
    box-shadow: 0 4px 15px rgba(255, 46, 99, 0.2);
}

.prev-step:active {
    transform: scale(0.97);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-checkbox {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 1px solid #eee;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.feature-checkbox:hover {
    border-color: var(--primary);
}

.feature-checkbox input {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: 6px;
    margin-right: 16px;
    position: relative;
    transition: var(--transition);
}

.feature-checkbox input:checked ~ .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.feature-checkbox input:checked ~ .checkmark::after {
    content: '';
    position: absolute;
    left: 7px; top: 3px;
    width: 6px; height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.feature-info {
    display: flex;
    justify-content: space-between;
    flex: 1;
    align-items: center;
}

.feature-info .title { font-weight: 500; }
.feature-info .addon-price { color: var(--primary); font-weight: 600; }

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-weight: 500;
    font-size: 14px;
}

.form-group input, .form-group textarea {
    padding: 14px 16px;
    border: 1px solid #ccc;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 46, 99, 0.1);
}

.summary-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
}

.summary-card.sticky {
    position: sticky;
    top: 100px;
}

.summary-card h3 {
    font-size: 20px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.summary-items {
    min-height: 100px;
    margin-bottom: 24px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
}

.summary-item.empty {
    color: var(--text-gray);
    font-style: italic;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid #eee;
    padding-top: 16px;
    font-size: 20px;
    font-weight: 700;
}

#total-price {
    color: var(--primary);
    font-size: 28px;
}

.trust-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 16px;
}

/* HOW IT WORKS */
.timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

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

.step-number {
    width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-primary);
}

.step-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.timeline-step h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.timeline-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.timeline-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
    margin-top: 28px;
}

/* TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    position: relative;
}

.emoji-header {
    font-size: 32px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    color: #444;
    margin-bottom: 24px;
}

.author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 16px;
}

.author .name {
    font-weight: 600;
    font-size: 14px;
}

.stars {
    color: #FFD700;
    font-size: 12px;
}

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: center;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
}

.pricing-card.popular {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-primary);
}

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

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.pricing-card .price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 32px;
}

.pricing-card .features {
    text-align: left;
    margin-bottom: 32px;
}

.pricing-card .features li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.9;
}

.pricing-card .features i {
    color: var(--primary);
}

/* TRUST STATS */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.stat-item .icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.stat-item h3 {
    display: inline-block;
    font-size: 48px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item span {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.stat-item p {
    color: var(--text-gray);
    font-weight: 500;
    margin-top: 8px;
}

/* ABOUT */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

/* Lazy Loading Blur Effect */
.lazy-img {
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.5s ease-in-out, filter 0.5s ease-in-out;
}

.lazy-img.loaded {
    opacity: 1;
    filter: blur(0);
}

.overlay-gradient {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 50%;
    background: linear-gradient(to top, rgba(15, 15, 15, 1), transparent);
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 24px;
}

.signature {
    font-family: 'Brush Script MT', cursive;
    font-size: 28px;
    color: var(--primary);
    margin-top: 32px;
}

/* FAQ */
.faq-item {
    background: white;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-gray);
}

/* FINAL CTA */
.final-cta {
    background: var(--bg-dark);
    position: relative;
    z-index: 1;
}

.cta-banner {
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    padding: 64px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-banner h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 20px;
    opacity: 0.9;
}

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

.cta-banner .btn:hover {
    background: var(--bg-dark);
    color: white;
}

.secondary-link {
    margin-top: 16px;
    font-size: 14px;
    text-decoration: underline;
}

.trust-line {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-weight: 500;
    opacity: 0.9;
}

/* FOOTER */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 80px 0 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

section,
footer {
    position: relative;
    z-index: 1;
}

body.effects-debug .cloud,
body.effects-debug .rain-drop,
body.effects-debug .petal,
body.effects-debug .tree {
    opacity: 0.45 !important;
    outline: 1px dashed rgba(255, 46, 99, 0.4);
}

/* REDUCED MOTION + MOBILE BALANCE */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .garden-environment {
        display: none;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand p {
    color: var(--text-gray);
    margin: 16px 0 24px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.social-icons a:hover {
    background: var(--primary-gradient);
    transform: translateY(-4px);
}

.footer h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-links a, .footer-contact p {
    display: block;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-contact i {
    color: var(--primary);
    width: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-gray);
    font-size: 14px;
}

.legal-links {
    display: flex;
    gap: 24px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(1, 1fr); max-width: 500px; margin: 0 auto; }
    .pricing-card.popular { transform: scale(1); }
    .pricing-card.popular:hover { transform: translateY(-8px); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-container { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .effects-toggle { display: none; }
    .tree { opacity: 0.14; width: 24vw; filter: blur(2px); }
    .env-rain { opacity: 0.5; }
    .env-clouds { opacity: 0.75; }
    .env-petals .petal:nth-child(n+14) { display: none; }
    .hero-environment-glow { opacity: 0.65; }
    .hero-video-layer { opacity: 0.5; }

    .desktop-only { display: none; }
    .mobile-only { display: block; }
    .section-padding { padding: 64px 16px; }
    
    /* Typography */
    h1, .hero .headline { font-size: 30px; line-height: 1.2; }
    h2, .section-header h2 { font-size: 26px; line-height: 1.3; margin-bottom: 20px; }
    h3 { font-size: 20px; line-height: 1.3; }
    body { font-size: 15px; line-height: 1.5; }
    
    .navbar {
        height: 60px;
        padding: 0 16px;
    }
    
    .brand-logo {
        height: 34px;
        margin-right: 16px;
    }
    
    .nav-links {
        display: none; /* Mobile menu handles this */
    }
    
    /* Touch Interactions */
    .service-card:active, .pricing-card:active, .selection-card:active {
        transform: scale(0.97);
        transition: transform 0.1s ease;
    }
    
    .selected {
        border: 2px solid #FF2E63 !important;
        background: rgba(255, 46, 99, 0.1) !important;
    }

    .hero {
        min-height: 70vh;
        max-height: 85vh;
        align-items: flex-start;
    }
    
    .hero-container { flex-direction: column; text-align: left; padding: 40px 24px 0 24px; gap: 32px; }
    .hero-content { order: 1; flex: 1; padding: 0; }
    .hero-visual { order: 2; width: 100%; max-height: 50vh; overflow: hidden; }
    .cta-group { justify-content: flex-start; flex-direction: column; gap: 12px; margin-bottom: 24px; }
    
    .btn-full-width {
        width: 100%;
        height: 56px;
    }
    
    .compact-spotlight {
        padding: 24px 0;
        max-height: 95vh;
        display: flex;
        align-items: center;
    }

    .compact-spotlight .spotlight-card { 
        flex-direction: column; 
        padding: 16px; 
        gap: 12px;
        border-radius: 16px;
        text-align: center;
        max-height: 90vh;
        overflow-y: auto;
    }

    .compact-spotlight .spotlight-content {
        width: 100%;
    }

    .compact-spotlight h2 { font-size: 24px; margin-bottom: 8px; }
    .spotlight-desc { font-size: 14px; margin-bottom: 12px; line-height: 1.4; }
    
    .compact-list { margin: 8px 0; text-align: left; display: inline-block; }
    .compact-list li { font-size: 13px; margin-bottom: 4px; }
    
    .price-box { margin-bottom: 16px; }
    .price-value { font-size: 28px; }
    .price-tagline { font-size: 12px; }

    .spotlight-ctas { 
        flex-direction: column; 
        gap: 12px; 
        width: 100%;
    }

    .btn-gradient-pink { height: 48px; }
    .text-link-only { margin-left: 0; }

    .compact-mockup { 
        max-width: 220px; 
        margin-top: 8px;
    }

    .compact-mockup img {
        aspect-ratio: 16/9;
    }
    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .builder-layout { grid-template-columns: 1fr; padding: 0 16px; }
    .summary-card.sticky { position: static; }
    
    /* Mobile Sliders */
    .timeline, .testimonials-grid, .stats-grid, .pricing-grid { 
        display: flex;
        flex-direction: row; 
        overflow-x: auto; 
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 16px; 
        padding-bottom: 24px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Hide scrollbar Firefox */
    }
    
    .timeline::-webkit-scrollbar, 
    .testimonials-grid::-webkit-scrollbar, 
    .stats-grid::-webkit-scrollbar,
    .pricing-grid::-webkit-scrollbar {
        display: none; /* Hide scrollbar Chrome/Safari/Edge */
    }

    .timeline-line { display: none; }
    
    .timeline-step { 
        min-width: 80%; 
        scroll-snap-align: center;
        margin-bottom: 0;
        padding: 0;
        flex-shrink: 0;
    }
    
    .testimonial-card {
        min-width: 80%; /* Shows 1.2 cards visible */
        scroll-snap-align: center;
        flex-shrink: 0;
    }
    
    .stat-item {
        min-width: 70%;
        scroll-snap-align: center;
        flex-shrink: 0;
    }
    
    .pricing-card {
        min-width: 85%;
        scroll-snap-align: center;
        flex-shrink: 0;
    }
    
    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
    }
    
    .slider-dots .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transition: var(--transition);
    }
    
    .slider-dots .dot.active {
        background: var(--primary);
        width: 24px;
        border-radius: 4px;
    }
    
    .cta-banner h2 { font-size: 26px; }
    .trust-line { flex-direction: column; gap: 8px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 24px; padding: 0 16px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    
    .video-background .hero-video {
        filter: blur(3px) brightness(0.7);
    }
    .dark-overlay {
        background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
    }

    .step-actions {
        padding: 16px 0;
        margin-top: 24px;
        position: relative; /* Keep it in flow but clean */
    }
    
    .prev-step, .next-step {
        height: 48px;
        font-size: 14px;
    }
}

/* TRUST BADGES */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 500;
}
.trust-badges-center {
    justify-content: center;
}
.trust-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.trust-badges i {
    color: var(--primary);
}

.badge-trust {
    background: rgba(255, 46, 99, 0.1);
    color: var(--primary);
    border: 1px solid rgba(255, 46, 99, 0.2);
}

/* SAMPLE GALLERY */
.sample-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.sample-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

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

.sample-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.sample-card:hover .sample-thumb {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.sample-card:hover .play-overlay {
    background: var(--primary);
    border-color: var(--primary);
}

.sample-card h4 {
    padding: 16px;
    margin: 0;
    text-align: center;
    font-size: 16px;
}

/* VIDEO MODAL */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.close-video {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    z-index: 2;
}

.video-container {
    width: 90%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#sample-video-player {
    width: 100%;
    border-radius: var(--radius-md);
    background: #000;
}

.video-cta {
    text-align: center;
    background: var(--bg-glass);
    padding: 24px;
    border-radius: var(--radius-md);
    width: 100%;
    border: 1px solid rgba(255,255,255,0.1);
}

.video-cta h3 {
    color: white;
}

/* TESTIMONIAL CAROUSEL */
.testimonial-carousel-wrapper {
    overflow: hidden;
    padding-bottom: 24px;
    position: relative;
}

.testimonial-carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 32px;
    background: var(--bg-glass);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0,0,0,0.05);
}

@media(min-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 16px);
        margin-right: 24px;
    }
}

.test-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-right: 16px;
}

.test-meta {
    flex: 1;
}

.test-meta .name {
    font-weight: 600;
    font-size: 16px;
    display: block;
}

.test-meta .stars {
    color: #FFD700;
    font-size: 12px;
}

.test-date {
    font-size: 12px;
    color: var(--text-gray);
}

.test-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}
.dark-section .test-text, body[data-theme='dark'] .test-text {
    color: #ddd;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    transition: 0.3s;
}

.carousel-dots .dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* LIVE TICKER */
.live-ticker {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 100px;
    z-index: 50;
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.live-ticker.show {
    transform: translateY(0);
    opacity: 1;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ticker-icon {
    font-size: 16px;
}

.ticker-text {
    font-size: 13px;
    color: white;
    font-weight: 500;
}

@media(max-width: 768px) {
    .live-ticker {
        bottom: 100px; /* Above float WA button */
        left: 50%;
        transform: translate(-50%, 150%);
        width: 90%;
        text-align: center;
        justify-content: center;
    }
    .live-ticker.show {
        transform: translate(-50%, 0);
    }
}
