/* ── TOKENS ── */
:root {
    --bg: #FCFBFD;
    --bg-alt: #F7F3FA;
    --surface: #FFFFFF;
    --surface-2: #FFFFFF;
    --accent: #00bcb4;
    --accent-mid: #007b76;
    --accent-light: #1cdcd4;
    --accent-rgb: 0, 188, 180;
    --dark-rgb: 13, 30, 28;
    --accent-ghost: rgba(var(--accent-rgb), 0.08);
    --accent-border: rgba(var(--accent-rgb), 0.15);
    --text-1: #0D1E1C;
    --text-2: #868c8c;
    --text-3: #494949;
    --border: rgba(13,30,28,0.08);
    --shadow-sm: 0 2px 12px rgba(13,30,28,0.06);
    --shadow-md: 0 8px 32px rgba(13,30,28,0.10);
    --shadow-lg: 0 24px 64px rgba(13,30,28,0.13);
    --silk: cubic-bezier(0.16, 1, 0.3, 1);
    --silk-dur: 0.8s;
    --radius: 16px;
    --radius-lg: 24px;
}
:root {
    --text: #17233d;
    --muted: #68768d;

    --border: #e8edf4;
    --card: #ffffff;
    --teal: #00bcb4;
    --yellow: #f6b21a;
    --green: #49b449;
    --blue: #2f7de1;
    --orange: #f58a2b;
    --purple: #7b47d8;
}
/* ── RESET ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 80px;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text-1);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

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

/* ── SUBTLE NOISE TEXTURE ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.022;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
}

/* ── UTILITY ── */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-ghost);
    border: 1px solid var(--accent-border);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

    .section-label::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--accent);
        border-radius: 50%;
    }

.section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--text-1);
}

    .section-title span {
        font-weight: 400;
        color: var(--accent);
        font-size: 0.9em;
    }

.section-sub {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-2);
    max-width: 520px;
    margin-top: 16px;
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--silk), transform 0.7s var(--silk);
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ══════════════════════════════════════════
       1. NAV
    ══════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background-color: #fff;
    transition: padding var(--silk-dur) var(--silk), background var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk);
}

    .nav.scrolled {
        padding: 12px 0;
        background: rgba(255,255,255,0.92);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 1px 0 var(--border);
    }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px;
    width:100%;
}

.nav-logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--text-1);
    background: url(../images/steer_logo.png) no-repeat left center;
    display: block;
    width: 100px;
    height: 40px;
    background-size: contain;
}
/*.scrolled .nav-logo {
    background: url(../images/steer_logo.png) no-repeat left center;
    display: block;
    width: 116px;
    height: 45px;
    background-size: contain;
}*/

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom:0;
}

    .nav-links a {
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--text-2);
        position: relative;
        padding: 7px 10px;
        border-radius: 100px;
        background: transparent;
        box-shadow: inset 0 0 0 0px var(--accent-border);
        transition: color 0.4s var(--silk), background 0.4s var(--silk), box-shadow 0.4s var(--silk);
    }

        .nav-links a:hover, .nav-links a.active {
            color: var(--accent);
            background: var(--accent-ghost);
        }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-ghost {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-2);
    padding: 9px 20px;
    border-radius: 100px;
    transition: color 0.3s, background 0.3s;
}

    .btn-ghost:hover {
        color: var(--accent);
        background: var(--accent-ghost);
    }

.btn-primary {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    padding: 10px 22px;
    border-radius: 100px;
    transition: background var(--silk-dur) var(--silk), transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk);
    box-shadow: 0 4px 16px rgb(var(--accent-rgb),17%);
}

    .btn-primary:hover {
        background: var(--accent-mid);
        transform: scale(1.02);
        box-shadow: 0 2px 10px rgba(var(--accent-rgb),35%);
    }

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px;
    cursor: pointer;
}

    .nav-hamburger span {
        display: block;
        height: 2px;
        background: var(--text-1);
        border-radius: 2px;
        transition: all 0.4s var(--silk);
    }

    .nav-hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-hamburger.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--silk);
    overflow-y: auto;
    padding: 100px 32px 100px;
    -webkit-overflow-scrolling: touch;
}

    .mobile-menu.open {
        opacity: 1;
        pointer-events: all;
    }

    .mobile-menu a {
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: -0.01em;
        color: var(--text-1);
        padding: 14px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border);
        opacity: 0;
        transform: translateY(16px);
        transition: opacity 0.5s var(--silk), transform 0.5s var(--silk), color 0.3s;
    }

        .mobile-menu a:first-child {
            border-top: 1px solid var(--border);
        }

    .mobile-menu.open a {
        opacity: 1;
        transform: none;
    }

    .mobile-menu a:hover {
        color: var(--accent);
    }

    .mobile-menu a:nth-child(1) {
        transition-delay: 0.05s;
    }

    .mobile-menu a:nth-child(2) {
        transition-delay: 0.10s;
    }

    .mobile-menu a:nth-child(3) {
        transition-delay: 0.15s;
    }

    .mobile-menu a:nth-child(4) {
        transition-delay: 0.20s;
    }

    .mobile-menu a:nth-child(5) {
        transition-delay: 0.25s;
    }

    .mobile-menu a:nth-child(6) {
        transition-delay: 0.30s;
    }

    .mobile-menu .mobile-cta {
        margin-top: 28px;
        font-size: 0.9375rem;
        font-weight: 600;
        background: var(--accent);
        color: #fff;
        padding: 14px 40px;
        border-radius: 100px;
        border: none;
        opacity: 0;
        transform: translateY(16px);
        transition: opacity 0.5s var(--silk) 0.35s, transform 0.5s var(--silk) 0.35s, background 0.3s;
    }

    .mobile-menu.open .mobile-cta {
        opacity: 1;
        transform: none;
    }

    .mobile-menu .mobile-cta:hover {
        background: var(--accent-mid);
    }

