:root {
    --mint: #00d285;
    --black: #000000;
    --white: #ffffff;
    --dark: #121212;
    --border: #eef1f4;
    --text-muted: #64748b;
    --mint: #00d285;
    --dark: #0a0f0d;
    --gray: #64748b;
    --border: #f1f5f9;
}

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

html {
    overflow-x: hidden;
}

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

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

/* 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;
    }
}


/* HERO SECTION */

:root {
    --mint: #00d285;
    --dark: #0a0a0b;
    --text-muted: #94a3b8;
    --grid-color: rgba(0, 0, 0, 0.04); /* Very subtle gray for the grid */
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #ffffff;
    color: #000;
    overflow-x: hidden;
}

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

/* The Grid Background */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Creates a 60px x 60px grid */
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -2; /* Stays at the very bottom */
    filter: opacity(.4);
}

/* HERO DESIGN */
.hero-main {
    padding: 120px 0 80px;
    /* background: #ffffff; */
    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);
    /* Subtle glow on the name to match the theme */
    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;
}

/* CTA GROUP */
.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;
}

/* VISUAL PREVIEW */
.hero-visual-preview {
    max-width: 800px;
    margin: 0 auto;
    perspective: 1000px;
}

.preview-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transform: rotateX(10deg);
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
}

.status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--mint);
    border-radius: 50%;
    margin-right: 8px;
}

/* TRUST BAR */
.trust-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    margin-top: -25px;
    padding: 30px 0;
}

.trust-bar p {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap; /* keeps all in one line */
    gap: 40px;
    overflow-x: auto; /* prevents breaking on small screens */
    padding: 10px 0;
    /* opacity: 0.6; */
    /* filter: grayscale(100%); */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE & Edge */
}

.logo-placeholder {
    flex: 0 0 auto;
}

.logo-placeholder img {
    max-height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-placeholder { font-weight: 900; font-size: 1.2rem; }

@media (max-width: 768px) {
    .hero-cta-group { flex-direction: column; align-items: center; }
    .hero-title { font-size: 2.8rem; }
 .trust-bar { 
        margin-top: -120px;
        padding: 0 0 30px 0; /* Reduce top padding to allow margin to work */
    }}
@media (max-width: 480px) {
    .trust-bar { 
        margin-top: -120px;
        padding: 0 0 30px 0; /* Reduce top padding to allow margin to work */
    }
}

/* workflow */

.crm-logic-grid {
    padding: 10px 0;
    background: #ffffff;
    position: relative;
}

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

.outline-black {
    -webkit-text-stroke: 1.5px #000;
    color: transparent;
}

.logic-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* The Connector Text */
.logic-connector {
    text-align: center;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #cbd5e1;
    letter-spacing: 3px;
    position: relative;
}

.logic-connector::before, .logic-connector::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #f1f5f9;
}
.logic-connector::before { left: 0; }
.logic-connector::after { right: 0; }

/* The Data Cards */
.logic-card {
    position: relative;
    padding: 50px;
    border: 1px solid #e2e8f0;
    border-radius: 40px;
    background: #fff;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logic-card::before {
    content: attr(data-step);
    position: absolute;
    top: -20px;
    right: 40px;
    font-size: 5rem;
    font-weight: 900;
    color: #f1f5f9;
    z-index: 1;
}

.card-inner {
    position: relative;
    z-index: 2;
}

.logic-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    display: block;
}

.logic-card h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.logic-card p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 500px;
}

/* Hover State */
.logic-card:hover {
    transform: scale(1.02);
    border-color: #000;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.logic-card:hover::before {
    color: var(--mint);
    opacity: 0.2;
}

.tech-stack {
    margin-top: 25px;
    display: flex;
    gap: 10px;
}

.tech-stack span {
    font-size: 0.6rem;
    font-weight: 800;
    padding: 6px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.neural-workflow {
    padding: 140px 0;
    background: #050505;
    color: #fff;
    overflow: hidden;
}

.workflow-header { text-align: center; margin-bottom: 120px; }
.glow-pill {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(0, 210, 133, 0.1);
    color: var(--mint);
    border: 1px solid var(--mint);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* THE RAIL */
.rail-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.rail-container::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--mint), var(--mint), transparent);
    box-shadow: 0 0 15px var(--mint);
}

.node-item {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    position: relative;
}

.node-visual {
    width: 50px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.node-circle {
    width: 16px;
    height: 16px;
    background: #000;
    border: 3px solid var(--mint);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 10px var(--mint);
}

/* THE GLASS CARDS */
.node-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 24px;
    flex: 1;
    transition: 0.4s ease;
}

.node-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--mint);
    transform: translateX(10px);
}

.node-label {
    font-family: monospace;
    font-size: 11px;
    color: var(--mint);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.node-card h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 15px; }
