/* Base Variables */
:root {
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --primary: #3b82f6;
    /* Blue */
    --primary-glow: rgba(59, 130, 246, 0.5);
    --accent: #06b6d4;
    /* Cyan */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    height: 40px;
    width: auto;
    border-radius: 8px;
    /* Soften edges slightly */
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover {
    color: #fff;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary));
    color: #fff;
    border: 1px solid transparent;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: var(--glass-bg);
}

.nav-btn {
    background: var(--primary);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-sub {
    font-size: 1.25rem;
    color: #e2e8f0;
    /* Lighter shade for better contrast */
    max-width: 600px;
    margin: 20px auto 40px;
    font-weight: 300;
}

/* Trust Section */
.trust-section {
    text-align: center;
    padding: 0 0 80px;
    border-bottom: 1px solid var(--glass-border);
}

.trust-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 1;
    /* Removed opacity for clarity */
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #fff;
    /* Brighter text */
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    /* Slight badge background */
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
}

.trust-item i {
    color: var(--accent);
    /* Cyan accent for icons */
    font-size: 1.2rem;
}


/* Services Section (Replaces Problem) */
.services-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    padding: 40px;
    text-align: left;
    transition: transform 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-outcome {
    color: var(--accent);
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: block;
}

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

/* Glass Card Global */
.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 16px;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    padding: 40px;
    text-align: center;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.problem-text {
    text-align: center;
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.solution-content {
    flex: 1;
}

.solution-visual {
    flex: 1;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

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

.feature-list li {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.feature-list i {
    color: var(--primary);
    margin-right: 10px;
}

.kit-mockup-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* Lead Magnet */
.lead-magnet-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.magnet-box {
    display: flex;
    padding: 60px;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.magnet-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary);
    filter: blur(100px);
    opacity: 0.2;
}

.magnet-content {
    flex: 1;
}

.magnet-form {
    flex: 1;
}

.badge {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

.magnet-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.magnet-list li i {
    color: var(--accent);
    margin-right: 10px;
}

.magnet-preview {
    margin: 20px 0;
    max-width: 300px;
}

.magnet-img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.email-form {
    background: #1e293b;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

input[type="email"] {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #475569;
    background: #0f172a;
    color: #fff;
    font-family: var(--font-body);
}

input[type="email"]:focus {
    outline: none;
    border-color: var(--primary);
}

.form-footer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
    text-align: center;
}

/* Pricing */
.pricing-section {
    padding: 100px 0;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    position: relative;
}

.border-gradient {
    position: relative;
    border: 1px solid transparent;
    /* Fallback */
    background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
        linear-gradient(135deg, var(--primary), var(--accent)) border-box;
}

.price {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin: 20px 0;
    font-family: var(--font-heading);
}

.currency {
    font-size: 2rem;
    vertical-align: top;
    margin-right: 5px;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.btn-block {
    display: block;
    width: 100%;
    margin-top: 30px;
}

.guarantee {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
    background: #020617;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand h4 {
    color: #fff;
    margin-bottom: 5px;
}

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

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    color: #475569;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

/* Utils */
.mt-2 {
    margin-top: 20px;
}

/* Animation Classes */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

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

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

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

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .split-layout {
        flex-direction: column;
        text-align: center;
    }

    .feature-list {
        align-items: center;
    }

    .magnet-box {
        flex-direction: column;
        padding: 40px 20px;
    }

    .doc-stack {
        margin: 0 auto;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 20px 0;
        border-bottom: 1px solid var(--glass-border);
        transform: translateY(-150%);
        transition: 0.3s;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
    }
}

/* SMB Guide Specifics */
.hero-left {
    padding: 160px 0 80px;
    text-align: left;
}

.hero-title-large {
    font-size: 2.8rem;
    line-height: 1.2;
}

.article-section {
    padding-bottom: 100px;
}

.lead-text {
    font-size: 1.3rem;
    color: #fff;
}

.th-accent {
    color: var(--accent);
}

.cta-box {
    padding: 40px;
    margin-top: 40px;
    text-align: center;
}

.cta-box h3 {
    margin-top: 0;
}

/* Utility */
.mb-20 {
    margin-bottom: 20px;
}

.mt-10 {
    margin-top: 10px;
}

.nav-link-accent {
    color: var(--accent);
    border-bottom: 1px solid var(--accent);
}