/* ══════════════════════════════════════════
       2. HERO
    ══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}
    /* Decorative background circles */
    .hero::before {
        content: "";
        position: absolute;
        top: -10%;
        right: -5%;
        width: 55vw;
        height: 55vw;
        max-width: 720px;
        max-height: 720px;
        border-radius: 50%;
        pointer-events: none;
        background: radial-gradient( ellipse at center, rgba(var(--accent-rgb), 0.12) 0%, rgba(171, 71, 188, 0.08) 35%, rgba(206, 147, 216, 0.04) 60%, transparent 80% );
        filter: blur(18px);
    }

    .hero::after {
        content: "";
        position: absolute;
        bottom: -15%;
        left: -8%;
        width: 40vw;
        height: 40vw;
        max-width: 500px;
        max-height: 500px;
        border-radius: 50%;
        pointer-events: none;
        background: radial-gradient( ellipse at center, rgba(var(--accent-rgb), 0.08) 0%, rgba(171, 71, 188, 0.05) 35%, rgba(206, 147, 216, 0.02) 60%, transparent 78% );
        filter: blur(20px);
    }

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
}

.hero-badge-index {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface-2);
    border: 1px solid var(--accent-border);
    border-radius: 100px;
    padding: 6px 16px 6px 8px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
}

.hero-badge-index span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-2);
}

.hero-badge-index strong {
    color: var(--accent);
}

.hero-title {
    font-size: clamp(2.6rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.9;
    margin-bottom: 24px;
}

    .hero-title span {
        font-weight: 400;
        color: var(--accent);
        font-size: 0.9em;
    }

.hero-sub {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-2);
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary-lg {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    padding: 14px 32px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background var(--silk-dur) var(--silk), transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk);
    box-shadow: 0 6px 24px rgba(var(--accent-rgb), 0.30);
}

    .btn-primary-lg:hover {
        background: var(--accent-mid);
        transform: scale(1.02);
        box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.40);
    }

    .btn-primary-lg .btn-arrow {
        transition: transform 0.4s var(--silk);
    }

    .btn-primary-lg:hover .btn-arrow {
        transform: translateX(4px);
    }

.btn-outline-lg {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--accent);
    border: 1.5px solid var(--accent-border);
    padding: 13px 28px;
    border-radius: 100px;
    align-items: center;
    gap: 8px;
    transition: background 0.4s var(--silk), border-color 0.4s var(--silk), transform var(--silk-dur) var(--silk);
}

    .btn-outline-lg:hover {
        background: var(--accent);
        border-color: var(--accent);
        transform: scale(1.02);
        color:#fff;
    }
.center_btn {
    text-align: center;
}
/* Trust badges */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 48px;
    flex-wrap: wrap;
}
    .hero-trust .trust-item {
        gap: 8px;
        padding: 10px 15px;
        border-radius: 12px;
        font-size: 13px;
    }
    .hero-trust .trust-item:hover {
     transform:none !important;
    }

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8125rem;
    color: var(--text-3);
    font-weight: 500;
    transition: transform .35s ease, color .35s ease;
}


    .trust-item .trust-icon {
        transition: transform .35s ease, background .35s ease, color .35s ease;
    }

    .trust-item:hover .trust-icon {
        transform: scale(1.08);
    }



    .trust-item .trust-icon {
        transition: all .35s ease;
    }

    .trust-item:hover .trust-icon {
        transform: scale(1.08) rotate(6deg);
        color: var(--accent);
    }

    .trust-item h5 {
        transition: color .35s ease;
    }

    .trust-item:hover h5 {
        color: var(--accent);
    }
   

    .trust-item svg {
        color: var(--accent);
        flex-shrink: 0;
    }

.trust-divider {
    width: 1px;
    height: 20px;
}

/* Hero visual */
/*.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-dashboard {
    width: 100%;
    max-width: 520px;
    background: var(--surface-2);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: transform var(--silk-dur) var(--silk);
}

    .hero-dashboard:hover {
        transform: scale(1.01);
    }

.dashboard-bar {
    background: var(--bg-alt);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

.db-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

    .db-dot:nth-child(1) {
        background: #FF5F57;
    }

    .db-dot:nth-child(2) {
        background: #FFBD2E;
    }

    .db-dot:nth-child(3) {
        background: #28CA41;
    }

.dashboard-body {
    padding: 18px;
}

.db-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.db-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-1);
}

.db-tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-ghost);
    border: 1px solid var(--accent-border);
    padding: 3px 10px;
    border-radius: 100px;
}

.db-chart {
    height: 80px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 20px;
}

.db-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: var(--accent-ghost);
    border: 1px solid var(--accent-border);
    transition: height 1s var(--silk);
}

    .db-bar.active {
        background: var(--accent);
        border-color: var(--accent);
    }

.db-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
}

.db-stat {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 14px;
    border: 1px solid var(--border);
}

.db-stat-val {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-1);
    letter-spacing: -0.03em;
}

.db-stat-label {
    font-size: 0.72rem;
    color: var(--text-3);
    margin-top: 2px;
}

.db-stat-change {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 4px;
}*/

/* Floating badge on hero visual */
/*.hero-float-badge {
    position: absolute;
    left: -215px;
    bottom: 206px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatBadge 4s ease-in-out infinite;
}*/

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.float-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

.float-badge-text {
    font-size: 0.75rem;
}

    .float-badge-text strong {
        display: block;
        font-weight: 700;
        color: var(--text-1);
    }

    .float-badge-text span {
        color: var(--text-3);
    }

