:root {
    /* NBNL brand palette */
    --brand-blue: #0056a8;
    --brand-blue-soft: #e6f0fb;
    --brand-orange: #f46a2b;

    --bg-body: #f5f7fb;
    --bg-elevated: #ffffff;
    --bg-elevated-soft: #f9fbff;

    --accent: var(--brand-blue);
    --accent-soft: rgba(0, 86, 168, 0.08);
    --accent-strong: var(--brand-orange);

    --text-main: #0f172a;
    --text-muted: #6b7280;
    --border-subtle: #e2e8f0;

    --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background: radial-gradient(circle at top, #ffffff 0%, #f5f7fb 55%, #edf2ff 100%);
    color: var(--text-main);
    line-height: 1.6;
}

/* Layout helpers */

.container {
    max-width: 1180px;
    padding: 0 1.25rem;
    margin: 0 auto;
}

.section {
    padding: 4.5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.7rem;
}

.section-header p {
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

.gradient-text {
    background-image: linear-gradient(120deg, var(--brand-blue), var(--brand-orange));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}


/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(120deg, #22d3ee, #0ea5e9);
    color: #020617;
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.3);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 35px rgba(34, 211, 238, 0.5);
}

.btn-outline {
    border-color: var(--border-subtle);
    background: transparent;
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--accent);
    background: rgba(15, 23, 42, 0.8);
}

.btn-ghost {
    border-color: transparent;
    background: rgba(187, 208, 255, 0.945);
    color: var(--text-main);
}

.btn-ghost:hover {
    background: rgba(15, 23, 42, 0.7);
}

.btn-light {
    background: #f9fafb;
    color: #020617;
    border-color: transparent;
}

.btn-light:hover {
    background: #e5e7eb;
}

.btn-outline-light {
    background: transparent;
    border-color: rgba(248, 250, 252, 0.7);
    color: #f9fafb;
}

.btn-outline-light:hover {
    background: rgba(15, 23, 42, 0.3);
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0%, #22d3ee, #0f172a);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #e5e7eb;
    font-size: 1.1rem;
}

.logo-text {
    font-size: 0.95rem;
    color: #e5e7eb;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.06em;
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    text-decoration: none;
    color: #1f2933;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 0.15rem;
    font-weight: 500;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.15rem;
    width: 0;
    height: 2px;
    background: linear-gradient(120deg, var(--brand-blue), var(--brand-orange));
    transition: width 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--brand-blue);
}

.main-nav a.active::after,
.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* Mobile Nav */

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.2rem;
}

.mobile-nav-toggle span {
    width: 20px;
    height: 2px;
    background: #e5e7eb;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-nav a {
    color: #111827;
}
.mobile-nav ul {
    list-style: none;
    padding: 0.8rem 1.25rem 1rem;
}

.mobile-nav li + li {
    margin-top: 0.4rem;
}

.mobile-nav a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.95rem;
}

/* Hero */

.hero {
    padding-top: 4rem;
    padding-bottom: 3.5rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.hero h1 {
    font-size: 2.7rem;
    line-height: 1.1;
    margin-bottom: 0.9rem;
}

.hero-subtitle {
    color: var(--text-muted);
    max-width: 550px;
    margin-bottom: 1.4rem;
    color: black;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.meta-item {
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    background: rgb(254, 105, 51);
    min-width: 150px;
}

.meta-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.meta-value {
    font-size: 0.95rem;
}

/* Hero visual */

.hero-visual {
    position: relative;
    min-height: 260px;
}

.hero-card {
    position: relative;
    padding: 1rem 1.1rem;
    border-radius: 1.1rem;
    background: radial-gradient(circle at top, #020617, #020B20);
    border: 1px solid rgba(15, 23, 42, 0.9);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.95);
    max-width: 280px;
    z-index: 2;
}

.hero-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.hero-card ul {
    list-style: none;
    font-size: 0.86rem;
    color: var(--text-muted);
}

.hero-card li {
    padding-left: 0.9rem;
    position: relative;
    margin-bottom: 0.2rem;
}

.hero-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #22d3ee;
}

.floating-card {
    animation: float 4.5s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* WiFi orbit visual */

.hero-wifi-orbit {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-router {
    width: 90px;
    height: 60px;
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: radial-gradient(circle at top, #22d3ee, #020617);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.5);
    position: relative;
}

.hero-router::before,
.hero-router::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 999px;
}

.hero-router::before {
    top: -9px;
    width: 30px;
    height: 2px;
    background: #e5e7eb;
}

.hero-router::after {
    top: -20px;
    width: 40px;
    height: 20px;
    border: 2px solid rgba(148, 163, 184, 0.7);
    border-bottom: none;
}

.orbit-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.8);
    animation: orbit 8s linear infinite;
}

.dot-1 { top: 10%; left: 15%; }
.dot-2 { top: 80%; left: 60%; animation-delay: -2.4s; }
.dot-3 { top: 25%; left: 80%; animation-delay: -4s; }

@keyframes orbit {
    0% { transform: translate(0, 0); opacity: 0.9; }
    50% { transform: translate(20px, -10px); opacity: 0.5; }
    100% { transform: translate(0, 0); opacity: 0.9; }
}

/* Stats */

.stats-section {
    border-top: 1px solid rgba(15, 23, 42, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-card {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 1rem;
    border: 1px solid var(--border-subtle);
    padding: 1.1rem;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.stat-card p {
    font-size: 0.86rem;
    color: var(--text-muted);
}

/* Plans */

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.plan-card {
    background: rgba(15, 23, 42, 0.85);
    border-radius: 1.2rem;
    border: 1px solid var(--border-subtle);
    padding: 1.4rem 1.3rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.7);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.9);
}

.plan-card h3 {
    margin-bottom: 0.4rem;
}

.plan-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.7rem;
}

.plan-card ul {
    list-style: none;
    font-size: 0.86rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.plan-card li {
    margin-bottom: 0.25rem;
    padding-left: 0.9rem;
    position: relative;
}

.plan-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.plan-link {
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--accent);
}

.plan-link:hover {
    text-decoration: underline;
}

.plan-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
}

