:root {
    --mint: #00d285;
    --dark: #121212;
    --light: #ffffff;
    --border: #000000;
    --gray: #64748b;
}

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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.5;
    overflow-x: hidden;
}

/* CRM Models Section - Using Bespoke Pricing Styles */
.pricing-details {
    margin: 30px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
}

.pricing-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.pricing-details p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 10px;
}

.usage-list {
    list-style: none;
    margin-top: 10px;
}

.usage-list li {
    padding: 8px 0;
    color: var(--gray);
    position: relative;
    padding-left: 20px;
}

.usage-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gray);
}

.custom-quote-section {
    margin-top: 60px;
    padding: 60px;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    border-radius: 20px;
    text-align: center;
}

.custom-quote-content .pill {
    background: var(--mint);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
}

.custom-quote-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.custom-quote-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.custom-btn {
    background: var(--mint) !important;
    color: var(--dark) !important;
}

.custom-btn:hover {
    background: #00b875 !important;
}

/* ═══════════════════════════════════════════════════════
   CUSTOM QUOTE V3 — Asymmetric Split Card
   ═══════════════════════════════════════════════════════ */

.custom-quote-v3 {
    margin-top: 60px;
    position: relative;
    background: #0a0a0a;
    border: 1px solid #222;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.custom-quote-v3:hover {
    border-color: var(--mint);
    box-shadow: 0 30px 60px -15px rgba(0, 210, 133, 0.2);
}

.custom-quote-inner {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 0;
    align-items: center;
    position: relative;
    z-index: 2;
}

.custom-quote-left {
    padding: 60px;
    border-right: 1px solid #1a1a1a;
}

.custom-quote-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid #333;
    border-radius: 3px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 28px;
}

.custom-quote-badge svg {
    width: 14px;
    height: 14px;
    color: var(--mint);
}

.custom-quote-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 20px;
}

.custom-quote-accent {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--mint);
    transition: all 0.3s ease;
}

.custom-quote-v3:hover .custom-quote-accent {
    color: var(--mint);
    -webkit-text-stroke: 0;
}

.custom-quote-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #6b7280;
    max-width: 440px;
    margin: 0;
}

.custom-quote-right {
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.custom-quote-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: var(--mint);
    color: #0a0a0a;
    text-decoration: none;
    padding: 22px 30px;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--mint);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.custom-quote-btn:hover {
    background: transparent;
    color: var(--mint);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 210, 133, 0.3);
}

.custom-quote-btn-text {
    font-size: 0.9rem;
}

.custom-quote-btn-arrow {
    font-size: 1.4rem;
    transition: transform 0.3s;
}

.custom-quote-btn:hover .custom-quote-btn-arrow {
    transform: translateX(6px);
}

.custom-quote-note {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: #4b5563;
    letter-spacing: 1px;
    margin: 0;
}

.custom-quote-border-sweep {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--mint), #00ffaa);
    transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 3;
}

.custom-quote-v3:hover .custom-quote-border-sweep {
    width: 100%;
}

@media (max-width: 768px) {
    .custom-quote-inner {
        grid-template-columns: 1fr;
    }

    .custom-quote-left {
        padding: 40px 30px;
        border-right: none;
        border-bottom: 1px solid #1a1a1a;
    }

    .custom-quote-right {
        padding: 30px;
    }

    .custom-quote-title {
        font-size: 1.8rem;
    }
}


/* Navbar */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 13px 8%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: -1px; }
.logo span { color: var(--mint); }
.navbar .logo img{
    width: 130px;
}

