:root {
    /* Bright Commercial Theme Colors */
    --bg-page: #F8FAFC;
    --bg-surface: #FFFFFF;
    
    /* Typography */
    --text-dark: #0F172A;
    --text-body: #475569;
    
    /* Brand Logo / Lego Colors */
    --brand-red: #EF4444;    /* Modern Lego Red */
    --brand-blue: #2563EB;   /* Modern Lego Blue - Also primary CTA */
    --brand-yellow: #F59E0B; /* Modern Lego Yellow */
    --brand-green: #10B981;  /* Modern Lego Green */
    
    --brand-blue-hover: #1D4ED8;
    
    /* Styling */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-floating: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    --radius-md: 12px;
    --radius-lg: 20px;
    
    --grid-bg: radial-gradient(#cbd5e1 1px, transparent 1.5px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-page);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Subtle background pattern to not be completely white */
.bg-pattern {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: var(--grid-bg);
    background-size: 32px 32px;
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3, .logo {
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.text-gradient {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.text-blue { color: var(--brand-blue); }
.text-red { color: var(--brand-red); }
.text-yellow { color: var(--brand-yellow); }
.text-green { color: var(--brand-green); }

/* Strong Navigation */
.navbar {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
}

.logo-icon {
    display: grid;
    grid-template-columns: 14px 14px;
    grid-template-rows: 14px 14px;
    gap: 4px;
    align-items: center;
    justify-content: center;
}
.brick {
    width: 14px; height: 14px;
    border-radius: 3px;
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.4);
}
.brick-red { background: var(--brand-red); }
.brick-blue { background: var(--brand-blue); }
.brick-yellow { background: var(--brand-yellow); }
.brick-green { background: var(--brand-green); }

/* Buttons & CTAs */
.btn-primary-small, .btn-primary, .btn-submit, .btn-outline-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary-small {
    background: var(--brand-blue);
    color: white;
    padding: 10px 20px;
    font-size: 0.95rem;
}
.btn-outline-small {
    background: transparent;
    color: var(--text-dark);
    padding: 10px 20px;
    font-size: 0.95rem;
    margin-right: 10px;
}
.btn-outline-small:hover {
    color: var(--brand-blue);
}

.btn-primary {
    background: var(--brand-blue);
    color: white;
    padding: 16px 32px;
    font-size: 1.15rem;
    border-radius: 12px;
}
.btn-submit {
    background: var(--brand-red); /* High conversion color */
    color: white;
    padding: 16px;
    font-size: 1.1rem;
    border-radius: 10px;
}

.shadow-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
}
.btn-submit.shadow-hover:hover {
    box-shadow: 0 10px 25px -5px rgba(239, 68, 68, 0.4);
    background: #DC2626;
}
.w-100 { width: 100%; }

/* Trust Signals */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #DBEAFE;
    color: #1E40AF;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 24px;
}
.pulse-dot {
    width: 8px; height: 8px;
    background: #3B82F6;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(59, 130, 246, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

/* Hero Commercial Segment */
.hero {
    padding: 80px 0 100px;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 480px;
    color: var(--text-body);
}
.hero-content p strong {
    color: var(--text-dark);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}
.guarantee-text {
    font-size: 0.9rem !important;
    color: #64748B !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    gap: 5px;
}
.guarantee-text::before {
    content: '🔒';
    font-size: 0.9rem;
}

/* Image styling */
.hero-visual {
    position: relative;
    padding: 20px;
}
.image-wrapper {
    position: relative;
}
#hero-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-floating);
    border: 1px solid rgba(0,0,0,0.05);
}
.floating-badge {
    position: absolute;
    background: var(--bg-surface);
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
    border: 1px solid rgba(0,0,0,0.05);
}
.badge-1 { top: 20px; left: -30px; animation: floatY 4s ease-in-out infinite; }
.badge-2 { bottom: 40px; right: -20px; animation: floatY 5s ease-in-out infinite reverse; }

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Features grid */
.features {
    padding: 100px 0;
    background: var(--bg-surface);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 { font-size: 2.8rem; margin-bottom: 15px; }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--bg-page);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--bg-surface);
}

.feature-icon {
    width: 50px; height: 50px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.icon-blue { background: #DBEAFE; color: var(--brand-blue); }
.icon-red { background: #FEE2E2; color: var(--brand-red); }
.icon-yellow { background: #FEF3C7; color: var(--brand-yellow); }
.icon-green { background: #D1FAE5; color: var(--brand-green); }

.feature-card h3 { font-size: 1.4rem; margin-bottom: 10px; }

/* Strong Commercial CTA */
.cta-section {
    padding: 100px 0;
}
.cta-card {
    background: var(--text-dark);
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    box-shadow: var(--shadow-floating);
    position: relative;
    overflow: hidden;
}

.cta-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 40vw; height: 100%;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
    opacity: 0.1;
    z-index: 1;
}

.cta-content { z-index: 2; }
.cta-content h2 { color: white; font-size: 2.8rem; margin-bottom: 20px; }
.cta-content p { color: #94A3B8; font-size: 1.1rem; margin-bottom: 40px; max-width: 400px; }

.price-tag {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    display: flex; align-items: baseline; gap: 8px;
}
.price-tag span { font-size: 1rem; color: #94A3B8; font-weight: 500; }

.cta-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius-md);
    z-index: 2;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; font-size: 0.9rem;}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    background: #F8FAFC;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Footer */
footer {
    background: var(--bg-surface);
    padding: 40px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.footer-content { display: flex; justify-content: space-between; align-items: center; }
.footer-brand p { font-size: 0.9rem; margin-top: 10px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { text-decoration: none; color: var(--text-body); font-size: 0.9rem; font-weight: 500;}
.footer-links a:hover { color: var(--brand-blue); }

@media (max-width: 900px) {
    .hero-container, .bento-grid, .cta-card { grid-template-columns: 1fr; }
    .hero-content { text-align: center; }
    .hero-buttons { align-items: center; }
    .hero h1, .section-header h2, .cta-content h2 { font-size: 2.5rem; }
    .cta-card { padding: 40px 20px; }
    .floating-badge { display: none; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
}