:root {
    --bg: #070e1e;
    --bg-2: #04152a;
    --panel: #0b1224;
    --panel-border: rgba(255, 255, 255, 0.18);
    --teal: #33e8c9;
    --teal-soft: #22c9ae;
    --purple: #9d8bff;
    --text-main: #eef2fa;
    --text-muted: #8b97ad;
    --text-faint: #5c6a82;
    --white-border: rgba(16, 24, 40, 0.1);
    --brand-navy: #0e2a6b;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.display-font {
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.015em;
}

.eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 14px;
    display: block;
}

.text-muted-custom {
    color: var(--text-muted);
}

a {
    text-decoration: none;
}

.nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    #background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--white-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.10);
    transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.nav-wrap.is-scrolled {
    background: rgba(11, 30, 42, 1.0);
    border-color: rgba(16, 24, 40, 0.12);
    box-shadow: 0 16px 40px rgba(16, 24, 40, 0.16);
}

.nav-pill {
    max-width: 1520px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 13px 28px;
}

.nav-pill>a:first-child {
    justify-self: start;
}

.nav-pill>.nav-links {
    justify-self: center;
}

.nav-pill>div:last-child {
    justify-self: end;
}

.logo-img {
    height: 52px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: #33e8c9;
    font-size: 1rem;
    margin: 0 20px;
    font-weight: 500;
    transition: color .2s ease;
}

.nav-links a:hover {
    color: var(--teal-soft);
}

.nav-links a.active {
    color: var(--teal-soft);
    font-weight: 700;
}

.nav-pill .btn-teal {
    padding: 9px 24px;
    font-size: 1rem;
}

.navbar-toggler-amps {
    #background: transparent;
    border: 1px solid rgba(16, 24, 40, 0.15);
    border-radius: 8px;
    padding: 7px 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler-amps.d-lg-none {
    display: inline-flex;
}

.navbar-toggler-amps i {
    font-size: 1.5rem;
    line-height: 1;
    color: #16233c;
}

.mobile-nav-panel {
    max-width: 100%;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    background: #ffffff;
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--white-border);
    border-radius: 0;
}

.mobile-nav-panel.open {
    max-height: 400px;
    box-shadow: 0 16px 40px rgba(16, 24, 40, 0.16);
}

.mobile-nav-panel .mnp-inner {
    max-width: 1520px;
    margin: 0 auto;
    padding: 14px 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-panel a {
    color: #26324a;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 13px 4px;
    border-bottom: 1px solid rgba(16, 24, 40, 0.08);
}

.mobile-nav-panel a:last-of-type {
    border-bottom: none;
}

.mobile-nav-panel a:hover {
    color: var(--teal-soft);
}

.mobile-nav-panel .btn-teal {
    margin-top: 10px;
    text-align: center;
    padding: 12px 26px;
    font-size: 1rem;
}

.btn-teal {
    background: var(--teal);
    color: #04211c;
    border: none;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.92rem;
    transition: all .2s ease;
    white-space: nowrap;
}

.btn-teal:hover {
    background: #4ff2d4;
    color: #04211c;
    box-shadow: 0 0 24px rgba(51, 232, 201, 0.35);
}

.btn-outline-amps {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.92rem;
    transition: all .2s ease;
}

.btn-outline-amps:hover {
    border-color: var(--teal);
    color: var(--teal);
}

/* Hero */
.hero-section {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    background:
        radial-gradient(ellipse 900px 500px at 15% 10%, rgba(45, 220, 180, 0.16), transparent 60%),
        radial-gradient(ellipse 900px 600px at 85% 30%, rgba(140, 100, 255, 0.20), transparent 60%),
        radial-gradient(ellipse 700px 500px at 60% 70%, rgba(90, 60, 200, 0.14), transparent 60%),
        var(--bg);
    overflow: hidden;
}

.hero-network-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.55;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 110px;
    padding-bottom: 70px;
    overflow: visible;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 22px;
    border: 2px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 26px;
}

.hero-badge span {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #eef2fa;
    font-weight: 600;
}

.hero-badge i {
    color: #eef2fa;
    font-size: 0.7rem;
}

.hero-content h1 {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.28;
    padding-top: 0.1em;
    padding-bottom: 0.1em;
    color: #fff;
    max-width: 820px;
    overflow: visible;
}

.gradient-text {
    background: linear-gradient(90deg, var(--teal) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    overflow: visible;
}

.teal-text {
    color: var(--teal);
}

.hero-content p.lead-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin-top: 22px;
    line-height: 1.6;
}

