/* ================================================================
   MESSAGE INDIA — SHARED DESIGN SYSTEM
   ================================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
    /* Backgrounds */
    --dark-bg: #070c18;
    --dark-surface: #0d1627;
    --dark-card: #111f35;
    --light-bg: #f0f4fb;
    --white: #ffffff;

    /* Brand colours */
    --blue: #2563eb;
    --blue-light: #3b82f6;
    --purple: #7c3aed;
    --cyan: #06b6d4;
    --green: #10b981;
    --orange: #f59e0b;

    /* Gradients */
    --grad-brand: linear-gradient(135deg, #2563eb, #7c3aed);
    --grad-hero: linear-gradient(135deg, rgba(37, 99, 235, .85), rgba(124, 58, 237, .75));

    /* Text (dark sections) */
    --dk-text: #f1f5f9;
    --dk-sub: #94a3b8;
    --dk-muted: #64748b;

    /* Text (light sections) */
    --lt-text: #0f172a;
    --lt-sub: #475569;
    --lt-muted: #94a3b8;

    /* Borders */
    --dk-border: rgba(255, 255, 255, .08);
    --lt-border: #e2e8f0;

    /* Misc */
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --ease: all .25s cubic-bezier(.4, 0, .2, 1);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, .08);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, .12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, .16);
    --shadow-glow: 0 0 40px rgba(37, 99, 235, .18);
}

/* ─── RESET ──────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--lt-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

ul {
    list-style: none
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit
}

input,
textarea,
select {
    font-family: inherit
}

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px
}

.section {
    padding: 96px 0
}

.section-sm {
    padding: 64px 0
}

.section-lg {
    padding: 120px 0
}

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

.section-navy {
    background: var(--dark-surface)
}

.section-light {
    background: var(--light-bg)
}

.section-white {
    background: var(--white)
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.tag-blue {
    background: rgba(37, 99, 235, .1);
    border: 1px solid rgba(37, 99, 235, .25);
    color: #3b82f6
}

.tag-green {
    background: rgba(16, 185, 129, .1);
    border: 1px solid rgba(16, 185, 129, .25);
    color: #10b981
}

.tag-purple {
    background: rgba(124, 58, 237, .1);
    border: 1px solid rgba(124, 58, 237, .25);
    color: #a78bfa
}

.tag-light {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #cbd5e1
}

.tag-dot::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(1.6)
    }
}

.display-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.025em;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.022em;
}

.section-sub {
    font-size: 16px;
    line-height: 1.78;
    margin-top: 14px;
    max-width: 560px
}

/* colour-aware text */
.on-dark .section-title,
.on-dark .display-title {
    color: var(--dk-text)
}

.on-dark .section-sub {
    color: var(--dk-sub)
}

.on-light .section-title,
.on-light .display-title {
    color: var(--lt-text)
}

.on-light .section-sub {
    color: var(--lt-sub)
}

.gradient-text {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.center {
    text-align: center
}

.center .section-sub {
    margin: 14px auto 0
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: var(--grad-brand);
    color: #fff;
    box-shadow: 0 4px 22px rgba(37, 99, 235, .35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(37, 99, 235, .5)
}

.btn-white {
    background: #fff;
    color: var(--blue);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg)
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, .35);
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .6)
}

.btn-outline {
    border: 2px solid var(--blue);
    color: var(--blue);
    background: transparent;
}

.btn-outline:hover {
    background: var(--blue);
    color: #fff
}

.btn-sm {
    padding: 10px 22px;
    font-size: 14px
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px
}

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--ease);
}

.navbar.transparent {
    background: transparent
}

.navbar.scrolled {
    background: rgba(7, 12, 24, .97);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--dk-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .4);
}

.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 72px;
    gap: 6px;
}

.nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center
}

.nav-logo img {
    height: 46px;
    width: auto;
    filter: brightness(1.1)
}

.nav-logo-fallback {
    display: none;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    color: #fff;
}

.nav-logo-fallback span {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    margin-left: 18px
}

.nav-item {
    position: relative
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 13px;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, .7);
    border-radius: var(--radius-sm);
    transition: var(--ease);
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, .08)
}

.nav-chevron {
    font-size: 9px;
    transition: var(--ease)
}

.nav-item:hover .nav-chevron {
    transform: rotate(180deg)
}

.nav-drop {
    position: absolute;
    top: calc(100%+12px);
    left: 0;
    background: #0e1929;
    border: 1px solid var(--dk-border);
    border-radius: var(--radius-md);
    padding: 10px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--ease);
    box-shadow: 0 24px 64px rgba(0, 0, 0, .65);
    z-index: 100;
}

