:root {
    --primary: #083D77;
    --primary-light: #1565C0;
    --accent: #00C896;
    --accent2: #FF6330;
    --liberia-red: #BF0A30;
    --liberia-blue: #002868;
    --dark: #04101E;
    --surface: #071829;
    --surface2: #0B2239;
    --text-main: #E6F0FF;
    --text-muted: #7A94B0;
    --border: rgba(0, 200, 150, 0.13);
    --font: 'Plus Jakarta Sans', sans-serif;
    --glow: 0 0 40px rgba(0, 200, 150, 0.15);
    --radius: 16px;
    --radius-sm: 10px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--text-main);
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.72;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    color: #fff;
}

img {
    max-width: 100%;
    display: block;
}

.grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 200, 150, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 200, 150, 0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}

/* LIBERIA BANNER */
#liberia-banner {
    background: linear-gradient(90deg, var(--liberia-red), var(--liberia-blue));
    padding: 0.6rem 0;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #fff;
    position: relative;
    z-index: 1060;
}

#liberia-banner .flag {
    font-size: 1rem;
    margin: 0 6px;
}

/* NAVBAR */
#mainNav {
    background: rgba(4, 16, 30, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0.7rem 0;
    transition: background 0.3s;
    position: sticky;
    top: 0;
    z-index: 1050;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo {
    width: 150px;
    /* height: 84px; */
    object-fit: contain;
}

.brand-text {
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.1;
}

.brand-text span {
    color: var(--accent);
}

.brand-sub {
    font-size: 0.6rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-link {
    color: var(--text-muted) !important;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem !important;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #fff !important;
}

.navbar-toggler {
    border-color: var(--border);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28230,240,255,0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* BUTTONS */
.btn-cta {
    background: var(--accent);
    color: #04101E;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.75rem 1.8rem;
    border: none;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
    cursor: pointer;
    box-shadow: 0 0 24px rgba(0, 200, 150, 0.3);
    text-decoration: none;
}

.btn-cta:hover {
    background: #00e0a8;
    transform: translateY(-2px);
    color: #04101E;
    box-shadow: 0 0 36px rgba(0, 200, 150, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.72rem 1.8rem;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
    cursor: pointer;
    text-decoration: none;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-wa {
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.75rem 1.8rem;
    border: none;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
    cursor: pointer;
    text-decoration: none;
}

.btn-wa:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    color: #fff;
}

/* LABELS */
.section-label {
    display: inline-block;
    background: rgba(0, 200, 150, 0.09);
    border: 1px solid rgba(0, 200, 150, 0.3);
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.32rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.7rem);
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 620px;
}

/* CARD */
.glass-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.glass-card:hover {
    border-color: rgba(0, 200, 150, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--glow);
}

/* HERO */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #04101E 0%, #071829 60%, #0B2239 100%);
    overflow: hidden;
    position: relative;
}

.hero-glow {
    position: absolute;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(0, 200, 150, 0.1) 0%, transparent 70%);
    top: -180px;
    right: -180px;
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 40, 104, 0.2) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 200, 150, 0.07);
    border: 1px solid rgba(0, 200, 150, 0.22);
    border-radius: 50px;
    padding: 0.45rem 1.1rem;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1.4rem;
    animation: fadeInUp 0.6s ease both;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 200, 150, 0.4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(0, 200, 150, 0);
    }
}

.hero-title {
    font-size: clamp(2.1rem, 5.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.7s 0.1s ease both;
}

.hero-title .accent {
    color: var(--accent);
}

.hero-sub {
    font-size: 1.08rem;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 2rem;
    font-weight: 300;
    animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.7s 0.3s ease both;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    animation: fadeInUp 0.7s 0.4s ease both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.trust-item i {
    color: var(--accent);
}

.hero-img-wrap {
    position: relative;
    animation: fadeInRight 0.9s 0.3s ease both;
}

.hero-img-wrap img {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.float-card {
    position: absolute;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.7rem 1.1rem;
    font-size: 0.78rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.float-card.top {
    top: -18px;
    left: -18px;
    animation: floatY 4s ease-in-out infinite;
}

.float-card.bot {
    bottom: -18px;
    right: -18px;
    animation: floatY 4s 2s ease-in-out infinite;
}

@keyframes floatY {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* LIBERIA SECTION */
#liberia {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(191, 10, 48, 0.08), rgba(0, 40, 104, 0.12));
    border-top: 1px solid rgba(191, 10, 48, 0.2);
    border-bottom: 1px solid rgba(0, 40, 104, 0.2);
    position: relative;
}

.liberia-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(191, 10, 48, 0.1);
    border: 1px solid rgba(191, 10, 48, 0.3);
    color: #ff6b7a;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.liberia-stat {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.liberia-stat:hover {
    border-color: rgba(0, 200, 150, 0.4);
    transform: translateY(-3px);
}

.liberia-stat .num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.liberia-stat .lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.industry-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.55rem 1.1rem;
    font-size: 0.82rem;
    margin: 0.3rem;
    transition: border-color 0.3s, color 0.3s;
}

.industry-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.industry-pill i {
    color: var(--accent);
    font-size: 0.85rem;
}

/* CALLOUT (positioning) */
.callout {
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.08), rgba(8, 61, 119, 0.18));
    border: 1px solid rgba(0, 200, 150, 0.25);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 1.6rem 1.8rem;
}

