/* ══════════════════════════════════════
   DESIGN SYSTEM — ZENZO MMU
   Aesthetic: Bold Editorial / Field-Ready
   Dark anchors + clean white content zones
   Dominant red, white, deep charcoal
══════════════════════════════════════ */
:root {
    --red: #C8102E;
    --red-dark: #9E0B22;
    --red-light: #E8193A;
    --red-bg: #FFF0F2;
    --char: #111827;
    --char2: #1F2937;
    --white: #FFFFFF;
    --off: #F8F9FA;
    --off2: #F1F3F5;
    --grey: #6B7280;
    --lgrey: #E5E7EB;
    --green: #059669;
    --teal: #0D9488;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--char);
    overflow-x: hidden;
}

.site-content .ast-container {
    display: block;
}

/* ── TOPBAR ── */
.topbar {
    background: var(--red-dark);
    padding: 7px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.topbar span {
    font-size: 12.5px;
    color: #FFD0D6;
    font-weight: 500;
}

.topbar a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

/* ── NAV ── */
nav {
    background: var(--white);
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: sticky;
    top: 0;
    z-index: 200;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-sq {
    width: 38px;
    height: 38px;
    background: var(--red);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-sq svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.logo-name {
    font-family: "Bahnschrift", Sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--red);
    letter-spacing: 0.5px;
}

.nav-list {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-list a {
    font-size: 14px;
    font-weight: 500;
    color: var(--char);
    text-decoration: none;
    transition: color .2s;
}

.nav-list a:hover {
    color: var(--red);
}

.nav-cta {
    background: var(--red);
    color: var(--white) !important;
    padding: 9px 22px;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: background .2s !important;
}

.wpforms-submit-container {
    text-align: center !important;
}

input#wpforms-11674-field_2 {
    border-radius: 12px !important;
}

input#wpforms-11674-field_6 {
    border-radius: 12px !important;
}

.nav-cta:hover {
    background: var(--red-dark) !important;
}

/* ══════════════════════════════════════
   HERO — BANNER
══════════════════════════════════════ */
.hero {

    background: url('https://zenzo.in/wp-content/uploads/2026/05/ChatGPT-Image-May-21-2026-11_40_24-AM.webp');
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200, 16, 46, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 16, 46, .05) 1px, transparent 1px);
    background-size: 56px 56px;
}

.ast-container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-glow {
    position: absolute;
    top: -120px;
    right: -80px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(200, 16, 46, .22) 0%, transparent 65%);
    pointer-events: none;
}

.hero-glow2 {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(200, 16, 46, .1) 0%, transparent 65%);
    pointer-events: none;
}

.hero-left {
    padding: 45px 60px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    background: #ffffffbf;
    height: fit-content;
    border-radius: 50px;
    margin: 55px;
    min-width: 96%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 16, 46, .2);
    border: 1px solid rgba(200, 16, 46, .35);
    color: #000000;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
    width: fit-content;
}

.hero-eyebrow .dot {
    width: 6px;
    height: 6px;
    background: var(--red-light);
    border-radius: 50%;
    animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .3;
        transform: scale(1.5)
    }
}

h1.hero-h1 {
    font-family: "Bahnschrift", Sans-serif;
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 800;
    color: #000;
    line-height: 1.05;
    margin-bottom: 8px;
}

h1.hero-h1 em {
    color: #000000;
    font-style: normal;
}


.hero-subtitle {
    font-family: "Bahnschrift", Sans-serif;
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 600;
    color: rgb(0 0 0);
    margin-bottom: 22px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 16px;
    color: rgb(0, 0, 0);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 36px;
}

.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-bottom: 40px;
    background-color: transparent;
    background-image: linear-gradient(90deg, #d53029 0%, #2956a3 100%);
    border-radius: 12px;
    overflow: hidden;
}

.hstat {
    padding: 18px 16px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .06);
    transition: background .25s;
}

.hstat:last-child {
    border-right: none;
}

.hstat:hover {
    background: rgba(200, 16, 46, .12);
}

.hstat-num {
    font-family: "Bahnschrift", Sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.hstat-num {}

.hstat-label {
    font-size: 10.5px;
    color: rgb(255, 255, 255);
    font-weight: 500;
    line-height: 1.35;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-red {
    background-image: linear-gradient(180deg, #d53029 28%, #6f1915 100%);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .25s;
    border: 2px solid var(--red);
}

.btn-red:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 16, 46, .4);
    color: #fff;
}

.btn-ghost {
    background: #000000;
    color: var(--white);
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255, 255, 255, .25);
    transition: all .25s;
}

