:root {
    --purple: #653e95;
    --purple-dark: #4a2d6e;
    --purple-light: #f3eef8;
    --purple-glow: rgba(101, 62, 149, 0.12);
    --orange: #ea6424;
    --orange-hover: #d55a1e;
    --orange-light: #fef0e8;
    --gradient: linear-gradient(135deg, #653e95 0%, #ea6424 100%);
    --gradient-soft: linear-gradient(135deg, rgba(101, 62, 149, 0.08) 0%, rgba(234, 100, 36, 0.08) 100%);
    --gradient-vibrant: linear-gradient(135deg, #653e95 0%, #8b4fb8 40%, #c85e3a 75%, #ea6424 100%);
    --navy: #1a1232;
    --body: #3d3555;
    --muted: #6b6280;
    --light-muted: #9b93a8;
    --bg: #ffffff;
    --bg-warm: #faf8fc;
    --bg-section: #f7f4fa;
    --border: #e8e2f0;
    --border-light: #f0ecf5;
    --green: #22c55e;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --pill: 100px;
    --shadow-sm: 0 2px 8px rgba(101, 62, 149, 0.06);
    --shadow-md: 0 8px 32px rgba(101, 62, 149, 0.10);
    --shadow-lg: 0 20px 60px rgba(101, 62, 149, 0.14);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 24px rgba(101, 62, 149, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--body);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    line-height: 1.2;
    font-weight: 700;
}

a {
    color: var(--purple);
    text-decoration: none;
}

.ctr {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* === ANNOUNCEMENT BAR === */
.announce {
    background: var(--gradient);
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    letter-spacing: 0.2px;
}

.announce a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

/* === NAV === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(101, 62, 149, 0.08);
    height: 72px;
    transition: box-shadow 0.3s;
}

.nav.scrolled {
    box-shadow: 0 4px 24px rgba(101, 62, 149, 0.08);
}

.nav .ctr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 3px;
    text-decoration: none;
}

.logo svg,
.logo img {
    height: 36px;
    width: auto;
    display: block;
}

.logo-sub {
    font-size: 11px;
    font-weight: 600;
    color: var(--purple);
    background: var(--purple-light);
    padding: 3px 10px;
    border-radius: var(--pill);
    margin-left: 10px;
    letter-spacing: 0.3px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--body);
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--purple);
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(234, 100, 36, 0.30);
}

.btn-primary:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 100, 36, 0.40);
}

.btn-secondary {
    background: var(--purple);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(101, 62, 149, 0.30);
}

.btn-secondary:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(101, 62, 149, 0.40);
}

.btn-ghost {
    background: transparent;
    color: var(--purple);
    border: 2px solid var(--purple);
    padding: 10px 26px;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
}

.btn-ghost:hover {
    background: var(--purple);
    color: #fff;
}

/* === HERO === */
.hero {
    padding: 120px 28px 80px;
    background: var(--bg-warm);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(234, 100, 36, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(101, 62, 149, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .ctr {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(101, 62, 149, 0.10), rgba(234, 100, 36, 0.10));
    color: var(--purple);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--pill);
    margin-bottom: 24px;
    border: 1px solid rgba(101, 62, 149, 0.15);
}

.hero-badge svg {
    color: var(--orange);
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    line-height: 1.08;
    color: var(--navy);
}

.hero h1 .hl {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 16.5px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 540px;
    font-weight: 400;
}

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

.stat-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 20px 24px;
    min-width: 140px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(101, 62, 149, 0.2);
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    font-weight: 400;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: 0.5px;
}

.stat-label {
    font-size: 12.5px;
    color: var(--muted);
    font-weight: 500;
    margin-top: 2px;
}

/* === HERO FORM === */
.hero-form {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-form::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: var(--gradient);
    border-radius: 0 0 4px 4px;
}

.hero-form h3 {
    font-size: 21px;
    margin-bottom: 4px;
    font-weight: 700;
}

.hero-form .form-sub {
    font-size: 13.5px;
    color: var(--muted);
    margin-bottom: 24px;
}

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

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--body);
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--body);
    background: var(--bg-warm);
    outline: none;
    transition: all 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px var(--purple-glow);
    background: #fff;
}

.error-message {
    color: #e53935;
    font-size: 13px;
    margin-top: 6px;
}

.input-error {
    border: 1px solid #e53935 !important;
}

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

.form-btn {
    width: 100%;
    padding: 14px;
    background: var(--gradient-vibrant);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 4px;
    box-shadow: 0 4px 16px rgba(101, 62, 149, 0.25);
    letter-spacing: 0.2px;
}

.form-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(101, 62, 149, 0.35);
}

.form-trust {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 12px;
    color: var(--light-muted);
}

.form-trust svg {
    color: var(--green);
    flex-shrink: 0;
}

/* === LOGOS MARQUEE === */
.logos-section {
    padding: 48px 28px 36px;
    background: var(--bg);
    overflow: hidden;
}

.logos-section .ctr {
    text-align: center;
}