.callout h5 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.callout p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* STATS */
#stats {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    font-family: var(--font);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* PROBLEM SECTION */
#problem {
    padding: 7rem 0;
    background: var(--dark);
}

.problem-item {
    background: rgba(255, 99, 48, 0.06);
    border: 1px solid rgba(255, 99, 48, 0.18);
    border-radius: var(--radius-sm);
    padding: 1.1rem 1.3rem;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.problem-item i {
    color: var(--accent2);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.problem-item strong {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 2px;
    color: #fff;
}

.problem-item span {
    font-size: 0.81rem;
    color: var(--text-muted);
}

.solution-item {
    background: rgba(0, 200, 150, 0.05);
    border: 1px solid rgba(0, 200, 150, 0.16);
    border-radius: var(--radius-sm);
    padding: 1.1rem 1.3rem;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.solution-item i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.solution-item strong {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 2px;
    color: #fff;
}

.solution-item span {
    font-size: 0.81rem;
    color: var(--text-muted);
}

/* HOW IT WORKS */
#how {
    padding: 7rem 0;
    background: var(--surface);
}

.step-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    transition: border-color 0.3s, transform 0.3s;
}

.step-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.step-num {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 200, 150, 0.1);
    line-height: 1;
    margin-bottom: 0.8rem;
}

.step-icon {
    width: 46px;
    height: 46px;
    background: rgba(0, 200, 150, 0.09);
    border: 1px solid rgba(0, 200, 150, 0.22);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}

.step-icon i {
    font-size: 1.2rem;
    color: var(--accent);
}

.step-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin: 0;
}

/* FEATURES */
#features {
    padding: 7rem 0;
    background: var(--dark);
}

.feat-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 200, 150, 0.09);
    border: 1px solid rgba(0, 200, 150, 0.2);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    transition: background 0.3s;
}

.glass-card:hover .feat-icon {
    background: rgba(0, 200, 150, 0.18);
}

.feat-icon i {
    font-size: 1.3rem;
    color: var(--accent);
}

.feat-card h5 {
    font-size: 0.97rem;
    margin-bottom: 0.45rem;
}

.feat-card p {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin: 0;
}

.feat-tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(0, 200, 150, 0.1);
    border: 1px solid rgba(0, 200, 150, 0.25);
    border-radius: 50px;
    padding: 0.12rem 0.55rem;
    margin-top: 0.7rem;
}

/* AI SECTION */
#ai {
    padding: 7rem 0;
    background: var(--surface);
}

.ai-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.8rem;
    height: 100%;
    transition: border-color 0.3s, transform 0.3s;
}

.ai-card:hover {
    border-color: rgba(0, 200, 150, 0.4);
    transform: translateY(-4px);
}

.ai-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.18), rgba(8, 61, 119, 0.3));
    border: 1px solid rgba(0, 200, 150, 0.3);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.ai-icon i {
    font-size: 1.3rem;
    color: var(--accent);
}

.ai-card h5 {
    font-size: 0.98rem;
    margin-bottom: 0.4rem;
}

.ai-card p {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin: 0;
}

.sentiment-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 0.28rem 0.8rem;
    border-radius: 50px;
    margin: 0.25rem;
}

.sentiment-chip.pos {
    background: rgba(0, 200, 150, 0.12);
    color: #27e0a8;
    border: 1px solid rgba(0, 200, 150, 0.3);
}