.nav-item:hover .nav-drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.nav-drop-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--dk-muted);
    padding: 8px 12px 4px;
    margin-top: 4px;
}

.nav-drop a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dk-sub);
    border-radius: var(--radius-sm);
    transition: var(--ease);
}

.nav-drop a .dd-ico {
    font-size: 16px;
    flex-shrink: 0
}

.nav-drop a:hover {
    color: #fff;
    background: rgba(37, 99, 235, .12)
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto
}

.nav-phone {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, .65);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--ease)
}

.nav-phone:hover {
    color: #fff
}

.ham {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto
}

.ham span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--ease)
}

.mob-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #070c18;
    border-bottom: 1px solid var(--dk-border);
    padding: 16px 24px 28px;
    z-index: 999;
}

.mob-menu a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--dk-sub);
    border-bottom: 1px solid var(--dk-border)
}

.mob-menu a:last-of-type {
    border-bottom: none
}

.mob-menu a:hover {
    color: #fff
}

.mob-cta {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

/* ─── PAGE HERO ──────────────────────────────────────────────── */
.page-hero {
    position: relative;
    overflow: hidden;
    background: var(--dark-bg);
    padding: 140px 0 100px;
    min-height: 560px;
    display: flex;
    align-items: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    opacity: .22;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(7, 12, 24, .95) 40%, rgba(37, 99, 235, .2) 100%);
}

.page-hero .container {
    position: relative;
    z-index: 2
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .04em
}

.hero-eyebrow .pipe {
    opacity: .3
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -.03em;
    color: #fff;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 17px;
    color: var(--dk-sub);
    line-height: 1.78;
    max-width: 520px;
    margin-bottom: 36px
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.hero-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
}

.hero-feat-dot {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(16, 185, 129, .15);
    border: 1px solid rgba(16, 185, 129, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #10b981
}

/* Hero visual / right side */
.hero-image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .55);
    border: 1px solid rgba(255, 255, 255, .08);
}

.hero-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block
}

.hero-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(7, 12, 24, .9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--dk-border);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
}

.hib-ico {
    font-size: 22px
}

.hib-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff
}

.hib-text span {
    font-size: 11px;
    color: var(--dk-muted)
}

/* Orb decorations */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

/* ─── HERO STATS STRIP ───────────────────────────────────────── */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--dk-border);
    gap: 1px;
    border: 1px solid var(--dk-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.hs-item {
    background: rgba(13, 22, 39, .7);
    padding: 18px;
    text-align: center
}

.hs-num {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hs-lbl {
    font-size: 10px;
    color: var(--dk-muted);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-top: 4px
}

/* ─── SECTION HEADER ─────────────────────────────────────────── */
.section-header {
    margin-bottom: 52px
}

/* ─── ALTERNATING FEATURE SECTIONS ──────────────────────────── */
.feature-section {
    padding: 80px 0
}

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

.feature-grid.reverse {
    direction: rtl
}

.feature-grid.reverse>* {
    direction: ltr
}

.feature-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block
}

.feature-img-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
}

.fib-ico {
    font-size: 24px
}

.fib-num {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--lt-text);
    line-height: 1.1
}

.fib-lbl {
    font-size: 11px;
    color: var(--lt-muted)
}

.feature-content .tag {
    margin-bottom: 14px
}

.feature-content h2 {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}

.feature-content p {
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 20px
}

.feature-content .on-dark h2 {
    color: #fff
}

.feature-content .on-dark p {
    color: var(--dk-sub)
}

.feature-content .on-light h2 {
    color: var(--lt-text)
}

.feature-content .on-light p {
    color: var(--lt-sub)
}

.feat-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px
}

.feat-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px
}

.feat-item .fi-ico {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-top: 2px;
}

.fi-ico.green {
    background: rgba(16, 185, 129, .15);
    color: #10b981
}

.fi-ico.blue {
    background: rgba(37, 99, 235, .15);
    color: #3b82f6
}

.fi-ico.purple {
    background: rgba(124, 58, 237, .15);
    color: #a78bfa
}

/* ─── CARDS (light bg) ───────────────────────────────────────── */
.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

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

.cards-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px
}

.card-light {
    background: var(--white);
    border: 1px solid var(--lt-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--ease);
}

.card-light:hover {
    border-color: rgba(37, 99, 235, .25);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .1), var(--shadow-glow)
}

.card-dark {
    background: var(--dark-card);
    border: 1px solid var(--dk-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--ease);
}

.card-dark:hover {
    border-color: rgba(37, 99, 235, .35);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow)
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.ci-blue {
    background: rgba(37, 99, 235, .1);
    border: 1px solid rgba(37, 99, 235, .2)
}

