:root {
    --bg: #0b0b10;
    --surface: #12121a;
    --surface-2: #181824;
    --text: #e9ecf1;
    --muted: #b8beca;
    --primary: #0066cc;
    --primary-600: #0066ccd5;
    --accent: rgb(0, 123, 255);
    --ring: rgba(0, 75, 138, 0.35);
    --card-radius: 18px;
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

.hidden {
    display: none;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: radial-gradient(1200px 600px at 80% -10%, rgba(0, 75, 138, 0.2), transparent 60%) no-repeat,
        radial-gradient(800px 400px at 10% -10%, rgba(0, 123, 255, 0.15), transparent 50%) no-repeat,
        var(--bg);
    background-attachment: fixed;
    background-size: cover;
}

a {
    color: var(--accent);
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.container {
    width: min(1350px, 92vw);
    margin: 0 auto;
}

/* --- HERO --- */
.hero {
    position: relative;
    padding: 96px 0 42px;
}

.hero__wrap {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 76, 138, 0.37);
    color: var(--text);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.title {
    font-weight: 800;
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.15;
    margin: 14px 0 12px;
}

.sub {
    color: var(--muted);
    font-size: clamp(14px, 2.6vw, 18px);
}

.cta {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.double-grid {
    grid-column: 1 / -1;
}

.divider-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: radial-gradient(1200px 600px at 62% -10%, rgba(0, 75, 138, 0.4), transparent 65%) no-repeat,
        radial-gradient(800px 400px at 22% -10%, rgba(0, 123, 255, 0.3), transparent 65%) no-repeat,
        var(--bg);
    color: var(--text);
    text-align: center;
    padding: 60px 20px;
}

.divider-section h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
}

.btn {
    appearance: none;
    border: 0;
    border-radius: 12px;
    padding: 14px 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .06s ease, box-shadow .2s ease, background .2s ease;
    box-shadow: 0 10px 20px rgba(0, 60, 255, 0.075);
}

.btn--primary {
    background: linear-gradient(135deg, #0066ccd5, #3399ffe0);
    color: white;
}

.btn--ghost {
    background: rgba(255, 255, 255, .06);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: none;
}

.btn:active {
    transform: translateY(1px);
}

.hero__media {
    position: relative;
}

.hero__card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--card-radius);
    padding: 14px;
    box-shadow: var(--shadow);
}

.trust {
    margin: 28px 0 6px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .3px;
    text-transform: uppercase;
}

.logo-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    opacity: .9;
}

.logo {
    padding: 5px 10px;
    background: rgba(0, 75, 138, 0.15);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 999px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 16px;
    color: var(--text);
    white-space: nowrap;
}

/* --- SECTIONS --- */
section {
    padding: 70px 0;
}

.section__head {
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.section__title {
    font-size: clamp(22px, 3.4vw, 32px);
    font-weight: 800;
    margin: 0;
}

.section__kicker {
    color: var(--muted);
}

/* --- FEATURE GRID --- */
.grid {
    display: grid;
    gap: 18px;
}

.grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 900px) {
    .hero__wrap {
        grid-template-columns: 1fr;
    }

    .hero-card{
        display: none;
    }

    .grid--3 {
        grid-template-columns: 1fr;
    }

    .grid--2 {
        grid-template-columns: 1fr;
    }
}

.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .03));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--card-radius);
    padding: 22px;
    box-shadow: var(--shadow);
}

.card h2 {
    color: white;
    font-size: 24px;
}

.card p {
    margin: 0;
    color: white;
}

.pill {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 75, 138, 0.15);
    color: var(--text);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .3px;
    text-transform: uppercase;
}

/* --- IMAGE ROW --- */
.image-row {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
}

@media (max-width: 900px) {
    .image-row {
        grid-template-columns: 1fr;
    }
}

/* --- ROI STRIP --- */
.strip {
    background: linear-gradient(90deg, rgba(92, 136, 255, 0.18), rgba(0, 40, 217, 0.14));
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 18px;
    border-radius: 14px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.strip .item {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
}

.strip .num {
    font-size: 24px;
    font-weight: 800;
}

.strip .lbl {
    color: var(--muted);
    font-size: 13px;
}

@media (max-width: 700px) {
    .strip {
        grid-template-columns: 1fr;
    }
}

/* --- FAQ --- */
details {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 14px 18px;
}

details+details {
    margin-top: 10px;
}

summary {
    cursor: pointer;
    font-weight: 700;
}

details p {
    margin: 10px 0 0;
    color: var(--muted);
}

/* --- FORM --- */
.form {
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 700px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

label {
    font-weight: 600;
    font-size: 14px;
}

input,
textarea,
select {
    width: 100%;
    background: var(--surface-2);
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--text);
    border-radius: 12px;
    padding: 12px 14px;
    margin-top: 8px;
    outline: none;
    transition: box-shadow .2s ease, border-color .2s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 5px var(--ring);
}

.submit {
    margin-top: 14px;
    width: 100%;
}

.fine {
    color: var(--muted);
    font-size: 12px;
    margin-top: 10px;
}

/* --- FOOTER --- */
footer {
    padding: 36px 0 70px;
    color: var(--muted);
    text-align: center;
}

/* --- HELPER --- */
.spacer {
    height: 20px;
}

.kpis {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 1em;
}

.kpi {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 700;
}

.row>.column {
    padding: 0 8px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Create four equal columns that floats next to eachother */
.column {
    float: left;
    width: 25%;
}

/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
}

/* The Close Button */
.close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

/* Hide the slides by default */
.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    background-color: var(--primary-600);
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* Caption text */
.caption-container {
    text-align: center;
    background-color: black;
    padding: 2px 16px;
    color: white;
}

img.demo {
    opacity: 0.6;
    padding: 5px;
}

.active,
.demo:hover {
    opacity: 1;
}

img.hover-shadow {
    transition: 0.3s;
}

.hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 800px) {
    .roi-grid {
        grid-template-columns: 1fr;
    }
}