.hero-float-badge-2 {
    position: absolute;
    top: 20px;
    right: -20px;
    background: var(--accent);
    border-radius: var(--radius);
    padding: 10px 16px;
    box-shadow: 0 8px 24px rgba(var(--accent-rgb),0.35);
    animation: floatBadge2 4s ease-in-out 2s infinite;
}

@keyframes floatBadge2 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.float-badge-2-val {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
}

.float-badge-2-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    margin-top: 2px;
}

/* ══════════════════════════════════════════
       3. LOGO TICKER
    ══════════════════════════════════════════ */
.ticker-section {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    overflow: hidden;
    position: relative;
}

.ticker-label {
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-3);
    font-weight: 600;
    margin-bottom: 28px;
}

.ticker-track-wrap {
    overflow: hidden;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 64px;
    width: max-content;
    animation: ticker 28s linear infinite;
}

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

@keyframes ticker {
    from {
        transform: translateX(0);
    }

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

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-3);
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.3s;
    cursor:pointer;
}

    .ticker-item:hover {
        color: var(--accent);
    }

.ticker-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--accent-ghost);
    border: 1px solid var(--accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ticker-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-light);
    flex-shrink: 0;
    opacity: 0.5;
}

/* ══════════════════════════════════════════
       4. FEATURES
    ══════════════════════════════════════════ */
.features-section {
    padding: 60px 0;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

    .features-header .section-sub {
        margin: 16px auto 0;
        text-align: center;
    }

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

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

    .feature-row.reverse {
        direction: rtl;
    }

        .feature-row.reverse > * {
            direction: ltr;
        }

.feature-content {
}

.feature-number {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 16px;
}

.feature-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.feature-desc {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-2);
    margin-bottom: 28px;
}

.feature-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-2);
}

.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-ghost);
    border: 1px solid var(--accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
}

.feature-visual {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk);
}

    .feature-visual:hover {
        transform: scale(1.015);
        box-shadow: var(--shadow-lg);
    }

.feature-visual-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fv-row {
    display: flex;
    gap: 12px;
}

.fv-card {
    flex: 1;
    background: var(--surface-2);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 16px;
    box-shadow: var(--shadow-sm);
}

.fv-card-label {
    font-size: 0.72rem;
    color: var(--text-3);
    font-weight: 500;
    margin-bottom: 6px;
}

.fv-card-val {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-1);
    letter-spacing: -0.03em;
}

.fv-card-bar {
    height: 4px;
    border-radius: 2px;
    margin-top: 10px;
    background: var(--bg);
    overflow: hidden;
}

.fv-card-bar-fill {
    height: 100%;
    border-radius: 2px;
    background: var(--accent);
}

.fv-wide {
    flex: 2;
}

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

.fv-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: var(--bg);
    border-radius: 8px;
    font-size: 0.8rem;
}

.fv-list-name {
    color: var(--text-2);
    font-weight: 500;
}

.fv-pill {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
}

    .fv-pill.green {
        background: rgba(26,122,110,0.12);
        color: var(--accent);
    }

    .fv-pill.blue {
        background: rgba(42,157,143,0.12);
        color: var(--accent-mid);
    }

    .fv-pill.dim {
        background: var(--border);
        color: var(--text-3);
    }

/* ══════════════════════════════════════════
       5. MOBILE CAROUSEL
    ══════════════════════════════════════════ */
.carousel-section {
    display: block;
    padding: 60px 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.carousel-header {
    text-align: center;
    margin-bottom: 0;
}

    .carousel-header .section-sub {
        margin: 16px auto 0;
        text-align: center;
    }

.carousel-stage {
    position: relative;
    height: clamp(480px, 52vw, 780px);
    perspective: clamp(900px, 120vw, 1800px);
    perspective-origin: center center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Single source of truth: --pw = phone width, drives all offsets */
:root {
    --pw: clamp(180px, 14vw, 300px);
    --gap1: clamp(200px, 19vw, 380px);
    --gap2: clamp(360px, 34vw, 660px);
    --gap-hide: clamp(500px, 48vw, 900px);
}

.phone-card {
    position: absolute;
    transition: transform 0.6s var(--silk), opacity 0.6s var(--silk);
    cursor: pointer;
}

.phone-shell {
    background: #EEF1F4;
    border-radius: 32px;
    padding: 5px;
    border: none;
    position: relative;
    transition: box-shadow 0.6s var(--silk);
    box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.10), 0 24px 56px rgba(70, 35, 90, 0.14), inset 0 1px 0 rgba(255,255,255,0.8);
}

.phone-screen {
    background: var(--bg);
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 9/19.5;
}

.phone-screen-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ps-topbar {
    padding: 10px 12px 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ps-topbar-label {
    font-size: 8px;
    font-weight: 700;
    color: var(--text-1);
    letter-spacing: -0.02em;
}

.ps-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
}

.ps-hero-block {
    padding: 6px 12px 10px;
}

.ps-hero-title {
    font-size: 9px;
    font-weight: 700;
    color: var(--text-1);
    line-height: 1.3;
    margin-bottom: 4px;
}

.ps-hero-sub {
    font-size: 6.5px;
    color: var(--text-3);
    line-height: 1.4;
}

.ps-btn {
    display: inline-block;
    margin-top: 6px;
    background: var(--accent);
    color: #fff;
    font-size: 6px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
}

.ps-cards {
    padding: 6px 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ps-card {
    background: var(--surface-2);
    border-radius: 8px;
    padding: 8px 10px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ps-card-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: var(--accent-ghost);
    border: 1px solid var(--accent-border);
    flex-shrink: 0;
}

.ps-card-text {
    flex: 1;
}

.ps-card-title {
    height: 5px;
    background: var(--border);
    border-radius: 2px;
    width: 60%;
    margin-bottom: 4px;
}

.ps-card-sub {
    height: 4px;
    background: var(--bg-alt);
    border-radius: 2px;
    width: 80%;
}

.ps-card-val {
    font-size: 8px;
    font-weight: 700;
    color: var(--accent);
}

.ps-nav {
    margin-top: auto;
    padding: 6px 8px;
    display: flex;
    justify-content: space-around;
    border-top: 1px solid var(--border);
    background: var(--surface-2);
}

.ps-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.ps-nav-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg-alt);
}

    .ps-nav-dot.active {
        background: var(--accent);
    }