/* Features */

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.feature-card {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 1rem;
    border: 1px solid var(--border-subtle);
    padding: 1.1rem;
    font-size: 0.9rem;
}

.feature-card h3 {
    margin-bottom: 0.4rem;
}

/* Steps / How it works */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.step-card {
    border-radius: 1rem;
    border: 1px solid var(--border-subtle);
    background: rgba(15, 23, 42, 0.8);
    padding: 1.2rem 1.1rem;
}

.step-number {
    display: inline-flex;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-soft);
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    color: var(--accent);
}

/* Clients */

.clients-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
}

.client-logo-pill {
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px dashed var(--border-subtle);
    background: rgba(15, 23, 42, 0.7);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* CTA Strip */

.cta-strip {
    background: radial-gradient(circle at top left, #22d3ee, #020617);
    border-top: 1px solid rgba(15, 23, 42, 0.8);
    border-bottom: 1px solid rgba(15, 23, 42, 0.8);
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
}

.cta-inner h2 {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
}

.cta-inner p {
    color: #e5e7eb;
}

/* FAQ */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-radius: 0.9rem;
    border: 1px solid var(--border-subtle);
    background: rgba(231, 231, 231, 0.85);
    margin-bottom: 0.7rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 0.8rem 1rem;
    background: transparent;
    border: none;
    color: #ff3c00;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
}

.faq-icon {
    font-size: 1.1rem;
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
    padding: 0 1rem;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-bottom: 0.8rem;
}

/* Footer */

.site-footer {
    padding: 2.5rem 0 1.8rem;
    border-top: 1px solid var(--border-subtle);
    background: #ffffff;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.1fr 2fr;
    gap: 2rem;
    margin-bottom: 1.8rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.footer-links h4 {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li + li {
    margin-top: 0.28rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.newsletter-form {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1 1 160px;
    padding: 0.4rem 0.6rem;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    background: #020617;
    color: #e5e7eb;
    font-size: 0.9rem;
}

.newsletter-form button {
    border-radius: 999px;
    border: none;
    padding: 0.4rem 0.9rem;
    font-size: 0.9rem;
    cursor: pointer;
    background: var(--accent);
    color: #020617;
}

.newsletter-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-subtle);
    padding-top: 0.9rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-social a:hover {
    color: var(--accent);
}

/* Scroll reveal */

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
    .hero-visual {
        order: -1;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .main-nav {
        display: none;
    }
    .header-actions .btn-outline {
        display: none;
    }
    .mobile-nav-toggle {
        display: flex;
    }
    .stats-grid,
    .features-grid,
    .plans-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.6rem;
        align-items: flex-start;
    }
}
/* Cards / sections */

.stats-section {
    border-top: 1px solid #e5e7eb;
    background: transparent;
}

.stat-card,
.plan-card,
.feature-card,
.step-card {
    background: var(--bg-elevated);
    border-radius: 1rem;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.client-logo-pill {
    background: var(--bg-elevated);
    border: 1px dashed var(--border-subtle);
    color: var(--text-muted);
}

.hero-card {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

/* CTA strip in brand gradient */

.cta-strip {
    background: linear-gradient(120deg, var(--brand-blue), var(--brand-orange));
    color: #ffffff;
}

.cta-inner p {
    color: #f9fafb;
}
/* Page kicker / section alignment */

.page-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.section-header.align-left {
    text-align: left;
    margin-bottom: 2rem;
}

/* Plans hero */

.plans-hero {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
}

.plans-hero-top {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 1.8rem;
}

.plans-hero h1 {
    font-size: 2.1rem;
    margin-bottom: 0.5rem;
}

.plans-hero p {
    color: var(--text-muted);
    max-width: 540px;
}

.plans-hero-highlight {
    background: var(--bg-elevated);
    border-radius: 1rem;
    border: 1px solid var(--border-subtle);
    padding: 1rem 1.1rem;
    max-width: 320px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.plans-hero-highlight ul {
    list-style: none;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
}

.plans-hero-highlight li {
    position: relative;
    padding-left: 0.9rem;
    margin-bottom: 0.25rem;
}

.plans-hero-highlight li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
}

.plans-hero-cta {
    width: 100%;
    justify-content: center;
}

/* Tabs */

.plans-tabs {
    display: inline-flex;
    padding: 0.2rem;
    border-radius: 999px;
    background: #e5efff;
    margin-top: 0.7rem;
    gap: 0.2rem;
}

.plans-tab {
    border: none;
    background: transparent;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    cursor: pointer;
    color: #1f2933;
    font-weight: 500;
}

.plans-tab.active {
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
    color: var(--brand-blue);
}

/* Detailed plans grid */

.plans-grid-detailed {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.plan-card.detailed {
    display: flex;
    flex-direction: column;
    padding: 1.4rem 1.3rem;
}

.plan-card.detailed.popular {
    border-color: rgba(0, 86, 168, 0.45);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
    position: relative;
}

.plan-badge {
    position: absolute;
    top: 0.9rem;
    right: 1rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(0, 86, 168, 0.08);
    color: var(--brand-blue);
}

.plan-heading {
    margin-bottom: 0.8rem;
}

.plan-heading h3 {
    margin-bottom: 0.2rem;
}

.plan-heading p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.plan-tag {
    display: inline-flex;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: var(--accent-soft);
    color: var(--brand-blue);
    margin-bottom: 0.3rem;
}

.plan-tag.tag-highlight {
    background: rgba(244, 106, 43, 0.12);
    color: var(--brand-orange);
}

.plan-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.9rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed var(--border-subtle);
}

.plan-speed .label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.plan-speed .value {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--brand-blue);
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.1rem;
}

.plan-price .currency {
    font-size: 1rem;
}

.plan-price .amount {
    font-size: 1.7rem;
    font-weight: 600;
}

.plan-price .period {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.plan-features-list {
    list-style: none;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
}

.plan-features-list li {
    position: relative;
    padding-left: 0.9rem;
    margin-bottom: 0.25rem;
}

.plan-features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.78rem;
    color: var(--brand-blue);
}

.plan-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.7rem;
    margin-top: auto;
}

.plan-note {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.plan-btn {
    font-size: 0.85rem;
}

/* Legend */

.plan-legend {
    margin-top: 1.5rem;
    font-size: 0.84rem;
    color: var(--text-muted);
}

/* Enterprise layout */

.enterprise-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.1fr);
    gap: 1.5rem;
}

.enterprise-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.2rem;
}