.ci-purple {
    background: rgba(124, 58, 237, .1);
    border: 1px solid rgba(124, 58, 237, .2)
}

.ci-cyan {
    background: rgba(6, 182, 212, .1);
    border: 1px solid rgba(6, 182, 212, .2)
}

.ci-green {
    background: rgba(16, 185, 129, .1);
    border: 1px solid rgba(16, 185, 129, .2)
}

.ci-orange {
    background: rgba(245, 158, 11, .1);
    border: 1px solid rgba(245, 158, 11, .2)
}

.ci-red {
    background: rgba(239, 68, 68, .1);
    border: 1px solid rgba(239, 68, 68, .2)
}

.card-light h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--lt-text);
    margin-bottom: 9px
}

.card-light p {
    font-size: 13.5px;
    color: var(--lt-sub);
    line-height: 1.72;
    margin-bottom: 18px
}

.card-dark h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--dk-text);
    margin-bottom: 9px
}

.card-dark p {
    font-size: 13.5px;
    color: var(--dk-sub);
    line-height: 1.72
}

.card-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--ease)
}

.card-link:hover {
    gap: 9px
}

/* ─── STATS STRIP ────────────────────────────────────────────── */
.stats-strip {
    background: var(--dark-surface);
    border-top: 1px solid var(--dk-border);
    border-bottom: 1px solid var(--dk-border)
}

.stats-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--dk-border)
}

.stat-block {
    background: var(--dark-card);
    padding: 42px 24px;
    text-align: center;
    transition: var(--ease);
}

.stat-block:hover {
    background: #162040
}

.stat-num {
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-lbl {
    font-size: 14px;
    color: var(--dk-sub);
    font-weight: 500
}

/* ─── PROCESS / HOW IT WORKS ─────────────────────────────────── */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center
}

.ps-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: var(--grad-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, .35);
}

.ps-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--lt-text)
}

.ps-desc {
    font-size: 13px;
    color: var(--lt-muted);
    line-height: 1.6
}

/* Dark variant */
.on-dark .ps-title {
    color: var(--dk-text)
}

.on-dark .ps-desc {
    color: var(--dk-muted)
}

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--lt-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--ease);
    box-shadow: var(--shadow-sm);
}

.testi-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px)
}

.testi-stars {
    color: #f59e0b;
    font-size: 16px;
    margin-bottom: 14px
}

.testi-text {
    font-size: 14.5px;
    color: var(--lt-sub);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic
}

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

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover
}

.testi-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--lt-text)
}

.testi-role {
    font-size: 12px;
    color: var(--lt-muted)
}

/* ─── PRICING ────────────────────────────────────────────────── */
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.price-card {
    background: var(--white);
    border: 1px solid var(--lt-border);
    border-radius: var(--radius-xl);
    padding: 36px;
    transition: var(--ease);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.price-card.popular {
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, .2), var(--shadow-md);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 28px;
    background: var(--grad-brand);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 5px 14px;
    border-radius: 0 0 10px 10px;
}

.price-plan {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--lt-muted);
    margin-bottom: 12px
}

.price-val {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--lt-text);
    line-height: 1;
    margin-bottom: 4px
}

.price-val sup {
    font-size: 24px;
    vertical-align: super
}

.price-per {
    font-size: 13px;
    color: var(--lt-muted);
    margin-bottom: 24px
}

.price-desc {
    font-size: 14px;
    color: var(--lt-sub);
    line-height: 1.65;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--lt-border)
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px
}

.pf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--lt-sub)
}

.pf-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(16, 185, 129, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #10b981
}

.pf-cross {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(100, 116, 139, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--lt-muted)
}

.price-cta {
    width: 100%;
    padding: 14px
}

/* ─── USE CASES / INDUSTRY TABS ─────────────────────────────── */
.ind-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px
}

.ind-tab {
    padding: 9px 20px;
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 600;
    border: 1px solid var(--lt-border);
    color: var(--lt-sub);
    background: transparent;
    transition: var(--ease);
    cursor: pointer;
}

.ind-tab.active,
.ind-tab:hover {
    background: var(--grad-brand);
    border-color: transparent;
    color: #fff
}

.ind-panel {
    display: none
}

.ind-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.ind-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--lt-text);
    margin-bottom: 12px
}

.ind-content p {
    font-size: 15px;
    color: var(--lt-sub);
    line-height: 1.78;
    margin-bottom: 22px
}

.ind-content .feat-list .feat-item {
    color: var(--lt-sub)
}

.ind-img-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.ind-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-wrap {
    max-width: 780px;
    margin: 0 auto
}