.ps-nav-label {
    font-size: 4.5px;
    color: var(--text-3);
}

    .ps-nav-label.active {
        color: var(--accent);
    }

/* Card positions — z-index only, transforms set entirely by JS */
.phone-card[data-pos="center"] {
    z-index: 10;
}

.phone-card[data-pos="left1"],
.phone-card[data-pos="right1"] {
    z-index: 8;
}

.phone-card[data-pos="left2"],
.phone-card[data-pos="right2"] {
    z-index: 6;
}

.phone-card[data-pos="hidden-left"],
.phone-card[data-pos="hidden-right"] {
    z-index: 4;
}

/* Reflection floor line */
position: absolute; bottom: 60px; left: 0; right: 0;
height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
    margin-top: 48px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--accent-border);
    background: var(--surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    cursor: pointer;
    transition: all 0.4s var(--silk);
}

    .carousel-btn:hover {
        background: var(--accent);
        color: #fff;
        border-color: var(--accent);
        transform: scale(1.05);
    }

.carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-border);
    cursor: pointer;
    transition: all 0.4s var(--silk);
}

    .carousel-dot.active {
        background: var(--accent);
        width: 24px;
        border-radius: 4px;
    }

/* Zoom control */
.carousel-zoom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 30px 0 0;
}

.zoom-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--accent-border);
    background: var(--surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    transition: all 0.35s var(--silk);
    user-select: none;
}

    .zoom-btn:hover:not(:disabled) {
        background: var(--accent);
        color: #fff;
        border-color: var(--accent);
    }

    .zoom-btn:disabled {
        opacity: 0.28;
        cursor: not-allowed;
    }

.zoom-pips {
    display: flex;
    gap: 5px;
    align-items: center;
}

.zoom-pip {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-border);
    transition: background 0.3s var(--silk), transform 0.3s var(--silk);
    cursor: pointer;
}

    .zoom-pip.active {
        background: var(--accent);
        transform: scale(1.4);
    }

.zoom-label {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-3);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    width: 36px;
    text-align: center;
}

/* ══════════════════════════════════════════
       6. STATS
    ══════════════════════════════════════════ */
.stats-section {
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-card {
    padding: 40px 36px;
    border-right: 1px solid rgb(255 255 255 / 15%);
    transition: background var(--silk-dur) var(--silk);
}

    .stat-card:last-child {
        border-right: none;
    }

    .stat-card:hover {
        background: var(--surface-2);
    }

.stat-rule {
    width: 32px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    margin-bottom: 24px;
    transition: width 0.5s var(--silk);
}

.stat-card:hover .stat-rule {
    width: 56px;
}

.stat-value {
    font-size: clamp(2.4rem, 3.5vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.numb_section .stat-value {
    color: #fff;
}
.numb_section .stat-card:hover .stat-num {
    color: #182127;
}

.stat-suffix {
    font-size: 55%;
    color: var(--accent);
    font-weight: 600;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}
.numb_section .stat-card:hover .stat-label {
    color: #182127;
}

.stat-sublabel {
    font-size: 0.78rem;
    color: #818181;
    line-height: 1.5;
}

/* ══════════════════════════════════════════
       7. PRICING
    ══════════════════════════════════════════ */
.pricing-section {
    padding: 100px 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.pricing-header {
    text-align: center;
    margin-bottom: 48px;
}

    .pricing-header .section-sub {
        margin: 16px auto 0;
        text-align: center;
    }

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 56px;
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-2);
}

    .toggle-label.active {
        color: var(--accent);
        font-weight: 600;
    }

.toggle-switch {
    width: 52px;
    height: 28px;
    border-radius: 100px;
    background: var(--accent);
    cursor: pointer;
    position: relative;
    transition: background 0.4s var(--silk);
}

    .toggle-switch::after {
        content: '';
        position: absolute;
        top: 3px;
        left: 3px;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: #fff;
        transition: transform 0.4s var(--silk);
    }

    .toggle-switch.annual::after {
        transform: translateX(24px);
    }

.toggle-badge {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    background: var(--accent-ghost);
    border: 1px solid var(--accent-border);
    padding: 3px 10px;
    border-radius: 100px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--surface-2);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk);
    position: relative;
}

    .pricing-card:hover {
        transform: scale(1.02);
        box-shadow: var(--shadow-md);
    }

    .pricing-card.featured {
        border-color: var(--accent);
        background: var(--text-1);
        box-shadow: 0 20px 60px rgba(26,122,110,0.25);
    }

        .pricing-card.featured:hover {
            transform: scale(1.025);
            box-shadow: 0 28px 80px rgba(26,122,110,0.35);
        }

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-tier {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 12px;
}

.pricing-card.featured .pricing-tier {
    color: rgba(255,255,255,0.5);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 4px;
}

.price-annual-note {
    font-size: 0.78rem;
    color: var(--text-3);
    margin-bottom: 16px;
    min-height: 1.2em;
    transition: opacity 0.4s var(--silk);
}

.pricing-card.featured .price-annual-note {
    color: rgba(255,255,255,0.4);
}

.price-currency {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-2);
    margin-top: 6px;
}

.price-amount {
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--text-1);
    line-height: 1;
}