.hero-buttons {
    margin-top: 34px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.stats-wrap {
    position: relative;
    z-index: 3;
    padding-bottom: 56px;
}

.stats-bar {
    background: rgba(13, 21, 38, 0.78);
    border: 1px solid whitesmoke;
    border-radius: 26px;
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.stat-item {
    padding: 28px 32px;
    border-right: 1px solid whitesmoke;
    border-bottom: none;
    text-align: left;
}

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

.stat-item .num {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
}

.stat-item .label {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 8px;
    line-height: 1.4;
}

/* MARQUEE */
.marquee-strip {
    background: var(--bg-2);
    border-top: 1px solid rgb(207, 206, 206);
    border-bottom: 1px solid rgb(207, 206, 206);
    padding: 22px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    animation: scroll-marquee 28s linear infinite;
}

.marquee-track span.industry {
    color: #a7b2c7;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin: 0 26px;
}

.marquee-track span.dot {
    color: var(--teal);
    font-size: 0.7rem;
}

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

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

/* SECTIONS GENERAL */
.section {
    padding: 50px 0 50px 0;
    position: relative;
}

.inner-page-section {
    padding-top: 150px;
}

.pre-footer {
    padding-bottom: 56px;
}

.section-border-top {
    border-top: 1px solid rgb(207, 206, 206);
}

.section h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    #max-width: 560px;
}

.section p.section-desc {
    color: #a7b2c7;
    font-size: 1rem;
    #max-width: 560px;
    margin-top: 18px;
    line-height: 1.7;
}

.prose {
    color: #a7b2c7;
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 18px;
}

.prose.narrow {
    max-width: 100%;
}

/* GenAI section */
.genai-list {
    list-style: none;
    padding: 0;
    margin-top: 26px;
}

.genai-list li {
    color: #c9d2e2;
    font-size: 0.95rem;
    margin-bottom: 14px;
    padding-left: 22px;
    position: relative;
}

.genai-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--teal);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 7px;
}

.genai-visual {
    position: relative;
    background:
        radial-gradient(circle at 30% 25%, rgba(51, 232, 201, 0.28), transparent 55%),
        radial-gradient(circle at 75% 70%, rgba(157, 139, 255, 0.30), transparent 55%),
        linear-gradient(150deg, #101b32, #0a1120 70%);
    border: 1px solid rgba(120, 150, 200, 0.22);
    border-radius: 28px;
    padding: 30px;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(20, 10, 60, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.genai-visual::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(51, 232, 201, 0.35), transparent 70%);
    top: -40px;
    left: -40px;
    filter: blur(10px);
}

.genai-visual::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(157, 139, 255, 0.35), transparent 70%);
    bottom: -50px;
    right: -30px;
    filter: blur(10px);
}

.node-diagram {
    width: 100%;
    max-width: 340px;
    position: relative;
    aspect-ratio: 1/1;
    z-index: 1;
}

.node-diagram svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.node-circle {
    fill: #152238;
    stroke: rgba(51, 232, 201, 0.55);
    stroke-width: 1.4;
    filter: drop-shadow(0 0 8px rgba(51, 232, 201, 0.35));
}

.node-circle.purple {
    stroke: rgba(157, 139, 255, 0.6);
    filter: drop-shadow(0 0 8px rgba(157, 139, 255, 0.4));
}

.node-circle.center {
    fill: url(#centerGrad);
    filter: drop-shadow(0 0 26px rgba(51, 232, 201, 0.75));
}

.node-line {
    stroke: rgba(150, 180, 230, 0.45);
    stroke-width: 1.1;
}

/* Services grid */
.service-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgb(207, 206, 206);
    border-radius: 24px;
    padding: 30px 28px;
    height: 100%;
    transition: all .25s ease;
}

.service-card:hover {
    border-color: rgba(51, 232, 201, 0.4);
    background: rgba(51, 232, 201, 0.02);
    transform: translateY(-3px);
}

.service-card .idx {
    color: var(--text-faint);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.service-card h4 {
    font-size: 1.08rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

/* Platform cards */
.platform-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--panel-border);
    border-radius: 24px;
    padding: 34px 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--purple));
    opacity: 0.85;
}

.platform-card .tag {
    color: var(--text-faint);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}

