:root {
    --purple: #8B5CF6;
    --dark-purple: #2d1060;
    /* Redesign v6 primary bg */
    --accent: #c4b5fd;
    /* Redesign v6 accent */
    --cream: #F5F0E6;
    --dark: #111110;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.5;
}

/* ── TOP BANNER ── */
.top-marquee {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    pointer-events: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-transform: uppercase;
}

.marquee-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    animation: marquee-scroll 25s linear infinite;
    will-change: transform;
}

.urgency-msg {
    color: var(--accent);
    text-wrap-mode: nowrap;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

nav.nav-pill {
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 12px 8px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 850px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-top {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-pill.active {
    border-radius: 32px;
    padding: 20px 24px;
}

.nav-pill.active .nav-top {
    margin-bottom: 24px;
}

.nav-pill.active .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    opacity: 1;
    gap: 20px;
}

.nav-pill.active .menu-toggle span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.nav-pill.active .menu-toggle span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

.logo {
    font-weight: 800;
    font-size: 1.1rem;
}

.logo span {
    color: var(--purple);
}

.nav-links a {
    text-decoration: none;
    color: #3d3d3a;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 20px;
    transition: 0.2s;
}

.nav-links a:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* HERO */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 85vh;
    overflow: hidden;
    position: relative;
    background: var(--dark-purple);
    margin: 0px 20px;
    border-radius: 24px;
}

.hero-left {
    background: var(--dark-purple);
    padding: 8% 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.neon-text {
    color: var(--accent);
    display: block;
}

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

.stars-mini {
    color: #FBBF24;
    font-size: 13px;
    display: flex;
    gap: 2px;
}

.mw-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(196, 181, 253, 0.12);
    border: 1px solid rgba(196, 181, 253, 0.25);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 11px;
    color: #e9d5ff;
    font-weight: 500;
    margin-bottom: 18px;
    align-self: flex-start;
}

.mw-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.btn-primary-pulse {
    background: #FFFFFF;
    color: var(--dark-purple);
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    transition: 0.3s transform ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.2;
}

.btn-primary-pulse .sub {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.55;
    margin-top: 4px;
}

.btn-outline {
    background: transparent;
    color: white;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    transition: 0.3s background ease;
    height: fit-content;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-primary-pulse:hover {
    transform: scale(1.05);
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(167, 139, 250, 0.7);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 20px rgba(167, 139, 250, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(167, 139, 250, 0);
    }
}

.hero-stats-anchor {
    margin-top: 6px;
    display: flex;
    gap: 12px;
}

.metric-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.metric-card .val {
    font-size: 22px;
    font-weight: 900;
    color: white;
}

.metric-card .val span {
    color: var(--accent);
}

.metric-card .lbl {
    font-size: 10px;
    color: var(--accent);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.avatar-stack {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--dark-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    margin-left: -10px;
    color: white;
}

.avatar:first-child {
    margin-left: 0;
}

.hero-desc {
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 60px;
}

.btn-white {
    background: var(--white);
    color: var(--dark-purple);
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
}

.btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-val {
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* SCROLLING CARDS */
.hero-right {
    background: var(--dark-purple);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 12px;
    overflow: hidden;
    height: 100%;
}

.col-mask {
    height: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.whatsapp-float i {
    font-size: 32px;
}

.scroll-track {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.scroll-down {
    animation: scrollDown 25s linear infinite;
}

.scroll-up {
    animation: scrollUp 20s linear infinite;
}

@keyframes scrollDown {
    from {
        transform: translateY(-50%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes scrollUp {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

/* TYPOGRAPHY & LAYOUT */
.hero-h2 {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

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

.white-text {
    color: var(--white);
}

.muted-text {
    color: rgba(255, 255, 255, 0.6);
}

.italic-violet {
    color: #C4B5FD;
    font-style: italic;
}

.italic-green {
    color: #22C55E;
    font-style: italic;
}

.container-mid {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.white-bg {
    background: var(--white);
}

.dark-bg {
    background: var(--dark);
}

.badge-dark {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.btn-white-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--dark);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none;
}

/* BENEFITS */
.benefits-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.benefit-card h3 {
    color: white;
    margin: 15px 0 10px;
    font-size: 15px;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    line-height: 1.6;
}

/* SIMULATORS */
.simulator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.service-card {
    border-radius: 32px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    font-size: 2.2rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.service-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.service-card[style*="background: #F59E0B"] .service-tag {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

/* EXTRA SERVICES (White Cards) */
.extra-service-card {
    background: var(--white);
    border-radius: 32px;
    padding: 40px;
    border: 1px solid #E8E2D6;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.extra-service-card:hover {
    border-color: var(--purple);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.05);
}

.extra-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #F8F7F4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid #EEEAE0;
}

.extra-service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}

.extra-service-card p {
    font-size: 14px;
    color: #6B6B65;
    line-height: 1.6;
}

/* SIMULATORS */
.simulator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.sim-card {
    border-radius: 24px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: 0.2s;
}

.sim-card:hover {
    transform: translateY(-4px);
}

.sim-purple {
    background: #F5F0E6;
}

.sim-green {
    background: #F5F0E6;
}

.sim-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 24px;
    color: white;
}

.sim-purple .sim-icon {
    background: var(--purple);
}

.sim-green .sim-icon {
    background: #22C55E;
}

.sim-card h3 {
    font-size: 1.7rem;
    margin-bottom: 12px;
}

.sim-card p {
    color: #6B6B65;
    margin-bottom: 32px;
    font-size: 15px;
}

.btn-dark-pill {
    background: var(--dark);
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
}

/* PROCESS */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    border: 1.5px solid #E8E2D6;
}

.step-num {
    font-size: 40px;
    color: #E8E2D6;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: #6B6B65;
    line-height: 1.6;
}

/* TESTIMONIALS */
.testimonials-fanned {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.testi-card {
    border-radius: 24px;
    padding: 36px 32px;
    width: 340px;
    transition: 0.3s;
    color: white;
}

.testi-card:hover {
    transform: scale(1.03) rotate(0deg) !important;
}

.stars {
    display: flex;
    gap: 2;
    margin-bottom: 20px;
    color: white;
    font-size: 16px;
}

.testi-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.95;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rotate-1 {
    transform: rotate(1deg);
}

.rotate-2 {
    transform: rotate(2deg);
}

.-rotate-1 {
    transform: rotate(-1deg);
}

.-rotate-2 {
    transform: rotate(-2deg);
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* BLOG */
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}

.btn-outline-dark {
    padding: 10px 20px;
    border-radius: 100px;
    border: 1.5px solid #E8E2D6;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
}

.btn-outline-dark:hover {
    background: var(--dark);
    color: white;
    border-color: var(--dark);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.blog-card {
    cursor: pointer;
}

.blog-img {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 4/3;
    background: #F5F0E6;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--purple);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.blog-card p {
    font-size: 14px;
    color: #6B6B65;
    line-height: 1.6;
}

/* ZONES */
.zones-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.zone-tag {
    background: white;
    color: #3D3D3A;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 100px;
    border: 1.5px solid #E8E2D6;
    transition: 0.2s;
}

.zone-tag:hover {
    border-color: var(--purple);
    color: var(--purple);
}

/* CONTACT METRICS */
.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-card .val {
    font-size: 28px;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.metric-card .lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    text-transform: uppercase;
}

.card {
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.metric {
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
}

.trust-band {
    padding: 30px 0;
    border: 1px solid #e8e2d6;
    border-left: none;
    border-right: none;
}

.section {
    padding: 100px 20px;
}

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

.container-small {
    max-width: 700px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #d1cdc4;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 13px;
}

.btn-purple-full {
    background: var(--purple);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    width: 100%;
    font-size: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.cream-bg {
    background: var(--cream);
}

.dark-bg {
    background: var(--dark);
}

.white-text {
    color: white;
}

.muted-text {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 15px;
}

.italic-green {
    color: #22c55e;
    font-style: italic;
}

.badge-dark {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#auditForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

input,
select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px;
    border-radius: 12px;
    color: white;
    outline: none;
    width: 100%;
}

input:focus {
    border-color: var(--purple);
}

/* FAQ */
.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 8px;
    border: 1px solid #e8e2d6;
}

.faq-question {
    width: 100%;
    padding: 24px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
}

.faq-answer {
    padding: 0 24px 24px;
    color: #6b6b65;
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-question span {
    transition: 0.3s;
    color: var(--purple);
    font-size: 1.5rem;
}

@media (max-width: 900px) {
    .hero-section {
        grid-template-columns: 1fr;
        height: auto;
    }

    .hero-right {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: #22C55E;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1500;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* MOBILE NAVIGATION */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--dark);
    z-index: 3000;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex-grow: 1;
}

.mobile-link {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    opacity: 0.8;
    transition: 0.2s;
}

.mobile-link:hover {
    opacity: 1;
    color: var(--purple);
}

.btn-violet-pill {
    background: var(--purple);
    color: white;
    padding: 16px;
    border-radius: 100px;
    font-weight: 700;
}

.mobile-footer {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge-mini {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.mobile-tags {
    display: flex;
    gap: 10px;
}

.mobile-tags span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 100px;
}

@media (max-width: 768px) {

    .section {
        padding: 20px 20px;
    }

    .hero-section {
        grid-template-columns: 1fr;
        height: auto;
        margin: 0;
        border-radius: 0;
        width: 100%;
    }

    nav.nav-pill {
        flex-direction: column;
        align-items: flex-start;
        overflow: hidden;
        width: 92%;
        max-width: none;
    }

    .nav-top {
        justify-content: space-between;
        width: 100%;
    }

    .nav-links {
        display: none;
        width: 100%;
    }

    .nav-pill.active .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-top: 24px;
    }

    .hide-mobile {
        display: none;
    }

    .btn-dark-mobile {
        display: block;
        width: 100%;
        text-align: center;
        background: var(--purple);
        color: white;
        padding: 12px;
        border-radius: 100px;
        text-decoration: none;
        font-weight: 700;
        margin-top: 10px;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-section {
        margin-top: 0px;
    }

    .hero-left {
        padding: 120px 6% 5%;
    }

    .hero-h1 {
        font-size: 3rem;
    }

    .benefits-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .simulator-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns a {
        width: 100%;
        text-align: center;
    }

    .sim-card {
        border-radius: 24px;
        padding: 24px 20px;
    }

    .metric-card:nth-child(1) {
        display: none;
    }
}