.pricing-card.featured .price-currency,
.pricing-card.featured .price-amount {
    color: #fff;
}

.price-period {
    font-size: 0.875rem;
    color: var(--text-3);
}

.pricing-card.featured .price-period {
    color: rgba(255,255,255,0.5);
}

.pricing-desc {
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 28px;
}

.pricing-card.featured .pricing-desc {
    color: rgba(255,255,255,0.65);
}

.pricing-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 24px;
}

.pricing-card.featured .pricing-divider {
    background: rgba(255,255,255,0.1);
}

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

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-2);
}

.pricing-card.featured .pricing-feature {
    color: rgba(255,255,255,0.8);
}

.pricing-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-ghost);
    border: 1px solid var(--accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    margin-top: 1px;
}

.pricing-card.featured .pricing-check {
    background: rgba(91,191,181,0.2);
    border-color: rgba(91,191,181,0.4);
    color: var(--accent-light);
}

.pricing-cta {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 13px;
    border-radius: 100px;
    border: 1.5px solid var(--accent-border);
    color: var(--accent);
    transition: all 0.4s var(--silk);
}

    .pricing-cta:hover {
        background: var(--accent-ghost);
    }

.pricing-card.featured .pricing-cta {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 6px 24px rgba(26,122,110,0.35);
}

    .pricing-card.featured .pricing-cta:hover {
        background: var(--accent-mid);
    }

/* ══════════════════════════════════════════
       8. TESTIMONIALS
    ══════════════════════════════════════════ */
.testimonials-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 64px;
}

    .testimonials-header .section-sub {
        margin: 16px auto 0;
        text-align: center;
    }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}

.testimonial-card {
    background: var(--surface-2);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk);
}

    .testimonial-card:hover {
        transform: scale(1.015);
        box-shadow: var(--shadow-md);
    }

    .testimonial-card.tall {
        grid-row: span 2;
    }

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

    .testimonial-stars span {
        color: var(--accent);
        font-size: 14px;
    }

.testimonial-quote {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-2);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card.tall .testimonial-quote {
    font-size: 1.0625rem;
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid var(--accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--accent);
    background: var(--accent-ghost);
}

.author-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-1);
}

.author-role {
    font-size: 0.75rem;
    color: var(--text-3);
    margin-top: 1px;
}
.footer-links span {
    display: block;
    color: #9ca3af;
    margin-bottom: 12px;
    font-size: 15px;
}

/* ══════════════════════════════════════════
       9. INTEGRATIONS
    ══════════════════════════════════════════ */
.integrations-section {
    padding: 60px 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.integrations-header {
    text-align: center;
    margin-bottom: 56px;
}

    .integrations-header .section-sub {
        margin: 16px auto 0;
        text-align: center;
    }

.integrations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 860px;
    margin: 0 auto;
}

.integration-tile {
    background: var(--surface-2);
    border-radius: 100px;
    border: 1px solid var(--border);
    padding: 10px 22px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk), border-color 0.4s, color 0.4s, background 0.4s;
    cursor: default;
}

    .integration-tile:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
        border-color: var(--accent-border);
        background: var(--accent-ghost);
    }

.integration-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-2);
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.integration-tile:hover .integration-name {
    color: var(--accent);
}

/* ══════════════════════════════════════════
       10. FAQ
    ══════════════════════════════════════════ */
.faq-section {
    padding: 100px 0;
}

.faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}

.faq-sidebar {
    position: sticky;
    top: 100px;
}

    .faq-sidebar .section-sub {
        margin-top: 16px;
        margin-bottom: 32px;
    }

.faq-toggle-all {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.3s;
}

    .faq-toggle-all:hover {
        opacity: 0.75;
    }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

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

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    cursor: pointer;
    gap: 16px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-1);
    transition: color 0.3s;
}

    .faq-question:hover {
        color: var(--accent);
    }

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--accent-border);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 16px;
    font-weight: 300;
    transition: transform 0.5s var(--silk), background 0.4s, color 0.4s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s var(--silk);
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-2);
    padding-bottom: 0;
    transition: padding-bottom 0.5s var(--silk);
}

.faq-item.open .faq-answer-inner {
    padding-bottom: 20px;
}

/* ══════════════════════════════════════════
       11. CTA BANNER
    ══════════════════════════════════════════ */
.cta-section {
    padding: 40px 0 100px 0;
}

.cta-inner {
    background: var(--text-1);
    border-radius: var(--radius-lg);
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    overflow: hidden;
}

    .cta-inner::before {
        content: '';
        position: absolute;
        top: -40%;
        right: -5%;
        width: 500px;
        height: 500px;
        background: radial-gradient(ellipse at center, rgba(91,191,181,0.15) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.cta-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-light);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
}

    .cta-title span {
        font-weight:400;
        color: var(--accent-light);
    }

.cta-sub {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,.78);
}

.cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
}

.btn-cta-primary {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    padding: 16px 36px;
    border-radius: 100px;
    white-space: nowrap;
    transition: background var(--silk-dur) var(--silk), transform var(--silk-dur) var(--silk);
    box-shadow: 0 8px 32px rgba(26,122,110,0.40);
}

    .btn-cta-primary:hover {
        background: var(--accent-mid);
        transform: scale(1.02);
    }

.btn-cta-ghost {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    padding: 14px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
    transition: color 0.3s, border-color 0.3s;
}

    .btn-cta-ghost:hover {
        color: #fff;
        border-color: rgba(255,255,255,0.3);
    }
.cta-inner {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 70px;
    align-items: center;
}
.contact-card {
    border-radius: 28px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 30px 80px rgba(15,23,42,.08);
}


.contact-input input {
    height: 60px;
    border-radius: 16px;
}
.textarea-group textarea {
    min-height: 160px;
}
.form-footer {
    display: block;
}