.enterprise-side .enterprise-info-box {
    background: var(--bg-elevated);
    border-radius: 1rem;
    border: 1px solid var(--border-subtle);
    padding: 1.4rem 1.3rem;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.enterprise-info-box h3 {
    margin-bottom: 0.5rem;
}

.enterprise-info-box ol {
    margin-left: 1.1rem;
    margin-bottom: 0.9rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.enterprise-info-box li + li {
    margin-top: 0.25rem;
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* Responsive plans */

@media (max-width: 960px) {
    .plans-hero-top {
        flex-direction: column;
    }

    .plans-grid-detailed {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .enterprise-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .plans-grid-detailed {
        grid-template-columns: minmax(0, 1fr);
    }

    .plan-footer-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .plans-tabs {
        width: 100%;
        justify-content: space-between;
    }

    .plans-tab {
        flex: 1;
        text-align: center;
    }
}
/* =========================
   PLANS PAGE (v2)
   ========================= */

.page-hero-plans {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
    background: linear-gradient(120deg, rgba(0, 86, 168, 0.04), rgba(244, 106, 43, 0.04));
}

.plans-hero-inner {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
}

.page-hero-plans h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.page-hero-plans p {
    color: var(--text-muted);
    max-width: 520px;
}

.plans-hero-side {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
}

.plans-hero-pill {
    padding: 0.5rem 0.9rem;
    border-radius: 0.8rem;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    min-width: 210px;
}

.plans-hero-pill span {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0.1rem;
}

.plans-hero-pill strong {
    font-size: 0.95rem;
}

.plans-hero-btn {
    margin-top: 0.4rem;
    font-size: 0.9rem;
}

/* Section header */

.plans-section-v2 {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
}

.plans-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plans-section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.4rem;
}

.plans-section-header p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* Plans grid */

.plans-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.plan-card-v2 {
    background: #050608;
    color: #f9fafb;
    border-radius: 1.2rem;
    border: 1px solid #262626;
    padding: 1.4rem 1.3rem 1.1rem;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.plan-card-highlight {
    border-color: #f97373;
}

.plan-label-badge {
    position: absolute;
    top: 0.9rem;
    right: 1rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: #f97373;
    color: #050608;
}

.plan-card-top h3 {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
}

.plan-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 0.1rem;
    margin-bottom: 0.2rem;
}

.plan-price-wrap .currency {
    font-size: 1rem;
}

.plan-price-wrap .amount {
    font-size: 2.1rem;
    font-weight: 600;
}

.plan-price-wrap .period {
    font-size: 0.8rem;
    opacity: 0.8;
}

.plan-subtitle {
    font-size: 0.86rem;
    opacity: 0.85;
}

.plan-speed-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 0.9rem 0 0.7rem;
    padding-top: 0.7rem;
    border-top: 1px solid #262626;
}

.plan-speed-row .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.75;
}

.plan-speed-row .value {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Feature list */

.plan-points {
    list-style: none;
    font-size: 0.86rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.plan-points li + li {
    margin-top: 0.25rem;
}

/* Buttons */

.plan-actions {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.7rem;
}

.btn-plan-primary,
.btn-plan-secondary {
    width: 100%;
    justify-content: center;
    border-radius: 999px;
    padding: 0.55rem 1rem;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-plan-primary {
    background: #ef4444;
    color: #f9fafb;
    box-shadow: 0 10px 24px rgba(248, 113, 113, 0.5);
}

.btn-plan-primary:hover {
    filter: brightness(1.05);
}

.btn-plan-secondary {
    background: transparent;
    color: #f9fafb;
    border: 1px solid #f97373;
}

.btn-plan-secondary:hover {
    background: rgba(249, 115, 129, 0.08);
}

.plan-footnote {
    font-size: 0.78rem;
    opacity: 0.7;
    border-top: 1px solid #262626;
    padding-top: 0.5rem;
    margin-top: auto;
}

/* Disclaimer */

.plans-disclaimer {
    margin-top: 1.6rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Business strip */

.plans-business-strip {
    background: #0b2654;
    color: #e5e7eb;
    padding-top: 2.5rem;
    padding-bottom: 2.6rem;
}

.plans-business-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.plans-business-inner p {
    max-width: 540px;
}

/* Responsive */

@media (max-width: 1024px) {
    .plans-grid-v2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plans-hero-inner {
        flex-direction: column;
    }

    .plans-hero-side {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 720px) {
    .plans-grid-v2 {
        grid-template-columns: minmax(0, 1fr);
    }

    .plans-business-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* =========================
   SERVICES PAGE
   ========================= */

.page-hero-services {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
    background: linear-gradient(120deg, rgba(0, 86, 168, 0.06), rgba(244, 106, 43, 0.04));
}

.services-hero-inner {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
}

.page-hero-services h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.page-hero-services p {
    color: var(--text-muted);
    max-width: 560px;
}

/* Stats on right */

.services-hero-side {
    display: grid;
    grid-auto-rows: minmax(0, auto);
    gap: 0.7rem;
    min-width: 220px;
}

.services-stat {
    padding: 0.6rem 0.9rem;
    border-radius: 0.8rem;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.services-stat .label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin-bottom: 0.1rem;
}

.services-stat .value {
    font-size: 0.98rem;
    font-weight: 600;
}

/* Service cards grid */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.3rem;
    margin-top: 1rem;
}

.service-card {
    background: var(--bg-elevated);
    border-radius: 1.1rem;
    border: 1px solid var(--border-subtle);
    padding: 1.3rem 1.2rem 1.1rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
}

.service-tag {
    display: inline-flex;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    background: var(--accent-soft);
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
}

.service-card h3 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.service-card ul {
    list-style: none;
    font-size: 0.86rem;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
}

.service-card ul li + li {
    margin-top: 0.2rem;
}

.service-actions {
    margin-top: auto;
}

/* Process section */

.services-process {
    background: var(--bg-elevated-soft);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.services-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
    margin-top: 1rem;
}

.services-step {
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid var(--border-subtle);
    padding: 1.2rem 1.1rem;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.step-number {
    display: inline-flex;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 86, 168, 0.25);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--brand-blue);
}

/* Coverage section */

.services-coverage {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.services-coverage-inner {
    display: flex;
    justify-content: space-between;
    gap: 1.8rem;
    align-items: flex-start;
}

.coverage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.coverage-tags span {
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    background: #ffffff;
    font-size: 0.84rem;
    color: var(--text-muted);
}

.services-coverage-cta {
    min-width: 240px;
    padding: 1.2rem 1.1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-orange));
    color: #f9fafb;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.28);
}

.services-coverage-cta h3 {
    margin-bottom: 0.3rem;
}

.services-coverage-cta p {
    font-size: 0.9rem;
    margin-bottom: 0.7rem;
}

/* Responsive */

@media (max-width: 1024px) {
    .services-hero-inner {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-coverage-inner {
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    .services-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .services-steps {
        grid-template-columns: minmax(0, 1fr);
    }
}
/* =========================
   ABOUT PAGE
   ========================= */

.page-hero-about {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
    background: linear-gradient(120deg, rgba(0, 86, 168, 0.05), rgba(244, 106, 43, 0.03));
}

.about-hero-inner {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
}

.page-hero-about h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.page-hero-about p {
    color: var(--text-muted);
    max-width: 560px;
}

.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    min-width: 260px;
}

.about-stat {
    padding: 0.7rem 0.9rem;
    border-radius: 0.9rem;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.about-stat .label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}

.about-stat .value {
    font-size: 1rem;
    font-weight: 600;
}

/* Mission + Story */

.about-mission-story {
    background: var(--bg-elevated-soft);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.about-mission-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.2fr);
    gap: 1.5rem;
}

.about-card {
    background: #ffffff;
    border-radius: 1.1rem;
    border: 1px solid var(--border-subtle);
    padding: 1.4rem 1.3rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
    font-size: 0.94rem;
    color: var(--text-main);
}

.about-card h2,
.about-card h3 {
    margin-bottom: 0.5rem;
}

.about-card p + p {
    margin-top: 0.6rem;
}

/* Why choose grid */

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 1rem;
}

/* Values section */

.about-values-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
    gap: 1.6rem;
    align-items: flex-start;
}

.about-values-text p {
    color: var(--text-muted);
}

.about-values-text p + p {
    margin-top: 0.6rem;
}

.about-values-list {
    list-style: none;
    margin-top: 0.7rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

.about-values-list li + li {
    margin-top: 0.3rem;
}

/* Side panel */

.about-side-panel {
    background: #0b2654;
    color: #e5e7eb;
    border-radius: 1rem;
    padding: 1.3rem 1.2rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.35);
}

.about-side-panel p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.about-side-note {
    font-size: 0.82rem;
    color: #d1ddff;
    margin-bottom: 0.9rem;
}

/* About CTA */

.about-cta {
    background: linear-gradient(120deg, var(--brand-blue), var(--brand-orange));
    color: #f9fafb;
}

.about-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.4rem;
}

.about-cta-inner p {
    max-width: 540px;
}

.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

/* Responsive */

@media (max-width: 1024px) {
    .about-hero-inner {
        flex-direction: column;
    }

    .about-hero-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .about-mission-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-values-inner {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .about-hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-why-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* =========================
   CONTACT PAGE
   ========================= */

.page-hero-contact {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
    background: linear-gradient(120deg, rgba(0, 86, 168, 0.06), rgba(244, 106, 43, 0.04));
}

.contact-hero-inner {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
}

.page-hero-contact h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.page-hero-contact p {
    color: var(--text-muted);
    max-width: 560px;
}

/* Quick info chips */

.contact-quick-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 1.2rem;
}

.contact-chip {
    padding: 0.65rem 0.9rem;
    border-radius: 0.9rem;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    font-size: 0.9rem;
}

.contact-chip .label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}

.contact-chip .value {
    font-size: 0.9rem;
}

/* Hours card */

.contact-hours-card {
    min-width: 260px;
    padding: 1.1rem 1.1rem;
    border-radius: 1rem;
    background: #0b2654;
    color: #e5e7eb;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.3);
}

/* Main layout */

.contact-main {
    background: var(--bg-elevated-soft);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
    gap: 1.8rem;
    align-items: flex-start;
}

.contact-form-wrap h2 {
    margin-bottom: 0.3rem;
}

.contact-form-wrap > p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 0.9rem;
}

