/* DESIGN SYSTEM & GLOBAL VARIABLES */
:root {
    --bg-dark: #0f172a;
    --bg-dark-alt: #1e293b;
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --primary-glow: rgba(37, 99, 235, 0.15);
    --primary-hover: #1d4ed8;
    --accent: #06b6d4;
    --success: #10b981;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --text-dark: #64748b;
    
    /* Glassmorphism Configuration */
    --glass-bg: rgba(30, 41, 59, 0.45);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(37, 99, 235, 0.35);
    --glass-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.5);
    --backdrop-blur: blur(16px);
}

/* CSS RESET & GENERAL STYLES */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.5;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* BACKGROUND EFFECTS (Glow Blobs & Canvas Particles) */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(130px);
    z-index: 0;
    opacity: 0.45;
    pointer-events: none;
}

.bg-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, rgba(37, 99, 235, 0) 70%);
    top: -10%;
    left: -10%;
    animation: floatingGlow 18s ease-in-out infinite alternate;
}

.bg-glow-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--accent) 0%, rgba(6, 182, 212, 0) 70%);
    bottom: 10%;
    right: -5%;
    animation: floatingGlow 15s ease-in-out infinite alternate-reverse;
}

.bg-glow-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #7c3aed 0%, rgba(124, 58, 237, 0) 70%);
    bottom: -10%;
    left: 20%;
    animation: floatingGlow 20s ease-in-out infinite alternate;
}

@keyframes floatingGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(60px, 40px) scale(1.1);
    }
    100% {
        transform: translate(-30px, -20px) scale(0.95);
    }
}

/* 1. MAINTENANCE SCREEN OVERLAY */
.maintenance-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transition: opacity 0.8s ease-in-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.maintenance-overlay.fade-out {
    opacity: 0;
    transform: scale(0.96) translateY(-15px);
    pointer-events: none;
}

/* Header */
.header {
    width: 100%;
    padding: 2rem 5%;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    font-family: 'Outfit', sans-serif;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    color: var(--text-main);
    font-size: 1.1rem;
    box-shadow: 0 8px 16px var(--primary-glow);
    animation: pulseIcon 3s ease-in-out infinite;
}

.logo-accent {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 16px var(--primary-glow);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    }
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: var(--backdrop-blur);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--success);
    animation: blinkDot 1.5s ease-in-out infinite;
}

@keyframes blinkDot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.2);
    }
}

/* Main Hero Content */
.main-content {
    flex: 1;
    width: 100%;
    padding: 3rem 5% 4rem;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

/* Left Grid */
.hero-text-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge-container {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #93c5fd;
    animation: fadeInDown 0.6s ease-out;
}

.headline {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.subheadline {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 580px;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* Loading Progress Bar */
.progress-wrapper {
    width: 100%;
    max-width: 540px;
    margin: 0.5rem 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
}

.progress-label {
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.progress-percent {
    font-weight: 700;
    color: var(--primary-light);
}

.progress-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.progress-bar {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: progressShine 2s infinite linear;
    background-size: 200px 100%;
    background-repeat: no-repeat;
}

@keyframes progressShine {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(100% + 200px) 0;
    }
}

/* Countdown */
.countdown-section {
    width: 100%;
    max-width: 540px;
    margin-top: 1rem;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.countdown-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.countdown-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--backdrop-blur);
    border-radius: 16px;
    padding: 1.25rem 0.5rem;
    text-align: center;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.countdown-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
}

.countdown-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
}

.countdown-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-main);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    margin-bottom: 0.4rem;
}

.countdown-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

/* Right Grid: Illustration and Badges */
.hero-image-side {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.illustration-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.hero-illustration {
    width: 100%;
    height: auto;
    border-radius: 28px;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow), 0 0 40px rgba(37, 99, 235, 0.1) inset;
    backdrop-filter: var(--backdrop-blur);
    padding: 1.5rem;
    transition: transform 0.5s ease;
}