.nav-links { display: flex; align-items: center; gap: 40px; transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.nav-links a { text-decoration: none; color: #444; font-weight: 600; font-size: 0.9rem; transition: color 0.3s; }
.nav-links a:hover { color: #00d285; }

.btn-black { 
    background: var(--dark); color: white; border: none; 
    padding: 12px 24px; border-radius: 10px; font-weight: 600; cursor: pointer;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;
    margin-top: 5px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f3f4f6;
    color: var(--mint);
}

/* Existing Navbar Base Styles */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 13px 8%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-links { display: flex; align-items: center; gap: 40px; transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.nav-links a { text-decoration: none; color: #444; font-weight: 600; font-size: 0.9rem; transition: color 0.3s; }
.nav-links a:hover { color: #00d285; }

/* Hamburger Icon */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.menu-toggle:active {
    background-color: rgba(0, 0, 0, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #000;
    border-radius: 10px;
    transition: 0.3s;
}

/* Mobile Breakpoint (Under 1024px) */
@media (max-width: 1024px) {
    .menu-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 40px;
        z-index: 1000;
        transform: translateX(-100%);
        transition: 0.3s ease-in-out;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.5rem; /* Larger links for touch */
        font-weight: 800;
        letter-spacing: -1px;
        text-align: center;
    }

    .nav-links .btn-black {
        text-align: center;
        margin: 0 auto;
        display: block;
        max-width: 200px;
    }

    /* Animate Hamburger to "X" when active */
    .menu-toggle.open .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.open .bar:nth-child(2) { transform: translateY(0px) rotate(-45deg); }
}

/* Very small screens (under 480px) */
@media (max-width: 480px) {
    .navbar {
        padding: 10px 5%;
    }
    
    .logo img {
        width: 100px;
    }
    
    .nav-links {
        padding: 30px 20px;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* New Hero Section */

.crm-hero-new {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Background Elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.animated-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.gradient-orb {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 210, 133, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

/* Main Layout */
.hero-layout-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Column Content */
.hero-content-left {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(0, 210, 133, 0.1);
    border: 2px solid var(--mint);
    border-radius: 50px;
    margin-bottom: 40px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--mint);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--mint);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title-new {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 30px;
    color: #000;
}

.title-gradient {
    background: linear-gradient(135deg, var(--mint), #009e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Stats Section */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--mint);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Action Buttons */
.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary-new {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: #fff;
    padding: 16px 32px;
    border: 2px solid #000;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 8px 8px 0px var(--mint);
}

.btn-primary-new:hover {
    background: var(--mint);
    color: #000;
    transform: translate(-5px, -5px);
    box-shadow: 12px 12px 0px #000;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.btn-primary-new:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-secondary-new {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #000;
    padding: 16px 32px;
    border: 2px solid #000;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary-new:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

.play-icon {
    width: 20px;
    height: 20px;
    background: var(--mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #000;
}

/* Right Column Dashboard */
.hero-dashboard-new {
    background: #fff;
    border: 3px solid #000;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 20px 20px 0px rgba(0, 210, 133, 0.15);
    position: relative;
    overflow: hidden;
}

.hero-dashboard-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mint), #009e63, var(--mint));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dc2626;
    position: relative;
}

.status-indicator.active {
    background: var(--mint);
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 210, 133, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(0, 210, 133, 0); }
}

.dashboard-title {
    font-family: monospace;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 2px;
    color: #000;
}

.connection-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: monospace;
    font-size: 10px;
    font-weight: 800;
    color: var(--mint);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--mint);
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.metric-card {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.metric-card:hover {
    border-color: var(--mint);
    transform: translateY(-4px);
    box-shadow: 8px 8px 0px rgba(0, 210, 133, 0.1);
}

.metric-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.metric-change {
    font-size: 0.8rem;
    font-weight: 800;
}

.metric-change.positive {
    color: var(--mint);
}

/* Activity Feed */
.activity-feed {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.feed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-family: monospace;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #64748b;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background: var(--mint);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.feed-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feed-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: #475569;
}

.item-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cbd5e1;
    flex-shrink: 0;
}

.item-dot.mint {
    background: var(--mint);
}

.item-text {
    flex: 1;
    font-weight: 600;
}

.item-time {
    font-family: monospace;
    font-size: 0.75rem;
    color: #94a3b8;
}

/* Performance Chart */
.performance-chart {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    margin-bottom: 12px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--mint), #00d28580);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    transition: all 0.3s;
}

.chart-bar:hover {
    background: linear-gradient(to top, var(--mint), #00d285);
    transform: scaleY(1.05);
}

.chart-label {
    font-family: monospace;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #64748b;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-layout-split {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content-left {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .crm-hero-new {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-title-new {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary-new,
    .btn-secondary-new {
        width: 100%;
        justify-content: center;
    }
    
    .gradient-orb {
        width: 400px;
        height: 400px;
    }
}



/* second section */

.crm-logic-v2 {
    padding: 20px 0;
    background: #ffffff;
}

.logic-header-v2 {
    text-align: center;
    margin-bottom: 100px;
}

.extra-bold-v2 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1.1;
}

/* THE TIMELINE RAIL */
.logic-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.logic-step-block {
    display: flex;
    gap: 50px;
}

.step-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
}

.step-node {
    width: 60px;
    height: 60px;
    border: 3px solid #000;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    box-shadow: 6px 6px 0px #eee;
}

.active-node {
    border-color: var(--mint);
    color: var(--mint);
    box-shadow: 6px 6px 0px #00d28515;
}

.step-line {
    width: 3px;
    background: #000;
    flex-grow: 1;
    margin: 10px 0;
}

/* THE CARDS */
.logic-content-card {
    flex: 1;
    padding-bottom: 80px;
}

.logic-meta {
    font-family: monospace;
    font-size: 10px;
    font-weight: 900;
    color: #94a3b8;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.logic-main {
    background: #fff;
    border: 2px solid #000;
    padding: 40px;
    display: flex;
    gap: 30px;
    transition: 0.3s;
    box-shadow: 10px 10px 0px #f8fafc;
}

.logic-main:hover {
    border-color: var(--mint);
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0px var(--mint);
}

.logic-icon-v2 {
    font-size: 2.5rem;
}

.logic-text h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.logic-text p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.tech-chips span {
    font-family: monospace;
    font-size: 10px;
    font-weight: 900;
    background: #000;
    color: #fff;
    padding: 5px 12px;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .logic-step-block { gap: 20px; }
    .logic-main { flex-direction: column; padding: 30px; }
    .extra-bold-v2 { font-size: 2.5rem; }
}

.feature-hub-v2 {
    padding: 120px 0;
    background: #ffffff;
}

.hub-header-v2 { text-align: center; margin-bottom: 100px; }
.tag-outline { 
    display: inline-block; padding: 6px 16px; border: 2px solid #000; 
    font-weight: 900; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; 
}
.heavy-title { font-size: 4rem; font-weight: 900; letter-spacing: -3px; line-height: 1.1; margin-bottom: 20px; }
.hub-subtitle { color: #151515; max-width: 600px; margin: 0; font-size: 1.1rem; 
padding: 10px 0;
font-size: 1.2rem;
}

/* THE BENTO MATRIX */
.bento-matrix {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    margin-bottom: 40px;
}

.ai-architecture {
    background: #fff;
    border: 3px solid #000;
    padding: 60px;
    box-shadow: 15px 15px 0px #f8fafc;
    transition: 0.3s;
}

.ai-architecture:hover {
    box-shadow: 15px 15px 0px var(--mint);
    transform: translate(-5px, -5px);
}

.core-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.core-id { font-family: monospace; font-size: 12px; font-weight: 900; color: var(--mint); }
.core-svg { width: 40px; height: 40px; color: #000; }

.ai-architecture h3 { font-size: 2.5rem; font-weight: 900; margin-bottom: 40px; }

.f-row { display: flex; gap: 20px; margin-bottom: 35px; }
.f-check { color: var(--mint); font-weight: 900; font-size: 1.2rem; }
.f-text strong { display: block; font-size: 1.2rem; margin-bottom: 8px; color: #000; }
.f-text p { color: #555; font-size: 0.95rem; line-height: 1.6; }

/* SIDE MODULES */
.bento-side-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.module-card {
    background: #fff;
    border: 2px solid #000;
    padding: 30px;
    transition: 0.3s;
}

.module-card:hover { border-color: var(--mint); transform: translateY(-5px); box-shadow: 8px 8px 0px var(--mint); }
.mod-icon { font-size: 1.8rem; margin-bottom: 15px; display: block; }
.module-card h4 { font-size: 1.1rem; font-weight: 900; margin-bottom: 10px; }
.module-card p { font-size: 0.85rem; color: #666; line-height: 1.5; }

/* THE BANNER */
.hub-banner-v2 {
    background: #000;
    color: #fff;
    padding: 60px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.banner-content h3 { font-size: 2.2rem; font-weight: 900; margin-bottom: 10px; }
.banner-content p { color: #94a3b8; max-width: 500px; }

.btn-heavy-black {
    background: var(--mint);
    color: #000;
    padding: 22px 45px;
    border: none;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .bento-matrix { grid-template-columns: 1fr; }
    .hub-banner-v2 { flex-direction: column; text-align: center; }
}

/* SVG Container Handling */
.f-svg-wrap {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.mod-icon-svg {
    width: 32px;
    height: 32px;
    margin-bottom: 20px;
    color: var(--mint);
}

.core-svg {
    width: 40px;
    height: 40px;
    color: #000;
}

/* Ensure SVGs inherit the container size */
svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Layout Specifics */
.tag-blueprint {
    display: inline-block;
    padding: 6px 16px;
    border: 2px solid #000;
    font-weight: 900;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.ai-architecture {
    background: #ffffff;
    border: 3px solid #000000;
    padding: 60px;
    box-shadow: 15px 15px 0px #f8fafc;
}

.ai-architecture:hover {
    box-shadow: 15px 15px 0px var(--mint);
    transform: translate(-5px, -5px);
}

.module-card {
    background: #fff;
    border: 2px solid #000;
    padding: 30px;
    transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.module-card:hover {
    border-color: var(--mint);
    transform: translateY(-5px);
    box-shadow: 10px 10px 0px var(--mint);
}


.onboarding-studio {
    padding: 20px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Background Visual Accents */
.studio-bg-accent {
    position: absolute;
    top: 10%; right: -5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0, 210, 133, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.pill-rich {
    display: inline-block;
    padding: 8px 20px;
    background: #000;
    color: #fff;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 2px;
    border-radius: 4px;
    margin-bottom: 25px;
    box-shadow: 4px 4px 0px var(--mint);
}

.mega-title {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -4px;
    line-height: 1;
    margin-bottom: 20px;
}

.mint-gradient-text {
    background: linear-gradient(90deg, #00d285, #009e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* NEURAL PATH GRID */
.neural-path {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.neural-card {
    background: #fff;
    border: 3px solid #000;
    padding: 40px;
    position: relative;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.neural-card:hover {
    transform: translateY(-10px);
    box-shadow: 15px 15px 0px #000;
    border-color: var(--mint);
}

.featured-neural {
    background: #fafafa;
    border-color: var(--mint);
    box-shadow: 10px 10px 0px rgba(0, 210, 133, 0.1);
}

.neural-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
}

.node-id {
    font-family: monospace;
    font-weight: 900;
    font-size: 12px;
    color: #94a3b8;
}

.node-svg { width: 35px; height: 35px; color: #000; }

.neural-card h3 { font-size: 1.8rem; font-weight: 900; margin-bottom: 15px; }
.neural-card p { color: #64748b; font-size: 0.95rem; line-height: 1.6; margin-bottom: 30px; }

.node-meta {
    font-family: monospace;
    font-size: 10px;
    font-weight: 900;
    opacity: 0.6;
    letter-spacing: 1px;
}

/* FOOTER VELOCITY */
.studio-footer { margin-top: 100px; display: flex; justify-content: center; }

.velocity-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #000;
    color: #fff;
    padding: 30px 60px;
    border-radius: 4px;
    box-shadow: 15px 15px 0px var(--mint);
}

.v-icon { font-size: 2rem; }
.v-info span { display: block; font-size: 10px; font-weight: 900; opacity: 0.5; letter-spacing: 2px; }
.v-info strong { font-size: 1.8rem; font-weight: 900; color: var(--mint); }

@media (max-width: 768px) {
    .mega-title { font-size: 2.8rem; }
    .neural-path { grid-template-columns: 1fr; }
}


.final-launch-zone {
    padding: 140px 0;
    background: #ffffff;
    position: relative;
}

/* ═══════════════════════════════════════════════════════
   LAUNCH ZONE V3 — Atmospheric Gradient Card
   ═══════════════════════════════════════════════════════ */

.launch-zone-v3 {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.launch-card-v3 {
    position: relative;
    background: #0a0a0a;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid #1a1a1a;
}

.launch-card-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.launch-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.launch-orb-1 {
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 210, 133, 0.15) 0%, transparent 70%);
    animation: orbFloat1 8s ease-in-out infinite;
}

.launch-orb-2 {
    bottom: -40%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 180, 120, 0.1) 0%, transparent 70%);
    animation: orbFloat2 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 20px); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -30px); }
}

.launch-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.launch-card-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    padding: 80px;
}

.launch-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 30px;
    padding: 6px 14px;
    border: 1px solid rgba(0, 210, 133, 0.3);
    border-radius: 3px;
    background: rgba(0, 210, 133, 0.05);
}

.launch-eyebrow-dot {
    width: 6px;
    height: 6px;
    background: var(--mint);
    border-radius: 50%;
    animation: tagPulse 2s infinite;
    box-shadow: 0 0 8px var(--mint);
}

@keyframes tagPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

.launch-title-v3 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1.05;
    color: #ffffff;
    margin: 0 0 24px;
}

.launch-highlight {
    background: linear-gradient(135deg, var(--mint), #00ffaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.launch-desc-v3 {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6b7280;
    max-width: 460px;
    margin: 0;
}

/* Right side — CTA */
.launch-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.launch-btn-v3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--mint);
    color: #0a0a0a;
    text-decoration: none;
    padding: 24px 32px;
    border: 2px solid var(--mint);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.launch-btn-v3:hover {
    background: transparent;
    color: var(--mint);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 210, 133, 0.25);
}

.launch-btn-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.launch-btn-label {
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.launch-btn-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    font-weight: 600;
    opacity: 0.7;
    letter-spacing: 1px;
}

.launch-btn-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.launch-btn-v3:hover .launch-btn-icon {
    transform: translateX(6px);
}

.launch-meta-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.launch-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    color: #4b5563;
    letter-spacing: 1px;
}

.meta-pulse {
    width: 6px;
    height: 6px;
    background: var(--mint);
    border-radius: 50%;
    animation: tagPulse 2s infinite;
    box-shadow: 0 0 6px rgba(0, 210, 133, 0.5);
}

@media (max-width: 968px) {
    .launch-card-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 30px;
    }

    .launch-title-v3 {
        font-size: 2.4rem;
        letter-spacing: -2px;
    }

    .launch-btn-v3 {
        padding: 20px 24px;
    }

    .launch-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

.crm-pricing-bespoke {
    padding: 20px 0;
    background: #ffffff;
}

.pricing-header-v4 { text-align: center; margin-bottom: 80px; }
.pricing-header-v4 p { color: #64748b; max-width: 700px; margin: 0 auto; font-size: 1.1rem; }

.quote-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

/* THE CONSULT CARD */
.consult-card {
    background: #fff;
    border: 3px solid #000;
    box-shadow: 20px 20px 0px #f8fafc;
    transition: 0.3s;
}

.consult-card:hover { transform: translate(-5px, -5px); box-shadow: 25px 25px 0px var(--mint); }

.card-terminal-head {
    background: #000;
    padding: 12px 25px;
}

.terminal-id {
    color: #fff;
    font-family: monospace;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.card-body-rich { padding: 60px; }
.card-body-rich h3 { font-size: 2.2rem; font-weight: 900; margin-bottom: 20px; letter-spacing: -1px; }
.card-body-rich p { color: #555; margin-bottom: 40px; line-height: 1.6; }

.bespoke-list { list-style: none; padding: 0; margin-bottom: 50px; }
.bespoke-list li { display: flex; align-items: center; gap: 15px; padding: 12px 0; border-bottom: 1px solid #f1f5f9; font-weight: 700; }
.bespoke-list svg { width: 20px; height: 20px; }

/* THE CTA BUTTON */
.btn-quote-launch {
    display: block;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 25px 40px;
    text-align: center;
    border-radius: 4px;
    transition: 0.2s;
}

.btn-primary-text { display: block; font-size: 1.3rem; font-weight: 900; text-transform: uppercase; margin-bottom: 4px; }
.btn-secondary-text { display: block; font-size: 10px; font-weight: 900; opacity: 0.5; font-family: monospace; }

.btn-quote-launch:hover { background: var(--mint); color: #000; }

/* USAGE PANEL */
.usage-info-panel { padding: 40px; border-left: 4px solid #000; background: #fdfdfd; }
.usage-info-panel h4 { font-size: 1.5rem; font-weight: 900; margin-bottom: 15px; }

.mini-spec-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.spec-item { padding: 20px; border: 1px solid #eee; background: #fff; }
.spec-item strong { display: block; font-size: 1.1rem; color: #000; margin-bottom: 5px; }
.spec-item p { font-size: 0.85rem; color: #666; margin: 0; }

@media (max-width: 1024px) {
    .quote-container { grid-template-columns: 1fr; }
    .card-body-rich { padding: 40px 30px; }
}

/* CTA Section Layout */
.studio-cta {
    padding: 0px 8%;
    background: #ffffff;
    text-align: center;
    position: relative;
}

.ultra-bold {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1.1;
    margin: 30px 0;
}

.action-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

/* Section Intro & Shared Utilities */
.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.pill {
    display: inline-block;
    padding: 8px 20px;
    background: #000;
    color: #fff;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 2px;
    border-radius: 4px;
    margin-bottom: 25px;
}

.bold-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.mint-text {
    color: #00d285;
}

/* Buttons */
.cta-group { 
    display: flex; 
    gap: 15px; 
}

.btn-primary {
    background: var(--mint); 
    color: white; 
    border: none;
    padding: 18px 36px; 
    border-radius: 12px; 
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 210, 133, 0.25); 
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 15px 35px rgba(0, 210, 133, 0.35); 
}

.btn-secondary {
    background: white; 
    border: 1px solid #e2e8f0;
    padding: 18px 36px; 
    border-radius: 12px; 
    font-weight: 700; 
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-secondary:hover {
    background: var(--mint);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 210, 133, 0.25);
}

/* CTA Section */
.studio-cta {
    padding: 50px 8%;
    background: #ffffff;
    text-align: center;
    position: relative;
}

.ultra-bold {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    margin: 30px 0;
}

.cta-sub {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 50px;
}

.action-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.btn-demo-white {
    background: #000;
    color: #fff;
    border: none;
    padding: 22px 50px;
    border-radius: 100px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.btn-demo-white:hover {
    background: var(--mint);
    color: #000;
    transform: translateY(-5px);
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    padding: 22px 50px;
    border-radius: 100px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);    
}

.wa-icon {
    width: 35px;
    height: 35px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

@media (max-width: 768px) {
    .action-row { flex-direction: column; gap: 30px; }
}


/* footer */


.studio-footer {
    padding: 100px 8% 40px;
    background: #ffffff;
    border-top: 1px solid #eeeeee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #64748b;
    line-height: 1.6;
    max-width: 300px;
    margin-bottom: 25px;
}

.footer-head {
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #000;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #64748b;
    font-weight: 600;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: var(--mint);
    padding-left: 5px;
}

.contact-detail {
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
    text-decoration: none;
}

.contact-detail a {
    text-decoration: none;
    color: #000;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    font-weight: 900;
    font-size: 0.7rem;
    transition: 0.3s;
}

.social-links a:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #eeeeee;
    font-size: 0.85rem;
    font-weight: 600;
    color: #94a3b8;
}

.back-to-top {
    background: none;
    border: none;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    color: #000;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}



/* Section 5 - Onboarding Staggered */
.onboarding-staggered {
    padding: 20px 8%;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.bold-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 20px;
}

.path-container {
    position: relative;
    max-width: 1100px;
    margin: 100px auto 0;
}

/* The Animated Line */
.svg-path {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100%;
    z-index: 1;
}

.path-bg { 
    fill: none; 
    stroke: #f1f5f9; 
    stroke-width: 3; 
}

.path-fill { 
    fill: none; 
    stroke: var(--mint); 
    stroke-width: 3; 
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s ease-out;
}

/* Massive Numbers */
.massive-num {
    position: absolute;
    font-size: 12rem;
    font-weight: 900;
    color: #00d28531; /* Subtle background contrast */
    letter-spacing: -10px;
    z-index: -1;
    line-height: 1;
    top: -40px;
}

.path-step:not(.right) .massive-num { left: -20px; }
.path-step.right .massive-num { right: -20px; }

/* Step Content */
.path-step {
    position: relative;
    display: flex;
    margin-bottom: 25px;
    z-index: 2;
}

.path-step.right { justify-content: flex-end; text-align: right; }

.step-info { max-width: 400px; }

.extra-bold {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 15px;
    color: var(--dark);
}

.step-info p {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 500;
    line-height: 1.6;
}

.highlight .extra-bold { color: var(--mint); }

/* Section 6 - Product Selector */
.product-selector {
    padding: 120px 8%;
    background: #fff;
    text-align: center;
}

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

.product-card {
    background: #fafafa;
    border: 2px solid #000;
    padding: 50px 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease;
    border-radius: 40px;
}

/* The Dark Variation */
.product-card.dark-version {
    background: #00d28530;
    color: #fff;
}

.product-card:hover {
    transform: translateY(-10px);
}

.tag {
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--mint);
    margin-bottom: 10px;
    display: block;
}

.product-card h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1;
    color: #000;
}

.card-body p {
    font-size: 1rem;
    color: #1d1d1d;
    margin-bottom: 30px;
}

.dark-version .card-body p { color: #888; }

.feat-list {
    list-style: none;
    margin-bottom: 40px;
}

.feat-list li {
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #000;
}

.feat-list strong { color: var(--mint); margin-right: 10px; }

/* Buttons */
.btn-select, .btn-select-mint {
    width: 100%;
    padding: 20px;
    font-weight: 900;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-select {
    background: #000;
    color: #fff;
}

.btn-select-mint {
    background: var(--mint);
    color: #000;
}

.btn-select:hover, .btn-select-mint:hover {
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(0, 210, 133, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .path-step { 
        flex-direction: column; 
        padding: 0 !important; 
        text-align: left !important; 
        margin-bottom: 100px; 
    }
    .massive-num { 
        font-size: 6rem; 
        top: -20px; 
        left: 0 !important; 
    }
    .svg-path { display: none; } /* Hide path on mobile for cleaner look */
}

/* CSS Variables */
:root {
    --mint: #00d285;
    --dark: #0a0f0d;
    --gray: #64748b;
    --border: #f1f5f9;
}

/* Copied from agent.css */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -2;
    filter: opacity(.4);
}

.hero-main {
    padding: 120px 0 80px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: #e6fcf5;
    border: 1px solid rgba(0, 210, 133, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: var(--mint);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -3px;
    margin-bottom: 25px;
}

.accent-text {
    color: var(--mint);
    text-shadow: 0 0 20px rgba(0, 210, 133, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
}

.btn-primary-glow {
    background: var(--mint);
    color: #000;
    padding: 20px 40px;
    border-radius: 12px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(0, 210, 133, 0.3);
    transition: 0.3s;
}

.btn-primary-glow:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(0, 210, 133, 0.5); }

.btn-secondary {
    background: white; 
    border: 1px solid #e2e8f0;
    padding: 18px 36px; 
    border-radius: 12px; 
    font-weight: 700; 
    cursor: pointer;
    text-decoration: none;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 768px) {
    .hero-cta-group { flex-direction: column; align-items: center; }
    .hero-title { font-size: 2.8rem; }
    .onboarding-staggered{
        margin-top: -10px;
    }

}



/* 

.hero-main {
  margin-bottom: 0;
} */

/* Desktop only */
@media (min-width: 992px) {
  .hero-main {
    margin-bottom: 150px;
  }
}