.faq-item {
    border-bottom: 1px solid var(--lt-border)
}

.faq-item:first-child {
    border-top: 1px solid var(--lt-border)
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--lt-text);
    text-align: left;
    cursor: pointer;
    transition: var(--ease);
}

.faq-q:hover {
    color: var(--blue)
}

.faq-ico {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(37, 99, 235, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--ease)
}

.faq-item.open .faq-ico {
    transform: rotate(45deg);
    background: rgba(37, 99, 235, .15)
}

.faq-a {
    display: none;
    padding: 0 0 18px;
    font-size: 14.5px;
    color: var(--lt-sub);
    line-height: 1.76
}

.faq-item.open .faq-a {
    display: block
}

/* dark faq */
.dark-faq .faq-item {
    border-color: var(--dk-border)
}

.dark-faq .faq-q {
    color: var(--dk-text)
}

.dark-faq .faq-q:hover {
    color: #60a5fa
}

.dark-faq .faq-ico {
    background: rgba(255, 255, 255, .06)
}

.dark-faq .faq-item.open .faq-ico {
    background: rgba(37, 99, 235, .2)
}

.dark-faq .faq-a {
    color: var(--dk-sub)
}

/* ─── FORMS ──────────────────────────────────────────────────── */
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.form-group {
    margin-bottom: 16px
}

.form-group label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--lt-muted);
    margin-bottom: 8px
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--light-bg);
    border: 1.5px solid var(--lt-border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 14px;
    color: var(--lt-text);
    outline: none;
    transition: var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px
}

.form-group select option {
    background: #fff
}

/* ─── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, rgba(37, 99, 235, .12), rgba(124, 58, 237, .12));
    border: 1px solid rgba(37, 99, 235, .2);
    border-radius: var(--radius-xl);
    padding: 72px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner .co {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px)
}

.cta-banner .co1 {
    width: 300px;
    height: 300px;
    background: rgba(37, 99, 235, .1);
    top: -120px;
    left: -80px
}

.cta-banner .co2 {
    width: 300px;
    height: 300px;
    background: rgba(124, 58, 237, .1);
    bottom: -100px;
    right: -80px
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -.025em;
    margin-bottom: 14px;
    color: #fff;
    position: relative;
    z-index: 1
}

.cta-banner p {
    font-size: 17px;
    color: var(--dk-sub);
    max-width: 520px;
    margin: 0 auto 34px;
    line-height: 1.76;
    position: relative;
    z-index: 1
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1
}

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start
}

.contact-info-card {
    background: var(--dark-surface);
    border: 1px solid var(--dk-border);
    border-radius: var(--radius-xl);
    padding: 36px
}

.contact-info-card h2 {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -.02em
}

.contact-info-card>p {
    font-size: 15px;
    color: var(--dk-sub);
    line-height: 1.75;
    margin-bottom: 30px
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px
}

.cd-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    background: rgba(37, 99, 235, .12);
    border: 1px solid rgba(37, 99, 235, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px
}

.cd-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--dk-muted);
    margin-bottom: 4px
}

.cd-value {
    font-size: 14px;
    color: var(--dk-sub);
    line-height: 1.55
}

.cd-value a {
    color: var(--dk-sub);
    transition: var(--ease)
}

.cd-value a:hover {
    color: #60a5fa
}

.form-card {
    background: var(--white);
    border: 1px solid var(--lt-border);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-md)
}

.form-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--lt-text);
    margin-bottom: 4px
}

.form-card .sub {
    font-size: 13px;
    color: var(--lt-muted);
    margin-bottom: 26px
}

/* ─── LOGO STRIP ─────────────────────────────────────────────── */
.logo-strip {
    padding: 40px 0;
    border-top: 1px solid var(--lt-border);
    border-bottom: 1px solid var(--lt-border)
}

.logo-strip-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--lt-muted);
    margin-bottom: 28px
}

.logo-track {
    display: flex;
    gap: 16px;
    animation: scroll 24s linear infinite;
    width: max-content
}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--lt-muted);
    white-space: nowrap;
    background: var(--white);
    border: 1px solid var(--lt-border);
    border-radius: 100px;
    transition: var(--ease);
}

.logo-item:hover {
    color: var(--lt-text);
    border-color: rgba(37, 99, 235, .3);
    box-shadow: var(--shadow-sm)
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
    background: var(--dark-bg);
    border-top: 1px solid var(--dk-border);
    padding: 72px 0 28px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 52px
}

.footer-brand img {
    height: 44px;
    width: auto;
    filter: brightness(1.1);
    margin-bottom: 16px
}

.footer-brand-fallback {
    display: none;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    color: #fff;
    margin-bottom: 16px
}

