       /* --- Variables & Reset --- */
:root {
    --bg: #0d0d0d;
    --panel: #151515;
    --yellow: #f3ce34;
    --muted: #fff;
    --border: #2a2a2a;
    --text: #ffffff;
}

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Containers --- */
/* Ensures the main background colors span full width, but content is contained */
.section-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 5%; 
    width: 100%;
}

/* Specific content areas that should be tighter than 1920px for readability */
.content-limit {
    max-width: 1200px; 
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: #fff;
}

.y { color: var(--yellow); }

/* --- Buttons --- */
.btn {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-ghost { background: transparent; color: #fff; border: 1px solid #6d6d6d; }
.btn-primary { background: var(--yellow); color: #151515; border-radius: 12px; }
.btn-dark { background: #151515; color: #fff; }


/* ===========================
   HERO SECTION UPDATE
   =========================== */
.hero {
    padding: 120px 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(243,206,52,0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(243,206,52,0.05) 0%, transparent 40%),
        var(--bg);
}

/* 2-Column Grid within the 1920px container */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Text gets slightly more space */
    gap: 60px;
    align-items: center;
}
.top-left-image {
    top: 30%;
}
.hero-text {
    max-width: 700px; /* Keeps text from getting too long on wide screens */
    margin-right: auto; /* Aligns left */
}
.top-right-ai-image {
    position: absolute;
    right: 5%;
    top: 40%;
    left: unset;
    z-index: 99;
}
.pill {
    display: inline-block;
    border: 1px solid var(--yellow);
    color: var(--yellow);
    padding: 6px 20px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1.5px;
}

.hero h1 {
    font-size: 64px; /* Slightly reduced for grid layout balance */
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero p {
    color: var(--text);
    font-size: 18px;
    margin-bottom: 40px;
}

/* Image Container */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Use this if you are placing an actual <img> tag */
.hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Placeholder styling - remove if using real image */
.hero-visual-placeholder {
    width: 100%;
    max-width: 550px;
    aspect-ratio: 1/1; /* Square visual */
    background: linear-gradient(135deg, #1a1a1a 0%, #050505 100%);
    border: 1px solid var(--border);
    border-radius: 30px;
    position: relative;
}

/* Optional graphic hint for the placeholder */
.hero-visual-placeholder::after {
    content: '';
    position: absolute;
    top: 20%; left: 20%; right: 20%; bottom: 20%;
    background: radial-gradient(circle, rgba(243,206,52,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

/* ===========================
   END HERO UPDATE
   =========================== */

/* --- Sections General --- */
section, .cta-banner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* padding: 100px 0; */
    margin-top: -5px;
}

.section-title {
    text-align: center;
    font-size: 64px;
    margin-bottom: 16px;
    font-weight:500;
    /* max-width: 1200px; */
}

.section-sub {
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
    font-size: 16px;
}
/* Container for the side-by-side header */
.steps-header-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px; /* Space before the 01, 02, 03 cards */
}

/* Image side styling */
.steps-image-box {
    flex: 1;
}

.steps-visual-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1a1a1a 0%, #050505 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
}

/* Text side styling */
.steps-title-group {
    flex: 1;
    text-align: left; /* Aligns text to the left for side-by-side look */
}

.steps-title-group .section-title {
    text-align: left; /* Overriding global center alignment */
    margin-bottom: 20px;
    font-size: 54px;
        font-weight: 500;
}

.steps-title-group .section-sub {
    text-align: left; /* Overriding global center alignment */
    margin-bottom: 0;
    
}
span.section-tag {
    border-radius: 25px;
    background: rgba(97, 97, 97, 0.38);
    padding: 5px 14px;
    display: inline-flex;
    color: #FFF;
    font-family: Inter;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 10px;
}
/* Responsive fix for mobile */
@media (min-width: 1420px) {
.section.workflow-feature{
    justify-content: center;
   padding-bottom: 0px;
}
.hero{
    justify-content: center;
}
}
@media (max-width: 1024px) {
 .workflow-text h2 {
    color: #FFF;
    font-size: 44px;}
}
@media (max-width: 860px) {
    .steps-header-flex {
        flex-direction: column; /* Stacks image on top of text on mobile */
        text-align: center;
        gap: 30px;
    }

    .steps-title-group, 
    .steps-title-group .section-title, 
    .steps-title-group .section-sub {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .steps-visual-placeholder {
        height: 300px;
    }
}
/* --- Steps & Cards Grid --- */
.steps, .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.step, .card {
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 20px;
    transition: border-color 0.3s, transform 0.3s;
}

.step:hover, .card:hover { 
    border-color: rgba(243,206,52,0.5);
    transform: translateY(-5px);
}
.step-heading {
    color: #FFF;
    text-align: center;
    font-family: Outfit;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 43px;
}
.step .num { color: var(--yellow); font-size: 32px; font-weight: 700; margin-bottom: 15px; }
.step h3, .card h4 { margin-bottom: 10px; font-size: 18px;}
.step p, .card p { color: var(--muted); font-size: 15px;}

.card .icon {
    width: 50px; height: 50px;
    background: rgba(243,206,52,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 20px;
    border-radius: 14px;
background: #F3CE34;
box-shadow: 0 10px 15px -3px rgba(240, 177, 0, 0.20), 0 4px 6px -4px rgba(240, 177, 0, 0.20);
}
.section-upper-layer {
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* --- Workflow Feature --- */
.workflow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.workflow-text h2{
    color: #FFF;
font-size: 64px;
font-style: normal;
font-weight: 500;
line-height: normal;
margin-bottom: 20px;
}
.workflow-text p{
    color: #FFF;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px; 
}

.check-list { list-style: none; margin: 30px 0; }
.check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #ddd;
}

.check-list li::before {
    content: "✓";
    color: var(--yellow);
    font-weight: bold;
}

.workflow-image {
    background: linear-gradient(135deg, #1a1a1a 0%, #050505 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    aspect-ratio: 16/10;
}
.feature-lead {
    color: #9a9a9a;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Feature Items with Dark Icon Boxes */
.feature-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    align-items: flex-start;
}
.feature-icon img {
    width: 50%;
    height: 100%;
    display: block;
}
.faq-item.active .faq-toggle {
    background: #f3ce34;
}

/* section.workflow-feature{
    padding-bottom: 150px;
} */
.feature-icon {
    width: 48px;
    height: 48px;
    background: #151515; /* Dark background like the image */
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--yellow);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

.feature-text p {
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
}

/* Button Layout */
.feature-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Outline Button for "Watch Demo" */
.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid #2a2a2a;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #1a1a1a;
    border-color: #444;
}

/* Right Side Image Placeholder */
.workflow-image .visual-inner {
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #1a1a1a 0%, #050505 100%);
    border: 1px solid #2a2a2a;
    border-radius: 24px;
}
.cta-section {
    width: 100%;
}
.roadmap-section,section.workflow-feature,section, .cta-banner,.hero{
    background: #151515;
}
.hero{
    max-width: unset !important;
}
.cta-wrapper {
    position: relative;
    padding-top: 124px !important;
    margin-top: 0px;
        margin-top: 0px !important;
    padding-bottom: 124px !important;
    background: #151515 !important;
}
.faq-section{
    background-color: #151515;
}
.cta-section p{
        max-width: 700px;
    margin: 0 auto;
    
    margin-bottom: 50px;
}
/* Responsive adjustment */
@media (max-width: 992px) {
    .workflow {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .feature-item {
        text-align: left;
    }
    .feature-actions {
        justify-content: center;
    }
    .hero-title-small {
        font-size: 42px;
    }
}
/* --- Timeline --- */
.timeline { max-width: 800px; margin: 0 auto; }
.timeline-item {
    display: flex; gap: 24px;
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 16px;
    align-items: start;
}

.badge {
    width: 48px; height: 48px;
    background: rgba(243,206,52,0.1);
    color: var(--yellow);
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px; font-weight: 700; flex-shrink: 0;
}
.timeline-item h4 { margin-bottom: 5px; font-size: 16px; }
.timeline-item p { color: var(--muted); font-size: 14px; }

/* --- FAQ --- */
.faq { max-width: 800px; margin: 0 auto;}
.faq-item {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 12px;
}

.faq-q {
    display: flex; justify-content: space-between;
    align-items: center; cursor: pointer;
    font-weight: 500;
}

.toggle {
    width: 30px; height: 30px;
    background: var(--yellow);
    color: #000;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; font-size: 20px; font-weight: bold;
}

.faq-a {
    display: none;
    padding-top: 20px;
    color: var(--muted);
    font-size: 14px;
    border-top: 1px solid var(--border);
    margin-top: 20px;
}

.faq-item.open .faq-a { display: block; }
spline-viewer {
    width: 100% !important;
    display: block;
}

@media (max-width: 768px) {
    spline-viewer {
        height: 350px; 
    }
}
/* --- Banner & Footer --- */
.cta-banner {
    background: var(--yellow);
    color: #000;
    text-align: center;
    padding: 100px 24px;
}

.cta-banner h2 { font-size: 48px; margin-bottom: 20px; color: #000; }
.cta-banner p { color: rgba(0,0,0,0.8); margin-bottom: 30px; }



.flex-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.legal-links a { color: var(--muted); text-decoration: none; margin-left: 10px;}
.legal-links a:hover { color: #fff; }
.cta-section h2 {
    line-height: 52px;
}
/* --- Responsive Media Queries --- */

/* For ultra-wide support, we just make sure padding exists */
@media (min-width: 1921px) {
    .section-container {
        padding: 0 100px; /* More margin on massive screens */
    }
}
@media (min-width: 1200px) {
 section.workflow-feature,section.steps-section,section.arsenal-section,section#roadmap,section.cta-wrapper{
    display: flex;
    justify-content: center;
}
}
@media (max-width: 1024px) {
    .hero h1 { font-size: 48px; }
    .hero-grid, .workflow { gap: 40px; }
    .cta-wrapper {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
}
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .section-container { padding: 0 24px; }
    .hero-grid {
    display: grid;
    grid-template-columns: unset;
    }
    /* Stack Hero Grid on mobile */
    .hero-grid { 
        grid-template-columns: 1fr; 
        text-align: center;
        gap: 50px;
    }
    
    .hero-text {
        margin-right: auto;
        margin-left: auto;
    }
    
    .hero h1 { font-size: 36px; }
    .section-title { font-size: 32px; }
    
    .workflow { grid-template-columns: 1fr; text-align: center; gap: 40px;}
    .workflow-image { order: -1; } /* Image first on mobile */
    
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .flex-footer { flex-direction: column; gap: 15px; text-align: center;}
    .hero {
        padding: 100px 20px 60px !important;
    }
    .cta-section{
        padding: 40px !important;
    }
    spline-viewer {
    height: unset; 
    margin: 0 auto;
}
.faq-item{
    padding:20px;
}
}
@media (max-width:600px) {
    .cta-section {
        padding: 2steps-image-box0px !important;
    }
    .top-left-image {
    top: 0%;
}
	.btn-primary {
		padding: 12px;}
	    .btn-primary, .btn-outline {
			padding: 15px;}
}
  /* Responsive adjustment */
        @media (max-width: 992px) {
            .workflow {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .feature-item {
                text-align: left;
            }
            .feature-actions {
                justify-content: center;
            }
            .hero-title-small {
                font-size: 42px;
            }
        }
       
        /* For ultra-wide support, we just make sure padding exists */
        @media (min-width: 1921px) {
            .section-container {
                padding: 0 100px; /* More margin on massive screens */
            }
        }

        @media (max-width: 1024px) {
            .hero h1 { font-size: 48px; }
            .hero-grid, .workflow { gap: 40px; }
            .cta-wrapper {
                padding-top: 14px !important;
                padding-bottom: 14px !important;
            }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .section-container { padding: 0 24px; }
            .hero-grid {
                display: grid;
                grid-template-columns: unset;
            }
            .workflow-image .visual-inner{
                    aspect-ratio: unset;
            }
            /* Stack Hero Grid on mobile */
            .hero-grid { 
                grid-template-columns: 1fr; 
                text-align: center;
                gap: 50px;
            }
            
            .hero-text {
                margin-right: auto;
                margin-left: auto;
            }
            
            .hero h1 { font-size: 36px; }
            .section-title { font-size: 32px !important; }
            
            .workflow { grid-template-columns: 1fr; text-align: center; gap: 40px;}
            .workflow-image { order: -1; } /* Image first on mobile */
            
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .flex-footer { flex-direction: column; gap: 15px; text-align: center;}
            .hero {
                padding: 150px 20px 60px !important;
            }
            .cta-section{
                padding: 40px !important;
            }
        }
        @media (max-width:600px) {
            .cta-section {
                padding: 20px !important;
            }
            .top-left-image {
                top: 0%;
            }
			.steps, .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    gap: 24px;
}
        }

       