/* Alerts */

.contact-alert {
    padding: 0.7rem 0.9rem;
    border-radius: 0.7rem;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.contact-alert.success {
    background: #ecfdf3;
    border: 1px solid #4ade80;
    color: #166534;
}

.contact-alert.error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #b91c1c;
}

/* Form */

.contact-form {
    margin-top: 0.4rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.9rem;
}

.form-row.two-cols {
    flex-direction: row;
    gap: 0.9rem;
}

.form-field {
    flex: 1;
}

.form-field label {
    display: block;
    font-size: 0.82rem;
    margin-bottom: 0.2rem;
    color: #111827;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    font-family: inherit;
    font-size: 0.9rem;
    padding: 0.45rem 0.6rem;
    border-radius: 0.6rem;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #111827;
}

.form-field textarea {
    resize: vertical;
}

/* Right side cards */

.contact-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid var(--border-subtle);
    padding: 1.1rem 1.1rem;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
    font-size: 0.9rem;
}

.contact-card h3 {
    margin-bottom: 0.35rem;
}

.contact-card ul {
    list-style: none;
    margin-top: 0.5rem;
    font-size: 0.86rem;
    color: var(--text-muted);
}

.contact-card ul li + li {
    margin-top: 0.2rem;
}

.contact-phone-list {
    font-family: monospace;
    margin: 0.4rem 0;
}

