@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #2563eb;
    --primary-light: #60a5fa;
    --dark: #07111f;
    --dark-soft: #0d1b2e;
    --text: #172033;
    --muted: #667085;
    --light: #f6f8fc;
    --border: #e5eaf2;
    --white: #ffffff;
    --radius: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(229, 234, 242, 0.8);
}

.nav-wrapper {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
}

.brand-mark {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--dark);
}

.brand-country {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 600;
    color: #475467;
    transition: 0.2s ease;
}

.main-nav a:hover {
    color: var(--primary);
}


/* BUTTONS */

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 10px;
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    transition: 0.25s ease;
    border: 1px solid var(--primary);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.btn-small {
    min-height: 42px;
    padding: 0 18px;
}

.btn-outline {
    background: transparent;
    border-color: #cbd5e1;
    color: var(--dark);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: none;
}


/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 115px;
    background:
        linear-gradient(135deg, #ffffff 0%, #f6f9ff 55%, #eef5ff 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(25, 65, 130, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25, 65, 130, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.hero-glow-one {
    width: 420px;
    height: 420px;
    background: rgba(37, 99, 235, 0.08);
    right: -100px;
    top: -100px;
}

.hero-glow-two {
    width: 300px;
    height: 300px;
    background: rgba(96, 165, 250, 0.08);
    left: 35%;
    bottom: -170px;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    gap: 70px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    background: #edf4ff;
    border: 1px solid #d8e7ff;
    border-radius: 100px;
    color: #315f9f;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.hero h1 {
    max-width: 700px;
    color: var(--dark);
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1.04;
    letter-spacing: -3.4px;
    font-weight: 800;
}

.hero h1 span {
    display: block;
    color: var(--primary);
}

.hero-text {
    max-width: 620px;
    margin-top: 27px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 35px;
}

.hero-points {
    display: flex;
    gap: 38px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.hero-points div {
    display: flex;
    flex-direction: column;
}

.hero-points strong {
    color: var(--dark);
    font-size: 14px;
}

.hero-points span {
    color: #98a2b3;
    font-size: 11px;
    margin-top: 2px;
}


/* TECH PANEL */

.hero-visual {
    position: relative;
}

.tech-panel {
    position: relative;
    min-height: 500px;
    padding: 28px;
    border-radius: 26px;
    background:
        linear-gradient(145deg, #0a1729, #0d213a);
    box-shadow:
        0 35px 70px rgba(8, 25, 50, 0.22),
        inset 0 1px 0 rgba(255,255,255,0.07);
    overflow: hidden;
}

.tech-panel::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.18);
    filter: blur(70px);
    right: -80px;
    bottom: -80px;
}

.panel-header {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.panel-label {
    font-size: 9px;
    color: #6d8db7;
    letter-spacing: 1.6px;
    font-weight: 700;
}

.panel-header h3 {
    margin-top: 4px;
    font-size: 17px;
    color: #e8f0fb;
}

.online-status {
    font-size: 10px;
    color: #8aa4c4;
    display: flex;
    align-items: center;
    gap: 6px;
}

.online-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #35d07f;
    box-shadow: 0 0 10px #35d07f;
}

.network-map {
    position: relative;
    height: 355px;
    margin-top: 25px;
}

.network-map::before,
.network-map::after {
    content: "";
    position: absolute;
    background: rgba(89, 146, 224, 0.15);
}

.network-map::before {
    width: 1px;
    height: 70%;
    left: 50%;
    top: 15%;
}

.network-map::after {
    height: 1px;
    width: 75%;
    left: 12.5%;
    top: 50%;
}

.center-node {
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 145px;
    height: 145px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 30% 25%, #183c69, #0c2038);
    border: 1px solid rgba(111, 168, 243, 0.3);
    box-shadow:
        0 0 0 12px rgba(57, 115, 195, 0.05),
        0 0 55px rgba(37, 99, 235, 0.18);
}

.center-logo {
    color: white;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
}

.center-node span {
    color: #718daf;
    font-size: 9px;
    margin-top: 2px;
}

.service-node {
    position: absolute;
    z-index: 4;
    min-width: 145px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(16, 41, 70, 0.9);
    border: 1px solid rgba(93, 137, 193, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.service-node strong,
.service-node span {
    display: block;
}

.service-node strong {
    color: #dce9f8;
    font-size: 11px;
}

.service-node span {
    color: #6380a3;
    font-size: 8px;
}

.node-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(45, 107, 197, 0.16);
    color: #6fa8f3;
}

.node-one {
    left: 0;
    top: 18%;
}

.node-two {
    right: 0;
    top: 18%;
}

.node-three {
    left: 0;
    bottom: 13%;
}

.node-four {
    right: 0;
    bottom: 13%;
}

.panel-footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    color: #557394;
    font-size: 9px;
    letter-spacing: 0.4px;
}

