:root {
    --bg-color: #050a14;
    --bg-secondary: #0a1120;
    --text-primary: #ffffff;
    --text-secondary: #a0aab8;
    --accent-green: #00ff66;
    --accent-green-dim: rgba(0, 255, 102, 0.1);
    --accent-red: #ff3333;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

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

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

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    background: linear-gradient(to right, #fff, #a0aab8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.text-green {
    color: var(--accent-green);
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.3);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-green);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.2);
}

.btn-primary:hover {
    background-color: #33ff88;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 255, 102, 0.4);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.2rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 10, 20, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.bg-darker {
    background-color: var(--bg-secondary);
}

/* Hero */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 102, 0.05) 0%, transparent 50%);
}

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

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.micro-copy {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

.visual-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.glow-effect {
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.1);
}

/* Problem */
.risk-alert {
    background: rgba(255, 51, 51, 0.1);
    border-left: 4px solid var(--accent-red);
    padding: 20px;
    margin-top: 30px;
    border-radius: 0 6px 6px 0;
}

.risk-alert h3 {
    color: var(--accent-red);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-green);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--accent-green);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.benefit-card h4 {
    font-size: 1.1rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 1.5rem;
}

.problem-text,
.solution-text {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.problem-text strong {
    color: var(--accent-red);
}

.solution-text strong {
    color: var(--accent-green);
}

/* Analogies */
.analogies-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.analogy-item {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    padding: 20px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tech-term {
    font-weight: 800;
    color: var(--accent-green);
    font-size: 1.2rem;
}

/* Before/After */
.comparison-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    overflow: hidden;
}

.comparison-col {
    padding: 40px;
}

.comparison-col.before {
    background: rgba(255, 51, 51, 0.05);
}

.comparison-col.after {
    background: rgba(0, 255, 102, 0.05);
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-weight: bold;
    width: 60px;
    z-index: 10;
}

.comparison-list {
    list-style: none;
    margin-top: 20px;
}

.comparison-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.negative {
    color: #ff8888;
}

.positive {
    color: #88ff88;
    font-weight: 600;
}

.badge-container {
    margin-top: 30px;
    text-align: center;
}

.badge-img {
    max-width: 150px;
}

/* Social Proof */
.logos-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    opacity: 0.7;
}

.client-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    border: 2px solid var(--text-secondary);
    padding: 10px 20px;
    border-radius: 8px;
}

/* CTA */
.cta-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
}

.glow-border {
    border: 1px solid var(--accent-green);
    box-shadow: 0 0 20px var(--accent-green-dim);
}

.audit-form {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.audit-input {
    padding: 15px;
    border-radius: 6px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 1rem;
}

.audit-input:focus {
    outline: none;
    border-color: var(--accent-green);
}

.security-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 40px 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .comparison-container {
        grid-template-columns: 1fr;
    }

    .comparison-divider {
        width: 100%;
        padding: 10px;
    }
}