@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --primary: #7c3aed;
    --primary-light: #a78bfa;
    --secondary: #06b6d4;
    --accent: #f472b6;
    --success: #22c55e;
    --warning: #f59e0b;
    --dark: #030712;
    --dark-card: #0f172a;
    --dark-light: #1e293b;
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.04);
    --glow: rgba(124, 58, 237, 0.3);
    --gradient: linear-gradient(135deg, #7c3aed, #06b6d4, #f472b6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

.bg-animation {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(124, 58, 237, 0.06), transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(6, 182, 212, 0.06), transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(244, 114, 182, 0.03), transparent 70%);
    pointer-events: none;
}

.bg-animation::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1.5px 1.5px at 10% 20%, rgba(124, 58, 237, 0.03), transparent),
        radial-gradient(1.5px 1.5px at 30% 60%, rgba(6, 182, 212, 0.02), transparent),
        radial-gradient(1.5px 1.5px at 60% 30%, rgba(244, 114, 182, 0.03), transparent),
        radial-gradient(1.5px 1.5px at 80% 70%, rgba(124, 58, 237, 0.02), transparent),
        radial-gradient(1.5px 1.5px at 50% 90%, rgba(6, 182, 212, 0.02), transparent);
    background-size: 160px 160px;
    animation: particleMove 40s linear infinite;
}

@keyframes particleMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(-160px); }
}

.floating-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    animation: orbFloat 20s ease-in-out infinite;
}

.floating-orb.orb1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    background: rgba(124, 58, 237, 0.04);
    animation-delay: 0s;
}

.floating-orb.orb2 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -100px;
    background: rgba(6, 182, 212, 0.03);
    animation-delay: -5s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.9); }
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s, visibility 0.8s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--border);
    border-top: 3px solid var(--primary);
    animation: spin 1s linear infinite;
}

.loader-text {
    margin-top: 1.5rem;
    font-weight: 600;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem;
    margin-top: 1rem;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border);
    position: sticky;
    top: 1rem;
    z-index: 1000;
    transition: all 0.3s;
}

.navbar.scrolled {
    background: rgba(3, 7, 18, 0.95);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    text-decoration: none;
    color: var(--text);
}

.logo .icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 0 40px var(--glow);
}

.logo span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    font-size: 0.9rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: 0.3s;
    border-radius: 2px;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: #fff;
}

.nav-links a.active::after {
    width: 100%;
}

.btn-nav {
    background: var(--gradient);
    border: none;
    padding: 0.6rem 1.8rem;
    border-radius: 60px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.85rem;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.2);
}

.btn-nav:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.35);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    padding: 3rem 0 2rem;
    min-height: 80vh;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.06);
    padding: 0.4rem 1.4rem;
    border-radius: 60px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-badge .pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.5); }
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(6, 182, 212, 0.04);
    border: 1px solid rgba(6, 182, 212, 0.04);
    padding: 0.4rem 1.6rem;
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.live-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    animation: livePulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.6); }
}

.live-badge .divider {
    opacity: 0.1;
}

.live-badge .uptime {
    color: var(--success);
    font-weight: 600;
}

.live-badge .ai-active {
    color: var(--primary-light);
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.hero h1 .gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient);
    border: none;
    padding: 1rem 2.8rem;
    border-radius: 60px;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.2);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 70px rgba(124, 58, 237, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 1rem 2.4rem;
    border-radius: 60px;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    perspective: 1000px;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem 1.2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.2);
    backdrop-filter: blur(10px);
}

.hero-stat:nth-child(1) { transform: rotateY(-2deg) translateZ(10px); }
.hero-stat:nth-child(2) { transform: rotateY(2deg) translateZ(20px); }
.hero-stat:nth-child(3) { transform: rotateY(-1deg) translateZ(5px); }
.hero-stat:nth-child(4) { transform: rotateY(3deg) translateZ(15px); }