.platform-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.platform-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.platform-card .stack {
    color: var(--teal);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Team section */
.team-box {
    border: 1px solid rgb(207, 206, 206);
    border-radius: 22px;
    padding: 30px 26px;
    height: 100%;
    transition: all .25s ease;
}

.team-box:hover {
    border-color: rgba(51, 232, 201, 0.35);
    transform: translateY(-3px);
}

.team-box h5 {
    font-size: 1.02rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.team-box p {
    color: var(--text-muted);
    font-size: 0.87rem;
    line-height: 1.65;
    margin: 0;
}

/* Contact section */
.contact-section {
    background:
        radial-gradient(ellipse 700px 400px at 10% 20%, rgba(45, 220, 180, 0.10), transparent 60%),
        radial-gradient(ellipse 700px 400px at 90% 80%, rgba(140, 100, 255, 0.14), transparent 60%),
        var(--bg-2);
    border-top: 1px solid rgb(207, 206, 206);
}

.contact-section h2 {
    max-width: 460px;
}

.addr-block {
    margin-top: 14px;
}

.addr-block .addr-label {
    color: var(--teal);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}

.addr-block p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.55;
    margin: 0;
}

.contact-form-box {
    border: 1px solid rgb(207, 206, 206);
    border-radius: 28px;
    padding: 36px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.form-label-amps {
    color: var(--text-faint);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control-amps {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgb(207, 206, 206);
    color: #fff;
    border-radius: 25px;
    padding: 12px 16px;
    font-size: 0.92rem;
    width: 100%;
}

.form-control-amps::placeholder {
    color: var(--text-faint);
}

.form-control-amps:focus {
    outline: none;
    border-color: var(--teal);
    background: rgba(51, 232, 201, 0.03);
}

textarea.form-control-amps {
    resize: vertical;
    min-height: 90px;
}

.btn-send {
    background: var(--teal);
    color: #04211c;
    border: none;
    font-weight: 600;
    padding: 14px 0;
    width: 100%;
    border-radius: 32px;
    font-size: 0.95rem;
    transition: all .2s ease;
}

.btn-send:hover {
    background: #4ff2d4;
    box-shadow: 0 0 24px rgba(51, 232, 201, 0.3);
}

.section h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 14px;
}

.dot-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.dot-list li {
    color: #c9d2e2;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 14px;
    padding-left: 22px;
    position: relative;
}

.dot-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--teal);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

.content-row {
    display: flex;
    align-items: flex-start;
    gap: 52px;
    margin-top: 8px;
}

.content-row.reverse {
    flex-direction: row-reverse;
}

.content-row .content-text {
    flex: 1 1 48%;
    min-width: 280px;
}

.content-row .content-media {
    flex: 1 1 42%;
    min-width: 260px;
}

.content-image-card {
    #background: #ffffff;
    #border: 1px solid var(--panel-border);
    border-radius: 22px;
    padding: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.content-image-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 13px;
}

.automate-image-card {
    max-width: 640px;
    width: 100%;
}

.feature-trio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 36px;
}

.feature-card {
    border: 1px solid var(--panel-border);
    border-radius: 20px;
    padding: 28px 26px;
    background: rgba(255, 255, 255, 0.015);
    transition: all .25s ease;
}

.feature-card:hover {
    border-color: rgba(51, 232, 201, 0.35);
    transform: translateY(-3px);
}

.feature-card .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(51, 232, 201, 0.12);
    color: var(--teal);
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.feature-card h4 {
    color: #fff;
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

.why-detail-card {
    height: 100%;
}

.why-detail-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0;
}

.detail-block {
    padding: 48px 0;
    border-top: 1px solid var(--panel-border);
}

.detail-block:first-child {
    padding-top: 0;
    border-top: none;
}

.topic-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.topic-head .section-link {
    margin-bottom: 6px;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-weight: 600;
    font-size: 0.92rem;
    white-space: nowrap;
}

.section-link i {
    font-size: 0.85rem;
    transition: transform .2s ease;
}

.section-link:hover {
    color: #4ff2d4;
}

.section-link:hover i {
    transform: translateX(3px);
}

.cta-row {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.mini-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.mini-highlight {
    border: 1px solid var(--panel-border);
    border-radius: 20px;
    padding: 26px 24px;
    background: rgba(255, 255, 255, 0.015);
    transition: all .25s ease;
}

.mini-highlight:hover {
    border-color: rgba(51, 232, 201, 0.35);
    transform: translateY(-3px);
}

.mini-highlight .mh-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(157, 139, 255, 0.14);
    color: var(--purple);
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.mini-highlight h5 {
    font-size: 0.98rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.mini-highlight p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0 0 12px;
}

.mini-highlight .section-link {
    font-size: 0.82rem;
}

.block-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.block-head .block-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(51, 232, 201, 0.12);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.block-head h3 {
    margin-bottom: 0;
}

.team-box .tb-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(51, 232, 201, 0.12);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 16px;
}

.why-card {
    display: block;
    border: 1px solid rgb(207, 206, 206);
    border-radius: 22px;
    padding: 28px 26px;
    height: 100%;
    background: rgba(255, 255, 255, 0.015);
    transition: all .25s ease;
    color: inherit;
}

.why-card:hover {
    border-color: rgba(51, 232, 201, 0.4);
    background: rgba(51, 232, 201, 0.02);
    transform: translateY(-3px);
}