.sentiment-chip.neu {
    background: rgba(122, 148, 176, 0.12);
    color: #9fb4cc;
    border: 1px solid rgba(122, 148, 176, 0.3);
}

.sentiment-chip.neg {
    background: rgba(255, 99, 48, 0.12);
    color: #ff8a63;
    border: 1px solid rgba(255, 99, 48, 0.35);
}

.sentiment-chip.urg {
    background: rgba(191, 10, 48, 0.15);
    color: #ff6b7a;
    border: 1px solid rgba(191, 10, 48, 0.4);
}

/* CHANNELS */
#channels {
    padding: 7rem 0;
    background: var(--dark);
}

.ch-btn {
    background: var(--surface2);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.86rem;
    padding: 0.7rem 1.3rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ch-btn.active, .ch-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #04101E;
}

.ch-panel {
    display: none;
}

.ch-panel.active {
    display: block;
    animation: fadeInUp 0.4s ease both;
}

.ch-visual {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: linear-gradient(135deg, var(--surface2), var(--surface));
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.8rem;
    padding: 2rem;
}

.ch-visual .big-ic {
    font-size: 4rem;
}

/* AUTOMATION */
#automation {
    padding: 7rem 0;
    background: var(--surface);
}

.auto-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    height: 100%;
    transition: border-color 0.3s, transform 0.3s;
}

.auto-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.auto-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 200, 150, 0.07);
    border: 1px solid rgba(0, 200, 150, 0.2);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.28rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 1.1rem;
}

.drip-step {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
}

.drip-step:last-child {
    border-bottom: none;
}

.drip-dot {
    min-width: 9px;
    height: 9px;
    background: var(--accent);
    border-radius: 50%;
    margin-top: 6px;
}

.drip-lbl {
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.drip-msg {
    font-size: 0.84rem;
    color: #fff;
}

/* SECURITY */
#security {
    padding: 7rem 0;
    background: var(--dark);
}

.sec-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.7rem;
    height: 100%;
    transition: border-color 0.3s, transform 0.3s;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.sec-card:hover {
    border-color: rgba(0, 200, 150, 0.4);
    transform: translateY(-3px);
}

.sec-ic {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: rgba(0, 200, 150, 0.09);
    border: 1px solid rgba(0, 200, 150, 0.22);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec-ic i {
    color: var(--accent);
    font-size: 1.05rem;
}

.sec-card h5 {
    font-size: 0.92rem;
    margin-bottom: 0.3rem;
}

.sec-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

/* PRICING */
#pricing {
    padding: 7rem 0;
    background: var(--surface);
}

.price-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, transform 0.3s;
}

.price-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.07), var(--surface2));
    box-shadow: var(--glow);
}

.price-card:hover:not(.featured) {
    border-color: rgba(0, 200, 150, 0.4);
    transform: translateY(-4px);
}

.price-badge {
    display: inline-block;
    background: var(--accent);
    color: #04101E;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.22rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.9rem;
    align-self: flex-start;
}

.price-plan {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.price-amount {
    font-size: 2.7rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.price-amount sup {
    font-size: 1.1rem;
    vertical-align: super;
}

.price-amount span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
}

.price-desc {
    font-size: 0.83rem;
    color: var(--text-muted);
    margin-bottom: 1.3rem;
}

.price-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 1.3rem 0;
}

.price-feats {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}

.price-feats li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.84rem;
    color: var(--text-muted);
    padding: 0.34rem 0;
}