.illustration-wrapper:hover .hero-illustration {
    transform: scale(1.02);
}

/* Floating Elements (Badges) */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: var(--backdrop-blur);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    z-index: 3;
}

.floating-badge:hover {
    border-color: var(--primary-light);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.25);
}

.badge-icon-bg {
    width: 28px;
    height: 28px;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 0.85rem;
}

.badge-1 {
    top: 15%;
    left: -12%;
    animation: floatElement 6s ease-in-out infinite alternate;
}

.badge-2 {
    bottom: 25%;
    right: -12%;
    animation: floatElement 5s ease-in-out infinite alternate-reverse 0.5s;
}

.badge-3 {
    bottom: -5%;
    left: 8%;
    animation: floatElement 7s ease-in-out infinite alternate 1s;
}

/* Floating Service Icons */
.floating-icon {
    position: absolute;
    width: 44px;
    height: 44px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: var(--backdrop-blur);
    z-index: 2;
    transition: all 0.3s ease;
}

.floating-icon:hover {
    background: rgba(37, 99, 235, 0.2);
    color: #fff;
    transform: scale(1.15);
}

.icon-wrench {
    top: -8%;
    right: 20%;
    animation: floatIcon 8s ease-in-out infinite alternate;
}

.icon-plug {
    top: 40%;
    left: -15%;
    animation: floatIcon 6s ease-in-out infinite alternate 1.5s;
}

.icon-motorcycle {
    top: 55%;
    right: -14%;
    animation: floatIcon 7s ease-in-out infinite alternate 0.7s;
}

.icon-broom {
    bottom: 8%;
    right: 25%;
    animation: floatIcon 9s ease-in-out infinite alternate 2s;
}

.icon-paint-roller {
    bottom: 22%;
    left: -8%;
    animation: floatIcon 5s ease-in-out infinite alternate 1.2s;
}

@keyframes floatElement {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    100% {
        transform: translateY(-12px) rotate(1deg);
    }
}

@keyframes floatIcon {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) translateX(8px) rotate(10deg);
    }
    100% {
        transform: translateY(5px) translateX(-5px) rotate(-10deg);
    }
}

/* Feature Grid Section */
.features-section {
    padding: 6rem 5% 4rem;
    position: relative;
    z-index: 2;
}

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

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: var(--glass-shadow);
    backdrop-filter: var(--backdrop-blur);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255,255,255,0.06), transparent 40%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6), 0 0 20px rgba(37, 99, 235, 0.1);
}

.feature-icon-wrapper {
    width: 52px;
    height: 52px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--primary);
    color: #fff;
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Social Proof Section */
.social-proof-section {
    padding: 3rem 5%;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(15, 23, 42, 0.3);
}

.social-proof-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.proof-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.proof-badge i {
    color: var(--success);
    font-size: 1.15rem;
}

.proof-badge:hover {
    color: var(--text-main);
    transform: translateY(-2px);
}

/* Contact Support Section */
.contact-section {
    padding: 6rem 5% 5rem;
    position: relative;
    z-index: 2;
}

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

.contact-card {
    background: linear-gradient(135deg, rgba(30,41,59,0.7) 0%, rgba(15,23,42,0.7) 100%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow), 0 0 50px rgba(37, 99, 235, 0.05);
    border-radius: 28px;
    padding: 3.5rem 4rem;
    backdrop-filter: var(--backdrop-blur);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, rgba(37,99,235,0) 70%);
    filter: blur(50px);
    pointer-events: none;
}

.contact-text {
    max-width: 550px;
}

