/* MODERN SAAS THEME 
   Colors: Deep Slate, Electric Blue, Vivid Purple
*/

:root {
    --bg-dark: #0B0F19;
    --bg-card: #111827;
    --text-primary: #F3F4F6;
    --text-secondary: #9CA3AF;
    --accent-blue: #3B82F6;
    --accent-purple: #8B5CF6;
    --accent-gradient: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Ambient Background Lights */
.ambient-light {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.ambient-light.one {
    top: -100px;
    left: -100px;
    background: var(--accent-blue);
}

.ambient-light.two {
    bottom: 0;
    right: -100px;
    background: var(--accent-purple);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: #fff;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    transition: 0.3s ease;
}

/* Buttons */
.btn-primary {
    background: var(--accent-gradient);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-secondary);
    color: var(--text-primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(11, 15, 25, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.dot {
    color: var(--accent-blue);
}

.nav-links a {
    color: var(--text-secondary);
    margin-right: 32px;
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: white;
}

.nav-links .btn-secondary {
    margin-right: 0;
    color: white;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--accent-blue);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.75rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subheadline {
    font-size: 1.125rem;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.trust-indicators {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255,255,255,0.03);
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    width: fit-content;
}

.stat-number {
    display: block;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.stat-divider {
    width: 1px;
    height: 24px;
    background: var(--glass-border);
}

/* Hero Visual (SVG) */
.visual-container {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

.hero-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.connection-line {
    stroke: var(--accent-blue);
    stroke-width: 2;
    stroke-opacity: 0.3;
    stroke-dasharray: 5;
    animation: dash 20s linear infinite;
}

@keyframes dash {
    to { stroke-dashoffset: 100; }
}

.hub-center {
    fill: #1E293B;
    stroke: var(--accent-blue);
    stroke-width: 3;
}

.hub-center-bg {
    fill: var(--accent-blue);
    opacity: 0.3;
}

.hub-text {
    fill: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    dominant-baseline: middle;
}

.node {
    fill: #1E293B;
    stroke: var(--text-secondary);
    stroke-width: 2;
    transition: 0.3s;
}
/* New Node Styles */
.node-bg {
    fill: var(--bg-card);       /* Dark background matching the card */
    stroke: var(--glass-border);
    stroke-width: 2px;
}

.node-icon {
    fill: none;
    stroke: var(--accent-blue); /* Electric Blue Icons */
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Optional: Hover effect on nodes */
.node-group:hover .node-bg {
    stroke: var(--accent-purple);
    fill: rgba(59, 130, 246, 0.1);
    cursor: pointer;
}

/* Sections */
.center-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    position: relative;
    padding: 24px;
    border-left: 1px solid var(--glass-border);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    position: absolute;
    top: 0;
    left: 10px;
    z-index: -1;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--accent-blue);
}

/* Verticals */
.bg-darker {
    background: rgba(0,0,0,0.2);
}

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.vertical-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 32px;
    border-radius: 16px;
    transition: 0.3s;
}

.vertical-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.icon-box svg {
    width: 48px;
    height: 48px;
    stroke: var(--accent-blue); /* This turns the icons electric blue */
    stroke-width: 1.5;
}

.check-icon svg {
    stroke: var(--accent-blue);
    width: 20px;
    height: 20px;
}

.mobile-menu-toggle svg {
    stroke: white;
}

/* Features Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 24px;
}

.feature-box {
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: 0.3s;
    overflow: hidden;
    position: relative;
}

.feature-box:hover {
    border-color: var(--accent-blue);
}

.feature-box.span-2 {
    grid-column: span 2;
}

.feature-box h3 {
    margin-bottom: 8px;
    z-index: 2;
}

.feature-box p {
    font-size: 0.9rem;
    z-index: 2;
}

/* Why Ad Nop */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.checklist {
    margin-top: 32px;
}

.check-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.check-icon {
    color: var(--accent-blue);
    font-weight: bold;
}

.table-wrapper {
    padding: 24px;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 16px 0;
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row .col:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-secondary);
}

.table-row.header {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.col.highlight {
    color: var(--accent-blue);
    font-weight: 700;
}

.col.muted {
    opacity: 0.5;
}

/* Contact */
.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

input, select, textarea {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--glass-border);
    padding: 12px 16px;
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: 0.2s;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.full-width {
    width: 100%;
}

.disclaimer {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 16px;
    opacity: 0.6;
}

.disclaimer a {
    color: var(--accent-blue);
}

/* Footer */
.footer {
    background: black;
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-links h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #555;
    padding-top: 30px;
    border-top: 1px solid #111;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content, .why-grid, .modern-form .form-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        padding-top: 120px;
        text-align: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .trust-indicators {
        margin: 0 auto;
    }

    .nav-links {
        display: none; /* Would need JS toggle for full mobile menu */
    }

    .mobile-menu-toggle {
        display: block;
    }

    .steps-grid, .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-box.span-2 {
        grid-column: span 1;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}