#roiResults p {
    margin: 12px 0;
    font-size: 15px;
}

.testimonial-carousel {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 18px;
    scroll-behavior: smooth;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
    /* hide scrollbar */
}

.testimonial-track .card {
    flex: 0 0 calc(33.333% - 12px);
    /* 3 cards per view with gap */
    scroll-snap-align: start;
}

@media (max-width: 900px) {
    .testimonial-track .card {
        flex: 0 0 80%;
        /* mobile: show ~1 card at a time */
    }
}

:root {
    --bg: #0b0b10;
    --surface: #12121a;
    --surface-2: #181824;
    --text: #e9ecf1;
    --muted: #b8beca;
    --primary: #0066cc;
    --primary-600: #0066ccd5;
    --accent: rgb(0, 123, 255);
    --ring: rgba(0, 75, 138, 0.35);
    --card-radius: 18px;
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: radial-gradient(1200px 600px at 80% -10%, rgba(0, 75, 138, 0.2), transparent 60%) no-repeat,
        radial-gradient(800px 400px at 10% -10%, rgba(0, 123, 255, 0.15), transparent 50%) no-repeat,
        var(--bg);
    background-attachment: fixed;
    background-size: cover;
}

.hero-section {
    padding: 96px 0 42px;
}

.custom-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .03));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow);
}

.hero-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--card-radius);
    padding: 14px;
    box-shadow: var(--shadow);
}

.btn-custom-primary {
    background: linear-gradient(135deg, #0066ccd5, #3399ffe0);
    border: none;
    color: white;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(124, 92, 255, .10);
    transition: transform .06s ease, box-shadow .2s ease;
}

.btn-custom-primary:hover {
    color: white;
    transform: translateY(-1px);
}

.btn-custom-primary:active {
    transform: translateY(1px);
}

.btn-custom-ghost {
    background: rgba(255, 255, 255, .06);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, .08);
    font-weight: 700;
    border-radius: 12px;
    transition: transform .06s ease;
}

.btn-custom-ghost:hover {
    color: var(--text);
    background: rgba(255, 255, 255, .1);
}

.btn-custom-ghost:active {
    transform: translateY(1px);
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.industry-logo {
    padding: 8px 12px;
    background: rgba(0, 76, 138, 0.37);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 999px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
}

.divider-section {
    background: radial-gradient(1200px 600px at 62% -10%, rgba(0, 75, 138, 0.4), transparent 65%) no-repeat,
        radial-gradient(800px 400px at 22% -10%, rgba(0, 123, 255, 0.3), transparent 65%) no-repeat,
        var(--bg);
    color: var(--text);
    text-align: center;
    padding: 60px 20px;
}

.stats-strip {
    background: linear-gradient(90deg, rgba(92, 136, 255, 0.18), rgba(0, 40, 217, 0.14));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
}

.stat-item {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    text-align: center;
}

.text-muted-custom {
    color: var(--muted) !important;
}

.form-control,
.form-select {
    background: var(--surface-2);
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--text);
    border-radius: 12px;
}

.form-control:focus,
.form-select:focus {
    background: var(--surface-2);
    border-color: var(--primary);
    color: var(--text);
    box-shadow: 0 0 0 0.25rem var(--ring);
}

.form-control::placeholder {
    color: var(--muted);
}

.accordion-item {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px !important;
    margin-bottom: 10px;
}

.accordion-button {
    background: transparent;
    color: var(--text);
    font-weight: 700;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--text);
}

.accordion-body {
    color: var(--muted);
}

/* Modal Styles */
.modal-content {
    background: var(--surface);
}

.carousel-control-prev,
.carousel-control-next {
    background-color: var(--primary-600);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

img {
    border-radius: 12px;
}

.testimonial-card {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 576px) {
    .hero-section {
        padding: 48px 0 24px;
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}