.contact-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.contact-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* Premium Buttons styling */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-email {
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-email::before {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    opacity: 0;
}

.btn-email:hover::before {
    opacity: 1;
}

.btn-email:hover {
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #15803d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-whatsapp::before {
    background: linear-gradient(135deg, #22c55e, #15803d);
    opacity: 0;
}

.btn-whatsapp:hover::before {
    opacity: 1;
}

.btn-whatsapp:hover {
    box-shadow: 0 12px 30px rgba(21, 128, 61, 0.4);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.15rem;
}

.btn:active {
    transform: translateY(1px);
}

/* Footer styling */
.footer {
    width: 100%;
    padding: 3rem 5% 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(10, 15, 30, 0.5);
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-tagline {
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 500;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 2. MOCK MAIN SITE STYLE */
.main-site {
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-dark);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-site.show {
    opacity: 1;
    transform: translateY(0);
}

.main-site.hidden {
    display: none;
}

/* Mock Nav */
.mock-nav {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 5%;
}

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

.mock-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
}

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

.mock-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
}

.mock-btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
}

.mock-btn-primary {
    background: var(--primary);
    color: #fff !important;
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
}

.mock-btn-primary:hover {
    background: var(--primary-light);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Mock Hero */
.mock-hero {
    padding: 8rem 5% 6rem;
    text-align: center;
}

.mock-hero-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
}

.live-badge {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    padding: 0.5rem 1.25rem;
    color: #34d399;
    font-size: 0.9rem;
    font-weight: 600;
}

.mock-hero h1 {
    font-size: 3.75rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.mock-hero p {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 600px;
}

/* Mock Search Box */
.mock-search-box {
    margin-top: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 0.75rem;
    display: flex;
    width: 100%;
    max-width: 720px;
    gap: 0.75rem;
    box-shadow: var(--glass-shadow);
    backdrop-filter: var(--backdrop-blur);
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.search-input-group:last-of-type {
    border-right: none;
}

.search-input-group i {
    color: var(--primary-light);
    font-size: 1.1rem;
}

.search-input-group input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    width: 100%;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.search-input-group input::placeholder {
    color: var(--text-dark);
}

.mock-btn-search {
    background: var(--primary);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.9rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.mock-btn-search:hover {
    background: var(--primary-light);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
}

.mock-popular-tags {
    margin-top: 1rem;
    font-size: 0.9rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    color: var(--text-dark);
}

.mock-popular-tags a {
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    background: rgba(255,255,255,0.02);
}

.mock-popular-tags a:hover {
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}


/* RESPONSIVE DESIGN (MEDIA QUERIES) */

@media (max-width: 1024px) {
    .main-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .badge-container {
        align-self: center;
    }
    
    .subheadline {
        max-width: 100%;
    }
    
    .progress-wrapper {
        max-width: 100%;
    }
    
    .countdown-section {
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
        gap: 2rem;
    }
    
    .contact-text {
        max-width: 100%;
    }
    
    .contact-actions {
        justify-content: center;
        width: 100%;
    }
    
    .contact-actions .btn {
        flex: 1;
        justify-content: center;
        min-width: 220px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .headline {
        font-size: 2.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-proof-container {
        gap: 1.5rem;
    }
    
    .proof-badge {
        flex: 1 1 40%;
        justify-content: center;
    }
    
    .countdown-grid {
        gap: 0.75rem;
    }
    
    .countdown-number {
        font-size: 2.2rem;
    }
    
    .floating-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    .badge-1 {
        left: -5%;
    }
    
    .badge-2 {
        right: -5%;
    }
    
    .badge-3 {
        left: 5%;
    }
    
    .mock-hero h1 {
        font-size: 2.75rem;
    }
    
    .mock-search-box {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        box-shadow: none;
    }
    
    .search-input-group {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 15px;
        padding: 1rem;
        box-shadow: var(--glass-shadow);
    }
    
    .mock-btn-search {
        padding: 1rem;
        width: 100%;
    }
    
    .mock-popular-tags {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .mock-nav-links {
        display: none; /* Hide dynamic links for mockup simplicity on mobile */
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 2.25rem;
    }
    
    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .proof-badge {
        flex: 1 1 100%;
    }
    
    .floating-badge {
        display: none; /* Hide floating badges to avoid screen clutter on very small devices */
    }
}