.btn-ghost:hover {
    /* border-color: rgb(255 255 255); */
    background: rgb(0 0 0);
    color: #fff;
    box-shadow: 0 8px 24px rgba(200, 16, 46, .4);
}

/* ── HERO RIGHT — FORM ── */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 50px;
    position: relative;
    z-index: 2;
}

.form-card {
    background: rgb(255 255 255);
    backdrop-filter: blur(24px);
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: 20px;
    padding: 36px;
    width: 100%;
    max-width: 440px;
}

.form-card h3 {
    font-family: "Bahnschrift", Sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 6px;
}

.form-card p {
    font-size: 13px;
    color: rgb(0 0 0);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 12px;
}

.form-group label {
    font-size: 11.5px;
    font-weight: 600;
    color: rgb(0 0 0 / 55%);
    text-transform: uppercase;
    letter-spacing: .6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    /* background: rgba(255, 255, 255, .07); */
    /* border: 1px solid rgba(255, 255, 255, .12); */
    border-radius: 8px;
    padding: 11px 14px;
    /* color: #000000; */
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    /* outline: none; */
    transition: border-color .2s, background .2s;
    border: 1px solid #000;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, .3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(200, 16, 46, .6);
    background: rgba(255, 255, 255, .1);
}

.form-group select option {
    background: var(--char);
    color: var(--white);
}

.form-group textarea {
    resize: none;
    height: 72px;
}

.btn-form {
    width: 100%;
    background-image: linear-gradient(180deg, #d53029 28%, #6f1915 100%);
    color: var(--white);
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background .2s, transform .15s;
    margin-top: 6px;
}

.btn-form:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
}

.form-or {
    text-align: center;
    color: rgb(0, 0, 0);
    font-size: 12px;
    margin: 16px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-or::before,
.form-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, .1);
}

.form-phone {
    text-align: center;
}

.form-phone a {
    font-family: "Bahnschrift", Sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--red-light);
    text-decoration: none;
    letter-spacing: .5px;
}

.form-phone span {
    display: block;
    font-size: 11px;
    color: rgb(0, 0, 0);
    margin-top: 3px;
}

/* ══════════════════════════════════════
   TRUST BAR
══════════════════════════════════════ */
.trust-bar {
    background-color: transparent;
    background-image: linear-gradient(90deg, #d53029 0%, #18366b 100%);
    padding: 18px 40px;
}

.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.trust-icon {
    font-size: 18px;
}

.trust-text {
    font-size: 13px;
    font-weight: 600;
}

.trust-div {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, .25);
}

/* ══════════════════════════════════════
   SECTION BASE
══════════════════════════════════════ */
section {
    padding: 88px 40px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 12px;
    display: block;
}

h2.sec-title {
    font-family: "Bahnschrift", Sans-serif;
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 800;
    color: var(--char);
    line-height: 1.08;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #2755A3 0%, #D72D25 60%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

#serve-heading {
    background: linear-gradient(179deg, #2755A3 0, #D72D25 100%);
}


h2.sec-title span {
    color: var(--red);
}

.sec-desc {
    font-size: 17px;
    color: var(--grey);
    line-height: 1.75;
    max-width: 620px;
}

/* ══════════════════════════════════════
   SECTION 2 — MEDICINE IN MOTION
══════════════════════════════════════ */
.motion-section {
    background: var(--white);
}

.motion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.motion-text .sec-desc {
    max-width: 100%;
    margin-bottom: 32px;
}

.motion-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--lgrey);
    border: 1px solid var(--lgrey);
    border-radius: 14px;
    overflow: hidden;
}

.mstat {
    background: var(--white);
    padding: 24px;
    transition: background .25s;
}

.mstat:hover {
    background: var(--red-bg);
}

.mstat-num {
    font-family: "Bahnschrift", Sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #000;
    line-height: 1;
    margin-bottom: 5px;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background: linear-gradient(90deg, #2755A3 0%, #D72D25 60%);
}

.mstat-label {
    font-size: 12.5px;
    color: var(--grey);
    font-weight: 500;
    line-height: 1.4;
}

.motion-visual {
    position: relative;
}

.motion-map-card {
    background: var(--char);
    border-radius: 20px;
    overflow: hidden;
    padding: 40px 36px;
    position: relative;
}

.motion-map-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 16, 46, .15) 0%, transparent 60%);
}

.map-india-svg {
    width: 100%;
    max-width: 280px;
    display: block;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.india-path {
    fill: rgba(200, 16, 46, .25);
    stroke: var(--red);
    stroke-width: 1.5;
}

.india-dot {
    fill: var(--red-light);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        r: 3;
        opacity: 1
    }

    50% {
        r: 5;
        opacity: .6
    }
}