.panel-footer b {
    color: #2f6fc7;
}


/* COMMON SECTIONS */

.section {
    padding: 110px 0;
}

.section-heading {
    max-width: 710px;
    margin-bottom: 55px;
}

.section-tag {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.section-heading h2,
.solutions-content h2,
.about-wrapper h2,
.cta-box h2 {
    color: var(--dark);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.13;
    letter-spacing: -1.8px;
}

.section-heading p {
    margin-top: 18px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}


/* SERVICES */

.services-section {
    background: white;
}

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

.service-card {
    position: relative;
    min-height: 440px;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #c9daf7;
    box-shadow: 0 24px 55px rgba(31, 55, 90, 0.09);
}

.featured-card {
    background: linear-gradient(160deg, #f8fbff, #ffffff);
    border-color: #d8e5f8;
}

.service-number {
    position: absolute;
    right: 27px;
    top: 25px;
    font-size: 11px;
    color: #b2bdca;
    font-weight: 700;
}

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #edf4ff;
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 27px;
}

.service-card h3 {
    max-width: 290px;
    color: var(--dark);
    font-size: 20px;
    line-height: 1.4;
}

.service-card > p {
    margin-top: 15px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.service-card ul {
    list-style: none;
    margin-top: 22px;
}

.service-card li {
    padding: 6px 0;
    color: #4b5b70;
    font-size: 12px;
}

.service-card li::before {
    content: "✓";
    margin-right: 8px;
    color: var(--primary);
    font-weight: 800;
}

.text-link {
    display: inline-block;
    margin-top: 23px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}


/* SOLUTIONS */

.solutions-section {
    background: var(--light);
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 90px;
    align-items: center;
}

.solutions-content > p {
    margin-top: 22px;
    max-width: 600px;
    color: var(--muted);
    line-height: 1.85;
}

.solution-list {
    margin-top: 40px;
}

.solution-item {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 18px;
    padding: 20px 0;
    border-top: 1px solid #dde4ee;
}

.solution-item > span {
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
}

.solution-item strong {
    color: var(--dark);
    font-size: 15px;
}

.solution-item p {
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px;
}

.stats-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.stat-box {
    min-height: 180px;
    border-radius: 18px;
    padding: 27px;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.stat-box.wide {
    grid-column: 1 / -1;
    min-height: 155px;
    background: var(--primary);
}

.stat-box strong {
    color: white;
    font-size: 38px;
    line-height: 1;
}

.stat-box span {
    color: #8fa4bf;
    font-size: 11px;
    margin-top: 10px;
}

.stat-box.wide span {
    color: #d9e6ff;
}


/* ABOUT */

.about-section {
    border-top: 1px solid var(--border);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 90px;
}

.about-text {
    padding-top: 32px;
}

.about-text p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 17px;
}


/* CTA */

.cta-section {
    padding: 40px 0 100px;
}

.cta-box {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    padding: 55px;
    border-radius: 25px;
    background:
        linear-gradient(130deg, #0b1b30, #12335b);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.cta-box::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(55, 123, 223, 0.25);
    filter: blur(40px);
    right: -80px;
    top: -120px;
}

.light-tag {
    color: #77aaf1;
}

.cta-box h2 {
    color: white;
    max-width: 650px;
}

.cta-box p {
    margin-top: 15px;
    color: #9fb2ca;
    max-width: 600px;
}

.cta-actions {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.btn-light {
    background: white;
    color: var(--dark);
    border-color: white;
}


/* FOOTER */

.site-footer {
    background: #06101d;
    padding: 75px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 60px;
}

.footer-logo .brand-mark {
    color: white;
}

.footer-logo .brand-country {
    color: #778ca6;
}

.footer-brand p {
    margin-top: 17px;
    max-width: 280px;
    color: #6e829a;
    font-size: 12px;
}

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

.footer-links strong {
    color: #dbe5f2;
    font-size: 12px;
    margin-bottom: 7px;
}

.footer-links a,
.footer-links span {
    color: #71869e;
    font-size: 11px;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 23px;
    border-top: 1px solid #132235;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #52677e;
    font-size: 10px;
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .main-nav {
        display: none;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-grid,
    .solutions-grid,
    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 60px;
    }

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

    .service-card {
        min-height: auto;
    }

    .solutions-grid,
    .about-wrapper {
        gap: 45px;
    }

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


@media (max-width: 620px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .site-header .btn-small {
        display: none;
    }

    .nav-wrapper {
        min-height: 68px;
    }

    .hero {
        padding: 65px 0 70px;
    }

    .hero h1 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-points {
        gap: 14px;
        justify-content: space-between;
    }

    .hero-points strong {
        font-size: 11px;
    }

    .hero-points span {
        font-size: 8px;
    }

    .tech-panel {
        min-height: 430px;
        padding: 20px;
    }

    .network-map {
        height: 300px;
    }

    .center-node {
        width: 115px;
        height: 115px;
    }

    .center-logo {
        font-size: 23px;
    }

    .service-node {
        min-width: 105px;
        padding: 9px;
    }

    .service-node .node-icon {
        display: none;
    }

    .section {
        padding: 75px 0;
    }

    .service-card {
        padding: 27px;
    }

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

    .stat-box.wide {
        grid-column: auto;
    }

    .cta-section {
        padding-bottom: 70px;
    }

    .cta-box {
        padding: 35px 25px;
        flex-direction: column;
        align-items: flex-start;
    }

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

    .footer-bottom {
        flex-direction: column;
    }
}
/* =========================================================
   IXIA MULTI-PAGE WEBSITE - ADDITIONAL HOME STYLES
   ========================================================= */

/* ACTIVE NAVIGATION */

.main-nav a.active {
    color: var(--primary);
    position: relative;
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    border-radius: 10px;
    background: var(--primary);
}


/* HOME SERVICES - VIEW ALL BUTTON */

.services-view-all {
    margin-top: 38px;
    text-align: center;
}


/* HOME BUSINESS SOLUTIONS PREVIEW */

.home-solutions {
    background: #ffffff;
}

.home-solutions-wrapper {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 90px;
    align-items: center;
}

.home-solutions-wrapper h2 {
    max-width: 650px;
    color: var(--dark);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.13;
    letter-spacing: -1.8px;
}

.home-solutions-wrapper p {
    color: var(--muted);
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 20px;
}


/* FOOTER BRAND PHILOSOPHY */

.footer-philosophy {
    margin-top: 20px;
    color: #4f6f95;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}


/* TABLET RESPONSIVE */

@media (max-width: 950px) {
    .home-solutions-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* MOBILE RESPONSIVE */

@media (max-width: 620px) {
    .home-solutions-wrapper {
        gap: 22px;
    }

    .home-solutions-wrapper h2 {
        font-size: 34px;
        letter-spacing: -1.3px;
    }

    .services-view-all .btn {
        width: 100%;
    }
}


/* =========================================================
   IXIA VISUAL SYSTEM V2
   Premium light + indigo + cyan
   This override layer intentionally comes last.
   ========================================================= */

:root {
    --primary: #4f46e5;
    --primary-light: #818cf8;
    --dark: #0f172a;
    --dark-soft: #172554;
    --text: #1e293b;
    --muted: #64748b;
    --light: #f8fafc;
    --border: #e2e8f0;
    --white: #ffffff;
}

/* GLOBAL */
body {
    color: var(--text);
    background: #ffffff;
}

.site-header {
    background: rgba(255,255,255,.88);
    border-bottom: 1px solid rgba(226,232,240,.85);
    box-shadow: 0 8px 30px rgba(15,23,42,.035);
}

.brand-mark {
    color: #111827;
}

.main-nav a {
    color: #475569;
}

.main-nav a:hover,
.main-nav a.active {
    color: #4f46e5;
}

.main-nav a.active::after {
    background: linear-gradient(90deg,#4f46e5,#0ea5e9);
}

.btn {
    border: 0;
    background: linear-gradient(135deg,#4f46e5,#2563eb 55%,#0ea5e9);
    box-shadow: 0 10px 25px rgba(79,70,229,.16);
}

.btn:hover {
    box-shadow: 0 16px 34px rgba(79,70,229,.24);
}

.btn-outline {
    background: #ffffff;
    color: #334155;
    border: 1px solid #cbd5e1;
    box-shadow: none;
}

.btn-outline:hover {
    color: #4f46e5;
    border-color: #818cf8;
    background: #f8faff;
}

/* HERO */
.hero {
    background:
        radial-gradient(circle at 83% 15%, rgba(14,165,233,.15), transparent 27%),
        radial-gradient(circle at 62% 8%, rgba(99,102,241,.13), transparent 29%),
        linear-gradient(135deg,#ffffff 0%,#f8faff 48%,#eef7ff 100%);
}

.hero::before {
    background-image:
        linear-gradient(rgba(79,70,229,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14,165,233,.035) 1px, transparent 1px);
}

.hero-glow-one {
    background: rgba(14,165,233,.10);
}

.hero-glow-two {
    background: rgba(99,102,241,.09);
}

.eyebrow {
    color: #4338ca;
    background: rgba(238,242,255,.9);
    border-color: #c7d2fe;
}

.hero h1 {
    color: #0f172a;
}

.hero h1 span {
    background: linear-gradient(90deg,#4f46e5 0%,#2563eb 52%,#0ea5e9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text {
    color: #64748b;
}

/* HERO TECHNOLOGY PANEL */
.tech-panel {
    background:
        radial-gradient(circle at 82% 18%,rgba(14,165,233,.18),transparent 28%),
        radial-gradient(circle at 20% 80%,rgba(99,102,241,.16),transparent 30%),
        linear-gradient(145deg,#101b3a,#102a4b 60%,#0b223c);
    box-shadow:
        0 35px 80px rgba(30,41,59,.20),
        0 1px 0 rgba(255,255,255,.08) inset;
}

.center-node {
    background: radial-gradient(circle at 30% 25%,#3157a8,#15284e 62%,#101d38);
    border-color: rgba(129,140,248,.42);
    box-shadow:
        0 0 0 12px rgba(99,102,241,.06),
        0 0 60px rgba(14,165,233,.20);
}

.service-node {
    background: rgba(18,38,70,.82);
    border-color: rgba(125,211,252,.18);
    backdrop-filter: blur(10px);
}

.node-icon {
    background: rgba(99,102,241,.18);
    color: #7dd3fc;
}

/* SECTIONS */
.section-tag {
    color: #4f46e5;
}

.section-heading h2,
.solutions-content h2,
.about-wrapper h2,
.home-solutions-wrapper h2 {
    color: #0f172a;
}

.services-section {
    background:
        linear-gradient(180deg,#ffffff 0%,#fbfdff 100%);
}

.service-card {
    border-color: #e2e8f0;
    box-shadow: 0 8px 28px rgba(15,23,42,.035);
}

.service-card:hover {
    border-color: #c7d2fe;
    box-shadow: 0 24px 55px rgba(79,70,229,.10);
}

.featured-card {
    background:
        radial-gradient(circle at 90% 5%,rgba(14,165,233,.08),transparent 30%),
        linear-gradient(155deg,#f7f8ff,#ffffff);
    border-color: #c7d2fe;
}

.service-icon {
    background: linear-gradient(135deg,#eef2ff,#e0f2fe);
    color: #4f46e5;
}

.text-link {
    color: #4f46e5;
}

/* WHY IXIA */
.solutions-section {
    background:
        radial-gradient(circle at 85% 10%,rgba(14,165,233,.09),transparent 25%),
        linear-gradient(135deg,#f8faff,#f1f5ff 55%,#eef9ff);
}

.stat-box {
    background: linear-gradient(145deg,#172554,#16213f);
    box-shadow: 0 18px 45px rgba(30,41,59,.10);
}

.stat-box.wide {
    background: linear-gradient(135deg,#4f46e5,#2563eb 58%,#0ea5e9);
}

.home-solutions {
    background: #ffffff;
}

/* CTA */
.cta-box {
    background:
        radial-gradient(circle at 85% 15%,rgba(125,211,252,.20),transparent 28%),
        linear-gradient(125deg,#312e81 0%,#4338ca 38%,#2563eb 72%,#0284c7 100%);
    box-shadow: 0 28px 65px rgba(37,99,235,.18);
}

.cta-box p {
    color: #dbeafe;
}

.light-tag {
    color: #bae6fd;
}

.btn-light {
    background: #ffffff;
    color: #312e81;
    box-shadow: 0 12px 30px rgba(15,23,42,.12);
}

/* FOOTER - LARGER, BRIGHTER, MORE INVITING */
.site-footer {
    background:
        radial-gradient(circle at 15% 0%,rgba(79,70,229,.14),transparent 26%),
        linear-gradient(135deg,#111827,#0f172a 58%,#101b32);
    padding: 78px 0 30px;
}

.footer-grid {
    gap: 64px;
}

.footer-logo .brand-mark {
    color: #ffffff;
    font-size: 28px;
}

.footer-logo .brand-country {
    color: #93c5fd;
    font-size: 13px;
}

.footer-brand p {
    max-width: 330px;
    color: #b6c2d3;
    font-size: 15px;
    line-height: 1.75;
    margin-top: 20px;
}

.footer-philosophy {
    color: #7dd3fc;
    font-size: 12px;
    line-height: 1.6;
    margin-top: 22px;
}

.footer-links {
    gap: 13px;
}

.footer-links strong {
    color: #f8fafc;
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-links a,
.footer-links span {
    color: #a9b8cc;
    font-size: 14px;
    line-height: 1.6;
    transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover {
    color: #7dd3fc;
    transform: translateX(2px);
}

.footer-bottom {
    margin-top: 62px;
    padding-top: 26px;
    border-top-color: rgba(148,163,184,.18);
    color: #8091a7;
    font-size: 12px;
}

/* TABLET */
@media (max-width: 950px) {
    .footer-grid {
        gap: 46px;
    }
}

/* MOBILE */
@media (max-width: 620px) {
    .footer-brand p {
        font-size: 14px;
    }

    .footer-links strong {
        font-size: 15px;
    }

    .footer-links a,
    .footer-links span {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 11px;
    }
}


/* =========================================================
   IXIA V2.1 - TYPOGRAPHY REFINEMENT
   Slightly larger text for improved readability
   ========================================================= */

body {
    font-size: 16px;
}

.main-nav a {
    font-size: 15px;
}

.brand-country {
    font-size: 13px;
}

.eyebrow {
    font-size: 13px;
}

.hero-text {
    font-size: 19px;
}

.hero-points strong {
    font-size: 15px;
}

.hero-points span {
    font-size: 12px;
}

.section-tag {
    font-size: 12px;
}

.section-heading p {
    font-size: 17px;
}

.service-card > p {
    font-size: 15px;
}

.service-card li {
    font-size: 14px;
}

.text-link {
    font-size: 14px;
}

.solutions-content > p {
    font-size: 16px;
}

.solution-item strong {
    font-size: 16px;
}

.solution-item p {
    font-size: 14px;
}

.stat-box span {
    font-size: 13px;
}

.home-solutions-wrapper p {
    font-size: 16px;
}

.cta-box p {
    font-size: 16px;
    line-height: 1.8;
}

.footer-brand p {
    font-size: 16px;
}

.footer-philosophy {
    font-size: 13px;
}

.footer-links strong {
    font-size: 16px;
}

.footer-links a,
.footer-links span {
    font-size: 15px;
}

.footer-bottom {
    font-size: 13px;
}

@media (max-width: 620px) {
    .hero-text {
        font-size: 17px;
    }

    .section-heading p,
    .home-solutions-wrapper p,
    .solutions-content > p,
    .cta-box p {
        font-size: 15px;
    }

    .service-card > p {
        font-size: 14px;
    }

    .service-card li,
    .text-link {
        font-size: 13px;
    }

    .footer-brand p {
        font-size: 15px;
    }

    .footer-links a,
    .footer-links span {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}


/* =========================================================
   IXIA V2.2 - SERVICES PAGE
   ========================================================= */

.services-page-hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 110px;
    background:
        radial-gradient(circle at 86% 12%, rgba(14,165,233,.16), transparent 28%),
        radial-gradient(circle at 58% 2%, rgba(99,102,241,.13), transparent 30%),
        linear-gradient(135deg,#ffffff 0%,#f8faff 48%,#eef7ff 100%);
}

.services-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(79,70,229,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14,165,233,.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.services-hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(20px);
}

.services-glow-one {
    width: 360px;
    height: 360px;
    right: -100px;
    top: -100px;
    background: rgba(14,165,233,.09);
}

.services-glow-two {
    width: 300px;
    height: 300px;
    left: 38%;
    bottom: -190px;
    background: rgba(99,102,241,.08);
}

.services-hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .75fr;
    gap: 85px;
    align-items: center;
}

.services-hero-content h1 {
    max-width: 720px;
    color: #0f172a;
    font-size: clamp(48px,5vw,70px);
    line-height: 1.04;
    letter-spacing: -3.2px;
    font-weight: 800;
}

.services-hero-content h1 span {
    display: block;
    background: linear-gradient(90deg,#4f46e5,#2563eb 52%,#0ea5e9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.services-hero-content > p {
    max-width: 660px;
    margin-top: 27px;
    color: #64748b;
    font-size: 18px;
    line-height: 1.85;
}

.services-overview-card {
    padding: 30px;
    border-radius: 25px;
    background:
        radial-gradient(circle at 85% 10%,rgba(14,165,233,.18),transparent 30%),
        linear-gradient(145deg,#101b3a,#102a4b 60%,#0b223c);
    box-shadow: 0 35px 80px rgba(30,41,59,.18);
}

.overview-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(148,163,184,.14);
    color: #7f9abd;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.overview-status {
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    color: #a8bad1;
    font-size: 10px;
    letter-spacing: 0;
}

.overview-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 10px rgba(52,211,153,.8);
}

.overview-service {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid rgba(148,163,184,.12);
}

.overview-number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(99,102,241,.14);
    border: 1px solid rgba(125,211,252,.12);
    color: #7dd3fc;
    font-size: 12px;
    font-weight: 800;
}

.overview-service strong {
    display: block;
    color: #f8fafc;
    font-size: 17px;
}

.overview-service span {
    display: block;
    margin-top: 3px;
    color: #91a6c0;
    font-size: 13px;
}

.overview-bottom {
    padding-top: 22px;
    color: #6f8dad;
    font-size: 11px;
    text-align: center;
}

/* INTRO */
.services-intro {
    background: #ffffff;
}

.services-intro-grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 90px;
    align-items: start;
}

.services-intro-grid h2 {
    max-width: 620px;
    color: #0f172a;
    font-size: clamp(36px,4vw,50px);
    line-height: 1.13;
    letter-spacing: -1.9px;
}

.services-intro-text p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
}

/* DETAIL CARDS */
.services-detail-section {
    background:
        radial-gradient(circle at 92% 4%,rgba(14,165,233,.07),transparent 22%),
        #f8fafc;
}

.service-detail-card {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 60px;
    margin-top: 28px;
    padding: 48px;
    border: 1px solid #e2e8f0;
    border-radius: 26px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 12px 36px rgba(15,23,42,.045);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-detail-card:hover {
    transform: translateY(-4px);
    border-color: #c7d2fe;
    box-shadow: 0 25px 60px rgba(79,70,229,.08);
}

.service-detail-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.service-detail-number {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 800;
}

.service-detail-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: linear-gradient(135deg,#eef2ff,#e0f2fe);
    color: #4f46e5;
    font-size: 23px;
}

.service-category {
    color: #4f46e5;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.service-detail-main h3 {
    max-width: 440px;
    margin-top: 12px;
    color: #0f172a;
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -1.2px;
}

.service-detail-main > p {
    max-width: 500px;
    margin: 20px 0 28px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.85;
}

.service-detail-features {
    padding: 30px;
    border-radius: 20px;
    background: linear-gradient(145deg,#f8faff,#f6fbff);
    border: 1px solid #e5eaf5;
}

.feature-heading {
    margin-bottom: 22px;
    color: #334155;
    font-size: 13px;
    font-weight: 800;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.feature-item {
    min-height: 170px;
    padding: 22px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e7ebf2;
}

.feature-item > span {
    color: #818cf8;
    font-size: 10px;
    font-weight: 800;
}

.feature-item strong {
    display: block;
    margin-top: 13px;
    color: #172033;
    font-size: 15px;
}

.feature-item p {
    margin-top: 8px;
    color: #718096;
    font-size: 13px;
    line-height: 1.7;
}

/* APPROACH */
.service-approach-section {
    background: #ffffff;
}

.service-approach-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
    align-items: start;
}

.approach-heading h2 {
    max-width: 570px;
    color: #0f172a;
    font-size: clamp(36px,4vw,50px);
    line-height: 1.13;
    letter-spacing: -1.9px;
}

.approach-heading > p {
    max-width: 520px;
    margin-top: 20px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.85;
}

.approach-steps {
    border-top: 1px solid #e2e8f0;
}

.approach-step {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #e2e8f0;
}

.approach-step > span {
    color: #4f46e5;
    font-size: 12px;
    font-weight: 800;
}

.approach-step strong {
    color: #172033;
    font-size: 17px;
}

.approach-step p {
    max-width: 540px;
    margin-top: 5px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
}

/* RESPONSIVE */
@media (max-width: 950px) {
    .services-page-hero {
        padding: 80px 0;
    }

    .services-hero-wrapper,
    .services-intro-grid,
    .service-detail-card,
    .service-approach-grid {
        grid-template-columns: 1fr;
    }

    .services-hero-wrapper,
    .services-intro-grid,
    .service-approach-grid {
        gap: 50px;
    }

    .service-detail-card {
        gap: 35px;
    }
}

@media (max-width: 620px) {
    .services-page-hero {
        padding: 65px 0 70px;
    }

    .services-hero-content h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .services-hero-content > p {
        font-size: 16px;
    }

    .services-overview-card {
        padding: 22px;
    }

    .overview-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .service-detail-card {
        padding: 26px;
        border-radius: 20px;
    }

    .service-detail-main h3 {
        font-size: 29px;
    }

    .service-detail-features {
        padding: 18px;
    }

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

    .feature-item {
        min-height: auto;
    }

    .services-intro-grid,
    .service-approach-grid {
        gap: 30px;
    }
}


/* =========================================================
   IXIA V2.3 - CLOUD PBX PAGE
   ========================================================= */

/* HERO */
.pbx-hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 110px;
    background:
        radial-gradient(circle at 86% 12%, rgba(14,165,233,.16), transparent 28%),
        radial-gradient(circle at 58% 2%, rgba(99,102,241,.13), transparent 30%),
        linear-gradient(135deg,#ffffff 0%,#f8faff 48%,#eef7ff 100%);
}

.pbx-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(79,70,229,.035) 1px, transparent 1px),
        linear-gradient(90deg,rgba(14,165,233,.035) 1px,transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.pbx-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(22px);
    pointer-events: none;
}

.pbx-glow-one {
    width: 390px;
    height: 390px;
    right: -110px;
    top: -100px;
    background: rgba(14,165,233,.10);
}

.pbx-glow-two {
    width: 310px;
    height: 310px;
    left: 38%;
    bottom: -190px;
    background: rgba(99,102,241,.08);
}

.pbx-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.04fr .86fr;
    gap: 80px;
    align-items: center;
}

.pbx-hero-content h1 {
    max-width: 720px;
    color: #0f172a;
    font-size: clamp(48px,5vw,70px);
    line-height: 1.04;
    letter-spacing: -3.2px;
    font-weight: 800;
}

.pbx-hero-content h1 span {
    display: block;
    background: linear-gradient(90deg,#4f46e5,#2563eb 52%,#0ea5e9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pbx-hero-content > p {
    max-width: 670px;
    margin-top: 27px;
    color: #64748b;
    font-size: 18px;
    line-height: 1.85;
}

.pbx-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 34px;
}

.pbx-hero-points span {
    color: #475569;
    font-size: 13px;
    font-weight: 600;
}

/* PBX DASHBOARD */
.pbx-dashboard {
    padding: 28px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 85% 10%,rgba(14,165,233,.18),transparent 30%),
        radial-gradient(circle at 15% 85%,rgba(99,102,241,.15),transparent 32%),
        linear-gradient(145deg,#101b3a,#102a4b 60%,#0b223c);
    box-shadow: 0 35px 80px rgba(30,41,59,.20);
}

.pbx-dashboard-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(148,163,184,.14);
}

.pbx-dashboard-top > div:first-child span,
.pbx-dashboard-top > div:first-child strong {
    display: block;
}

.pbx-dashboard-top > div:first-child span {
    color: #7391b6;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.pbx-dashboard-top > div:first-child strong {
    margin-top: 5px;
    color: #f8fafc;
    font-size: 17px;
}

.pbx-live {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #a8bad1;
    font-size: 10px;
    white-space: nowrap;
}

.pbx-live i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 10px rgba(52,211,153,.8);
}

.pbx-call-card {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 15px;
    align-items: center;
    margin-top: 24px;
    padding: 20px;
    border-radius: 17px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(125,211,252,.13);
}

.pbx-call-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(99,102,241,.17);
    color: #7dd3fc;
    font-size: 20px;
}

.pbx-call-info span,
.pbx-call-info strong,
.pbx-call-info small {
    display: block;
}

.pbx-call-info span {
    color: #7592b5;
    font-size: 10px;
}

.pbx-call-info strong {
    margin-top: 2px;
    color: #f8fafc;
    font-size: 15px;
}

.pbx-call-info small {
    margin-top: 2px;
    color: #8da2bd;
    font-size: 10px;
}

.pbx-call-status {
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(52,211,153,.12);
    color: #6ee7b7;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .7px;
}

.pbx-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 14px;
}

.pbx-mini-card {
    padding: 18px;
    border-radius: 15px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(148,163,184,.10);
}

.pbx-mini-card span,
.pbx-mini-card strong,
.pbx-mini-card small {
    display: block;
}

.pbx-mini-card span {
    color: #6887aa;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .9px;
}

.pbx-mini-card strong {
    margin-top: 8px;
    color: #e8f0fb;
    font-size: 14px;
}

.pbx-mini-card small {
    margin-top: 2px;
    color: #7d95b2;
    font-size: 10px;
}

.pbx-dashboard-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(148,163,184,.12);
    color: #6d88a8;
    font-size: 10px;
}

.pbx-secure {
    color: #6ee7b7;
}

/* INTRO */
.pbx-intro {
    background: #ffffff;
}

.pbx-intro-grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 90px;
    align-items: start;
}

.pbx-intro-grid h2,
.pbx-how-content h2,
.pbx-use-grid h2 {
    max-width: 650px;
    color: #0f172a;
    font-size: clamp(36px,4vw,50px);
    line-height: 1.13;
    letter-spacing: -1.9px;
}

.pbx-intro-content p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
}

/* FEATURES */
.pbx-features-section {
    background:
        radial-gradient(circle at 92% 4%,rgba(14,165,233,.07),transparent 22%),
        #f8fafc;
}

.pbx-feature-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.pbx-feature-card {
    min-height: 250px;
    padding: 30px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(15,23,42,.04);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.pbx-feature-card:hover {
    transform: translateY(-5px);
    border-color: #c7d2fe;
    box-shadow: 0 22px 50px rgba(79,70,229,.09);
}

.pbx-feature-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: linear-gradient(135deg,#eef2ff,#e0f2fe);
    color: #4f46e5;
    font-size: 11px;
    font-weight: 800;
}

.pbx-feature-card h3 {
    margin-top: 24px;
    color: #172033;
    font-size: 18px;
}

.pbx-feature-card p {
    margin-top: 11px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
}

/* HOW IT WORKS */
.pbx-how-section {
    background: #ffffff;
}

.pbx-how-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.pbx-how-content > p {
    max-width: 560px;
    margin: 20px 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.85;
}

.pbx-flow {
    padding: 34px;
    border-radius: 24px;
    background: linear-gradient(145deg,#f8faff,#f4f9ff);
    border: 1px solid #e1e8f3;
}

.pbx-flow-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 17px;
    align-items: center;
    padding: 18px;
    border-radius: 15px;
    background: #ffffff;
    border: 1px solid #e6ebf2;
}

.pbx-flow-item > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #eef2ff;
    color: #4f46e5;
    font-size: 11px;
    font-weight: 800;
}

.pbx-flow-item strong {
    color: #172033;
    font-size: 15px;
}

.pbx-flow-item p {
    margin-top: 3px;
    color: #718096;
    font-size: 12px;
    line-height: 1.6;
}

.pbx-flow-line {
    width: 2px;
    height: 18px;
    margin-left: 38px;
    background: linear-gradient(#c7d2fe,#bae6fd);
}

.active-flow {
    border-color: #a5b4fc;
    box-shadow: 0 12px 30px rgba(79,70,229,.07);
}

/* BENEFITS */
.pbx-benefits-section {
    background:
        linear-gradient(135deg,#f8faff,#f1f5ff 55%,#eef9ff);
}

.pbx-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

.pbx-benefit {
    min-height: 235px;
    padding: 28px;
    border-radius: 19px;
    background: rgba(255,255,255,.82);
    border: 1px solid #e0e7f2;
}

.pbx-benefit > span {
    color: #6366f1;
    font-size: 11px;
    font-weight: 800;
}

.pbx-benefit h3 {
    margin-top: 28px;
    color: #172033;
    font-size: 18px;
}

.pbx-benefit p {
    margin-top: 10px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
}

/* USE CASES */
.pbx-use-section {
    background: #ffffff;
}

.pbx-use-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 85px;
    align-items: start;
}

.pbx-use-grid > div:first-child > p {
    max-width: 520px;
    margin-top: 20px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.85;
}

.pbx-industry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.pbx-industry-grid > div {
    min-height: 125px;
    padding: 23px;
    border-radius: 17px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.pbx-industry-grid strong,
.pbx-industry-grid span {
    display: block;
}

.pbx-industry-grid strong {
    color: #172033;
    font-size: 15px;
}

.pbx-industry-grid span {
    margin-top: 7px;
    color: #718096;
    font-size: 13px;
    line-height: 1.65;
}

/* PROCESS */
.pbx-process-section {
    background:
        radial-gradient(circle at 90% 8%,rgba(14,165,233,.07),transparent 22%),
        #f8fafc;
}

.pbx-process-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 13px;
}

.pbx-process-item {
    position: relative;
    min-height: 220px;
    padding: 25px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.pbx-process-item > span {
    color: #6366f1;
    font-size: 11px;
    font-weight: 800;
}

.pbx-process-item strong {
    display: block;
    margin-top: 28px;
    color: #172033;
    font-size: 16px;
}

.pbx-process-item p {
    margin-top: 9px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.7;
}

/* TABLET */
@media (max-width: 950px) {
    .pbx-hero {
        padding: 80px 0;
    }

    .pbx-hero-grid,
    .pbx-intro-grid,
    .pbx-how-grid,
    .pbx-use-grid {
        grid-template-columns: 1fr;
    }

    .pbx-hero-grid,
    .pbx-intro-grid,
    .pbx-how-grid,
    .pbx-use-grid {
        gap: 50px;
    }

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

    .pbx-benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

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

/* MOBILE */
@media (max-width: 620px) {
    .pbx-hero {
        padding: 65px 0 70px;
    }

    .pbx-hero-content h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .pbx-hero-content > p {
        font-size: 16px;
    }

    .pbx-hero-points {
        flex-direction: column;
        gap: 9px;
    }

    .pbx-dashboard {
        padding: 20px;
    }

    .pbx-dashboard-top {
        flex-direction: column;
    }

    .pbx-call-card {
        grid-template-columns: 44px 1fr;
    }

    .pbx-call-status {
        grid-column: 2;
        width: max-content;
    }

    .pbx-mini-grid,
    .pbx-feature-grid,
    .pbx-benefits-grid,
    .pbx-industry-grid,
    .pbx-process-grid {
        grid-template-columns: 1fr;
    }

    .pbx-dashboard-bottom {
        flex-direction: column;
    }

    .pbx-feature-card,
    .pbx-benefit,
    .pbx-process-item {
        min-height: auto;
    }

    .pbx-flow {
        padding: 18px;
    }

    .pbx-flow-item {
        padding: 15px;
    }
}