.hero-stat:hover {
    transform: rotateY(0deg) translateZ(30px) scale(1.02);
    border-color: rgba(124, 58, 237, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.hero-stat .icon {
    font-size: 1.4rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.2rem;
}

.hero-stat .number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-stat .number.ai-text {
    font-size: 2.8rem;
}

.hero-stat .label {
    color: var(--text-muted);
    font-size: 0.7rem;
    margin-top: 0.2rem;
    font-weight: 500;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-bar .label {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-logos {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.trust-logos .logo-item {
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0.2;
    transition: 0.3s;
    letter-spacing: 0.5px;
    font-family: 'Space Grotesk', sans-serif;
}

.trust-logos .logo-item:hover {
    opacity: 0.7;
    color: #fff;
}

.trust-logos .logo-item i {
    margin-right: 0.4rem;
    font-size: 1rem;
    opacity: 0.5;
}

/* ===== AI BANNER ===== */
.ai-banner {
    padding: 2rem 2.5rem;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.03), rgba(6, 182, 212, 0.03));
    border: 1px solid rgba(124, 58, 237, 0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.ai-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.03), transparent 70%);
    border-radius: 50%;
}

.ai-banner .left {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    z-index: 1;
}

.ai-banner .left .icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-light);
}

.ai-banner .left .text h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.ai-banner .left .text p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.ai-banner .right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 1;
    flex-wrap: wrap;
}

.ai-banner .right .ai-tag {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 1rem;
    border-radius: 60px;
    background: rgba(124, 58, 237, 0.03);
    border: 1px solid rgba(124, 58, 237, 0.03);
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ai-banner .right .ai-tag i {
    color: var(--primary-light);
}

/* ===== SERVICES ===== */
.services {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .tag {
    display: inline-block;
    padding: 0.3rem 1.2rem;
    border-radius: 60px;
    background: rgba(124, 58, 237, 0.04);
    border: 1px solid rgba(124, 58, 237, 0.04);
    color: var(--primary-light);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 0.8rem;
}

.section-header h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.8rem 2rem;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(124, 58, 237, 0.03), transparent 60%);
    opacity: 0;
    transition: 0.4s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 58, 237, 0.06);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.service-card .icon {
    font-size: 2.6rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.service-card .badge-ai {
    display: inline-block;
    padding: 0.15rem 0.8rem;
    border-radius: 60px;
    background: rgba(124, 58, 237, 0.04);
    border: 1px solid rgba(124, 58, 237, 0.04);
    color: var(--primary-light);
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.service-card .badge-free {
    display: inline-block;
    padding: 0.15rem 0.8rem;
    border-radius: 60px;
    background: rgba(34, 197, 94, 0.04);
    border: 1px solid rgba(34, 197, 94, 0.04);
    color: var(--success);
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.service-card .badge-standalone {
    display: inline-block;
    padding: 0.15rem 0.8rem;
    border-radius: 60px;
    background: rgba(6, 182, 212, 0.04);
    border: 1px solid rgba(6, 182, 212, 0.04);
    color: var(--secondary);
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.service-card .features {
    list-style: none;
    padding: 0;
}

.service-card .features li {
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.service-card .features li i {
    color: var(--primary-light);
    font-size: 0.5rem;
}

.service-card .tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.25rem 1.2rem;
    border-radius: 60px;
    background: rgba(124, 58, 237, 0.03);
    border: 1px solid rgba(124, 58, 237, 0.03);
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.service-card .tag.free-tag {
    background: rgba(34, 197, 94, 0.03);
    border-color: rgba(34, 197, 94, 0.03);
    color: var(--success);
}

.service-card .offer-banner {
    margin-top: 1.2rem;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.03);
    border: 1px solid rgba(34, 197, 94, 0.04);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--success);
    font-size: 0.8rem;
    font-weight: 500;
}

.service-card .offer-banner i {
    font-size: 1rem;
}

.btn-get-quote {
    width: 100%;
    padding: 0.7rem;
    border-radius: 60px;
    border: none;
    background: var(--gradient);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-top: 0.8rem;
}

.btn-get-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

/* ===== SCANNER SECTION ===== */
.scanner-section {
    padding: 5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.scanner-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.scanner-left .badge-scanner {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(6, 182, 212, 0.06);
    border: 1px solid rgba(6, 182, 212, 0.06);
    padding: 0.3rem 1.2rem;
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.scanner-left .badge-scanner .pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    animation: scannerPulse 1.5s ease-in-out infinite;
}

@keyframes scannerPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.5); }
}

.scanner-left .offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(34, 197, 94, 0.04);
    border: 1px solid rgba(34, 197, 94, 0.04);
    padding: 0.4rem 1.4rem;
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--success);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
}