/* Address strip */

.contact-address-strip {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.contact-address-inner {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-hours-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

.contact-map-placeholder {
    min-width: 260px;
    border-radius: 1rem;
    background: #e5efff;
    border: 1px dashed #93c5fd;
    padding: 1.3rem 1.1rem;
    font-size: 0.85rem;
    color: #1e3a8a;
}

/* Responsive */

@media (max-width: 1024px) {
    .contact-hero-inner {
        flex-direction: column;
    }

    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-address-inner {
        flex-direction: column;
    }

    .contact-quick-info {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .form-row.two-cols {
        flex-direction: column;
    }
}
/* =========================
   POLICIES PAGE
   ========================= */

.page-hero-policies {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
    background: linear-gradient(120deg, rgba(0, 86, 168, 0.06), rgba(244, 106, 43, 0.04));
}

.policies-hero-inner {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
}

.page-hero-policies h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.page-hero-policies p {
    color: var(--text-muted);
    max-width: 560px;
}

/* Top nav */

.policy-nav {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 220px;
}

.policy-nav a {
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--brand-blue);
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    background: rgba(0, 86, 168, 0.05);
}

.policy-nav a:hover {
    background: rgba(0, 86, 168, 0.12);
}

/* Main layout */

.policies-main {
    background: var(--bg-elevated-soft);
    border-top: 1px solid var(--border-subtle);
}

.policies-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 0.9fr);
    gap: 1.8rem;
    align-items: flex-start;
}