.footer-brand-fallback span {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.footer-desc {
    font-size: 13.5px;
    color: var(--dk-muted);
    line-height: 1.78;
    max-width: 268px;
    margin-bottom: 22px
}

.footer-socials {
    display: flex;
    gap: 10px
}

.f-soc {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: var(--dark-card);
    border: 1px solid var(--dk-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--dk-muted);
    transition: var(--ease)
}

.f-soc:hover {
    background: rgba(37, 99, 235, .15);
    border-color: rgba(37, 99, 235, .3);
    color: #60a5fa
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--dk-muted);
    margin-bottom: 18px
}

.footer-col li {
    margin-bottom: 10px
}

.footer-col a {
    font-size: 13.5px;
    color: var(--dk-muted);
    transition: var(--ease)
}

.footer-col a:hover {
    color: var(--dk-text)
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--dk-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px
}

.footer-bottom p {
    font-size: 12.5px;
    color: var(--dk-muted)
}

.f-legal {
    display: flex;
    gap: 18px
}

.f-legal a {
    font-size: 12.5px;
    color: var(--dk-muted);
    transition: var(--ease)
}

.f-legal a:hover {
    color: var(--dk-text)
}

/* ─── BACK TO TOP + FLOAT CTA ───────────────────────────────── */
#backTop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--grad-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: var(--ease);
    z-index: 900;
    box-shadow: 0 4px 20px rgba(37, 99, 235, .4);
}

#backTop.vis {
    opacity: 1;
    pointer-events: auto
}

#backTop:hover {
    transform: translateY(-3px)
}

.float-cta {
    position: fixed;
    bottom: 28px;
    left: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(7, 12, 24, .94);
    border: 1px solid rgba(37, 99, 235, .35);
    border-radius: 100px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #60a5fa;
    backdrop-filter: blur(12px);
    z-index: 900;
    transition: var(--ease);
}

.float-cta:hover {
    background: rgba(37, 99, 235, .14);
    transform: translateY(-2px)
}

.float-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: blink 1.5s infinite
}

/* ─── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 20px
}

.breadcrumb a {
    color: rgba(255, 255, 255, .45);
    transition: var(--ease)
}

.breadcrumb a:hover {
    color: #fff
}

.breadcrumb .sep {
    opacity: .3
}

/* ─── INLINE IMG SECTION ─────────────────────────────────────── */
.img-section {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.img-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

/* ─── MISC HELPERS ───────────────────────────────────────────── */
.mt-8 {
    margin-top: 8px
}

.mt-12 {
    margin-top: 12px
}

.mt-16 {
    margin-top: 16px
}

.mt-24 {
    margin-top: 24px
}

.mt-32 {
    margin-top: 32px
}

.mt-48 {
    margin-top: 48px
}

.mb-24 {
    margin-bottom: 24px
}

.mb-32 {
    margin-bottom: 32px
}

.gap-16 {
    gap: 16px
}

.gap-24 {
    gap: 24px
}

.flex {
    display: flex
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center
}

.flex-col {
    display: flex;
    flex-direction: column
}

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
/* .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
} */

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.float-anim {
    animation: float 4s ease-in-out infinite
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media(max-width:1024px) {
    .page-hero-grid {
        grid-template-columns: 1fr
    }

    .hero-image-wrap {
        display: none
    }

    .feature-grid {
        grid-template-columns: 1fr
    }

    .feature-grid.reverse {
        direction: ltr
    }

    .cards-grid-4 {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }
}

@media(max-width:900px) {
    .cards-grid-3 {
        grid-template-columns: 1fr 1fr
    }

    .price-grid {
        grid-template-columns: 1fr
    }

    .stats-grid-4 {
        grid-template-columns: 1fr 1fr
    }

    .testi-grid {
        grid-template-columns: 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .ind-panel.active {
        grid-template-columns: 1fr
    }

    .ind-img-wrap {
        display: none
    }

    .process-grid {
        grid-template-columns: 1fr 1fr
    }

    .process-grid::before {
        display: none
    }

    .nav-links,
    .nav-phone {
        display: none
    }

    .ham {
        display: flex
    }

    .nav-cta .btn {
        display: none
    }
}

@media(max-width:640px) {
    .section {
        padding: 64px 0
    }

    .cards-grid-3,
    .cards-grid-4 {
        grid-template-columns: 1fr
    }

    .cards-grid-2 {
        grid-template-columns: 1fr
    }

    .stats-grid-4 {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .form-grid-2 {
        grid-template-columns: 1fr
    }

    .cta-banner {
        padding: 44px 20px
    }

    .process-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important
    }
}