.contact-btn {
    width: 100%;
    justify-content: center;
}
.nav-cta .btn-primary {
    font-size: 13px;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(var(--accent-rgb),.30);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(.9);
    transition: opacity .35s ease, visibility .35s ease, transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
    z-index: 9999;
}

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .back-to-top:hover {
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 18px 40px rgba(var(--accent-rgb),.40);
    }

    .back-to-top:active {
        transform: translateY(-1px) scale(.97);
    }

    .back-to-top i {
        transition: transform .35s ease;
    }

    .back-to-top:hover i {
        transform: translateY(-2px);
    }
.dark_bg {
    background-color: #0D1E1C;
}
.dark_bg .reveal.visible {
    color:#fff;
}
.modules_section {
    background-color: #1174B5;
}
.plotform_section {
    background-color: #f8f9fc;
}
.industry_section {
    background: linear-gradient( 180deg, #0E9F8D 0%, #0A8D7C 100% );
}
.implementation_section {
    background-color: #f6f5f5;
}
.why_alia_section {
    background: linear-gradient( 135deg, #34578A, #284B7B );
}
.cta-inner {
    background-color: #24343A;
}
.modules_section .section-title {
    color:#fff;
}
.modules_section .section-title span{
       color: #FFD66E;
}
.modules_section .section-sub {
    color: #fff;
}
.modules_section .section-label {
    color: #FFC757;
    background: rgba(255, 199, 87, 0.12);
    border: 1px solid rgba(255, 199, 87, 0.25);
}
.modules_section .section-label::before {
    background: #FFC757;
}
.modules_section .zoom-pip {
    background: rgba(255, 255, 255, .30);
}
.modules_section .zoom-pip.active {
    background: #FFC757;
}
.modules_section .carousel-dot {
    background: rgba(255, 255, 255, .30);
}
    .modules_section .carousel-dot.active {
        background: #FFC757
    }
.modules_section .btn-outline-lg {
    color: #FFC757;
    border: 1.5px solid rgba(255, 199, 87, 0.45);
}
    .modules_section .btn-outline-lg:hover {
        background: #FFC757;
        color:#fff;
    }
.modules_section .zoom-btn {
    color: #FFC757;
    border: 1.5px solid rgba(255, 199, 87, 0.45);
}
    .modules_section .zoom-btn:hover:not(:disabled) {
        background: #FFC757;
        color: #fff;
        border-color: #FFC757;
    }
.modules_section .carousel-btn {
    color: #FFC757;
    border: 1.5px solid rgba(255, 199, 87, 0.45);
}
    .modules_section .carousel-btn:hover {
        background: #FFC757;
        color: #fff;
        border-color: #FFC757;
    }

.industry_section .section-title {
    color: #fff;
}

    .industry_section .section-title span {
        color: #FFD66E;
    }

.industry_section .section-sub {
    color: #fff;
}
.industry_section .section-label {
    color: #FFC757;
    background: rgba(255, 199, 87, 0.12);
    border: 1px solid rgba(255, 199, 87, 0.25);
}
.industry_section .section-label::before {
    background: #FFC757;
}
.numb_section {
    background-color: #0D1E1C;
}

.why_alia_section .section-title {
    color: #F8FAFC;
}

    .why_alia_section .section-title span {
        color: #FFD66E;
    }

.why_alia_section .section-sub {
    color: rgba(255,255,255,.82);
}

.why_alia_section .section-label {
    color: #FFC757;
    background: rgba(255, 199, 87, 0.12);
    border: 1px solid rgba(255, 199, 87, 0.25);
}

    .why_alia_section .section-label::before {
        background: #FFC757;
    }

.ind_we_serve {
    padding: 60px 0;
    background-color: #f6f5f5;
}

.industry-stats {
    padding: 40px 0;
}

.stats-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #e4eff6;
    border-radius: 22px;
    padding: 25px 20px;
}

.stat-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 30px;
    position: relative;
}

    .stat-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 70px;
        background: #e8edf4;
    }

.stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    flex-shrink: 0;
}

.teal {
    background: #18c2b6;
}

.blue {
    background: #2f80ed;
}

.yellow {
    background: #f4b400;
}

.purple {
    background: #7a4ce0;
}

.stat-content h3 {
    margin: 0;
    font-size: 32px;
    font-weight: 500;
    color: #15213d;
    line-height: 1;
}

.stat-content p {
    margin: 8px 0 0;
    color: #667085;
    font-size: 14px;
    font-weight: 500;
}

/* Tablet */

@media(max-width:991px) {

    .stats-wrapper {
        flex-wrap: wrap;
        padding: 25px;
    }

    .stat-item {
        width: 50%;
        flex: 0 0 50%;
        margin: 20px 0;
    }

        .stat-item:nth-child(2)::after {
            display: none;
        }
}

/* Mobile */

@media(max-width:767px) {

    .stats-wrapper {
        display: block;
    }

    .stat-item {
        width: 100%;
        padding: 20px 0;
    }

        .stat-item::after {
            display: none;
        }

        .stat-item:not(:last-child) {
            border-bottom: 1px solid #edf1f5;
        }

    .stat-content h3 {
        font-size: 38px;
    }
}


/*Industries Page*/
.industries-section {
    padding: 80px 0;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
}

.ind-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    gap: 22px;
    transition: .35s;
    cursor:pointer;
}

    .ind-card:hover {
        transform: translateY(-8px);
        border-color: var(--accent);
        box-shadow: 0 20px 45px rgba(0,0,0,.08);
    }

.industry-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 34px;
    flex-shrink: 0;
}

.industry-content h3 {
    font-size: 40px;
    margin: 0 0 10px;
    color: var(--text);
    font-weight: 700;
}