.policies-content {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

/* Cards */

.policy-card {
    background: #ffffff;
    border-radius: 1.1rem;
    border: 1px solid var(--border-subtle);
    padding: 1.2rem 1.2rem 1.1rem;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
    font-size: 0.9rem;
    color: var(--text-main);
}

.policy-card h2 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.policy-card h3 {
    margin-top: 0.7rem;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.policy-card ul {
    margin-left: 1.1rem;
    margin-bottom: 0.3rem;
}

.policy-card ul li + li {
    margin-top: 0.25rem;
}

.policy-note {
    margin-top: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Side column */

.policies-side {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.policy-side-card {
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid var(--border-subtle);
    padding: 1rem 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Responsive */

@media (max-width: 1024px) {
    .policies-hero-inner {
        flex-direction: column;
    }

    .policies-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .policy-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }
}
/* =========================
   HERO IMAGE SLIDER
   ========================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    max-height: 850px;
    overflow: hidden;
    cursor: pointer;
}

/* Slides */
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

/* Active slide */
.hero-slide.active {
    opacity: 1;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(5,25,55,0.72),
        rgba(5,25,55,0.35)
    );
    display: flex;
    align-items: center;
}

.hero-content {
    color: #fff;
    max-width: 600px;
    padding-left: 8%;
}

.hero-content h1 {
    font-size: 2.6rem;
    line-height: 1.15;
    margin-bottom: 0.6rem;
}

.hero-content p {
    font-size: 1.05rem;
    opacity: 0.92;
    color: #0056a8;
}

.hero-cta {
    display: inline-block;
    margin-top: 1rem;
    background: #ef4444;
    color: #fff;
    padding: 0.55rem 1.3rem;
    border-radius: 999px;
    font-weight: 500;
    box-shadow: 0 10px 28px rgba(239,68,68,0.45);
}

/* Mobile */
@media (max-width: 768px) {
    .hero-content {
        padding-left: 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.9rem;
    }

    .hero-slider {
        height: 60vh;
    }
}
/* =========================
   IMAGE HERO SLIDER
   ========================= */

.hero-slider-img{
    position: relative;
    width: 100%;
    height: 85vh;
    max-height: 850px;
    overflow: hidden;
    cursor: pointer;
}

/* Image slides */
.hero-img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;           /* Keeps banners full-frame */
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

/* Active slide */
.hero-img.active{
    opacity: 1;
}

/* Mobile */
@media(max-width:768px){
    .hero-slider-img{
        height: 60vh;
    }

    .hero-img{
        object-position: center center;
    }
}
/* =========================
   PLANS HERO BANNER
   ========================= */

.plans-hero-banner{
    position: relative;
    width: 100%;
    height: 60vh;
    max-height: 600px;
    overflow: hidden;
}

.plans-hero-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay for readability */
.plans-hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(5, 25, 55, 0),
        rgba(5, 25, 55, 0)
    );
    display: flex;
    align-items: center;
}

/* Caption */
.plans-hero-content{
    padding-left: 8%;
    max-width: 560px;
    color: #fff;
}

.plans-hero-content h1{
    font-size: 2.4rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.plans-hero-content p{
    opacity: 0.95;
    margin-bottom: 1rem;
}

.plans-hero-content span{
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Mobile */
@media(max-width:768px){
    .plans-hero-banner{
        height: 45vh;
    }

    .plans-hero-content{
        padding-left: 1.3rem;
    }

    .plans-hero-content h1{
        font-size: 1.6rem;
    }
}
/* =========================
   HOME SOLUTIONS SECTION
   ========================= */

.home-solutions {
    padding: 3.5rem 0;
    background: #f8fafc;
}

.section-header.center {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.2rem;
}

.section-header.center h2 {
    font-size: 2.1rem;
    margin-bottom: 0.5rem;
}

.section-header.center p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Grid */

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
}

/* Cards */

.solution-card {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 1.5rem 1.3rem;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    opacity: 0;
    transform: translateY(40px);
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.12);
}

.solution-icon {
    font-size: 2.1rem;
    margin-bottom: 0.6rem;
}

.solution-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
}