.scanner-left .offer-badge i {
    font-size: 0.9rem;
}

.scanner-left h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.scanner-left h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.scanner-left p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.scanner-left .scanner-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.scanner-left .scanner-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.8rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: 0.3s;
}

.scanner-left .scanner-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(124, 58, 237, 0.04);
}

.scanner-left .scanner-features .feature-item i {
    color: var(--primary-light);
    font-size: 0.8rem;
}

.scanner-left .free-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    background: rgba(34, 197, 94, 0.02);
    border: 1px solid rgba(34, 197, 94, 0.04);
    margin-bottom: 1.5rem;
}

.scanner-left .free-banner .icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--success);
    flex-shrink: 0;
}

.scanner-left .free-banner .text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.scanner-left .free-banner .text strong {
    color: var(--success);
    font-weight: 700;
}

.scanner-left .free-banner .text .highlight {
    color: var(--text);
    font-weight: 600;
}

.scanner-left .btn-scanner-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.5rem;
    border-radius: 60px;
    background: var(--gradient);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.15);
    text-decoration: none;
}

.scanner-left .btn-scanner-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(124, 58, 237, 0.25);
}

.scanner-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    perspective: 1000px;
}

.scanner-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.8rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.2);
    position: relative;
    overflow: hidden;
}

.scanner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(6, 182, 212, 0.02), transparent 60%);
    opacity: 0;
    transition: 0.4s;
}

.scanner-card:hover::before {
    opacity: 1;
}

.scanner-card:nth-child(1) { transform: rotateY(-3deg) translateZ(10px); }
.scanner-card:nth-child(2) { transform: rotateY(3deg) translateZ(20px); }
.scanner-card:nth-child(3) { transform: rotateY(-2deg) translateZ(5px); }
.scanner-card:nth-child(4) { transform: rotateY(4deg) translateZ(15px); }

.scanner-card:hover {
    transform: rotateY(0deg) translateZ(30px) scale(1.02);
    border-color: rgba(6, 182, 212, 0.05);
}

.scanner-card .icon {
    font-size: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.scanner-card .value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.scanner-card .label {
    color: var(--text-muted);
    font-size: 0.7rem;
    margin-top: 0.2rem;
}

.scanner-card .status {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.15rem 0.8rem;
    border-radius: 60px;
    background: rgba(34, 197, 94, 0.04);
    border: 1px solid rgba(34, 197, 94, 0.04);
    color: var(--success);
    font-size: 0.6rem;
    font-weight: 600;
}

.scanner-card .status i {
    margin-right: 0.2rem;
}

/* ===== WHY US ===== */
.why-us {
    padding: 4rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

.why-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border);
    transition: 0.4s;
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(124, 58, 237, 0.04);
    transform: translateY(-4px);
}

.why-item .icon {
    font-size: 2.2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.6rem;
}

.why-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.why-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ===== SPECIAL OFFER ===== */
.special-offer {
    padding: 5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.02), rgba(124, 58, 237, 0.02));
}

.special-offer .container {
    padding: 0 2rem;
}

.special-offer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.special-offer-left .badge-offer {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.06);
    padding: 0.3rem 1.2rem;
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--success);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.special-offer-left h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.special-offer-left h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.special-offer-left p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.offer-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.offer-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border);
    transition: 0.3s;
}

.offer-feature:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(34, 197, 94, 0.04);
}