.logos-label {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.logos-title {
    font-size: 17px;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 28px;
}

.marquee-wrap {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 56px;
    animation: marquee 28s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 16px;
    color: var(--navy);
    opacity: 1;
    transition: opacity 0.3s;
    white-space: nowrap;
    height: 120px;
    display: flex;
    align-items: center;
    letter-spacing: -0.2px;
}

/* .marquee-item:hover {
      opacity: 0.7;
    } */

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

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

/* === SECTION STYLES === */
.section {
    padding: 88px 28px;
}

.section-gray {
    background: var(--bg-section);
}

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

.section-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
    max-width: 640px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--muted);
    max-width: 580px;
    line-height: 1.75;
    margin-bottom: 48px;
}

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

.section-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.section-center .section-label {
    justify-content: center;
}

/* === PAIN POINTS === */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pain-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.pain-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.pain-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(101, 62, 149, 0.25);
}

.pain-card:hover::after {
    opacity: 1;
}

.pain-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.pain-icon svg {
    color: var(--purple);
}

.pain-card h4 {
    font-size: 16.5px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pain-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

/* === FEATURE TABS === */
.features-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: start;
}

.feature-tabs {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: sticky;
    top: 96px;
}

.feature-tab {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--body);
    transition: all 0.25s;
}

.feature-tab:hover {
    border-color: var(--purple);
    background: var(--purple-light);
}

.feature-tab.active {
    background: var(--purple);
    color: #fff;
    border-color: var(--purple);
    box-shadow: 0 4px 16px rgba(101, 62, 149, 0.25);
}

.feature-tab.active svg {
    color: #fff;
}

.feature-tab svg {
    flex-shrink: 0;
    color: var(--purple);
    width: 20px;
    height: 20px;
}

.feature-panel {
    display: none;
}

.feature-panel.active {
    display: block;
    animation: fadeSlide 0.35s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-panel h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
}

.feature-panel p {
    font-size: 15px;
    color: var(--body);
    line-height: 1.8;
    margin-bottom: 16px;
}

.feature-panel p:last-child {
    margin-bottom: 0;
}

/* Allocation Widget */
.alloc-widget {
    background: var(--gradient-vibrant);
    border-radius: var(--radius);
    padding: 28px 24px;
    color: #fff;
    margin-top: 28px;
}

.alloc-widget h4 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    text-align: center;
}

.alloc-widget .alloc-sub {
    font-size: 13px;
    opacity: 0.75;
    text-align: center;
    margin-bottom: 18px;
}

.alloc-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.alloc-item {
    background: rgba(255, 255, 255, 0.95);
    color: var(--navy);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.2s;
}

.alloc-item:hover {
    transform: translateX(4px);
}

.alloc-dots {
    display: flex;
    gap: 3px;
}

.alloc-dots span {
    width: 5px;
    height: 5px;
    background: var(--light-muted);
    border-radius: 50%;
}

/* === CAPABILITIES === */
.cap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.cap-card {
    display: flex;
    gap: 18px;
    padding: 24px 22px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--shadow-card);
}

.cap-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(101, 62, 149, 0.2);
}

.cap-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
}

.cap-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
}

.cap-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
}

/* === HOW IT WORKS === */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
    opacity: 0.25;
    z-index: 0;
}