.solution-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 0.7rem;
}

.solution-link {
    font-size: 0.9rem;
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 500;
}

.solution-link:hover {
    text-decoration: underline;
}

/* Animation active state */

.solution-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .solutions-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .section-header.center h2 {
        font-size: 1.6rem;
    }
}
/* =========================
   CLIENTS MARQUEE (WOW)
   ========================= */

.home-clients {
    padding: 3.5rem 0 0;
    background: linear-gradient(
        135deg,
        #050608,
        #0b2654
    );
    color: #f9fafb;
    overflow: hidden;
}

.clients-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

.clients-header h2 {
    font-size: 2.1rem;
    margin-bottom: 0.5rem;
}

.clients-header p {
    font-size: 1rem;
    color: #c7d2fe;
}

/* Marquee */

.clients-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0 2.5rem;
}

/* Fade edges */
.clients-marquee::before,
.clients-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-marquee::before {
    left: 0;
    background: linear-gradient(to right, #050608, transparent);
}

.clients-marquee::after {
    right: 0;
    background: linear-gradient(to left, #0b2654, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 28s linear infinite;
}

.clients-marquee:hover .marquee-track {
    animation-play-state: paused;
}

/* Client blocks */

.client-item {
    min-width: 220px;
    height: 90px;
    margin: 0 0.8rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #f9fafb;
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.client-item:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.15);
}

/* Animation */

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Responsive */

@media (max-width: 768px) {
    .clients-header h2 {
        font-size: 1.6rem;
    }

    .client-item {
        min-width: 180px;
        height: 75px;
        font-size: 0.9rem;
    }
}
/* =========================
   CLIENT LOGO NORMALIZATION
   ========================= */

.client-item {
    min-width: 220px;
    height: 90px;
    margin: 0 0.8rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease, background 0.3s ease;
}

/* 🔑 KEY FIX */
.client-item img {
    max-width: 180px;      /* uniform width */
    max-height: 80px;      /* uniform height */
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1) contrast(1);
}

/* Hover effect stays premium */
.client-item:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0);
}

/* Mobile */
@media (max-width: 768px) {
    .client-item {
        min-width: 180px;
        height: 75px;
    }

    .client-item img {
        max-width: 100px;
        max-height: 42px;
    }
}
/* =========================
   WIFI CURSOR FOLLOW EFFECT
   ========================= */

/* Hide default cursor only on desktop (optional) */
@media (pointer: fine) {
    body {
        cursor: none;
    }
}

.wifi-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 34px;
    height: 26px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

/* WiFi arcs */
.wifi-cursor span {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid rgba(198, 0, 0, 0.9); /* cyan WiFi glow */
    border-color: rgba(218, 0, 0, 0.9) transparent transparent transparent;
    border-radius: 50%;
    animation: wifi-pulse 1.4s infinite ease-in-out;
}