.offer-feature i {
    color: var(--success);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.offer-feature h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.offer-feature p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 0;
}

.offer-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.btn-offer-primary {
    background: var(--gradient);
    border: none;
    padding: 0.9rem 2.5rem;
    border-radius: 60px;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-offer-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(124, 58, 237, 0.25);
}

.btn-offer-secondary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 0.9rem 2.5rem;
    border-radius: 60px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-offer-secondary:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.special-offer-right {
    display: flex;
    justify-content: center;
}

.offer-card {
    background: var(--dark-card);
    border: 2px solid rgba(34, 197, 94, 0.08);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    max-width: 360px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.02);
    transition: 0.3s;
}

.offer-card:hover {
    border-color: rgba(34, 197, 94, 0.15);
    transform: translateY(-4px);
}

.offer-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.offer-card-header i {
    font-size: 2.5rem;
    color: var(--secondary);
    background: rgba(6, 182, 212, 0.04);
    padding: 0.8rem;
    border-radius: 16px;
    margin-bottom: 0.5rem;
}

.offer-card-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.offer-card-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.offer-card-price .price-free {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--success);
    display: block;
}

.offer-card-price .price-original {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.offer-card-detail {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
}

.offer-card-detail:last-of-type {
    border-bottom: none;
}

.offer-card-detail .label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.offer-card-detail .value {
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 600;
}

.offer-card-detail .value.highlight {
    color: var(--success);
    font-size: 1rem;
}

.offer-card-badge {
    margin-top: 1.2rem;
    padding: 0.8rem;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.03);
    border: 1px solid rgba(34, 197, 94, 0.04);
    color: var(--success);
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
}

.offer-card-badge i {
    margin-right: 0.4rem;
}

.btn-offer-card {
    width: 100%;
    margin-top: 1.2rem;
    padding: 0.8rem;
    border-radius: 60px;
    border: none;
    background: var(--gradient);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
}

.btn-offer-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.25);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 4rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    transition: 0.4s;
}

.testimonial-card:hover {
    border-color: rgba(124, 58, 237, 0.04);
    transform: translateY(-4px);
}

.testimonial-card .stars {
    color: #f59e0b;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
}

.testimonial-card blockquote {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.testimonial-card .author .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-card .author .info .name {
    font-weight: 600;
    font-size: 0.85rem;
}

.testimonial-card .author .info .role {
    color: var(--text-muted);
    font-size: 0.7rem;
}

/* ===== INSIGHTS ===== */
.insights {
    padding: 4rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.insight-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
}

.insight-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, 0.04);
}

.insight-card .content {
    padding: 1.5rem;
}

.insight-card .tag-insight {
    display: inline-block;
    padding: 0.15rem 0.8rem;
    border-radius: 60px;
    background: rgba(124, 58, 237, 0.04);
    border: 1px solid rgba(124, 58, 237, 0.04);
    color: var(--primary-light);
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.insight-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.insight-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.insight-card .read-more {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.insight-card .read-more:hover {
    color: #fff;
    gap: 0.8rem;
}

/* ===== CTA ===== */
.cta-section {
    padding: 4rem 3rem;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.03), rgba(6, 182, 212, 0.03));
    border: 1px solid rgba(124, 58, 237, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 4rem 0;
}

.cta-section .left h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.cta-section .left p {
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.cta-section .right {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--gradient);
    border: none;
    padding: 1rem 2.8rem;
    border-radius: 60px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.15);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(124, 58, 237, 0.25);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 1rem 2.4rem;
    border-radius: 60px;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

/* ===== CONTACT ===== */
.contact-section {
    padding: 5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.info-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    transition: 0.4s;
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, 0.04);
}

.info-card .icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    font-size: 1.2rem;
    color: var(--primary-light);
}

.info-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.info-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.info-card p a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
}

.info-card p a:hover {
    color: var(--primary-light);
}