.node-card p { color: #94a3b8; font-size: 1rem; line-height: 1.6; }

/* THE PHILOSOPHY BLOCK */
.neural-philosophy {
    margin-top: 140px;
    position: relative;
    padding: 80px 40px;
    text-align: center;
}

.philosophy-bg-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; height: 100%;
    background: radial-gradient(circle, rgba(0, 210, 133, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.philosophy-inner { position: relative; z-index: 2; }
.brain-icon { font-size: 3.5rem; margin-bottom: 25px; filter: drop-shadow(0 0 10px var(--mint)); }
.philosophy-inner p {
    font-size: 1.6rem;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    color: #f1f5f9;
}

@media (max-width: 768px) {
    .node-item { gap: 30px; }
    .node-card { padding: 30px; }
    .philosophy-inner p { font-size: 1.2rem; }
}
.high-visibility-workflow {
    padding: 100px 0;
    background: #ffffff;
    color: #000000;
}

.bold-header { text-align: center; margin-bottom: 80px; }

.heavy-tag {
    display: inline-block;
    padding: 8px 20px;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.bold-title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
}

/* THE BOLD RAIL */
.bold-rail-container {
    max-width: 800px;
    margin: 0 auto;
}

.bold-node {
    display: flex;
    gap: 40px;
    min-height: 180px;
}

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

.circle-marker {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 3px solid #000; /* Thick Visible Border */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    box-shadow: 4px 4px 0px #000; /* Depth shadow */
}

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

/* THE BOLD CARDS */
.bold-card {
    background: #ffffff;
    border: 2px solid #000000; /* High Visibility Border */
    padding: 40px;
    border-radius: 20px;
    flex: 1;
    margin-bottom: 40px;
    box-shadow: 8px 8px 0px rgba(0,0,0,0.05); /* Soft but defined shadow */
    transition: 0.2s;
}

.bold-card:hover {
    border-color: var(--mint);
    box-shadow: 8px 8px 0px var(--mint);
    transform: translate(-4px, -4px);
}

.step-label {
    font-weight: 900;
    font-size: 12px;
    color: var(--mint);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.bold-card h3 { font-size: 1.8rem; font-weight: 900; margin-bottom: 15px; }
.bold-card p { color: #333333; font-size: 1.1rem; line-height: 1.6; }

/* PHILOSOPHY BLOCK */
.bold-philosophy {
    margin-top: 60px;
    background: #000;
    color: #fff;
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
}

.philosophy-inner p {
    font-size: 1.5rem;
    font-weight: 600;
    max-width: 750px;
    margin: 0 auto;
}

.philosophy-inner strong { color: var(--mint); }

@media (max-width: 768px) {
    .bold-node { gap: 20px; }
    .bold-title { font-size: 2.2rem; }
    .circle-marker { width: 40px; height: 40px; font-size: 14px; }
}
/* Alternate Alignment for Desktop */
@media (min-width: 768px) {
    .logic-card:nth-child(even) { margin-left: 100px; }
    .logic-card:nth-child(odd) { margin-right: 100px; }
}

/* section 3 */

.creative-feature-hub {
    padding: 140px 0;
    background: #000; /* Darker background for visual contrast */
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hub-header { text-align: center; margin-bottom: 120px; }
n.extra-bold {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.6;
    color: var(--dark);
}
.rich-tag { display: inline-block; padding: 6px 16px; background: rgba(0, 210, 133, 0.1); color: var(--mint); border-radius: 4px; font-weight: 900; font-size: 11px; text-transform: uppercase; margin-bottom: 20px; }
.extra-bold-rich { font-size: 4rem; font-weight: 900; line-height: 1.1; letter-spacing: -3px; }

/* LAYOUT: The Map */
.rich-bento-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

/* CARDS (High Visibility but Creative) */
.p-card-creative {
    background: #ffffff;
    border: 3px solid #000000;
    border-radius: 0px; /* Neubrutalist Sharpness */
    box-shadow: 12px 12px 0px #000000; /* Primary Shadow */
    color: #000;
    position: relative;
    transition: 0.3s;
}

.p-card-creative:hover {
    transform: translate(-5px, -5px);
    box-shadow: 20px 20px 0px var(--mint); /* Highlight color */
}

/* NEURAL CORE SPECIFIC */
.p-card-neural {
    flex: 1 1 500px;
    max-width: 600px;
    padding: 60px 50px;
    background: #111;
    border: 3px solid var(--mint);
    border-radius: 40px;
    box-shadow: 0 0 50px rgba(0, 210, 133, 0.15); /* Soft glowing aura */
}

.neural-vis { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
.neural-label { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; color: var(--mint); }
.icon-main-ai { width: 40px; height: 40px; color: var(--mint); filter: drop-shadow(0 0 10px var(--mint)); }

.p-card-neural h3 { font-size: 2.5rem; font-weight: 900; margin-bottom: 40px; }
.neural-features { display: flex; flex-direction: column; gap: 30px; }
.neural-item strong { display: block; font-size: 1.2rem; margin-bottom: 5px; color: #fff; }
.neural-item p { color: #888; font-size: 0.95rem; }

/* INTEGRATION CLUSTER */
.integration-cluster {
    flex: 1 1 350px;
    max-width: 450px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mini-cluster-card { padding: 30px; }
.cluster-icon { width: 30px; height: 30px; color: var(--mint); margin-bottom: 15px; }
.p-card-creative h4 { font-size: 1.1rem; font-weight: 900; margin-bottom: 10px; }
.p-card-creative p { font-size: 0.85rem; color: #555; line-height: 1.4; }

/* BANNER */
.p-card-dark {
    background: #111;
    border: 3px solid #000;
    box-shadow: 12px 12px 0px var(--mint);
    border-radius: 30px;
}

.creative-banner {
    margin-top: 100px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.creative-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 100%;
    background: var(--mint);
}

.banner-icon { width: 60px; height: 60px; color: #333; }
.banner-info h3 { font-size: 2.2rem; font-weight: 900; color: #fff; }
.banner-info p { color: #94a3b8; max-width: 650px; }

.btn-primary-rich {
    background: var(--mint);
    color: #000;
    padding: 20px 40px;
    border: none;
    border-radius: 12px;
    font-weight: 900;
    cursor: pointer;
    white-space: nowrap;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .rich-bento-layout { flex-direction: column; }
    .creative-banner { flex-direction: column; text-align: center; }
}


/* section 4 */

.onboarding-engine {
    padding: 20px 0;
    padding-top: 60px;
    background: #fff;
    color: #000;
}

.engine-header { text-align: center; margin-bottom: 80px; }
.label-chip { display: inline-block; padding: 5px 15px; background: #000; color: #fff; border-radius: 4px; font-weight: 900; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; }
.heavy-h { font-size: 4rem; font-weight: 900; letter-spacing: -3px; margin-top: 20px; }

/* THE ENGINE GRID */
.engine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.engine-card {
    background: #fff;
    border: 3px solid #000; /* High Visibility Border */
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
    transition: 0.3s;
}

/* Featured training card highlight */
.featured-engine {
    box-shadow: 12px 12px 0px var(--mint);
    border-color: var(--mint);
}

.card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.phase-num { font-family: monospace; font-weight: 900; font-size: 14px; }
.phase-tag { font-size: 10px; font-weight: 900; padding: 4px 10px; border: 1.5px solid #000; border-radius: 3px; }
.mint-txt { color: var(--mint); border-color: var(--mint); }

.card-mid h3 { font-size: 1.8rem; font-weight: 900; margin-bottom: 15px; line-height: 1.1; }
.card-mid p { font-size: 1rem; color: #555; line-height: 1.5; }

.card-bottom { margin-top: auto; padding-top: 30px; border-top: 1px dashed #eee; }
.io-label { font-family: monospace; font-size: 11px; font-weight: 700; color: #94a3b8; }

/* FOOTER */
.engine-footer { margin-top: 80px; text-align: center; }
.velocity-box { display: inline-block; padding: 25px 60px; border: 2px solid #000; box-shadow: 8px 8px 0px #f1f5f9; }
.velocity-box strong { color: var(--mint); font-weight: 900; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .heavy-h { font-size: 2.5rem; }
    .engine-grid { grid-template-columns: 1fr; }
    .engine-card { min-height: auto; }
}

.final-connect {
    padding: 10px 0;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-cta-wrap {
    text-align: center;
    width: 100%;
}

.btn-giant-connect {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 25px 40px;
    border-radius: 20px;
    min-width: 400px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.btn-content {
    text-align: left;
    display: flex;
    flex-direction: column;
}

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

.btn-subtext {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--mint);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-icon {
    background: var(--mint);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

/* Hover State */
.btn-giant-connect:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 210, 133, 0.2);
    border-color: var(--mint);
}

.btn-giant-connect:hover .btn-icon {
    transform: rotate(45deg);
    background: #fff;
}

/* Mobile Responsive */
@media (max-width: 500px) {
    .btn-giant-connect {
        min-width: 100%;
        padding: 20px;
    }
    .btn-text { font-size: 1rem; }
}


/* crm Package */
.pricing-page-v3 {
    background: #fff;
}

.pricing-block {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    border-bottom: 1px solid #eee;
}
.v1-impact-section {
    position: relative;
    background-color: #f8f9fa;
    background-image: radial-gradient(#d1d1d1 1px, transparent 1px);
    background-size: 40px 40px; /* Subtle Tech Grid */
    padding: 140px 0;
    overflow: hidden;
}

.pill-outline-v1 {
    display: inline-block;
    border: 2px solid var(--mint);
    padding: 5px 20px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.extra-bold-v1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -4px;
    margin-bottom: 60px;
}

.impact-stroke {
    -webkit-text-stroke: 2px #000;
    color: transparent;
}



/* Status Label inside Card */
.card-status {
    font-family: monospace;
    font-weight: 900;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.dot { width: 8px; height: 8px; background: #000; border-radius: 50%; }
.dot.pulse { background: #00d285; animation: blink 1s infinite; }

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

/* BUTTONS */
.btn-impact-v1 {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: 3px solid #000;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s;
}

.btn-impact-v1.dark-btn { background: #000; color: #fff; }

.btn-impact-v1:hover {
    background: #00d285;
    color: #000;
    border-color: #00d285;
}

.v1-bg { background: #ffffff; }
.v2-bg { background: #0a0a0a; color: #ffffff; }

.block-header { text-align: center; margin-bottom: 80px; }

.version-tag {
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 5px 15px;
    border: 1px solid #000;
    margin-bottom: 20px;
    display: inline-block;
}

.mint-tag { border-color: var(--mint); color: var(--mint); }

.outline-txt { -webkit-text-stroke: 1px #000; color: transparent; }

/* The Grid */
.dual-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Card Universal Styling */
.p-card-v3 {
    padding: 60px 45px;
    border-radius: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.v1-style { background: #fafafa; border: 1px solid #eef0f2; color: #000; }
.v2-style { background: #1a1a1a; border: 1px solid #333; color: #fff; }

.p-head h3 { font-size: 1.4rem; font-weight: 800; text-transform: uppercase; }
.price { font-size: 3.5rem; font-weight: 900; margin: 20px 0; letter-spacing: -2px; }
.price span { font-size: 1rem; color: #888; letter-spacing: 0; margin-left: 5px; }

.p-list { list-style: none; padding: 0; margin-bottom: 40px; flex-grow: 1; }
.p-list li { padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 0.95rem; }
.v2-style .p-list li { border-bottom-color: rgba(255,255,255,0.05); }

/* Buttons */
button { padding: 20px; border-radius: 12px; font-weight: 900; text-transform: uppercase; cursor: pointer; border: none; }
.btn-black-v3 { background: #000; color: #fff; }
.btn-mint-v3 { background: var(--mint); color: #000; }
.btn-white-v3 { background: #fff; color: #000; }

/* Badges */
.float-badge {
    position: absolute;
    top: -15px;
    left: 45px;
    background: var(--mint);
    color: #000;
    padding: 5px 15px;
    font-size: 0.65rem;
    font-weight: 900;
    border-radius: 5px;
}
.dark-badge { background: #fff; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .pricing-block { min-height: auto; padding: 60px 20px; }
    .dual-card-grid { grid-template-columns: 1fr; }
    .price { font-size: 2.8rem; }
}







/* Buttons */
.btn-outline { border: 2px solid #000; padding: 15px; border-radius: 12px; font-weight: 900; cursor: pointer; background: none; }
.btn-mint { background: var(--mint); border: none; padding: 15px; border-radius: 12px; font-weight: 900; cursor: pointer; color: #000; }

/* Recharge Footer */
.recharge-footer {
    max-width: 800px;
    margin: 80px auto 0;
}

.recharge-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    padding: 30px 50px;
    border-radius: 25px;
    border: 1px solid #eee;
}

.r-text strong { font-size: 1.2rem; display: block; margin-bottom: 5px; }
.r-text p span { color: var(--mint); font-weight: 900; }

@media (max-width: 1024px) {
    .packs-grid { grid-template-columns: 1fr; }
    .black-pack { transform: none; }
}


/* agent price - MODERN REDESIGN */
/* --- Master Layout --- */
.pricing-master-wrapper { 
    overflow: hidden; 
    width: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.pricing-block { 
    padding: 140px 0; 
    position: relative; 
    width: 100%;
}

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

.block-header { 
    text-align: center; 
    margin-bottom: 100px;
    position: relative;
}

/* --- V1 SECTION (WHITE) - MODERN DESIGN --- */
.v1-impact-section { 
    background: #ffffff; 
    color: #000;
    position: relative;
    overflow: hidden;
}

.v1-background-layer { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 210, 133, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 210, 133, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    pointer-events: none;
}

/* Modern Header Styling - Enhanced Design */
.extra-bold-v1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -4px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 210, 133, 0.2);
}

.impact-stroke {
    position: relative;
    display: inline-block;
}

.impact-stroke::before {
    content: 'Reliability.';
    position: absolute;
    top: 2px;
    left: 2px;
    color: var(--mint);
    z-index: -1;
    opacity: 0.3;
    -webkit-text-stroke: 1px var(--mint);
    filter: blur(1px);
}

.impact-stroke::after {
    content: 'Reliability.';
    position: absolute;
    top: -2px;
    left: -2px;
    color: transparent;
    z-index: -1;
    -webkit-text-stroke: 3px var(--mint);
    opacity: 0.2;
    filter: blur(2px);
}

.pill-outline-v1 {
    display: inline-block;
    border: 3px solid var(--mint);
    padding: 12px 32px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, rgba(0, 210, 133, 0.1) 0%, rgba(0, 210, 133, 0.05) 100%);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--mint);
    overflow: hidden;
    border-radius: 50px;
    box-shadow: 
        0 0 20px rgba(0, 210, 133, 0.2),
        inset 0 0 20px rgba(0, 210, 133, 0.1);
}

.pill-outline-v1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--mint), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.pill-outline-v1:hover::before {
    left: 100%;
}

.pill-outline-v1:hover {
    background: var(--mint);
    color: #000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(0, 210, 133, 0.4),
        0 0 60px rgba(0, 210, 133, 0.2);
    border-color: #000;
}

/* Modern Card Grid */
.dual-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Modern V1 Cards */
.p-card-v1 {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.p-card-v1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mint), #00d285);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.p-card-v1:hover::before {
    transform: scaleX(1);
}

.p-card-v1:hover {
    transform: translateY(-10px);
    border-color: var(--mint);
    box-shadow: 0 30px 60px rgba(0, 210, 133, 0.15);
}

.featured-v1 {
    border-color: var(--mint);
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    transform: scale(1.05);
}

.featured-v1::before {
    transform: scaleX(1);
}

/* Modern Card Status */
.card-status {
    font-family: 'Inter', monospace;
    font-weight: 700;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: #64748b;
}

.dot { 
    width: 10px; 
    height: 10px; 
    background: #e5e7eb;
    border-radius: 50%;
    position: relative;
}

.dot.pulse { 
    background: var(--mint);
    animation: pulse 2s infinite;
}

.dot.pulse::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--mint);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Modern Card Header */
.p-head h3 {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 15px;
    color: #000;
}

.price {
    font-size: 4rem;
    font-weight: 900;
    margin: 25px 0;
    letter-spacing: -2px;
    color: #000;
    position: relative;
}

.price span {
    font-size: 1rem;
    color: #64748b;
    letter-spacing: 0;
    margin-left: 8px;
    font-weight: 500;
}

/* Modern Features List */
.p-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    flex-grow: 1;
}

.p-list li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.95rem;
    color: #374151;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.p-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--mint);
    color: #000;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 900;
    margin-right: 12px;
    flex-shrink: 0;
}

.p-list li:hover {
    color: var(--mint);
    transform: translateX(5px);
}

/* Modern Buttons */
.btn-impact-v1 {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: 3px solid #000;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-impact-v1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--mint);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-impact-v1:hover::before {
    left: 0;
}

.btn-impact-v1:hover {
    color: #000;
    border-color: var(--mint);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 210, 133, 0.3);
}

.btn-impact-v1.dark-btn {
    background: #000;
    color: #fff;
    border-color: #000;
}

.btn-impact-v1.dark-btn::before {
    background: var(--mint);
}

.btn-impact-v1.dark-btn:hover {
    color: #000;
}

/* --- V2 SECTION (DARK) - MODERN DESIGN --- */
.v2-bg {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    position: relative;
}

.v2-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 210, 133, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 210, 133, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.version-tag-v2 {
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 8px 20px;
    border: 1px solid var(--mint);
    margin-bottom: 25px;
    display: inline-block;
    color: var(--mint);
    background: rgba(0, 210, 133, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.extra-bold-v2 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -4px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

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

/* Modern V2 Cards */
.p-card-v3.v2-style {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #333;
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.p-card-v3.v2-style::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mint), #00d285);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.p-card-v3.v2-style:hover::before {
    transform: scaleX(1);
}

.p-card-v3.v2-style:hover {
    transform: translateY(-10px);
    border-color: var(--mint);
    box-shadow: 0 30px 60px rgba(0, 210, 133, 0.2);
}

.featured-v2 {
    border-color: var(--mint);
    background: linear-gradient(135deg, #1a1a1a 0%, #0d4f2f 100%);
    transform: scale(1.05);
}

.featured-v2::before {
    transform: scaleX(1);
}

.pro-v2 {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-color: #555;
}

/* Modern V2 Card Elements */
.p-card-v3.v2-style .p-head h3 {
    color: #ffffff;
}

.p-card-v3.v2-style .price {
    color: #ffffff;
}

.p-card-v3.v2-style .price span {
    color: #9ca3af;
}

.p-card-v3.v2-style .p-list li {
    color: #d1d5db;
    border-bottom-color: rgba(255,255,255,0.06);
}

.p-card-v3.v2-style .p-list li::before {
    background: var(--mint);
    color: #000;
}

.p-card-v3.v2-style .p-list li:hover {
    color: var(--mint);
}

/* Modern V2 Buttons */
.btn-mint-v3 {
    background: var(--mint);
    color: #000;
    border: none;
    font-weight: 900;
    text-transform: uppercase;
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-mint-v3::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* background: #ffffff; */
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-mint-v3:hover::before {
    left: 0;
}

.btn-mint-v3:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 210, 133, 0.4);
}

.btn-mint-v3 span {
    position: relative;
    z-index: 1;
}

.btn-white-v3 {
    background: #ffffff;
    color: #000;
    border: none;
    font-weight: 900;
    text-transform: uppercase;
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-white-v3::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--mint);
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-white-v3:hover::before {
    left: 0;
}

.btn-white-v3:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 210, 133, 0.4);
}

.btn-white-v3 span {
    position: relative;
    z-index: 1;
}

/* Modern Badges */
.float-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--mint);
    color: #000;
    padding: 8px 20px;
    font-size: 0.7rem;
    font-weight: 900;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(0, 210, 133, 0.3);
    z-index: 10;
}

.dark-badge {
    background: #ffffff;
    color: #000;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-block { 
        padding: 80px 20px; 
    }
    
    .dual-card-grid { 
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .extra-bold-v1,
    .extra-bold-v2 {
        font-size: 3rem;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .p-card-v1,
    .p-card-v3.v2-style {
        padding: 40px 30px;
    }
    
    .featured-v1,
    .featured-v2 {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .pricing-block { 
        padding: 60px 15px; 
    }
    
    .p-card-v1,
    .p-card-v3.v2-style {
        padding: 30px 20px;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .btn-impact-v1,
    .btn-mint-v3,
    .btn-white-v3 {
        padding: 16px;
        font-size: 0.8rem;
    }
}

.pill-outline-v1 { display: inline-block; border: 2px solid var(--mint); padding: 5px 20px; font-weight: 900; text-transform: uppercase; font-size: 11px; margin-bottom: 20px;color: var(--mint); }
.extra-bold-v1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; line-height: 1; margin-bottom: 30px; letter-spacing: -2px; }
.impact-stroke { -webkit-text-stroke: 1.5px #000; color: transparent; }

.p-card-v1 { background: #fff; border: 3px solid #000; padding: 50px 40px; box-shadow: 12px 12px 0px #00d285; transition: 0.3s ease; }
.p-card-v1:hover { transform: translate(-5px, -5px); box-shadow: 18px 18px 0px var(--dark); }

/* --- V2 SECTION (DARK) --- */
.v2-bg { background: #0a0a0b; color: #fff; }
.version-tag-v2 { display: inline-block; border: 1px solid var(--mint); color: var(--mint); padding: 5px 20px; font-weight: 900; text-transform: uppercase; font-size: 11px; margin-bottom: 20px; letter-spacing: 2px; }
.extra-bold-v2 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; }

.v2-style { background: #161618; border: 1px solid #2d2d2d; padding: 50px 40px; border-radius: 30px; transition: 0.4s; position: relative; }
.featured-v2 { border: 2px solid var(--mint); box-shadow: 0 0 30px rgba(0, 210, 133, 0.1); }

/* --- GLOBAL GRID & UTILS --- */
.dual-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.p-head h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 10px; color: var(--mint); }
.price { font-size: 3rem; font-weight: 900; margin: 20px 0; }
.price span { font-size: 1rem; color: #777; font-weight: 600; }

.p-list { list-style: none; padding: 0; margin-bottom: 40px; }
.p-list li { padding: 10px 0; border-bottom: 1px solid rgba(128,128,128,0.1); font-size: 0.95rem; }

/* Buttons */
.btn-impact-v1, .btn-mint-v3, .btn-white-v3 { width: 100%; padding: 18px; border: none; font-weight: 900; text-transform: uppercase; cursor: pointer; border-radius: 8px; }
.btn-impact-v1 { border: 3px solid #000; background: transparent; }
.btn-impact-v1.dark-btn { background: #000; color: #fff; }
.btn-mint-v3 { background: var(--mint); color: #000; }
.btn-white-v3 { background: #fff; color: #000; }

/* Mint text styling to match index.html theme */
.mint-text { color: var(--mint); }

/* Badges */
.float-badge { position: absolute; top: -15px; left: 30px; background: var(--mint); color: #000; font-size: 10px; font-weight: 900; padding: 5px 15px; border-radius: 4px; }
.dark-badge { background: #fff; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .pricing-block { padding: 80px 20px; }
    .dual-card-grid { grid-template-columns: 1fr; }
}



.creative-feature-hub {
    padding: 140px 0;
    background: #000; /* Darker background for visual contrast */
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hub-header { text-align: center; margin-bottom: 120px; }
n.extra-bold {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.6;
    color: var(--dark);
}
.rich-tag { display: inline-block; padding: 6px 16px; background: rgba(0, 210, 133, 0.1); color: var(--mint); border-radius: 4px; font-weight: 900; font-size: 11px; text-transform: uppercase; margin-bottom: 20px; }
.extra-bold-rich { font-size: 4rem; font-weight: 900; line-height: 1.1; letter-spacing: -3px; }

/* LAYOUT: The Map */
.rich-bento-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

/* CARDS (High Visibility but Creative) */
.p-card-creative {
    background: #ffffff;
    border: 3px solid #000000;
    border-radius: 0px; /* Neubrutalist Sharpness */
    box-shadow: 12px 12px 0px #000000; /* Primary Shadow */
    color: #000;
    position: relative;
    transition: 0.3s;
}

.p-card-creative:hover {
    transform: translate(-5px, -5px);
    box-shadow: 20px 20px 0px var(--mint); /* Highlight color */
}

/* NEURAL CORE SPECIFIC */
.p-card-neural {
    flex: 1 1 500px;
    max-width: 600px;
    padding: 60px 50px;
    background: #111;
    border: 3px solid var(--mint);
    border-radius: 40px;
    box-shadow: 0 0 50px rgba(0, 210, 133, 0.15); /* Soft glowing aura */
}

.neural-vis { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
.neural-label { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; color: var(--mint); }
.icon-main-ai { width: 40px; height: 40px; color: var(--mint); filter: drop-shadow(0 0 10px var(--mint)); }

.p-card-neural h3 { font-size: 2.5rem; font-weight: 900; margin-bottom: 40px; }
.neural-features { display: flex; flex-direction: column; gap: 30px; }
.neural-item strong { display: block; font-size: 1.2rem; margin-bottom: 5px; color: #fff; }
.neural-item p { color: #888; font-size: 0.95rem; }

/* INTEGRATION CLUSTER */
.integration-cluster {
    flex: 1 1 350px;
    max-width: 450px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mini-cluster-card { padding: 30px; }
.cluster-icon { width: 30px; height: 30px; color: var(--mint); margin-bottom: 15px; }
.p-card-creative h4 { font-size: 1.1rem; font-weight: 900; margin-bottom: 10px; }
.p-card-creative p { font-size: 0.85rem; color: #555; line-height: 1.4; }

/* BANNER */
.p-card-dark {
    background: #111;
    border: 3px solid #000;
    box-shadow: 12px 12px 0px var(--mint);
    border-radius: 30px;
}

.creative-banner {
    margin-top: 100px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.creative-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 100%;
    background: var(--mint);
}

.banner-icon { width: 60px; height: 60px; color: #333; }
.banner-info h3 { font-size: 2.2rem; font-weight: 900; color: #fff; }
.banner-info p { color: #94a3b8; max-width: 650px; }

.btn-primary-rich {
    background: var(--mint);
    color: #000;
    padding: 20px 40px;
    border: none;
    border-radius: 12px;
    font-weight: 900;
    cursor: pointer;
    white-space: nowrap;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .rich-bento-layout { flex-direction: column; }
    .creative-banner { flex-direction: column; text-align: center; }
}


.system-audit-section {
    padding: 120px 0;
    background: #ffffff;
    color: #000;
}

/* Blueprint Tags */
.blueprint-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid #000;
    margin-bottom: 25px;
}
.tag-danger { color: #ef4444; border-color: #ef4444; }
.tag-success { color: #00d285; border-color: #00d285; }

.heavy-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 40px;
}

.strike-black { -webkit-text-stroke: 1.5px #000; color: transparent; }

/* Friction Grid Layout */
.friction-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 150px;
}

.leakage-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.warning-text { font-family: monospace; font-weight: 900; color: #ef4444; font-size: 12px; }

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

.f-card {
    border: 2px solid #000;
    padding: 30px;
    background: #fff;
    box-shadow: 8px 8px 0px #000;
}

/* Engine Matrix */
.capabilities-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.matrix-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 40px;
    transition: 0.3s;
}

.matrix-item:hover {
    border-color: #00d285;
    background: #fff;
    box-shadow: 15px 15px 0px #00d28515;
}

.m-icon { font-size: 2rem; margin-bottom: 20px; }
.matrix-item h4 { font-weight: 900; margin-bottom: 10px; }
.matrix-item p { font-size: 0.9rem; color: #64748b; }

/* Value Bento */
.value-bento {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-top: 100px;
}

.bento-box {
    padding: 60px;
    border: 3px solid #000;
}

.value-main { background: #000; color: #fff; position: relative; }
.value-main::after { content: 'ROI'; position: absolute; top: 20px; right: 20px; font-weight: 900; opacity: 0.2; font-size: 4rem; }

.v-li { margin-top: 15px; font-weight: 700; color: #00d285; }

.btn-blueprint {
    width: 100%;
    margin-top: 30px;
    padding: 20px;
    background: #00d285;
    border: none;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .friction-grid, .capabilities-matrix, .value-bento { grid-template-columns: 1fr; gap: 40px; }
}

/* SVG Icon Sizing */
.f-icon-svg, .m-icon-svg {
    width: 35px;
    height: 35px;
    margin-bottom: 20px;
    color: var(--mint);
}

.f-icon-svg svg, .m-icon-svg svg {
    width: 100%;
    height: 100%;
}

.leak-icon {
    width: 24px;
    height: 24px;
}

/* Value List Checkmark Styling */
.v-li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    font-weight: 700;
}

.v-li svg {
    width: 18px;
    height: 18px;
    color: var(--mint);
}

/* Neubrutalist Card Hover */
.matrix-item:hover .m-icon-svg {
    transform: scale(1.1);
    transition: 0.3s;
}

.graph-box {
    width: 100%;
    height: 200px;
    background: #f8fafc;
    border: 2px solid #000;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

/* Simple animation for the graph placeholder */
.graph-line {
    position: absolute;
    bottom: 20%;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ef4444;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

.audit-visual-main {
    width: 100%;
    max-width: 500px;
}

.graph-box.loss-theme {
    height: 250px;
    background: #fff;
    border: 3px solid #000;
    position: relative;
    overflow: hidden;
    box-shadow: 10px 10px 0px #f8fafc;
}

/* Background Grid Styling */
.grid-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(0,0,0,0.05);
}
.grid-line:nth-child(1) { left: 25%; }
.grid-line:nth-child(2) { left: 50%; }
.grid-line:nth-child(3) { left: 75%; }

/* The Graph Path */
.loss-svg {
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    height: 60%;
    filter: drop-shadow(0px 10px 10px rgba(239, 68, 68, 0.2));
}

/* Axis Labels */
.graph-label {
    position: absolute;
    font-family: monospace;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    padding: 5px 10px;
}

.graph-label.start {
    top: 10px;
    left: 10px;
    color: #64748b;
    border-left: 2px solid #64748b;
}

.graph-label.end {
    bottom: 10px;
    right: 10px;
    color: #ef4444;
    background: #fee2e2;
    border: 1.5px solid #ef4444;
}

/* Red Pulse Point at the end of the line */
.graph-box::after {
    content: '';
    position: absolute;
    right: -5px;
    bottom: 23%;
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 15px #ef4444;
    animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

.brain-icon img{
    width: 200px;

}

/* CTA Section Layout */
.studio-cta {
    padding: 0px 8%;
    background: #ffffff;
    text-align: center;
    position: relative;
}
.pill {
    display: inline-block;
    padding: 6px 14px;
    background: #e6fcf5;
    color: var(--mint);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

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

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

/* Modal Core Logic */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Darken background */
    backdrop-filter: blur(10px);    /* Modern glass effect */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content.white-studio {
    background: #fff;
    padding: 60px;
    border-radius: 40px;
    width: 90%;
    max-width: 550px;
    position: relative;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content.white-studio {
    transform: scale(1);
}

/* Form Elements */
.studio-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    text-align: left;
}

.input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.studio-form input {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 18px;
    border-radius: 12px;
    font-weight: 600;
    font-family: inherit;
    width: 100%;
}

.date-input label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 8px;
    display: block;
}

.btn-submit-black {
    background: #000;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    border: none;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

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

.close-btn {
    position: absolute;
    top: 25px; right: 30px;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
}

/* WhatsApp Icon Styling */
.wa-icon {
    width: 32px; height: 32px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* Modal styles now unified in modal.css — no page-specific overrides */

.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; /* Pill shape */
    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;
}

/* Modal Studio Styling */
.modal-content.white-studio {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.1);
}

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

.input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.studio-form input {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 18px;
    border-radius: 12px;
    font-weight: 600;
}

.btn-submit-black {
    background: #000;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 10px;
}

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

@media (max-width: 768px) {
    .action-row { flex-direction: column; gap: 30px; }
    .input-group { grid-template-columns: 1fr; }
    .modal-content.white-studio { padding: 40px 20px; }
}


/* 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; }
}

.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffc 100%);
    position: relative;
}

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

.testimonials .section-header .pill {
    background: rgba(0, 210, 133, 0.1);
    color: #00d285;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.testimonials .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.testimonials .section-sub {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.testimonial-page.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.testimonial-page.prev {
    transform: translateX(-100%);
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 210, 133, 0.1);
    border: 1px solid rgba(0, 210, 133, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 450px;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d285, #00b875);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 210, 133, 0.15);
}

.quote-icon {
    margin-bottom: 20px;
}

.testimonial-content {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark);
    margin-bottom: 15px;
    font-style: italic;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    transition: all 0.3s ease;
    flex: 1;
}

.testimonial-text.expanded {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    display: block;
}

.read-more-btn {
    background: transparent;
    border: 1px solid #00d285;
    color: #00d285;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.read-more-btn:hover {
    background: #00d285;
    color: white;
    transform: translateY(-2px);
}

.testimonial-author {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 210, 133, 0.1);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(0, 210, 133, 0.2);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.author-details p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #00d285;
    font-size: 1.2rem;
}

/* Pagination Dots */
.testimonials-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #00d285;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.pagination-dot:hover {
    background: rgba(0, 210, 133, 0.1);
}

.pagination-dot.active {
    background: #00d285;
    transform: scale(1.2);
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials .section-header {
        margin-bottom: 50px;
    }
    
    .testimonials .section-header h2 {
        font-size: 2.2rem;
    }
    
    .testimonials .section-sub {
        font-size: 1rem;
    }
    
    .testimonial-page {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
        
    .author-info {
        gap: 12px;
    }
    
    .author-avatar {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 40px 0;
    }
    
    .testimonials .section-header h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
}  





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

.onboarding-staggered .section-intro {
    text-align: center;
}

.black-text {
    color: black !important;
}
.mint-text{
    color:var(--mint);
}
.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; }
.path-step.right .step-info { text-align: left; }

.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 */
}

.creative-feature-hub {
    background: #fff;
}

.extra-bold-rich {
    color: black !important;
}

/* CSS Variables */
:root {
    
}