/* 3 signal layers */
.wifi-cursor span:nth-child(1) {
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.wifi-cursor span:nth-child(2) {
    width: 30px;
    height: 30px;
    animation-delay: 0.15s;
}

.wifi-cursor span:nth-child(3) {
    width: 40px;
    height: 40px;
    animation-delay: 0.3s;
}

/* Pulse animation */
@keyframes wifi-pulse {
    0% {
        opacity: 0.2;
        transform: translateX(-50%) scale(0.85);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    100% {
        opacity: 0.2;
        transform: translateX(-50%) scale(0.85);
    }
}

/* Disable effect on mobile / touch devices */
@media (pointer: coarse) {
    .wifi-cursor {
        display: none;
    }

    body {
        cursor: auto;
    }
}
/* =========================
   OTT 3-LAYER MARQUEE
   ========================= */

.home-ott {
    padding: 3.5rem 0 3rem;
    background: linear-gradient(135deg, #050608, #0b2654);
    color: #f9fafb;
    overflow: hidden;
}

.ott-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

.ott-header h2 {
    font-size: 2.1rem;
    margin-bottom: 0.5rem;
}

.ott-header p {
    color: #c7d2fe;
}

/* Marquee rows */

.ott-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0.8rem 0;
}

.ott-track {
    display: flex;
    width: max-content;
    gap: 1.4rem;
}

/* Left direction */
.ott-marquee.left .ott-track {
    animation: ott-left 20s linear infinite;
}

/* Right direction */
.ott-marquee.right .ott-track {
    animation: ott-right 20s linear infinite;
}

/* Slow variant */
.ott-marquee.slow .ott-track {
    animation-duration: 20s;
}

/* Pause on hover */
.ott-marquee:hover .ott-track {
    animation-play-state: paused;
}

/* Logo card */

.ott-item {
    width: 160px;
    height: 80px;
    border-radius: 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.ott-item img {
    max-width: 110px;
    max-height: 45px;
    object-fit: contain;
    filter: grayscale(40%) brightness(1.1);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.ott-item:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(2);
}

/* Animations */

@keyframes ott-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes ott-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

/* Responsive */

@media (max-width: 768px) {
    .ott-item {
        width: 130px;
        height: 65px;
    }

    .ott-item img {
        max-width: 90px;
        max-height: 38px;
    }

    .ott-header h2 {
        font-size: 1.6rem;
    }
}
/* =========================
   FTA CHANNEL RIBBON SECTION
   ========================= */

.fta-section {
    padding: 4rem 0;
    background: linear-gradient(
        135deg,
        #020617,
        #0b2654
    );
    color: var(--text-light);
}

.fta-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 2.8rem;
}

.fta-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
    color: orange;
}

.fta-header h3 {
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
    color: wheat;
}

.fta-header p {
    color: #c7d2fe;
    font-size: 1rem;
}

/* Grid */

.fta-ribbon-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

/* Ribbon card */

.fta-ribbon {
    position: relative;
    padding: 1.6rem 1.4rem 1.4rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    opacity: 0;
    transform: translateY(40px);
    overflow: hidden;
}

/* Ribbon accent */
.fta-ribbon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--brand-primary),
        var(--brand-accent)
    );
}

/* Floating tag */
.fta-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(255, 225, 0, 0.901);
    margin-bottom: 0.5rem;
}

.fta-ribbon h3 {
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
    color: wheat;
}

.fta-ribbon p {
    font-size: 0.9rem;
    color: #e0e7ff;
}

/* Hover wow */
.fta-ribbon:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(34, 211, 238, 0.35);
}

/* Reveal animation */
.fta-ribbon.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

@media (max-width: 1024px) {
    .fta-ribbon-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .fta-ribbon-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .fta-header h2 {
        font-size: 1.6rem;
    }
}
/* =========================
   WHATSAPP CHATBOT (SCOPED)
   ========================= */

.wa-float-btn {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* Wiggle animation ONLY for WhatsApp button */
@keyframes wa-wiggle {
    0% { transform: rotate(0deg); }
    15% { transform: rotate(-10deg); }
    30% { transform: rotate(10deg); }
    45% { transform: rotate(-6deg); }
    60% { transform: rotate(6deg); }
    100% { transform: rotate(0deg); }
}

@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Apply wiggle */
.wa-float-btn:not(.active) {
    animation:
        wa-wiggle 0.8s ease-in-out infinite,
        wa-pulse 2.5s ease-out infinite;
    animation-delay: 4s;
}

/* Chatbox */
.whatsapp-chatbot {
    position: fixed;
    bottom: 90px;
    right: 22px;
    width: 320px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    overflow: hidden;
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.25s ease;
    z-index: 9999;
    font-family: inherit; /* important */
}

.whatsapp-chatbot.active {
    transform: scale(1);
}

.wa-header {
    background: #075e54;
    color: #fff;
    display: flex;
    gap: 10px;
    padding: 12px;
    align-items: center;
}

.wa-header img {
    width: 36px;
    height: 36px;
}

.wa-body {
    padding: 14px;
}

.wa-body p {
    margin-bottom: 12px;
    color: #111;
}

.wa-body button {
    width: 100%;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 14px;
}

/* Stop animation when active */
.wa-float-btn.active {
    animation: none;
}
