/* Veloze Web - Premium Aesthetic */
:root {
    --bg-main: #050505;
    --bg-card: rgba(20, 20, 20, 0.6);
    --text-main: #f8f9fa;
    --text-muted: #a0a0a0;
    
    /* Veloze Signature Gradients */
    --accent-primary: #6366f1; /* Indigo */
    --accent-secondary: #06b6d4; /* Cyan */
    --gradient-brand: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    
    --radius-lg: 32px;
    --radius-md: 20px;
    --radius-sm: 12px;
    
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* =============================================
   CUSTOM CURSOR
   ============================================= */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--accent-secondary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
}

.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(99, 102, 241, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-dot.cursor-hover {
    width: 16px;
    height: 16px;
    background: rgba(6, 182, 212, 0.5);
}

.cursor-outline.cursor-hover {
    width: 60px;
    height: 60px;
    border-color: rgba(6, 182, 212, 0.3);
}

/* =============================================
   PARTICLE CANVAS
   ============================================= */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 span {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.scramble-char {
    color: var(--accent-secondary);
    -webkit-text-fill-color: var(--accent-secondary);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-brand);
    color: #fff;
    padding: 16px 32px;
    border-radius: 100px; /* Pill shape */
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    position: relative;
    z-index: 1;
}

.btn:hover {
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.5);
}

.btn-magnetic {
    transition: transform 0.2s ease-out, box-shadow 0.4s ease;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 1rem;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
    color: var(--text-main);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 12px 24px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-scrolled {
    top: 10px;
    background: rgba(10, 10, 10, 0.9);
    border-color: rgba(99, 102, 241, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.logo span {
    font-weight: 300;
    opacity: 0.7;
}

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

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s;
}

.nav-links a:not(.btn):hover {
    color: var(--text-main);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
    z-index: 1;
}

.glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: var(--gradient-brand);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    z-index: -1;
}

/* Blob Morphing */
.blob-morphing {
    position: absolute;
    top: 20%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(6, 182, 212, 0.15));
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob-morph 10s ease-in-out infinite, blob-float 6s ease-in-out infinite;
    filter: blur(40px);
    z-index: -1;
}