.industry-content p {
    color: #68768d;
    line-height: 1.3;
    margin-bottom: 20px;
}

.industry-content a {
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .3s;
    font-size:14px;
}

    .industry-content a i {
        transition: .3s;
    }

   

        .industry-content a:hover i {
            transform: translateX(6px);
        }

/* Icon Colors */

.teal {
    background: var(--teal);
}

.yellow {
    background: var(--yellow);
}

.green {
    background: var(--green);
}

.blue {
    background: var(--blue);
}

.orange {
    background: var(--orange);
}

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

/* Responsive */

@media(max-width:991px) {

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

@media(max-width:767px) {

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

    .ind-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .industry-content h3 {
        font-size: 24px;
    }
}






/*End of Industries Page*/


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact-area {
    padding: 70px 0;
    background: #fff;
}

/* Contact Info */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #eef6ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .contact-icon i {
        font-size: 22px;
        color: var(--accent,#2563eb);
    }

.contact-text h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--heading-color,#111827);
}

.contact-text p,
.contact-text a {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
    text-decoration: none;
}

    .contact-text a:hover {
        color: var(--accent-color,#2563eb);
    }

/* Form */

.steer-contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: .92rem;
    font-weight: 600;
    color: #1e293b;
}

    .steer-contact-form label span {
        color: #ff7171;
    }

.steer-contact-form .form-control {
    height: 46px;
    border: 1px solid #d7dee8;
    border-radius: 12px;
    padding: 0 16px;
    font-size: .92rem;
    box-shadow: none;
}

.steer-contact-form textarea.form-control {
    height: 130px;
    padding: 14px 16px;
    resize: none;
}

.steer-contact-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 .18rem rgba(var(--accent-rgb),.10);
}

/* Button */

.btn-send {
    min-width: 180px;
    height: 48px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    padding: 0 28px;
    background: #2563eb;
    border-color: #2563eb;
    transition: .3s;
}

    .btn-send:hover {
        background: #1d4ed8;
        border-color: #1d4ed8;
        transform: translateY(-2px);
    }
.contact_btn {
    display:inline-flex;
}
.resource_sec {
margin-top:80px;
}





/* Responsive */

@media (max-width:991px) {

    .contact-info {
        margin-bottom: 40px;
    }
}

@media (max-width:767px) {

    .contact-item {
        gap: 14px;
    }

    .contact-icon {
        width: 46px;
        height: 46px;
    }

        .contact-icon i {
            font-size: 20px;
        }

    .contact-text h5 {
        font-size: 1.3rem;
    }

    .btn-send {
        width: 100%;
    }
}


@media(max-width:991px) {
    .cta-inner {
            grid-template-columns: 1fr;
        }

        .contact-card {
            margin-top: 40px;
        }
    }
    /* ══════════════════════════════════════════
       12. FOOTER
    ══════════════════════════════════════════ */
    .footer {
    background: #0e211e;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

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

.footer-brand .nav-logo {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 16px;
    display: block;
    background: url(../images/steer_logo_wt.webp) no-repeat left center;
    background-size: contain;
    opacity: 0.6;
}

.footer-brand-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
    max-width: 240px;
}

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

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    font-weight: 700;
    transition: all 0.4s var(--silk);
}

    .social-btn:hover {
        border-color: var(--accent-light);
        color: var(--accent-light);
    }

.footer-col-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footer-links a {
        font-size: 0.875rem;
        color: rgba(255,255,255,0.5);
        transition: color 0.3s;
    }

        .footer-links a:hover {
            color: var(--accent-light);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
}

    .footer-copy a {
        color: rgba(255,255,255,0.45);
        transition: color 0.3s;
    }

        .footer-copy a:hover {
            color: var(--accent-light);
        }

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

    .footer-legal a {
        font-size: 0.8125rem;
        color: rgba(255,255,255,0.3);
        transition: color 0.3s;
    }

        .footer-legal a:hover {
            color: rgba(255,255,255,0.6);
        }

.plotform_img {
    background: url(../images/plotform3.webp) no-repeat center center;
    background-size: contain;
    display: block;
    width: 100%;
    height: 500px;
    animation: floatCard3 7s ease-in-out infinite;
}

.no_grid {
    display: block;
}

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

.adv-card {
    display: flex;
    gap: 18px;
    padding: 26px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #ece5f2;
    border-left: 4px solid var(--accent);
    transition: .35s;
}

    .adv-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(var(--accent-rgb),.12);
    }

.adv-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(var(--accent-rgb),.08);
    color: var(--accent);
    font-size: 1.45rem;
}

.adv-card h5 {
    margin-bottom: 8px;
    font-size: 1.15rem;
    font-weight: 700;
}

.adv-card p {
    margin: 0;
    color: #667085;
    line-height: 1.7;
}

.trusted-industries {
    margin-top: 40px;
}

    .trusted-industries h6 {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

    .industry-tags span {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #667085;
        font-size: .95rem;
    }

    .industry-tags i {
        color: var(--accent);
    }
.asp_2 {
    aspect-ratio: 4 / 3.5;
}

.why_steer_img {
    background: url(../images/why_steer1.webp) no-repeat center center;
    background-size: contain;
    display: block;
    width: 100%;
    height: 500px;
    animation: floatCard3 7s ease-in-out infinite;
}

.indtr_steer {
    background: url(../images/steer_logo_wt.webp) no-repeat center center;
    background-size: contain;
    display: block;
    width: 67px;
    height: 100%;
}



.why-alia-section {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

.why-alia-wrapper {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    margin-bottom: 6px;
}
/* Consultant */

.consultant-column {
    align-self: flex-start;
    display: flex;
    justify-content: center;
    min-height: 700px;
    position: relative;
}
.consultant-inner {
    position: sticky;
    top: 120px;
}
    .consultant-column::after {
        content: "";
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 220px;
        height: 26px;
        background: rgba(0,0,0,.12);
        filter: blur(20px);
        border-radius: 50%;
    }

.consultant-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,.08) 0%, rgba(37,99,235,.03) 45%, transparent 75%);
}