.map-label {
    text-align: center;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    position: relative;
    z-index: 1;
}

.map-label strong {
    color: var(--white);
    display: block;
    font-size: 20px;
    font-family: "Bahnschrift", Sans-serif;
    font-weight: 800;
    margin-bottom: 4px;
}

/* ══════════════════════════════════════
   SECTION 3 — WHO WE SERVE
══════════════════════════════════════ */
.serve-section {
    background: var(--off);
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px;
}

.serve-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--lgrey);
    position: relative;
    overflow: hidden;
    transition: all .3s;
    cursor: default;
}

.serve-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform .3s;
    transform-origin: left;
}

.serve-card:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, .08);
    transform: translateY(-4px);
    border-color: rgba(200, 16, 46, .2);
}

.serve-card:hover::after {
    transform: scaleX(1);
}

.serve-icon {
    width: 52px;
    height: 52px;
    background: var(--red-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.serve-card h3 {
    font-family: "Bahnschrift", Sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--char);
    margin-bottom: 10px;
}

.serve-card p {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.7;
}

/* ══════════════════════════════════════
   SECTION 4 — INSIDE THE MMU
══════════════════════════════════════ */
.inside-section {
    background: #fff;
}

.inside-section .eyebrow {
    color: rgb(0, 0, 0);
}

.inside-section h2.sec-title {
    color: var(--white);
}

.inside-section .sec-desc {
    color: rgb(0, 0, 0);
}

.inside-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 56px;
}

/* MMU Illustration */
.mmu-illustration {
    position: relative;
}

#inside-heading {
    background: linear-gradient(177deg, #2755a3 20%, #D72D25 60%);
}

.mmu-vehicle-wrap {
    background: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.mmu-vehicle-wrap::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(200, 16, 46, .2), transparent 70%);
}

.mmu-svg {
    width: 100%;
}

/* Floating equipment icons */
.equip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.equip-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #2755a3;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 16px 18px;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

.equip-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red);
    transform: scaleY(0);
    transition: transform .25s;
    transform-origin: bottom;
}

.equip-item:hover::before {
    transform: scaleY(1);
}

.equip-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgb(255 255 255);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.equip-text {
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    line-height: 1.35;
}

/* ══════════════════════════════════════
   SECTION 5 — WHY CHOOSE US
══════════════════════════════════════ */
.why-section {
    background: var(--white);
}

.why-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 52px;
}

.why-intro .sec-desc {
    max-width: 100%;
}

.why-intro-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-callout {
    background: var(--red-bg);
    border: 1px solid rgba(200, 16, 46, .2);
    border-radius: 12px;
    padding: 20px 22px;
}

.why-callout p {
    font-size: 14px;
    color: var(--char);
    line-height: 1.65;
}

.why-callout strong {
    color: var(--red);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-card {
    background: var(--off);
    border-radius: 14px;
    padding: 28px;
    border: 1px solid var(--lgrey);
    position: relative;
    transition: all .3s;
}

.why-card:hover {
    background: var(--white);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .07);
    border-color: rgba(200, 16, 46, .2);
}

.why-num {
    font-family: "Bahnschrift", Sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: rgb(0 0 0);
    line-height: 1;
    margin-bottom: 10px;
}

.why-card h3 {
    font-family: "Bahnschrift", Sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--char);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.7;
}

/* ══════════════════════════════════════
   SECTION 6 — HOW WE WORK
══════════════════════════════════════ */
.how-section {
    background: var(--off);
}

.how-intro {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 60px;
}

.how-intro .sec-desc {
    margin: 0 auto;
}

.steps-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.steps-connector {
    position: absolute;
    top: 44px;
    left: calc(12.5% + 22px);
    right: calc(12.5% + 22px);
    height: 2px;
    background: linear-gradient(90deg, var(--red) 0%, rgba(200, 16, 46, .2) 100%);
    z-index: 0;
}

.step-item {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 88px;
    height: 88px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-family: "Bahnschrift", Sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--red);
    box-shadow: 0 4px 20px rgba(200, 16, 46, .2);
    transition: all .3s;
}

.step-item:hover .step-circle {
    background: #2755A3;
    color: var(--white);
    transform: scale(1.08);
}

.step-item h3 {
    font-family: "Bahnschrift", Sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--char);
    margin-bottom: 10px;
}

.step-item p {
    font-size: 13px;
    color: var(--grey);
    line-height: 1.65;
}

/* ══════════════════════════════════════
   SECTION 7 — FAQ / AEO
══════════════════════════════════════ */
.faq-section {
    background: var(--white);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 72px;
    align-items: start;
}