.why-card .why-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(51, 232, 201, 0.12);
    color: var(--teal);
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.why-card h5 {
    font-size: 1.02rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer-amps {
    background: rgb(6 22 44);
    border-top: 1px solid var(--white-border);
    padding: 34px 0;
}

.footer-amps .copyright {
    color: #667085;
    font-size: 0.82rem;
}

@media (max-width:991.98px) {
    .nav-pill {
        display: flex;
        justify-content: space-between;
        padding: 11px 18px;
    }

    .logo-img {
        height: 40px;
    }

    .hero-content {
        padding-top: 90px;
        padding-bottom: 40px;
    }

    .hero-badge {
        padding: 7px 16px;
        margin-bottom: 20px;
    }

    .hero-badge span {
        font-size: 0.64rem;
        letter-spacing: 0.16em;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p.lead-text {
        font-size: 1rem;
        max-width: 100%;
    }

    .stats-wrap {
        padding-bottom: 36px;
        margin-top: 28px;
    }

    .stat-item {
        border-bottom: 1px solid var(--panel-border);
        padding: 22px 22px;
    }

    .stat-item:nth-child(2n) {
        border-right: none;
    }

    .stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .section {
        padding: 70px 0;
    }

    .inner-page-section {
        padding-top: 120px;
    }

    .pre-footer {
        padding-bottom: 44px;
    }

    .genai-visual {
        margin-top: 40px;
    }

    .contact-form-box {
        padding: 28px 24px;
    }

    .content-row,
    .content-row.reverse {
        flex-direction: column;
        gap: 28px;
    }

    .content-row .content-text,
    .content-row .content-media {
        min-width: 100%;
    }

    .detail-block {
        padding: 36px 0;
    }

    .topic-head {
        align-items: flex-start;
    }

    .mini-highlights {
        margin-top: 26px;
    }

    .cta-row {
        margin-top: 28px;
        gap: 20px;
    }
}

@media (max-width:767.98px) {
    .hero-content h1 {
        font-size: 2.1rem;
    }

    .stat-item .num {
        font-size: 1.7rem;
    }
}

@media (max-width:575.98px) {
    .nav-pill {
        padding: 10px 14px;
    }

    .logo-img {
        height: 36px;
    }

    .hero-content {
        padding-top: 88px;
    }

    .hero-badge {
        padding: 6px 14px;
        gap: 8px;
    }

    .hero-badge span {
        font-size: 0.58rem;
        letter-spacing: 0.12em;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.16;
    }

    .hero-content p.lead-text {
        font-size: 0.92rem;
        line-height: 1.6;
        margin-top: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 26px;
    }

    .hero-buttons .btn-teal,
    .hero-buttons .btn-outline-amps {
        text-align: center;
        width: 100%;
    }

    .section h2 {
        font-size: 1.6rem;
    }

    .section {
        padding: 56px 0;
    }

    .inner-page-section {
        padding-top: 100px;
    }

    .pre-footer {
        padding-bottom: 36px;
    }

    .stat-item {
        padding: 20px 18px;
    }

    .stat-item .num {
        font-size: 1.5rem;
    }

    .stat-item .label {
        font-size: 0.78rem;
    }

    .stat-item {
        border-right: none !important;
    }

    .stat-item:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--panel-border);
    }

    .stat-item:last-child {
        border-bottom: none !important;
    }

    .genai-visual {
        min-height: auto;
        padding: 22px;
    }

    .node-diagram {
        max-width: 260px;
    }

    .contact-form-box {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .addr-block {
        margin-top: 18px;
    }

    .content-row,
    .content-row.reverse {
        flex-direction: column;
        gap: 22px;
    }

    .content-image-card {
        padding: 8px;
        border-radius: 16px;
    }

    .content-image-card img {
        border-radius: 10px;
    }

    .feature-trio {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 26px;
    }

    .feature-card {
        padding: 22px 20px;
    }

    .detail-block {
        padding: 30px 0;
    }

    .section h3 {
        font-size: 1.3rem;
    }

    .topic-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .mini-highlight {
        padding: 20px 20px;
    }

    .cta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-top: 24px;
    }

    .block-head {
        gap: 12px;
    }

    .block-head .block-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .why-card {
        padding: 22px 20px;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "heading"
        "form"
        "address";
    gap: 3rem;
}

.contact-grid .contact-heading-area {
    grid-area: heading;
}

.contact-grid .contact-form-col {
    grid-area: form;
}

.contact-grid .contact-addr-row {
    grid-area: address;
    margin-top: 0 !important;
}

@media (min-width:992px) {
    .contact-grid {
        grid-template-columns: 5fr 7fr;
        grid-template-areas:
            "heading form"
            "address form";
        align-items: start;
    }

    .contact-grid .contact-addr-row {
        margin-top: 1rem !important;
    }
}