.consultant-image {
    display: block;
    width: 525px;
    max-width: none;
    margin-left: -40px;
    margin-bottom: -40px;
}


/* Checklist */
.trust-wrapper {
    height: 650px;
    overflow-y: auto;
    overflow-x: hidden;
}
.trust-column {
    position: relative;
}

.trust-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 20px;
    border: 1px solid rgba(var(--accent-rgb),.08);
    border-radius: 18px;
    background: #fff;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
    animation: fadeUp .6s ease both;
}

    .trust-item:hover {
        border-color: var(--accent);
        box-shadow: 0 18px 40px rgba(var(--accent-rgb),.10);
    }
.trust-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--accent);
    color: #fff;
    font-size: 18px;
    transition: .35s;
}

.trust-item:hover .trust-icon {
    background: var(--accent);
    color: #fff;
    transform: rotate(-8deg);
}

.trust-item h5 {
    margin-bottom: 6px;
    font-weight: 700;
    font-size: 16px;
}

.trust-item p {
    margin: 0;
    color: #6b7280;
    line-height: 1.55;
    font-size: 14px;
}
.trust-item:nth-child(1) {
    animation-delay: .1s;
}

.trust-item:nth-child(2) {
    animation-delay: .2s;
}

.trust-item:nth-child(3) {
    animation-delay: .3s;
}

.trust-item:nth-child(4) {
    animation-delay: .4s;
}

.trust-item:nth-child(5) {
    animation-delay: .5s;
}

.trust-item:nth-child(6) {
    animation-delay: .6s;
}
.trust-item {
    display: flex;
    transition: transform .35s cubic-bezier(.22,1,.36,1) !important;
    will-change: transform;
}

    .trust-item:hover {
        transform: translateX(12px) !important;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.trust-item {
    animation: fadeIn .6s ease both;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

    .trust-item:hover {
        transform: translateX(8px);
    }

.trust-item:hover .trust-item-inner {
    transform: translateX(8px);
}
.contact-header {
    text-align: center;
    margin-bottom: 64px;
}
.contact-form-section {
    padding: 90px 0;
}

.contact-heading {
    max-width: 760px;
    margin-bottom: 45px;
}

    .contact-heading h2 {
        font-size: 48px;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 18px;
    }

    .contact-heading p {
        font-size: 18px;
        line-height: 1.8;
        color: #64748b;
    }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
}

.contact-input {
    position: relative;
}

    .contact-input i {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 16px;
        color: rgb(117 117 117);
    }

    .contact-input input {
        width: 100%;
        height: 42px;
        border: 2px solid rgba(255,255,255,0.2);
        border-radius: 12px;
        padding: 0 24px 0 32px;
        font-size: 13px;
        transition: .3s;
        outline: none;
        background-color: transparent;
        color: rgb(117 117 117);
    }

        .contact-input input:focus {
            border-color: rgba(255,255,255,0.3);
        }

.textarea-group i {
    top: 18px;
    transform: none;
    color: rgb(117 117 117);
}

.textarea-group textarea {
    width: 100%;
    min-height: 170px;
    resize: vertical;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 22px;
    padding: 16px 16px 16px 32px;
    font-size: 13px;
    outline: none;
    transition: .3s;
    background-color: transparent;
    color: rgba(255,255,255,0.6);
}

    .textarea-group textarea:focus {
        border-color: rgba(255,255,255,0.3);
    }

.form-footer {
    display: flex;
    justify-content: flex-end;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 26px;
    border-radius: 50px;
    background: var(--accent);
    transition: .35s;
}

    .contact-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 35px rgba(var(--accent),.25);
    }

    .contact-btn i {
        font-size: 18px;
    }

@media(max-width:991px) {

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

    .contact-heading h2 {
        font-size: 38px;
    }
    .why-alia-wrapper {
        display:block;
    }
    .consultant-image {
    width:100%;
    margin-left:auto;
    }
    .consultant-column {
        min-height:auto;
    }
    .testimonials-section .container {
        margin-bottom: 80px;
    }
    .implementation-flow {
        padding: 40px 0 0px !important;
    }
    .consultant-glow {
    width:100%;
    }
    }



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

    .hero-visual {
        max-width: 520px;
        margin: 0 auto;
    }

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

        .feature-row.reverse {
            direction: ltr;
        }

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

    .stat-card {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

        .stat-card:last-child {
            border-bottom: none;
        }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

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

    .cta-inner {
        flex-direction: column;
        padding: 56px 40px;
    }

    .faq-inner {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .carousel-zoom {
        padding: 30px 0 0;
    }

    .container {
        padding: 0 20px;
    }

    .nav-links, .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

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

    .testimonial-card.tall {
        grid-row: auto;
    }

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

    .cta-inner {
        padding: 40px 24px;
    }

    .pricing-grid {
        max-width: 100%;
    }

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

    .hero-float-badge-2 {
        right: 0;
    }
    /* Carousel mobile */
    .carousel-stage {
        height: 400px;
    }

    :root {
        --pw: 150px;
        --gap1: 168px;
        --gap2: 300px;
        --gap-hide: 430px;
    }

    .phone-card[data-pos="left2"],
    .phone-card[data-pos="right2"] {
        opacity: 0.35;
    }
}

@media (max-width: 480px) {

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

    .hero-trust {
        gap: 12px;
    }

    .trust-divider {
        display: none;
    }
}