.contact-form-wrapper {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.contact-form .form-group {
    margin-bottom: 1.2rem;
}

.contact-form .form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    color: var(--text-muted);
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    font-size: 0.95rem;
    transition: 0.3s;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.05);
}

.contact-form .form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.contact-form .form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    background: var(--gradient);
    border: none;
    padding: 0.9rem 2.5rem;
    border-radius: 60px;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

/* ===== FOOTER ===== */
.footer {
    padding: 3rem 0 2rem 0;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer .brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.6rem;
    max-width: 280px;
    line-height: 1.7;
}

.footer .brand .social {
    display: flex;
    gap: 1rem;
    margin-top: 1.2rem;
}

.footer .brand .social a {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: 0.3s;
}

.footer .brand .social a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.footer h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    padding: 0.25rem 0;
}

.footer ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #fff;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.footer-bottom .links {
    display: flex;
    gap: 2rem;
}

.footer-bottom .links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    transition: 0.3s;
}

.footer-bottom .links a:hover {
    color: #fff;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .hero p { margin: 0 auto 2.5rem auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { max-width: 500px; margin: 0 auto; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .scanner-container { grid-template-columns: 1fr; text-align: center; }
    .scanner-left p { margin: 0 auto 1.5rem auto; }
    .scanner-left .scanner-features { max-width: 400px; margin: 0 auto 1.5rem; }
    .scanner-left .free-banner { max-width: 500px; margin: 0 auto 1.5rem; }
    .scanner-right { max-width: 500px; margin: 0 auto; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .special-offer-container { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .offer-features { grid-template-columns: 1fr 1fr; max-width: 500px; margin: 0 auto 2rem; }
    .offer-actions { justify-content: center; }
    .special-offer-right { justify-content: center; }
    .offer-card { max-width: 400px; }
    .testimonial-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .insights-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-container { grid-template-columns: 1fr; gap: 2rem; }
    .contact-info { grid-template-columns: repeat(4, 1fr); }
    .footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .navbar { padding: 0.8rem 1.2rem; }
    .nav-links { display: none; flex-direction: column; width: 100%; padding: 1rem 0; gap: 1rem; }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }
    .hero h1 { font-size: 2.8rem; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .hero-stat { padding: 1rem; }
    .hero-stat .number { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .scanner-left h2 { font-size: 2rem; }
    .scanner-left .scanner-features { grid-template-columns: 1fr; }
    .scanner-right { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .scanner-card { padding: 1.2rem; }
    .scanner-card .value { font-size: 1.6rem; }
    .why-grid { grid-template-columns: 1fr; }
    .special-offer-left h2 { font-size: 2rem; }
    .offer-features { grid-template-columns: 1fr; max-width: 100%; }
    .offer-actions { flex-direction: column; align-items: center; }
    .btn-offer-primary, .btn-offer-secondary { width: 100%; justify-content: center; }
    .offer-card { max-width: 100%; }
    .section-header h2 { font-size: 2.2rem; }
    .cta-section { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
    .cta-section .right { justify-content: center; }
    .contact-info { grid-template-columns: 1fr 1fr; }
    .contact-form-wrapper { padding: 1.5rem; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .footer { grid-template-columns: 1fr; text-align: center; }
    .footer .brand p { margin: 0.6rem auto 0; }
    .footer .brand .social { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .ai-banner { flex-direction: column; text-align: center; padding: 1.5rem; }
    .ai-banner .left { flex-direction: column; }
    .ai-banner .right { flex-wrap: wrap; justify-content: center; }
    .insights-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .live-badge { font-size: 0.65rem; padding: 0.3rem 1rem; }
    .trust-logos { gap: 1.5rem; }
    .trust-logos .logo-item { font-size: 1rem; }
    .btn-submit { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero h1 { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .scanner-right { grid-template-columns: 1fr 1fr; }
    .contact-info { grid-template-columns: 1fr; }
    .btn-submit { width: 100%; justify-content: center; }
    .back-to-top { width: 40px; height: 40px; font-size: 1rem; bottom: 1rem; right: 1rem; }
}