.step-card {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg);
    border: 3px solid transparent;
    background-image: linear-gradient(#fff, #fff), var(--gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

.step-num-inner {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
}


.compliance-badge {
    width: 170px;
}

.compliance-badge img {
    width: 150px;
    /* height: 76px !important; */
}




/* === CTA BANNER === */
.cta-banner {
    padding: 88px 28px;
}

.cta-inner {
    max-width: 900px;
    margin: 0 auto;
    background: var(--gradient-vibrant);
    border-radius: var(--radius-lg);
    padding: 64px 56px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.cta-inner::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.cta-inner h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.cta-inner p {
    font-size: 16.5px;
    opacity: 0.85;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-white {
    background: #fff;
    color: var(--purple);
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* === FOOTER === */
.footer {
    padding: 32px 28px;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.footer .ctr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* === FLOAT CTA === */
.float-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.float-cta.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.float-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-vibrant);
    color: #fff;
    padding: 14px 24px;
    border-radius: var(--pill);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 8px 32px rgba(101, 62, 149, 0.35);
    transition: all 0.25s;
}

.float-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(101, 62, 149, 0.45);
}

/* === ANIMATIONS === */
.anim {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.anim.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media(max-width:1024px) {
    .hero .ctr {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-form {
        max-width: 520px;
    }

    .features-layout {
        grid-template-columns: 1fr;
    }

    .feature-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        position: static;
    }

    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .steps-grid::before {
        display: none;
    }
}

@media(max-width:768px) {
    .nav-link {
        display: none;
    }

    .ctr {
        padding: 0 20px;
    }

    .hero {
        padding: 96px 20px 48px;
    }

    .hero .ctr {
        gap: 28px;
    }

    .hero h1 {
        font-size: 32px;
        letter-spacing: -0.8px;
        line-height: 1.15;
    }

    .hero h1 br {
        display: none;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
        margin-bottom: 20px;
    }

    .hero-sub {
        font-size: 15px;
        margin-bottom: 28px;
        line-height: 1.65;
    }

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

    .stat-card {
        padding: 14px 18px;
        flex-direction: row;
        gap: 14px;
    }

    .stat-num {
        font-size: 26px;
    }

    .stat-label {
        font-size: 12px;
    }

    .hero-form {
        padding: 28px 22px;
    }

    .hero-form h3 {
        font-size: 19px;
    }

    .hero-form .form-sub {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 11px 14px;
        font-size: 14px;
    }

    .form-btn {
        padding: 13px;
        font-size: 14px;
    }

    .form-trust {
        font-size: 11px;
    }

    /* Logo bar */
    .logos-section {
        padding: 32px 20px 28px;
    }

    .logos-title {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .marquee-item {
        font-size: 14px;
        /* height: 36px; */
    }

    .marquee-track {
        gap: 36px;
    }

    /* Sections */
    .section {
        padding: 56px 20px;
    }

    .section-title {
        font-size: 26px;
        letter-spacing: -0.5px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .section-label {
        font-size: 11px;
        margin-bottom: 10px;
    }

    /* Pain grid */
    .pain-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pain-card {
        padding: 24px 22px;
    }

    .pain-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 14px;
    }

    .pain-card h4 {
        font-size: 15px;
    }

    .pain-card p {
        font-size: 13px;
    }

    /* Feature tabs */
    .features-layout {
        gap: 24px;
    }

    .feature-tabs {
        gap: 5px;
    }

    .feature-tab {
        font-size: 13px;
        padding: 11px 14px;
        gap: 10px;
    }

    .feature-tab svg {
        width: 18px;
        height: 18px;
    }

    .feature-panel h3 {
        font-size: 22px;
    }

    .feature-panel p {
        font-size: 14px;
    }

    .alloc-widget {
        padding: 22px 18px;
        margin-top: 20px;
    }

    .alloc-widget h4 {
        font-size: 15px;
    }

    .alloc-pill {
        padding: 10px 14px;
        font-size: 13px;
    }

    /* Capabilities */
    .cap-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cap-card {
        padding: 20px 18px;
        gap: 14px;
    }

    .cap-num {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .cap-card h4 {
        font-size: 14px;
    }

    .cap-card p {
        font-size: 12.5px;
    }

    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .steps-grid::before {
        display: none;
    }

    .step-card {
        padding: 24px 18px;
    }

    .step-num {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
    }

    .step-num .step-num-inner {
        font-size: 18px;
    }

    .step-card h4 {
        font-size: 15px;
    }

    .step-card p {
        font-size: 12.5px;
    }

    /* Compliance badges */
    .compliance-badges {
        gap: 24px !important;
        margin-top: 28px !important;
    }

    .compliance-badge {
        width: 140px !important;
    }

    .compliance-badge img {
        width: 90px !important;
        /* height: 90px !important; */
    }

    /* Testimonials */
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* CTA */
    .cta-banner {
        padding: 56px 20px;
    }

    .cta-inner {
        padding: 36px 24px;
        border-radius: 18px;
    }

    .cta-inner h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .cta-inner p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .btn-white {
        padding: 12px 28px;
        font-size: 14px;
    }

    /* Footer */
    .footer .ctr {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-links {
        justify-content: center;
    }

    /* Float CTA */
    .float-cta a {
        padding: 12px 20px;
        font-size: 13px;
    }

    /* Announcement */
    .announce {
        font-size: 11px;
        padding: 6px 12px;
        line-height: 1.5;
    }
}

@media(max-width:480px) {
    .hero {
        padding: 88px 16px 40px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-sub {
        font-size: 14px;
    }

    .hero-form {
        padding: 24px 18px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
    }

    .section {
        padding: 48px 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
    }

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

    .cta-inner {
        padding: 32px 20px;
    }

    .cta-inner h2 {
        font-size: 22px;
    }

    .pain-card {
        padding: 20px 18px;
    }

    .cap-card {
        padding: 16px 14px;
    }

    .compliance-badges {
        gap: 20px !important;
    }

    .compliance-badge {
        width: 120px !important;
    }

    .compliance-badge img {
        width: 76px !important;
        /* height: 76px !important; */
    }

    .compliance-badge .badge-title {
        font-size: 13px !important;
    }

    .compliance-badge .badge-desc {
        font-size: 11px !important;
    }

    .nav .ctr {
        padding: 0 14px;
    }

    .ncta,
    .btn-primary {
        padding: 10px 18px;
        font-size: 13px;
    }

    .logo svg,
    .logo img {
        height: 28px;
        width: auto;
    }

    .logo-sub {
        font-size: 10px;
        padding: 2px 8px;
        margin-left: 6px;
    }
}

/* Mobile menu toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}