@keyframes blob-morph {
    0%   { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25%  { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50%  { border-radius: 50% 60% 30% 60% / 40% 70% 60% 30%; }
    75%  { border-radius: 40% 30% 60% 50% / 60% 40% 30% 70%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

@keyframes blob-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(30px, -30px) scale(1.05); }
    66%      { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: -18px 0 30px;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.hero-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-benefits i {
    color: var(--accent-secondary);
}

.hero .hero-microcopy {
    max-width: none;
    margin: 18px 0 0;
    color: #777;
    font-size: 0.78rem;
}

/* =============================================
   GLASS CARD & MOCKUP
   ============================================= */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
}

.mockup-card {
    padding: 0;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    box-shadow: -20px 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(99, 102, 241, 0.1);
}

.mockup-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 60px rgba(99, 102, 241, 0.2);
}

.mockup-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dots {
    display: flex;
    gap: 8px;
}

.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}
.dots span:nth-child(2) { background: #ffbd2e; }
.dots span:nth-child(3) { background: #27c93f; }

.url-bar {
    background: rgba(255, 255, 255, 0.05);
    margin-left: 20px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-grow: 1;
    text-align: center;
}

.mockup-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mockup-img {
    width: 100%;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
}

.mockup-lines .line {
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 12px;
}
.mockup-lines .title {
    height: 24px;
    width: 60%;
    background: var(--gradient-brand);
    opacity: 0.5;
}
.mockup-lines .short { width: 80%; }

.mockup-btn {
    width: 120px;
    height: 36px;
    background: var(--gradient-brand);
    border-radius: 100px;
    margin-top: 10px;
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

section[id] {
    scroll-margin-top: 100px;
}

.dark-section {
    background: #0a0a0a;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 16px auto 0;
}

.section-header.compact {
    margin-bottom: 40px;
}

.section-kicker {
    margin-bottom: 12px;
    color: var(--accent-secondary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
    position: relative;
    z-index: 2;
    padding: 26px 0;
    background: rgba(10, 10, 10, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.trust-item > i {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-secondary);
}

.trust-item div {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 0.95rem;
}

.trust-item span {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* =============================================
   STEPS GRID
   ============================================= */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
    border-radius: var(--radius-md);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.step-card p {
    color: var(--text-muted);
}

/* =============================================
   STATS COUNTER SECTION
   ============================================= */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, #0a0a0a 100%);
}

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

.stat-item {
    padding: 30px 20px;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 600;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* =============================================
   BENEFITS GRID
   ============================================= */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefits-grid-three {
    grid-template-columns: repeat(3, 1fr);
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--accent-secondary);
    margin-bottom: 10px;
}

.benefit-card h3 {
    font-size: 1.4rem;
}

.benefit-card p {
    color: var(--text-muted);
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-author h4 {
    font-size: 1rem;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =============================================
   SHOWROOM GRID & TEMPLATE CARDS
   ============================================= */
.showroom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.templates-grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
}

.template-card {
    padding: 0;
    overflow: hidden;
    cursor: pointer;
}

.template-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

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

.template-img {
    width: 100%;
    height: 250px;
    transition: transform 0.6s ease;
}

.template-info {
    padding: 30px;
}

.template-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.template-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.template-link {
    color: var(--accent-secondary);
    font-size: 0.9rem;
    margin-top: 12px;
    display: inline-block;
    transition: color 0.3s, transform 0.3s;
}

.template-link:hover {
    color: var(--accent-primary);
    transform: translateX(5px);
}

.template-link i {
    font-size: 0.8em;
    transition: transform 0.3s;
}

.template-link:hover i {
    transform: translateX(4px);
}

/* =============================================
   CTA & FOOTER
   ============================================= */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, rgba(99, 102, 241, 0.1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-text p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.cta-image:hover img {
    transform: scale(1.05);
}

.site-footer {
    position: relative;
    z-index: 1;
    padding: 78px 0 28px;
    overflow: hidden;
    background: linear-gradient(180deg, #070708 0%, #030304 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: min(760px, 70vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-secondary), transparent);
    opacity: 0.65;
    transform: translateX(-50%);
}

.footer-glow {
    position: absolute;
    top: -240px;
    left: 50%;
    width: 620px;
    height: 340px;
    background: var(--gradient-brand);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.08;
    pointer-events: none;
    transform: translateX(-50%);
}

.footer-main {
    position: relative;
    display: grid;
    grid-template-columns: 1.55fr 0.8fr 1.05fr 1.35fr;
    gap: 50px;
}

.footer-brand p {
    max-width: 390px;
    margin: 22px 0 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
}

.footer-logo {
    width: fit-content;
    font-size: 1.55rem;
}

.footer-trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-trust span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #c3c3c7;
    font-size: 0.78rem;
}

.footer-trust i {
    width: 16px;
    color: var(--accent-secondary);
    text-align: center;
}

.footer-column {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    font-style: normal;
}

.footer-column h2 {
    margin-bottom: 7px;
    color: var(--text-main);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-column > a:not(.footer-contact-link) {
    position: relative;
    color: var(--text-muted);
    font-size: 0.82rem;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-column > a:not(.footer-contact-link)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -13px;
    width: 5px;
    height: 5px;
    background: var(--accent-secondary);
    border-radius: 50%;
    opacity: 0;
    transform: translateY(-50%);
    transition: opacity 0.25s ease;
}

.footer-column > a:not(.footer-contact-link):hover {
    color: var(--text-main);
    transform: translateX(6px);
}

.footer-column > a:not(.footer-contact-link):hover::before {
    opacity: 1;
}

.footer-contact > p {
    margin-bottom: 5px;
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.65;
}

.footer-contact-link {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.footer-contact-link:hover {
    background: rgba(6, 182, 212, 0.07);
    border-color: rgba(6, 182, 212, 0.35);
    transform: translateY(-3px);
}

.footer-contact-icon {
    display: grid;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    place-items: center;
    background: var(--gradient-brand);
    border-radius: 12px;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 8px 22px rgba(6, 182, 212, 0.2);
}

.footer-contact-link > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.footer-contact-link small {
    color: var(--text-muted);
    font-size: 0.66rem;
}

.footer-contact-link strong {
    color: var(--text-main);
    font-size: 0.9rem;
}

.footer-location {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #707077;
    font-size: 0.72rem;
    line-height: 1.5;
}

.footer-location i {
    margin-top: 2px;
    color: var(--accent-secondary);
}

.footer-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 58px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-legal {
    display: flex;
    gap: 8px 24px;
    flex-wrap: wrap;
    color: #65656d;
    font-size: 0.72rem;
}

.footer-back-top {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-back-top i {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.footer-back-top:hover {
    color: var(--accent-secondary);
    transform: translateY(-2px);
}

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

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children reveal */
.steps-grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.steps-grid .reveal:nth-child(3) { transition-delay: 0.3s; }
.benefits-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.benefits-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.benefits-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.benefits-grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.benefits-grid .reveal:nth-child(6) { transition-delay: 0.5s; }
.testimonials-grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.testimonials-grid .reveal:nth-child(3) { transition-delay: 0.3s; }
.showroom-grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.showroom-grid .reveal:nth-child(3) { transition-delay: 0.3s; }
.showroom-grid .reveal:nth-child(4) { transition-delay: 0.45s; }

/* =============================================
   TILT CARD OVERRIDES
   ============================================= */
.tilt-card {
    transform-style: preserve-3d;
}

.tilt-card.revealed {
    transition: transform 0.15s ease-out, border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

/* =============================================
   PRICING SECTION
   ============================================= */
.pricing-section {
    background: radial-gradient(circle at 50% 45%, rgba(99, 102, 241, 0.08), transparent 55%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: var(--transition);
    padding: 34px;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.pricing-card-featured {
    border-color: rgba(6, 182, 212, 0.45);
    box-shadow: 0 25px 70px rgba(6, 182, 212, 0.12), 0 0 35px rgba(99, 102, 241, 0.08);
}

.pricing-card-featured:hover {
    border-color: var(--accent-secondary);
    box-shadow: 0 30px 80px rgba(6, 182, 212, 0.18), 0 0 45px rgba(99, 102, 241, 0.12);
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: var(--gradient-brand);
    border-radius: 100px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
    transform: translate(-50%, -50%) translateZ(30px);
}

.pricing-card-header {
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-icon {
    display: grid;
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 16px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-secondary);
    font-size: 1.2rem;
}

.pricing-card h3 {
    margin-bottom: 6px;
    color: var(--text-main);
    font-size: 1.45rem;
    font-weight: 600;
}

.pricing-audience {
    min-height: 44px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.86rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.pricing-price span {
    background: var(--gradient-brand);
    background-clip: text;
    color: transparent;
    font-size: clamp(2.3rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-price small {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
}

.pricing-subtext {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-benefits {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 30px 0 34px;
    padding: 0;
    list-style: none;
}

.pricing-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-benefits i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    margin-top: 1px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-secondary);
    font-size: 0.75rem;
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
    text-align: center;
}

.pricing-grid .reveal:nth-child(2) {
    transition-delay: 0.15s;
}

.pricing-grid .reveal:nth-child(3) {
    transition-delay: 0.3s;
}

.google-disclaimer {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    max-width: 920px;
    margin: 28px auto 0;
    color: #777;
    font-size: 0.8rem;
    line-height: 1.6;
    text-align: center;
}

.google-disclaimer i {
    margin-top: 4px;
    color: var(--accent-secondary);
}

/* =============================================
   LIFETIME & ADD-ONS
   ============================================= */
.lifetime-offer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1050px;
    margin: 60px auto 0;
    padding: 32px 38px;
}

.lifetime-offer > div {
    max-width: 720px;
}

.lifetime-label {
    color: var(--accent-secondary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.lifetime-offer h3 {
    margin: 8px 0;
    font-size: 1.45rem;
}

.lifetime-offer h3 span {
    color: var(--accent-secondary);
}

.lifetime-offer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.lifetime-offer .btn {
    flex-shrink: 0;
}

.addons-block {
    margin-top: 100px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.addon-card {
    padding: 28px;
}

.addon-icon {
    display: grid;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 15px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-secondary);
    font-size: 1.1rem;
}

.addon-card h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.addon-card p {
    min-height: 88px;
    margin-bottom: 22px;
    color: var(--text-muted);
    font-size: 0.84rem;
}

.addon-card strong {
    color: var(--text-main);
    font-size: 1.25rem;
}

.addon-card small {
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 400;
}

.addons-cta {
    margin-top: 30px;
    text-align: center;
}

/* =============================================
   FAQ
   ============================================= */
.faq-container {
    max-width: 920px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.faq-item:hover,
.faq-item[open] {
    border-color: rgba(6, 182, 212, 0.32);
    background: rgba(25, 25, 25, 0.75);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    cursor: pointer;
    list-style: none;
    font-size: 1rem;
    font-weight: 600;
}

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

.faq-item summary i {
    color: var(--accent-secondary);
    transition: transform 0.3s ease;
}

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

.faq-item p {
    padding: 0 28px 26px;
    color: var(--text-muted);
    line-height: 1.75;
}

/* =============================================
   MOBILE CONVERSION CTA
   ============================================= */
.mobile-whatsapp-cta {
    display: none;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
    .cursor-dot, .cursor-outline {
        display: none !important;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-benefits { justify-content: center; }
    .badge { margin: 0 auto 24px; }
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    .hero p { margin: 0 auto 40px; }
    .mockup-card { transform: none; margin-top: 40px; }
    .mockup-card:hover { transform: translateY(-10px); }
    
    .steps-grid, .showroom-grid, .benefits-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-value {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }

    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 620px;
    }

    .trust-grid,
    .addons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lifetime-offer {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-main {
        grid-template-columns: 1.25fr 1fr;
        gap: 44px 54px;
    }

    .blob-morphing {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    body { padding-bottom: 78px; }

    h1 { font-size: 2.4rem; }
    h2 { font-size: 1.8rem; }
    
    .section { padding: 80px 0; }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-value {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-benefits {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .hero .hero-microcopy {
        margin-top: 18px;
        font-size: 0.72rem;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 22px 12px;
    }

    .trust-item {
        justify-content: flex-start;
        gap: 10px;
    }

    .trust-item > i {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
    }

    .trust-item strong {
        font-size: 0.8rem;
    }

    .trust-item span {
        font-size: 0.65rem;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-price span {
        font-size: 2.25rem;
    }

    .pricing-card .btn {
        padding-right: 20px;
        padding-left: 20px;
        font-size: 0.95rem;
    }

    .pricing-badge {
        padding: 8px 14px;
        font-size: 0.67rem;
    }

    .google-disclaimer {
        text-align: left;
    }

    .lifetime-offer {
        padding: 28px 24px;
    }

    .lifetime-offer .btn {
        width: 100%;
    }

    .addons-block {
        margin-top: 80px;
    }

    .addons-grid {
        grid-template-columns: 1fr;
    }

    .addon-card p {
        min-height: 0;
    }

    .faq-item summary {
        padding: 20px;
        font-size: 0.92rem;
    }

    .faq-item p {
        padding: 0 20px 22px;
        font-size: 0.88rem;
    }

    .site-footer {
        padding: 62px 0 24px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-brand p {
        max-width: none;
    }

    .footer-column {
        gap: 11px;
    }

    .footer-contact-link {
        max-width: 340px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        margin-top: 44px;
    }

    .footer-legal {
        flex-direction: column;
    }

    .footer-back-top {
        width: 100%;
        justify-content: space-between;
    }

    .mobile-whatsapp-cta {
        position: fixed;
        right: 16px;
        bottom: 14px;
        left: 16px;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 15px 20px;
        background: var(--gradient-brand);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 100px;
        color: #fff;
        font-size: 0.95rem;
        font-weight: 800;
        box-shadow: 0 14px 35px rgba(6, 182, 212, 0.32);
        opacity: 0;
        pointer-events: none;
        transform: translateY(130%);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .mobile-whatsapp-cta.visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}