.faq-left {
    position: sticky;
    top: 100px;
}

.faq-left .sec-desc {
    margin-bottom: 28px;
    max-width: 100%;
}

.faq-cta-box {
    background: var(--char);
    border-radius: 16px;
    padding: 28px;
}

.faq-cta-box h4 {
    font-family: "Bahnschrift", Sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.faq-cta-box p {
    font-size: 13px;
    color: rgb(255 255 255);
    margin-bottom: 18px;
    line-height: 1.65;
}

.faq-cta-box a {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    justify-content: center;
    transition: background .2s;
}

.faq-cta-box a:hover {
    background: var(--red-dark);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border: 1px solid var(--lgrey);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px 22px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-family: 'DM Sans', sans-serif;
}

.faq-q-text {
    font-size: 15.5px;
    font-weight: 600;
    color: var(--char);
    line-height: 1.4;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--off);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 18px;
    transition: all .25s;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    background: var(--red);
    color: var(--white);
}

.faq-item.open {
    border-color: rgba(200, 16, 46, .25);
}

.faq-a {
    display: none;
    padding: 0 22px 20px;
    font-size: 14.5px;
    color: var(--grey);
    line-height: 1.78;
}

.faq-item.open .faq-a {
    display: block;
}

/* ══════════════════════════════════════
   SECTION 8 — CTA + FOOTER FORM
══════════════════════════════════════ */
.cta-section {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: transparent;
    background-image: linear-gradient(90deg, #d53029 0%, #2956a3 100%);
    background-size: cover;
}

.cta-section h2 {
    font-family: "Bahnschrift", Sans-serif;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
    position: relative;
}

.cta-section p {
    font-size: 17px;
    color: rgb(255 255 255);
    max-width: 540px;
    margin: 6px auto 36px;
    line-height: 1.7;
    position: relative;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .15);
    border: 2px solid rgba(255, 255, 255, .3);
    color: var(--white);
    padding: 16px 44px;
    border-radius: 100px;
    font-family: "Bahnschrift", Sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: .5px;
    text-decoration: none;
    transition: all .25s;
    position: relative;
}

.cta-phone:hover {
    background: var(--white);
    color: var(--red);
}

.cta-free {
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    margin-top: 12px;
    position: relative;
}

/* ══════════════════════════════════════
   STICKY CTA
══════════════════════════════════════ */
.sticky-btns {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 300;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.sticky-call {
    background: var(--red);
    color: var(--white);
    padding: 13px 22px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(200, 16, 46, .5);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float-up 3s ease-in-out infinite;
}

@keyframes float-up {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }
}

.sticky-wa {
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .45);
    text-decoration: none;
}

.sticky-wa svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.elementor-3008 nav {
    background: unset !important;
    height: auto !important;
    /* display: block !important; */
    align-items: center;
    justify-content: space-between;
    padding: 0 !important;
    box-shadow: unset;
    position: STATIC;
    top: 0;
    z-index: UNSET;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width:1024px) {
    .hero {
        display: flex;
        flex-direction: column;
    }

    .hero-right {
        padding: 0 40px 60px;
        justify-content: flex-start;
    }

    .form-card {
        max-width: 100%;
    }

    .motion-grid,
    .inside-grid,
    .faq-layout,
    .why-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .motion-visual {
        display: none;
    }

    .faq-left {
        position: static;
    }
}

@media (max-width:768px) {
    nav {
        padding: 0 20px;
    }

    .nav-list {
        display: none;
    }

    section {
        padding: 60px 30px;
    }

    .hero-left {
        padding: 70px 15px 30px;
        margin: 50px 0px 30px;
    }

    .hero-right {
        padding: 0 14px 60px;
    }

    .form-card {
        padding: 20px;
    }

    .cta-phone {
        padding: 4px 27px;
    }

    .hero-stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .serve-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .steps-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .steps-connector {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-div {
        display: none;
    }

    .trust-inner {
        justify-content: flex-start;
        gap: 12px;
    }

    .hstat-num {
        font-family: "Bahnschrift", Sans-serif;
        font-size: 24px;
    }

    .hero-btns {
        justify-content: center;
    }

    .trust-icon {
        font-size: 32px;
    }

    .motion-stats {
        grid-template-columns: 1fr 1fr;
    }

    .equip-grid {
        grid-template-columns: 1fr;
    }

    .btn-ghost {
        width: 90%;
        justify-content: center;
    }
}

@media (max-width:480px) {
    .hero-stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .steps-wrap {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .motion-stats {
        grid-template-columns: 1fr;
    }
}

.ast-icon.icon-arrow svg {
    display: unset !important;
    vertical-align: middle;
}