.price-feats li i {
    color: var(--accent);
    font-size: 0.85rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.price-feats li i.no {
    color: rgba(122, 148, 176, 0.4);
}

.bill-toggle {
    display: inline-flex;
    gap: 4px;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 4px;
    margin-top: 1.4rem;
}

.bill-opt {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 1.3rem;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.bill-opt.active {
    background: var(--accent);
    color: #04101E;
}

.save-pill {
    font-size: 0.64rem;
    font-weight: 700;
    background: rgba(255, 99, 48, 0.15);
    color: var(--accent2);
    border-radius: 50px;
    padding: 0.1rem 0.5rem;
}

.bill-opt.active .save-pill {
    background: rgba(4, 16, 30, 0.15);
    color: #04101E;
}

.price-billing {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 1.3rem;
    min-height: 1.1rem;
}

.price-billing .save {
    color: var(--accent2);
    font-weight: 700;
}

/* FEATURE MATRIX */
.matrix-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

table.matrix {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
    font-size: 0.85rem;
}

table.matrix th, table.matrix td {
    padding: 0.85rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

table.matrix thead th {
    background: var(--surface2);
    color: #fff;
    font-weight: 700;
}

table.matrix tbody th {
    text-align: left;
    color: var(--text-main);
    font-weight: 500;
    background: rgba(11, 34, 57, 0.5);
}

table.matrix tbody tr:hover td, table.matrix tbody tr:hover th {
    background: rgba(0, 200, 150, 0.04);
}

table.matrix .grp td {
    background: rgba(0, 200, 150, 0.06);
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
    text-align: left;
}

table.matrix .yes {
    color: var(--accent);
}

table.matrix .no {
    color: rgba(122, 148, 176, 0.35);
}

table.matrix td.hl {
    background: rgba(0, 200, 150, 0.04);
}

/* TESTIMONIALS */
#testimonials {
    padding: 7rem 0;
    background: var(--dark);
}

.testi-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    transition: border-color 0.3s;
}

.testi-card:hover {
    border-color: rgba(0, 200, 150, 0.35);
}

.quote-icon {
    font-size: 1.6rem;
    color: var(--accent);
    opacity: 0.45;
    margin-bottom: 0.9rem;
}

.testi-text {
    font-size: 0.88rem;
    color: var(--text-main);
    margin-bottom: 1.4rem;
    font-style: italic;
    line-height: 1.75;
}

.testi-author {
    font-weight: 700;
    font-size: 0.86rem;
    color: #fff;
}

.testi-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.stars {
    color: #FFB800;
    font-size: 0.82rem;
    margin-bottom: 0.9rem;
}

/* FAQ */
#faq {
    padding: 7rem 0;
    background: var(--surface);
}

.accordion-item {
    background: var(--surface2) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    margin-bottom: 0.7rem;
    overflow: hidden;
}

.accordion-button {
    background: var(--surface2) !important;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 0.93rem !important;
    box-shadow: none !important;
    font-family: var(--font) !important;
}

.accordion-button:not(.collapsed) {
    color: var(--accent) !important;
}

.accordion-button::after {
    filter: invert(1) brightness(2);
}

.accordion-body {
    background: var(--surface2);
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* CTA BAND */
#cta-band {
    padding: 5rem 0;
    background: linear-gradient(135deg, #083D77, #071829);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

#cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 200, 150, 0.1) 0%, transparent 65%);
}

/* CONTACT */
#contact {
    padding: 7rem 0;
    background: var(--dark);
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.2rem;
}

.contact-icon-box {
    width: 44px;
    height: 44px;
    background: rgba(0, 200, 150, 0.09);
    border: 1px solid rgba(0, 200, 150, 0.2);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-box i {
    color: var(--accent);
    font-size: 1.05rem;
}

.form-field {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: #fff;
    padding: 0.78rem 1.05rem;
    font-family: var(--font);
    font-size: 0.88rem;
    width: 100%;
    transition: border-color 0.2s;
    outline: none;
}

.form-field:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 200, 150, 0.08);
}

.form-field::placeholder {
    color: var(--text-muted);
}

textarea.form-field {
    resize: vertical;
    min-height: 125px;
}

/* FOOTER */
footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-brand-logo {
    width: 150px;
    /* height: 42px; */
    object-fit: contain;
    margin-right: 10px;
}

.footer-brand-name {
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
}

.footer-brand-name span {
    color: var(--accent);
}

.footer-tagline {
    font-size: 0.83rem;
    color: var(--text-muted);
    max-width: 250px;
    margin-top: 0.6rem;
}

.footer-heading {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.45rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.86rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-divider {
    border-color: var(--border);
    margin: 2.5rem 0 1.5rem;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.social-btn {
    width: 35px;
    height: 35px;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all 0.2s;
    text-decoration: none;
}

.social-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #04101E;
}

.trust-bdg {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.28rem 0.65rem;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-right: 0.4rem;
    margin-bottom: 0.4rem;
}

.trust-bdg i {
    color: var(--accent);
    font-size: 0.72rem;
}

/* SCROLL TOP */
#scrollTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 43px;
    height: 43px;
    background: var(--accent);
    color: #04101E;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 200, 150, 0.4);
    transition: transform 0.2s;
}

#scrollTop:hover {
    transform: scale(1.1);
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 575px) {
    .float-card {
        display: none;
    }

    #hero {
        min-height: auto;
        padding: 4rem 0;
    }
}