:root {
    --bg-ink: #081627;
    --bg-midnight: #0f2a3f;
    --bg-slate: #17374d;
    --bg-paper: #f4f8fb;
    --bg-white: #ffffff;
    --text-dark: #0a1a2c;
    --text-muted: #4a6478;
    --text-light: #d7e5f4;
    --line: #dfe7ef;
    --brand-cyan: #3fc9cf;
    --brand-emerald: #5fd39f;
    --brand-gold: #f2c94c;
    --brand-alert: #ff8f67;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --shadow-soft: 0 18px 44px rgba(8, 22, 39, 0.16);
    --shadow-lift: 0 24px 60px rgba(8, 22, 39, 0.22);
    --transition: 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    width: min(1180px, 92vw);
    margin: 0 auto;
}

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

p {
    color: var(--text-muted);
}

h1, h2, h3 {
    font-family: 'Fraunces', 'Manrope', serif;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(215, 229, 244, 0.14);
    background: rgba(8, 22, 39, 0.82);
    backdrop-filter: blur(16px) saturate(140%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 76px;
}

.logo {
    color: #f4faff;
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1px;
}

.logo-accent {
    color: var(--brand-cyan);
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    list-style: none;
}

.nav-link {
    color: #cfe0f2;
    padding: 0.5rem 0.7rem;
    border-radius: 999px;
    font-size: 0.87rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: #06222f;
    background: linear-gradient(120deg, var(--brand-cyan), var(--brand-emerald));
}

.btn-nav {
    border: 1px solid rgba(95, 211, 159, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    border: 0;
    background: transparent;
}

.hamburger span {
    width: 26px;
    height: 3px;
    border-radius: 2px;
    background: #f4faff;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero */
.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 108px 0 88px;
    background: #0d2539;
}

.hero-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.55;
    filter: saturate(1.05);
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(8, 21, 35, 0.94) 10%, rgba(12, 39, 56, 0.75) 55%, rgba(18, 61, 78, 0.55) 100%),
        radial-gradient(circle at 82% 12%, rgba(63, 201, 207, 0.28), transparent 42%),
        radial-gradient(circle at 12% 92%, rgba(95, 211, 159, 0.22), transparent 46%);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.6rem;
    align-items: end;
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #2f8f92;
    margin-bottom: 0.6rem;
}

.eyebrow-light {
    color: var(--brand-cyan);
}

.badge {
    display: inline-block;
    margin-bottom: 1.1rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(95, 211, 159, 0.2);
    color: #d3fbe7;
    border: 1px solid rgba(95, 211, 159, 0.35);
}

.hero-content h1 {
    color: #f6fbff;
    font-size: clamp(2.3rem, 4.6vw, 4.1rem);
    margin-bottom: 1.1rem;
}

.hero-content > p {
    color: #d7e6f4;
    max-width: 58ch;
    font-size: 1.05rem;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0 1.7rem;
}

.chip {
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #eafcff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-buttons {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.btn {
    border: 0;
    border-radius: var(--radius-sm);
    padding: 0.92rem 1.3rem;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(130deg, var(--brand-cyan), var(--brand-emerald));
    color: #04222c;
    box-shadow: 0 12px 26px rgba(63, 201, 207, 0.28);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lift);
}

.btn-secondary {
    color: #f8fdff;
    border: 1px solid rgba(248, 253, 255, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
    background: rgba(248, 253, 255, 0.14);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.hero-panel {
    display: grid;
    gap: 1rem;
}

.status-banner {
    background: rgba(6, 16, 27, 0.66);
    border: 1px solid rgba(215, 229, 244, 0.22);
    border-radius: var(--radius-md);
    padding: 1.4rem;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(6px);
}

.status-label {
    color: #b9d0e8;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
    font-weight: 700;
}

.status-banner h2 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: 'Manrope', sans-serif;
}

.status-banner p {
    color: #d4e5f7;
}

.status-link {
    display: inline-block;
    margin-top: 0.9rem;
    color: var(--brand-cyan);
    font-weight: 700;
}

.status-warning {
    border-color: rgba(255, 143, 103, 0.7);
}

.status-critical {
    border-color: #ff6948;
    background: rgba(51, 16, 16, 0.72);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.2rem;
}

.hero-stats strong {
    color: #ffffff;
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
}

.hero-stats span {
    color: #cfe1f1;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Sections */
.section {
    position: relative;
    padding: 100px 0;
}

.section-light {
    background: #ffffff;
}

.section-muted {
    background: var(--bg-paper);
}

.section-dark,
.section-contact,
.ops-hero {
    position: relative;
    isolation: isolate;
    background: linear-gradient(150deg, #0e2537, #17435e 60%, #1f5872);
}

.section-dark .overlay,
.section-contact .overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(63, 201, 207, 0.22), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(95, 211, 159, 0.18), transparent 48%);
    pointer-events: none;
}

.section-dark h2,
.section-dark p,
.section-contact h2,
.section-contact p,
.section-contact a,
.ops-hero h1,
.ops-hero p {
    color: #f2f8ff;
}

.section-header {
    margin: 0 auto 3rem;
    max-width: 720px;
    text-align: center;
}

.section-header h2 {
    margin-bottom: 0.8rem;
    font-size: clamp(1.8rem, 3.1vw, 2.9rem);
}

/* Feature grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.feature-card {
    padding: 1.6rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #f9fcff;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(63, 201, 207, 0.4);
}

.feature-highlight {
    background: linear-gradient(160deg, #0f2a3f, #1c4a63);
    border-color: transparent;
}

.feature-highlight h3,
.feature-highlight p {
    color: #f1f9ff;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin-bottom: 1rem;
    background: rgba(63, 201, 207, 0.14);
    color: #1a7f88;
}

.feature-highlight .feature-icon {
    background: rgba(255, 255, 255, 0.14);
    color: #eafcff;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Security */
.security-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
}

.security-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    backdrop-filter: blur(4px);
}

.security-tag {
    display: inline-block;
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    color: var(--brand-gold);
    margin-bottom: 0.6rem;
}

.security-box h3 {
    margin-bottom: 0.6rem;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2.4rem;
    align-items: center;
}

.about-visual img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.about-copy h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.about-copy p {
    margin-bottom: 0.85rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.4rem;
}

.stat-item {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    padding: 1.1rem;
    text-align: center;
}

.stat-number {
    display: block;
    color: #133c57;
    font-family: 'Fraunces', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #557592;
    font-size: 0.76rem;
    font-weight: 700;
}

/* Cases */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.case-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line);
    background: #ffffff;
    transition: var(--transition);
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.case-card img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.case-card-logo img {
    padding: 1rem;
    background: #201b1d;
    object-fit: contain;
}

.case-card h3,
.case-card p {
    padding: 0 1.1rem;
}

.case-card h3 {
    margin-top: 1rem;
    font-size: 1.1rem;
}

.case-card p {
    margin-bottom: 1.1rem;
}

/* Customer logos */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.logo-card,
.logo-placeholder {
    min-height: 92px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem;
    transition: var(--transition);
}

.logo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.logo-card img {
    max-width: 100%;
    max-height: 56px;
    object-fit: contain;
}

.logo-card span {
    color: #214863;
    font-weight: 700;
}

/* Contact */
.section-contact .contact-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
    align-items: start;
}

.contact-copy p {
    color: #dce9f6;
    margin-bottom: 1rem;
}

.contact-details a {
    color: var(--brand-cyan);
    font-weight: 700;
}

.contact-form {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-lift);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.32rem;
    margin-bottom: 0.85rem;
}

.form-group label {
    color: #193147;
    font-size: 0.86rem;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    border: 1px solid #c6d6e6;
    border-radius: 10px;
    padding: 0.68rem 0.75rem;
    font: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #429ec2;
    box-shadow: 0 0 0 3px rgba(66, 158, 194, 0.16);
}

.form-status {
    margin-top: 0.9rem;
    border-radius: 10px;
    padding: 0.7rem 0.85rem;
    font-size: 0.86rem;
    display: none;
}

.form-status.success {
    display: block;
    background: #e4f8ec;
    color: #145a2f;
    border: 1px solid #b8ebc9;
}

.form-status.error {
    display: block;
    background: #ffe6e0;
    color: #8e2b16;
    border: 1px solid #ffc9bc;
}

/* Footer */
.footer {
    background: #071322;
    padding: 3.2rem 0 1.4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
    gap: 1.8rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    color: #a9c0d4;
    margin: 0.7rem 0;
}

.footer-address a {
    color: #cfe6f4;
    font-weight: 600;
}

.footer-col h3 {
    color: #eaf4fb;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    font-family: 'Manrope', sans-serif;
}

.footer-col ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.footer-col a {
    color: #9fb9cf;
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--brand-cyan);
}

.social-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.social-pill {
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #b9d0e2;
    font-size: 0.82rem;
}

.footer-bottom {
    padding-top: 1.3rem;
}

.footer-bottom p {
    color: #7f97ac;
    font-size: 0.82rem;
}

/* Ops page */
.ops-page {
    min-height: 70vh;
}

.ops-hero {
    padding: 108px 0 46px;
}

.ops-hero h1 {
    margin: 0.7rem 0;
}

.ops-content {
    padding: 40px 0 90px;
    background: var(--bg-paper);
}

.ops-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    margin-bottom: 1.1rem;
    box-shadow: var(--shadow-soft);
}

.ops-current,
.ops-history-item {
    border-left: 4px solid #76cfae;
    background: #f7fcfa;
    border-radius: 10px;
    padding: 0.9rem;
    margin-top: 0.75rem;
}

.ops-history-item.warning {
    border-left-color: #f39b78;
}

.ops-history-item.critical {
    border-left-color: #e15d42;
}

/* Media Specialization Section */
.media-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
    margin-bottom: 4rem;
}

.media-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(63, 201, 207, 0.2);
    border-radius: var(--radius-lg);
    padding: 2.4rem;
    transition: all var(--transition);
    backdrop-filter: blur(10px);
}

.media-card:hover {
    border-color: rgba(63, 201, 207, 0.5);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    box-shadow: 0 32px 72px rgba(8, 22, 39, 0.24);
}

.media-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3fc9cf 0%, #2ba8af 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.6rem;
    flex-shrink: 0;
}

.media-icon svg {
    width: 36px;
    height: 36px;
}

.media-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 0.8rem;
}

.media-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Workflow Section */
.media-workflow {
    margin-bottom: 4rem;
    padding: 3.2rem 0;
}

.media-workflow h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 3rem;
    text-align: center;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(63, 201, 207, 0.15);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.step:hover {
    border-color: rgba(63, 201, 207, 0.4);
    background: rgba(63, 201, 207, 0.08);
}

.step::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--brand-cyan);
    border-radius: 50%;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3fc9cf 0%, #2ba8af 100%);
    color: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.step h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 0.8rem;
}

.step p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Solutions Section */
.media-solutions {
    margin-top: 4rem;
    padding-top: 3.2rem;
    border-top: 1px solid rgba(63, 201, 207, 0.2);
}

.media-solutions h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 3rem;
    text-align: center;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.solution-item {
    background: rgba(63, 201, 207, 0.08);
    border: 1px solid rgba(63, 201, 207, 0.25);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all var(--transition);
}

.solution-item:hover {
    border-color: rgba(63, 201, 207, 0.5);
    background: rgba(63, 201, 207, 0.12);
    box-shadow: 0 24px 60px rgba(63, 201, 207, 0.15);
}

.solution-item h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-cyan);
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(63, 201, 207, 0.3);
}

.solution-item ul {
    list-style: none;
    padding: 0;
}

.solution-item li {
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.solution-item li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--brand-cyan);
    font-weight: 700;
}

/* Editorial media integration scene */
.media-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    color: var(--bg-white);
    background: #071b2b;
}

.media-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.34;
    background-image: linear-gradient(rgba(106, 215, 211, 0.13) 1px, transparent 1px), linear-gradient(90deg, rgba(106, 215, 211, 0.13) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.media-section .container { position: relative; }

.media-heading {
    width: min(760px, 100%);
    margin-bottom: 56px;
}

.media-heading h2 {
    margin: 12px 0 20px;
    font-family: 'Fraunces', serif;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    font-weight: 600;
    line-height: 1.03;
    color: #f7fcff;
}

.media-heading > p:last-child {
    max-width: 670px;
    color: #c5d7e5;
    font-size: 1.05rem;
}

.media-lead {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    margin: -22px 0 54px;
    padding: 28px 0;
    border-top: 1px solid rgba(216, 234, 242, 0.18);
    border-bottom: 1px solid rgba(216, 234, 242, 0.18);
}

.media-lead p {
    color: #c5d7e5;
    font-size: .95rem;
    line-height: 1.8;
}

.media-lead strong { color: #fff; }

.media-bridge {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(44px, 0.45fr) minmax(250px, 1.4fr) minmax(44px, 0.45fr) minmax(180px, 1fr);
    align-items: center;
    min-height: 270px;
    padding: 32px;
    border: 1px solid rgba(129, 224, 219, 0.25);
    border-radius: 8px;
    background: rgba(6, 33, 49, 0.8);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.media-node,
.media-core {
    display: flex;
    min-height: 150px;
    padding: 24px;
    flex-direction: column;
    justify-content: center;
}

.media-node {
    border: 1px solid rgba(216, 234, 242, 0.16);
    background: rgba(255, 255, 255, 0.04);
}

.media-node-label,
.media-core-kicker,
.media-deliveries > p,
.media-detail > span {
    color: var(--brand-cyan);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.media-node strong,
.media-core strong {
    margin: 9px 0 5px;
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.15;
}

.media-node span:last-child,
.media-core span:last-child {
    color: #b5cad9;
    font-size: 0.82rem;
}

.media-core {
    border: 1px solid var(--brand-cyan);
    background: #0c3b4c;
    box-shadow: inset 0 0 44px rgba(63, 201, 207, 0.16), 0 0 48px rgba(63, 201, 207, 0.1);
    text-align: center;
}

.media-route {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 2px;
    background: rgba(63, 201, 207, 0.38);
}

.media-route i {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-emerald);
    box-shadow: 0 0 12px var(--brand-emerald);
    animation: media-signal 2.2s ease-in-out infinite;
}

.media-route i:nth-child(2) { animation-delay: 0.28s; }
.media-route i:nth-child(3) { animation-delay: 0.56s; }

@keyframes media-signal {
    0%, 100% { opacity: 0.25; transform: scale(0.75); }
    50% { opacity: 1; transform: scale(1); }
}

.media-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1px;
    border: 1px solid rgba(216, 234, 242, 0.16);
    border-radius: 0 0 8px 8px;
    background: rgba(255, 255, 255, 0.035);
}

.media-detail { padding: 32px; }
.media-detail + .media-detail { border-left: 1px solid rgba(216, 234, 242, 0.16); }

.media-detail h3 {
    margin: 14px 0 10px;
    font-family: 'Fraunces', serif;
    font-size: 1.27rem;
    font-weight: 600;
    line-height: 1.2;
}

.media-detail p {
    color: #b5cad9;
    font-size: 0.92rem;
}

.media-capabilities {
    margin-top: 56px;
}

.media-rental {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: clamp(38px, 7vw, 90px);
    margin-top: 72px;
    padding: clamp(32px, 5vw, 58px);
    border: 1px solid rgba(129, 224, 219, .22);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(11, 53, 69, .85), rgba(5, 28, 43, .9));
}

.media-rental-intro h3 {
    margin: 8px 0 18px;
    color: #f5fbff;
    font-family: 'Fraunces', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 500;
    line-height: 1.08;
}

.media-rental-intro > p:not(.eyebrow) { color: #b8ced9; line-height: 1.75; }
.media-rental-intro .media-link { display: inline-block; margin-top: 24px; }
.media-rental-list { display: grid; }
.media-rental-list article { display: grid; grid-template-columns: 36px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid rgba(216, 234, 242, .14); }
.media-rental-list article:first-child { padding-top: 0; }
.media-rental-list article:last-child { padding-bottom: 0; border-bottom: 0; }
.media-rental-list article > span { color: var(--brand-cyan); font-size: .68rem; font-weight: 800; letter-spacing: .1em; }
.media-rental-list h4 { margin-bottom: 5px; color: #f2f9fc; font-family: 'Manrope', sans-serif; font-size: .94rem; }
.media-rental-list p { color: #a9c1ce; font-size: .84rem; line-height: 1.65; }

.media-capabilities > .eyebrow {
    margin-bottom: 16px;
}

.media-capability-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(216, 234, 242, 0.22);
    border-bottom: 1px solid rgba(216, 234, 242, 0.22);
}

.media-capability-grid article {
    padding: 26px 24px 28px;
}

.media-capability-grid article + article {
    border-left: 1px solid rgba(216, 234, 242, 0.16);
}

.media-capability-grid h3 {
    margin-bottom: 9px;
    color: var(--brand-cyan);
    font-family: 'Fraunces', serif;
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.2;
}

.media-capability-grid p {
    color: #b5cad9;
    font-size: 0.87rem;
    line-height: 1.65;
}

.media-deliveries {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(216, 234, 242, 0.22);
}

.media-deliveries ul {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    gap: 8px 22px;
    list-style: none;
}

.media-deliveries li {
    color: #d7e5f4;
    font-size: 0.85rem;
}

.media-deliveries li::before {
    content: '•';
    margin-right: 8px;
    color: var(--brand-gold);
}

.media-link {
    flex: 0 0 auto;
    color: var(--brand-cyan);
    font-size: 0.85rem;
    font-weight: 800;
}

.media-link span {
    display: inline-block;
    margin-left: 6px;
    font-size: 1.1rem;
    transition: transform var(--transition);
}

.media-link:hover span { transform: translateX(5px); }

@media (max-width: 980px) {
    .media-bridge,
    .media-details,
    .media-capability-grid,
    .media-rental { grid-template-columns: 1fr; }

    .media-bridge { gap: 14px; }

    .media-route {
        width: 2px;
        height: 32px;
        margin: 0 auto;
        flex-direction: column;
    }

    .media-detail + .media-detail {
        border-top: 1px solid rgba(216, 234, 242, 0.16);
        border-left: 0;
    }

    .media-capability-grid article + article {
        border-top: 1px solid rgba(216, 234, 242, 0.16);
        border-left: 0;
    }

    .media-deliveries { display: block; }
    .media-deliveries ul { margin: 14px 0 20px; }
    .media-lead { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 820px) {
    .media-section { padding: 80px 0; }
    .media-bridge { padding: 16px; }
    .media-node, .media-core, .media-detail { padding: 22px; }
}

/* Connectivity services and digital fiber order */
.connectivity-section { overflow: hidden; color: #edf7fa; background: #081e2d; }
.connectivity-heading { display: grid; grid-template-columns: 1.05fr .75fr; gap: 8vw; align-items: end; margin-bottom: 54px; }
.connectivity-heading h2 { color: #f4fbfd; font-size: clamp(2.5rem, 4.5vw, 4.8rem); font-weight: 500; line-height: 1.03; letter-spacing: -.04em; }
.connectivity-heading > p { color: #acc3ce; line-height: 1.8; }
.connectivity-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 16px; }
.connectivity-card { position: relative; min-height: 440px; padding: 32px; border: 1px solid rgba(207,234,239,.15); border-radius: 16px; background: rgba(255,255,255,.035); transition: transform var(--transition), border-color var(--transition), background var(--transition); }
.connectivity-card:hover { transform: translateY(-6px); border-color: rgba(73,213,208,.38); background: rgba(255,255,255,.06); }
.connectivity-card-main { background: linear-gradient(145deg, rgba(49,180,180,.18), rgba(255,255,255,.035)); }
.connectivity-number { position: absolute; top: 28px; right: 28px; color: #668695; font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.connectivity-icon { display: grid; width: 50px; height: 50px; margin-bottom: 42px; place-items: center; border-radius: 50%; color: #071b26; background: var(--brand-cyan); font-size: 1.2rem; }
.connectivity-card h3 { margin-bottom: 14px; color: #f6fbfd; font-size: 1.48rem; }
.connectivity-card > p { color: #acc1cc; font-size: .9rem; line-height: 1.72; }
.connectivity-card ul { display: grid; gap: 8px; margin: 24px 0 0; list-style: none; }
.connectivity-card li { color: #d4e2e7; font-size: .78rem; }
.connectivity-card li::before { content: '✓'; margin-right: 9px; color: var(--brand-emerald); font-weight: 800; }
.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; color: var(--brand-cyan); font-size: .78rem; font-weight: 800; }
.card-link span { transition: transform .2s ease; }
.card-link:hover span { transform: translateX(4px); }

.fiber-order-section { background: #eef3f4; }
.fiber-order-layout { display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(45px, 7vw, 90px); align-items: start; }
.fiber-order-copy { position: sticky; top: 120px; }
.fiber-order-copy h2 { margin: 8px 0 20px; font-size: clamp(2.4rem, 4.2vw, 4.2rem); font-weight: 500; line-height: 1.03; letter-spacing: -.04em; }
.fiber-order-copy > p { line-height: 1.75; }
.order-points { display: grid; gap: 0; margin: 32px 0; border-top: 1px solid #cfdbde; }
.order-points div { display: grid; grid-template-columns: 38px 1fr; gap: 12px; padding: 16px 0; border-bottom: 1px solid #cfdbde; }
.order-points strong { color: #24989a; font-size: .7rem; letter-spacing: .08em; }
.order-points span { color: #284653; font-size: .82rem; font-weight: 700; }
.order-note { padding: 16px; border-left: 3px solid var(--brand-cyan); background: #fff; color: #617985 !important; font-size: .75rem; }
.fiber-order-form { padding: clamp(24px, 4vw, 48px); border: 1px solid #d5e0e2; border-radius: 18px; background: #fff; box-shadow: 0 24px 70px rgba(8,34,44,.1); }
.order-form-heading { margin-bottom: 32px; }
.order-form-heading > span { color: #279397; font-size: .66rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.order-form-heading h3 { margin: 7px 0 5px; font-size: 1.65rem; }
.order-form-heading p { font-size: .78rem; }
.fiber-order-form fieldset { min-width: 0; margin: 0 0 32px; padding: 0; border: 0; }
.fiber-order-form legend { width: 100%; margin-bottom: 17px; padding-bottom: 10px; border-bottom: 1px solid #dbe4e6; color: #153441; font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.speed-options { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.speed-options label { cursor: pointer; }
.speed-options input { position: absolute; opacity: 0; pointer-events: none; }
.speed-options label > span { display: grid; min-height: 74px; place-content: center; border: 1px solid #d6e1e3; border-radius: 9px; color: #294a57; background: #f7f9fa; text-align: center; transition: .2s ease; }
.speed-options strong { font-size: .88rem; }
.speed-options small { margin-top: 2px; color: #738994; font-size: .62rem; }
.speed-options input:checked + span { color: #092a34; border-color: #37b7b6; background: #dff6f3; box-shadow: 0 0 0 3px rgba(55,183,182,.1); }
.speed-options input:focus-visible + span { outline: 3px solid rgba(55,183,182,.25); outline-offset: 2px; }
.order-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.order-fields label, .order-message { display: grid; gap: 6px; }
.order-fields label > span, .order-message > span { color: #294653; font-size: .71rem; font-weight: 700; }
.field-wide { grid-column: 1 / -1; }
.order-fields input, .order-message textarea { width: 100%; padding: .78rem .84rem; border: 1px solid #d4dfe2; border-radius: 8px; color: #102d39; background: #f8fafb; font: inherit; font-size: .86rem; }
.order-fields input:focus, .order-message textarea:focus { outline: 0; border-color: #3bb6b6; background: #fff; box-shadow: 0 0 0 4px rgba(59,182,182,.1); }
.addon-options { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 18px; }
.addon-options label, .order-consent { display: flex; align-items: flex-start; gap: 10px; color: #425e6a; font-size: .76rem; cursor: pointer; }
.addon-options input, .order-consent input { width: 17px; height: 17px; flex: 0 0 auto; accent-color: #289fa1; }
.order-consent { margin: 4px 0 20px; line-height: 1.55; }
.fiber-order-form .btn { width: 100%; border: 0; cursor: pointer; }

@media (max-width: 1080px) {
    .connectivity-grid { grid-template-columns: 1fr 1fr; }
    .connectivity-card-main { grid-column: 1 / -1; min-height: 0; }
    .fiber-order-layout { grid-template-columns: 1fr; }
    .fiber-order-copy { position: static; max-width: 700px; }
}

@media (max-width: 820px) {
    .connectivity-heading { grid-template-columns: 1fr; gap: 20px; }
    .connectivity-grid { grid-template-columns: 1fr; }
    .connectivity-card-main { grid-column: auto; }
    .connectivity-card { min-height: 0; }
    .speed-options { grid-template-columns: repeat(2, 1fr); }
    .speed-options label:last-child { grid-column: 1 / -1; }
    .order-fields, .addon-options { grid-template-columns: 1fr; }
    .field-wide { grid-column: auto; }
    .fiber-order-form { padding: 24px 18px; }
}

/* 2026 visual refinement */
:root {
    --bg-ink: #061421;
    --bg-paper: #f2f6f7;
    --text-dark: #091c2b;
    --text-muted: #526a79;
    --brand-cyan: #49d5d0;
    --brand-emerald: #78dfa9;
    --line: #dce5e8;
    --radius-md: 20px;
    --radius-lg: 32px;
    --shadow-soft: 0 20px 55px rgba(8, 32, 46, .11);
    --shadow-lift: 0 34px 90px rgba(2, 18, 31, .26);
}

body { overflow-x: hidden; font-size: 16px; }
body::selection { color: #04141e; background: var(--brand-cyan); }
.container { width: min(1240px, calc(100% - 64px)); }

.header {
    border-bottom-color: rgba(255, 255, 255, .08);
    background: rgba(5, 19, 31, .78);
    transition: background .3s ease, box-shadow .3s ease;
}
.header.is-scrolled { background: rgba(5, 19, 31, .94); box-shadow: 0 12px 40px rgba(0,0,0,.18); }
.nav-container { min-height: 82px; }
.logo { display: inline-flex; align-items: center; gap: 11px; color: #fff; font-family: 'Manrope', sans-serif; }
.logo:has(img) {
    padding: 0;
    background: transparent;
    box-shadow: none;
}
.logo img { display: block; width: 104px; height: auto; object-fit: contain; }
.footer .logo:has(img) { display: inline-flex; }
.logo-mark { position: relative; display: inline-flex; width: 31px; height: 34px; align-items: center; }
.logo-mark i { position: absolute; left: 0; height: 8px; border-radius: 0 99px 99px 0; background: linear-gradient(90deg, var(--brand-cyan), var(--brand-emerald)); }
.logo-mark i:nth-child(1) { top: 2px; width: 25px; }
.logo-mark i:nth-child(2) { top: 13px; width: 31px; }
.logo-mark i:nth-child(3) { top: 24px; width: 22px; }
.logo-mark::before { content: ''; width: 6px; height: 34px; border-radius: 4px; background: var(--brand-cyan); }
.logo-type { display: grid; gap: 0; line-height: 1; }
.logo-type strong { font-size: 1.08rem; letter-spacing: .08em; }
.logo-type small { margin-top: 4px; color: #9eb5c3; font-size: .58rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.nav-menu ul { gap: .15rem; }
.nav-link { padding: .58rem .72rem; color: #bcd0db; font-size: .79rem; letter-spacing: .01em; }
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,.08); }
.nav-status { display: flex; align-items: center; gap: 7px; }
.nav-status > span { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-emerald); box-shadow: 0 0 0 4px rgba(120,223,169,.12); }
.btn-nav, .btn-nav:hover, .btn-nav.active { margin-left: 7px; padding-inline: 1rem; color: #051b25; border: 0; background: linear-gradient(120deg, var(--brand-cyan), var(--brand-emerald)); }

.hero { min-height: calc(100svh - 82px); display: flex; align-items: center; padding: 90px 0 76px; background: #061724; }
.hero-media { opacity: 1; filter: none; background:
    linear-gradient(rgba(93,210,207,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93,210,207,.055) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, transparent 2%, #000 35%, #000 100%);
}
.hero-backdrop { background:
    radial-gradient(circle at 83% 32%, rgba(44, 173, 179, .22), transparent 24%),
    radial-gradient(circle at 92% 75%, rgba(91, 214, 154, .13), transparent 31%),
    linear-gradient(105deg, #061521 2%, rgba(6,24,38,.98) 47%, rgba(7,31,46,.78) 100%); }
.hero::after { content: ''; position: absolute; z-index: 0; right: -7vw; bottom: -28vw; width: 62vw; aspect-ratio: 1; border: 1px solid rgba(84,219,211,.13); border-radius: 50%; box-shadow: inset 0 0 100px rgba(69,203,200,.05); }
.hero-orbit { position: absolute; z-index: 1; border: 1px solid rgba(82,220,213,.18); border-radius: 50%; pointer-events: none; }
.hero-orbit::before { content: ''; position: absolute; top: 50%; left: -4px; width: 8px; height: 8px; border-radius: 50%; background: var(--brand-cyan); box-shadow: 0 0 20px var(--brand-cyan); }
.hero-orbit-one { right: 8vw; top: 16%; width: min(38vw, 540px); aspect-ratio: 1; transform: rotate(-23deg); }
.hero-orbit-two { right: 14vw; top: 25%; width: min(26vw, 370px); aspect-ratio: 1; transform: rotate(54deg); }
.hero-container { grid-template-columns: minmax(0, 1.2fr) minmax(340px, .72fr); gap: 7vw; align-items: center; }
.badge { display: inline-flex; align-items: center; gap: 9px; padding: .48rem .82rem; color: #b9d3d8; border-color: rgba(92,218,211,.24); background: rgba(64,196,193,.08); font-size: .69rem; letter-spacing: .13em; }
.badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-emerald); box-shadow: 0 0 12px var(--brand-emerald); }
.hero-content h1 { max-width: 820px; margin: .25rem 0 1.4rem; font-size: clamp(3.2rem, 5.7vw, 6.15rem); font-weight: 500; line-height: .97; letter-spacing: -.045em; }
.hero-content h1 em { color: var(--brand-cyan); font-weight: inherit; }
.hero-content > p { max-width: 57ch; color: #b9ccd6; font-size: clamp(1rem, 1.3vw, 1.14rem); line-height: 1.75; }
.chip-row { margin: 1.8rem 0 2.1rem; gap: .55rem; }
.chip { padding: .42rem .76rem; color: #bcd0d9; border-color: rgba(255,255,255,.1); background: rgba(255,255,255,.035); font-size: .7rem; letter-spacing: .025em; }
.hero-buttons { gap: .7rem; }
.btn { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: .78rem 1.25rem; border-radius: 9px; font-size: .84rem; letter-spacing: .015em; }
.btn-primary { color: #051b24; background: linear-gradient(115deg, #52d8d2, #81e2aa); box-shadow: 0 12px 30px rgba(69,213,205,.16); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(69,213,205,.24); }
.btn-secondary { color: #dcebf0; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.035); }
.btn-secondary:hover { color: #fff; border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.075); }
.hero-panel { gap: .8rem; }
.status-banner { padding: 1.6rem; border-color: rgba(127,225,184,.25); border-radius: 16px; background: rgba(5,20,31,.7); box-shadow: 0 30px 80px rgba(0,0,0,.22); backdrop-filter: blur(16px); }
.status-label { display: flex; align-items: center; gap: 9px; color: #8fa8b6; font-size: .67rem; letter-spacing: .13em; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-emerald); box-shadow: 0 0 0 5px rgba(120,223,169,.1), 0 0 14px rgba(120,223,169,.65); }
.status-banner h2 { margin: .9rem 0 .6rem; font-family: 'Fraunces', serif; font-size: 1.38rem; font-weight: 500; }
.status-banner p { color: #a9c0cc; font-size: .86rem; }
.status-link { font-size: .78rem; }
.status-link span { display: inline-block; margin-left: 4px; transition: transform .2s ease; }
.status-link:hover span { transform: translateX(4px); }
.hero-stats { gap: 0; padding: 1.1rem .6rem; border-radius: 14px; background: rgba(5,20,31,.48); }
.hero-stats div + div { border-left: 1px solid rgba(255,255,255,.1); }
.hero-stats strong { font-size: 1.4rem; }
.hero-stats span { color: #87a1af; font-size: .61rem; letter-spacing: .08em; }

.trust-bar { position: relative; z-index: 3; border-bottom: 1px solid var(--line); background: #fff; }
.trust-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.trust-inner > p { color: #173343; font-family: 'Fraunces', serif; font-size: 1.12rem; }
.trust-items { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 28px; }
.trust-items span { display: inline-flex; align-items: center; gap: 8px; color: #58707d; font-size: .75rem; font-weight: 700; }
.trust-items i { width: 5px; height: 5px; border-radius: 50%; background: #3cb8b6; }

.section { padding: 118px 0; }
.section-header { max-width: 780px; margin-bottom: 3.8rem; }
.section-header h2, .about-copy h2, .contact-copy h2 { font-size: clamp(2.35rem, 4vw, 4rem); font-weight: 500; letter-spacing: -.035em; line-height: 1.04; }
.section-header > p:last-child { max-width: 610px; margin: 1.15rem auto 0; font-size: 1rem; }
.eyebrow { color: #278c91; font-size: .68rem; letter-spacing: .17em; }
.feature-grid { gap: 18px; }
.feature-card { position: relative; min-height: 330px; padding: 2.15rem; border-radius: 18px; background: #f8fafb; overflow: hidden; }
.feature-card::after { content: '↗'; position: absolute; right: 24px; bottom: 20px; color: #86a0aa; font-size: 1.25rem; opacity: .55; }
.feature-card:hover { transform: translateY(-7px); box-shadow: 0 24px 60px rgba(7,35,48,.12); }
.feature-highlight { background: linear-gradient(145deg, #092233, #104357); }
.feature-icon { width: 58px; height: 58px; border-radius: 16px; }
.feature-card h3 { margin: .35rem 0 .8rem; font-size: 1.35rem; }
.feature-card p { font-size: .91rem; line-height: 1.72; }
.section-dark { background: #071b29; }
.security-grid { gap: 18px; }
.security-box { min-height: 245px; padding: 2.2rem; border-radius: 18px; background: rgba(255,255,255,.04); }
.security-box h3 { margin: .55rem 0 .75rem; font-size: 1.4rem; }
.security-box p { color: #b4c9d4; }
.about-grid { grid-template-columns: .88fr 1.12fr; gap: clamp(3rem, 7vw, 7.5rem); }
.about-visual { position: relative; }
.about-visual::before { content: 'BMC / siden 2006'; position: absolute; z-index: 2; left: -18px; bottom: 34px; padding: 12px 17px; color: #dff8f4; background: #092332; font-size: .67rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.about-visual img { aspect-ratio: 4 / 5; object-fit: cover; border-radius: 8px; box-shadow: 28px 30px 0 #dcebec; }
.about-copy p { max-width: 62ch; line-height: 1.75; }
.stats-grid { gap: 0; margin-top: 2rem; border-top: 1px solid var(--line); }
.stat-item { padding: 1.4rem .6rem 0; border: 0; border-radius: 0; background: transparent; text-align: left; }
.stat-number { font-size: 2rem; }
.stat-label { font-size: .62rem; }
.cases-grid { gap: 18px; }
.case-card { border-radius: 12px; }
.case-card img { aspect-ratio: 16 / 11; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.case-card:hover img { transform: scale(1.035); }
.case-card h3 { font-size: 1.22rem; }
.logo-card, .logo-placeholder { min-height: 112px; border-radius: 10px; filter: grayscale(1); opacity: .78; }
.logo-card:hover { filter: grayscale(0); opacity: 1; }

.section-contact { background: #071b29; }
.section-contact .contact-container { grid-template-columns: .82fr 1.18fr; gap: clamp(3rem, 8vw, 8rem); }
.contact-copy { position: sticky; top: 120px; }
.contact-copy > p:not(.eyebrow):not(.contact-details) { max-width: 46ch; margin-top: 1.4rem; color: #adc2cd; }
.contact-details { margin-top: 2.4rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); line-height: 1.9; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; padding: clamp(1.5rem, 3vw, 2.4rem); border: 0; border-radius: 18px; }
.form-group { margin-bottom: 1.05rem; }
.form-group:nth-child(5), .contact-form .btn, .form-status { grid-column: 1 / -1; }
.form-group label { font-size: .73rem; letter-spacing: .03em; }
.form-group input, .form-group textarea { padding: .82rem .9rem; border-color: #d7e1e5; border-radius: 8px; background: #f7f9fa; font-size: .9rem; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.form-group input:focus, .form-group textarea:focus { background: #fff; border-color: #48bab9; box-shadow: 0 0 0 4px rgba(72,186,185,.1); }
.footer { padding-top: 4.5rem; }
.footer-grid { gap: 3rem; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
    .container { width: min(100% - 40px, 760px); }
    .hero { min-height: auto; }
    .hero-container { gap: 3rem; }
    .hero-orbit { opacity: .55; }
    .trust-inner { padding: 22px 0; align-items: flex-start; }
    .trust-items { justify-content: flex-start; }
    .feature-card { min-height: 0; }
    .about-visual { max-width: 520px; }
    .contact-copy { position: static; }
}

@media (max-width: 820px) {
    .container { width: min(100% - 32px, 680px); }
    .header { background: rgba(5,19,31,.95); }
    .nav-container { min-height: 72px; }
    .logo img { width: 88px; height: auto; }
    .hamburger { width: 42px; height: 42px; align-items: center; justify-content: center; cursor: pointer; }
    .hamburger span { width: 22px; height: 2px; transition: transform .25s ease, opacity .2s ease; }
    .hamburger.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .hamburger.is-active span:nth-child(2) { opacity: 0; }
    .hamburger.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .nav-menu { top: 72px; left: 0; visibility: hidden; opacity: 0; transform: translateY(-12px); padding: 12px 16px 20px; background: rgba(5,19,31,.98); }
    .nav-menu.active { visibility: visible; opacity: 1; transform: none; }
    .nav-link { padding: .78rem; text-align: left; font-size: .9rem; }
    .btn-nav { margin: 8px 0 0; text-align: center; }
    .hero { padding: 74px 0 64px; }
    .hero-content h1 { font-size: clamp(2.85rem, 13vw, 4.5rem); }
    .hero-content h1 br { display: none; }
    .hero-orbit-one { width: 95vw; right: -55vw; }
    .hero-orbit-two { display: none; }
    .chip-row { margin-block: 1.5rem; }
    .chip:nth-child(n+7) { display: none; }
    .hero-buttons .btn { width: 100%; }
    .trust-inner { display: block; }
    .trust-inner > p { margin-bottom: 14px; }
    .trust-items { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; }
    .section { padding: 84px 0; }
    .section-header { margin-bottom: 2.5rem; text-align: left; }
    .section-header > p:last-child { margin-left: 0; }
    .section-header h2, .about-copy h2, .contact-copy h2 { font-size: clamp(2.2rem, 10vw, 3.3rem); }
    .about-visual { margin: 0 14px 1.8rem 0; }
    .about-visual::before { left: -8px; bottom: 22px; }
    .contact-form { grid-template-columns: 1fr; }
    .form-group, .contact-form .btn, .form-status { grid-column: 1; }
}

@media (max-width: 480px) {
    .hero-panel { margin-top: .5rem; }
    .hero-stats strong { font-size: 1.16rem; }
    .hero-stats span { font-size: .53rem; }
    .trust-items { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; row-gap: 1rem; }
    .footer-grid { gap: 2.2rem; }
}

/* Responsive */
@media (max-width: 1060px) {
    .nav-menu ul {
        gap: 0.2rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 980px) {
    .hero-container,
    .feature-grid,
    .security-grid,
    .about-grid,
    .cases-grid,
    .logo-grid,
    .section-contact .contact-container,
    .media-intro-grid,
    .workflow-steps,
    .solutions-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 820px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        background: #0e263a;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-link {
        display: block;
        text-align: center;
    }

    .section {
        padding: 72px 0;
    }

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

/* Keep the refined mobile navigation above the legacy responsive defaults. */
@media (max-width: 820px) {
    .nav-menu {
        top: 72px;
        left: 0;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-12px);
        padding: 12px 16px 20px;
        background: rgba(5, 19, 31, .98);
    }
    .nav-menu.active { visibility: visible; opacity: 1; transform: none; }
    .nav-link { text-align: left; }
    .btn-nav { text-align: center; }
    .section { padding: 84px 0; }
}

/* Internet, office hotels and standalone ordering */
.connectivity-showcase {
    display: grid;
    grid-template-columns: 1fr .54fr;
    gap: 18px;
}

.internet-feature,
.office-feature,
.av-feature {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(207, 234, 239, .16);
    border-radius: 24px;
}

.internet-feature {
    grid-column: 1 / -1;
    padding: clamp(30px, 5vw, 60px);
    background:
        radial-gradient(circle at 90% 0, rgba(73, 213, 208, .22), transparent 36%),
        rgba(255, 255, 255, .045);
}

.service-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    color: #a9c1cc;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.service-kicker span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(73, 213, 208, .4);
    border-radius: 50%;
    color: var(--brand-cyan);
    font-size: .58rem;
}

.internet-feature-body {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: clamp(40px, 8vw, 100px);
    align-items: end;
}

.internet-feature h3,
.office-feature h3,
.av-feature h3 {
    color: #f4fbfd;
    font-weight: 500;
    letter-spacing: -.035em;
}

.internet-feature h3 { max-width: 680px; font-size: clamp(2.1rem, 4vw, 4.15rem); }
.internet-feature p { max-width: 670px; margin-top: 22px; color: #aac0cb; line-height: 1.8; }

.connection-specs { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(207, 234, 239, .15); }
.connection-specs span { padding: 16px 8px; border-bottom: 1px solid rgba(207, 234, 239, .15); color: #d8e7eb; font-size: .78rem; font-weight: 700; }
.connection-specs strong { margin-right: 8px; color: #527989; font-size: .6rem; }

.service-action {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    margin-top: 34px;
    padding: 14px 18px;
    border-radius: 10px;
    color: #06212b;
    background: var(--brand-cyan);
    font-size: .8rem;
    font-weight: 800;
    transition: transform var(--transition), background var(--transition);
}
.service-action:hover { transform: translateY(-2px); background: var(--brand-emerald); }
.service-action span { font-size: 1rem; }

.office-feature {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    min-height: 530px;
    padding: clamp(30px, 4vw, 54px);
    background: #edf7f4;
}
.office-feature .service-kicker { color: #56717b; }
.office-copy { display: flex; align-items: flex-start; flex-direction: column; padding-right: clamp(20px, 4vw, 55px); }
.office-feature h3 { color: #092432; font-size: clamp(2.2rem, 4vw, 4rem); }
.office-copy > p { max-width: 570px; margin-top: 24px; color: #536d77; line-height: 1.8; }
.service-action-light { margin-top: auto; color: #e8fbfb; background: #0b3944; }
.service-action-light:hover { color: #08232d; }

.office-network {
    align-self: stretch;
    padding: 28px;
    border: 1px solid #cbdedb;
    border-radius: 18px;
    background: rgba(255,255,255,.72);
    box-shadow: 0 22px 60px rgba(14, 63, 68, .08);
}
.network-source { display: grid; grid-template-columns: 12px 1fr; column-gap: 12px; align-items: center; padding: 14px; border-radius: 10px; color: #eafafa; background: #0b3944; }
.network-source span { grid-row: 1 / 3; width: 10px; height: 10px; border-radius: 50%; background: var(--brand-emerald); box-shadow: 0 0 0 5px rgba(120,223,169,.12); }
.network-source strong, .tenant-list strong { font-size: .8rem; }
.network-source small, .tenant-list small { color: #83a5af; font-size: .62rem; }
.network-line { width: 1px; height: 28px; margin-left: 19px; background: #b8d3d1; }
.tenant-list { display: grid; gap: 8px; }
.tenant-list > div { display: flex; gap: 12px; align-items: center; padding: 12px; border: 1px solid #d7e6e3; border-radius: 10px; background: #fff; }
.tenant-list i { display: grid; width: 30px; height: 30px; flex: 0 0 auto; place-items: center; border-radius: 8px; color: #17686c; background: #e0f5f1; font-size: .65rem; font-style: normal; font-weight: 800; }
.tenant-list span { display: grid; }
.tenant-list strong { color: #17343e; }
.office-network > p { margin-top: 20px; color: #718991; font-size: .68rem; line-height: 1.6; }

.av-feature { display: flex; flex-direction: column; padding: clamp(30px, 4vw, 48px); background: rgba(255,255,255,.04); }
.av-feature h3 { margin-top: auto; font-size: clamp(2rem, 3vw, 3rem); }
.av-feature > p { margin-top: 18px; color: #aac0cb; line-height: 1.75; }
.av-feature ul { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; list-style: none; }
.av-feature li { padding: 7px 11px; border: 1px solid rgba(207,234,239,.16); border-radius: 999px; color: #dce9ed; font-size: .68rem; }

.order-page { background: #edf3f3; }
.order-page .header { position: relative; background: #061a28; }
.order-hero { position: relative; overflow: hidden; padding: 72px 0 84px; color: #f4fbfd; background: #061a28; }
.order-glow { position: absolute; top: -60%; right: -5%; width: 600px; height: 600px; border-radius: 50%; background: rgba(73,213,208,.15); filter: blur(70px); }
.order-hero-grid { position: relative; display: grid; grid-template-columns: 1fr .55fr; gap: 9vw; align-items: end; }
.order-back { display: inline-block; margin-bottom: 42px; color: #8db1bc; font-size: .75rem; font-weight: 700; }
.order-back:hover { color: var(--brand-cyan); }
.order-hero h1 { font-size: clamp(3.2rem, 6vw, 6.2rem); font-weight: 500; line-height: .98; letter-spacing: -.05em; }
.order-hero h1 em { color: var(--brand-cyan); font-weight: 500; }
.order-hero-copy > p:last-child { max-width: 670px; margin-top: 28px; color: #aec5cf; font-size: 1.02rem; line-height: 1.8; }
.order-hero-facts { border-top: 1px solid rgba(255,255,255,.16); }
.order-hero-facts div { display: grid; grid-template-columns: 36px 1fr; gap: 12px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.order-hero-facts strong { color: var(--brand-cyan); font-size: .65rem; }
.order-hero-facts span { color: #dae7eb; font-size: .8rem; font-weight: 700; }

.order-workspace { padding: 80px 0 110px; }
.order-layout { display: grid; grid-template-columns: .58fr 1.42fr; gap: clamp(42px, 7vw, 90px); align-items: start; }
.order-assurance { position: sticky; top: 40px; }
.order-assurance h2 { max-width: 380px; font-size: clamp(2.2rem, 3.5vw, 3.5rem); font-weight: 500; letter-spacing: -.04em; }
.order-assurance ul { display: grid; gap: 0; margin-top: 38px; list-style: none; border-top: 1px solid #cbd9db; }
.order-assurance li { display: flex; gap: 14px; padding: 20px 0; border-bottom: 1px solid #cbd9db; }
.order-assurance li > span { color: #168e8e; font-weight: 800; }
.order-assurance li div { display: grid; gap: 4px; }
.order-assurance li strong { color: #193843; font-size: .82rem; }
.order-assurance li small { color: #637b84; font-size: .7rem; line-height: 1.55; }
.order-contact-card { display: grid; margin-top: 28px; padding: 22px; border-radius: 14px; color: #dff5f4; background: #0a3440; }
.order-contact-card span { color: #9bb9c1; font-size: .68rem; }
.order-contact-card a { margin: 4px 0; font-family: 'Fraunces', serif; font-size: 1.65rem; }
.order-contact-card small { color: #6f929b; font-size: .62rem; }

.order-form-new { border: 0; border-radius: 24px; box-shadow: 0 28px 80px rgba(8,34,44,.12); }
.order-form-new .order-form-heading { padding-bottom: 28px; border-bottom: 1px solid #dbe4e6; }
.order-form-new .order-form-heading h2 { margin: 8px 0; font-size: clamp(2rem, 3vw, 3rem); font-weight: 500; letter-spacing: -.035em; }
.order-form-new fieldset { margin-bottom: 42px; }
.order-form-new legend { display: flex; align-items: center; gap: 11px; padding-bottom: 14px; font-size: .72rem; }
.order-form-new legend span { display: grid; width: 26px; height: 26px; place-items: center; border-radius: 50%; color: #0a4248; background: #dff6f3; font-size: .62rem; }
.order-form-new .speed-options label > span { min-height: 86px; border-radius: 12px; }
.order-form-new .order-fields { gap: 18px; }
.order-form-new .order-fields input,
.order-form-new .order-message textarea { padding: .9rem 1rem; border-radius: 10px; background: #f5f8f8; }
.order-form-new .addon-options label { padding: 13px; border: 1px solid #d9e3e4; border-radius: 10px; background: #f8fafa; }
.order-form-new .btn { min-height: 56px; border-radius: 12px; }
.order-legal { margin-top: 14px; text-align: center; font-size: .65rem; }
.order-footer { padding: 34px 0; color: #b9ced5; background: #061a28; }
.order-footer .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.order-footer p { color: #7898a2; font-size: .68rem; }

@media (max-width: 980px) {
    .connectivity-showcase { grid-template-columns: 1fr; }
    .office-feature { grid-column: 1; grid-template-columns: 1fr; gap: 40px; }
    .av-feature { min-height: 360px; }
    .order-hero-grid, .order-layout { grid-template-columns: 1fr; }
    .order-assurance { position: static; }
}

@media (max-width: 700px) {
    .internet-feature-body { grid-template-columns: 1fr; gap: 30px; }
    .connection-specs { grid-template-columns: 1fr; }
    .office-feature { padding: 28px 20px; }
    .office-network { padding: 18px; }
    .order-hero { padding: 48px 0 62px; }
    .order-hero-facts { margin-top: 16px; }
    .order-workspace { padding: 56px 0 72px; }
    .order-footer .container { align-items: flex-start; flex-direction: column; }
}

/* Larger customer references */
.logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.logo-card,
.logo-placeholder {
    min-height: 168px;
    padding: 24px;
}

.logo-card img {
    width: min(90%, 280px);
    height: 96px;
    max-width: none;
    max-height: none;
    object-fit: contain;
}

@media (max-width: 980px) {
    .logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
    .logo-grid { grid-template-columns: 1fr; }
    .logo-card, .logo-placeholder { min-height: 142px; }
    .logo-card img { height: 82px; }
}

/* Professional overview and detail pages */
h1, h2, h3,
.logo,
.order-contact-card a {
    font-family: 'Manrope', sans-serif;
}

.overview-page h1,
.overview-page h2,
.overview-page h3,
.detail-page h1,
.detail-page h2,
.detail-page h3,
.order-page h1,
.order-page h2,
.order-page h3 {
    font-weight: 600;
    letter-spacing: -.045em;
}

.overview-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(90px, 11vw, 150px) 0 clamp(82px, 9vw, 125px);
    color: #f4fbfd;
    background: #061927;
}
.overview-hero::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(115deg, #061927 22%, #0a3041 72%, #0c4650); }
.overview-hero-light { position: absolute; z-index: -1; top: -240px; right: -140px; width: 720px; height: 720px; border: 1px solid rgba(73,213,208,.18); border-radius: 50%; box-shadow: 0 0 0 90px rgba(73,213,208,.035), 0 0 0 180px rgba(73,213,208,.025); }
.overview-hero-grid { display: grid; grid-template-columns: 1.15fr .55fr; gap: clamp(50px, 10vw, 135px); align-items: end; }
.overview-hero-copy h1 { max-width: 900px; font-size: clamp(3.2rem, 6.5vw, 6.8rem); line-height: .96; }
.overview-hero-copy h1 em { color: var(--brand-cyan); font-style: normal; font-weight: 600; }
.overview-hero-copy > p:not(.badge) { max-width: 690px; margin-top: 30px; color: #b8ccd5; font-size: clamp(.98rem, 1.2vw, 1.12rem); line-height: 1.8; }
.overview-hero-copy .hero-buttons { margin-top: 32px; }
.overview-status { padding: 28px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(255,255,255,.06); backdrop-filter: blur(16px); }
.overview-status > div { display: flex; align-items: center; gap: 9px; }
.overview-status small { color: #9db7c1; font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.overview-status h2 { margin: 28px 0 10px; font-size: 1.3rem; letter-spacing: -.025em; }
.overview-status p { color: #a9bec7; font-size: .78rem; line-height: 1.65; }
.overview-status > a { display: flex; justify-content: space-between; margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: var(--brand-cyan); font-size: .72rem; font-weight: 800; }
.overview-status.status-warning .status-dot, .overview-status.status-critical .status-dot { background: var(--brand-alert); }

.overview-proof { border-bottom: 1px solid var(--line); background: #fff; }
.overview-proof .container { display: flex; justify-content: space-between; gap: 30px; padding: 23px 0; }
.overview-proof p { color: #163543; font-size: .75rem; font-weight: 800; }
.overview-proof div { display: flex; flex-wrap: wrap; gap: 30px; }
.overview-proof span { color: #647c87; font-size: .68rem; font-weight: 700; }
.overview-proof span::before { content: ''; display: inline-block; width: 5px; height: 5px; margin-right: 9px; border-radius: 50%; background: #33aaa9; vertical-align: middle; }

.overview-services { background: #f2f6f7; }
.overview-heading { display: grid; grid-template-columns: 1fr .52fr; gap: 10vw; align-items: end; margin-bottom: 54px; }
.overview-heading h2 { font-size: clamp(2.5rem, 4.7vw, 5rem); line-height: 1.04; }
.overview-heading > p { max-width: 520px; line-height: 1.8; }
.overview-card-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 16px; }
.overview-card { display: flex; min-height: 440px; flex-direction: column; padding: clamp(26px, 3vw, 38px); border: 1px solid #d7e2e4; border-radius: 20px; background: #fff; transition: transform var(--transition), box-shadow var(--transition); }
.overview-card:hover { transform: translateY(-7px); box-shadow: 0 28px 70px rgba(8,36,48,.11); }
.overview-card-large { background: #e4f4f1; }
.overview-card-dark { color: #edf8fa; border-color: #102f3d; background: #092331; }
.overview-number { align-self: flex-end; color: #8299a2; font-size: .62rem; font-weight: 800; letter-spacing: .14em; }
.overview-icon { display: grid; width: 50px; height: 50px; margin-top: 4px; place-items: center; border-radius: 13px; color: #0b3b43; background: #c9efea; font-size: .72rem; font-weight: 800; }
.overview-card-dark .overview-icon { color: #06262d; background: var(--brand-cyan); }
.overview-card > div:nth-of-type(2) { margin-top: auto; }
.overview-card h3 { margin-bottom: 14px; font-size: clamp(1.55rem, 2.3vw, 2.35rem); line-height: 1.12; }
.overview-card p:not(.eyebrow) { color: #607681; font-size: .83rem; line-height: 1.75; }
.overview-card-dark p:not(.eyebrow) { color: #a9c0c9; }
.overview-card > strong { display: flex; justify-content: space-between; margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(86,111,121,.2); color: #177b7e; font-size: .72rem; }
.overview-card-dark > strong { color: var(--brand-cyan); border-color: rgba(255,255,255,.12); }

.overview-specialists { color: #eaf5f7; background: #071e2b; }
.overview-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 10vw, 130px); align-items: center; }
.overview-split-copy h2 { font-size: clamp(2.8rem, 5vw, 5.3rem); line-height: 1; }
.overview-split-copy > p:not(.eyebrow) { max-width: 590px; margin-top: 26px; color: #aac0c9; line-height: 1.8; }
.text-link { display: inline-flex; gap: 18px; margin-top: 30px; padding-bottom: 5px; border-bottom: 1px solid currentColor; color: #177f82; font-size: .76rem; font-weight: 800; }
.overview-specialists .text-link { color: var(--brand-cyan); }
.overview-building { padding: clamp(26px, 4vw, 48px); border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: rgba(255,255,255,.04); }
.building-core { display: flex; align-items: center; gap: 12px; padding: 18px; border-radius: 12px; color: #082b34; background: var(--brand-cyan); font-size: .78rem; font-weight: 800; }
.building-core i { width: 9px; height: 9px; border-radius: 50%; background: #08706f; box-shadow: 0 0 0 5px rgba(8,112,111,.12); }
.building-tenants { display: grid; gap: 9px; margin-top: 30px; padding-left: 30px; border-left: 1px solid rgba(73,213,208,.3); }
.building-tenants span { padding: 17px; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; color: #cadde2; background: rgba(255,255,255,.04); font-size: .72rem; font-weight: 700; }

.overview-media-teaser { background: #fff; }
.overview-media-grid { display: grid; grid-template-columns: 1.15fr .6fr; gap: 11vw; align-items: end; }
.overview-media-grid h2 { max-width: 850px; font-size: clamp(2.5rem, 5vw, 5.2rem); line-height: 1.04; }
.overview-media-grid > div:last-child > p { line-height: 1.8; }
.overview-customers { padding-top: 80px; background: #f2f6f7; }
.overview-about { background: #fff; }
.overview-about-grid { display: grid; grid-template-columns: .7fr 1fr; gap: clamp(50px, 9vw, 110px); align-items: center; }
.overview-about-photo img { display: block; width: 100%; aspect-ratio: 4 / 3; border-radius: 16px; object-fit: cover; }
.overview-about h2 { font-size: clamp(2.4rem, 4.3vw, 4.5rem); line-height: 1.05; }
.overview-about p:not(.eyebrow) { max-width: 650px; margin-top: 25px; line-height: 1.8; }
.footer-overview { display: grid; grid-template-columns: 1fr 1fr auto; gap: 50px; align-items: start; }
.footer-overview > div:nth-child(2) { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; }
.footer-overview a:not(.logo) { color: #a9c0cb; font-size: .72rem; }
.footer-overview > p, .footer-overview div > p { color: #738f9b; font-size: .68rem; }

/* Solution detail pages */
.detail-page { background: #fff; }
.detail-hero { padding: clamp(85px, 10vw, 140px) 0; color: #f0f8fa; background: radial-gradient(circle at 88% 0, #13505a, transparent 35%), #061a28; }
.detail-hero-grid { display: grid; grid-template-columns: 1.1fr .5fr; gap: 10vw; align-items: end; }
.detail-back { display: inline-block; margin-bottom: 52px; color: #86a9b5; font-size: .72rem; font-weight: 700; }
.detail-hero h1 { font-size: clamp(3.2rem, 6vw, 6.5rem); line-height: .98; }
.detail-hero h1 em { color: var(--brand-cyan); font-style: normal; }
.detail-hero-grid > p { color: #acc3cb; font-size: 1rem; line-height: 1.85; }
.detail-lead { display: grid; grid-template-columns: .35fr 1fr; gap: 5vw; align-items: start; margin-bottom: 55px; }
.detail-lead h2 { max-width: 900px; font-size: clamp(2.3rem, 4vw, 4.2rem); line-height: 1.06; }
.detail-service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.detail-service { min-height: 300px; padding: clamp(28px, 4vw, 48px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.detail-service > span { color: #26999c; font-size: .63rem; font-weight: 800; letter-spacing: .12em; }
.detail-service h3 { margin: 65px 0 18px; font-size: clamp(1.5rem, 2.4vw, 2.3rem); }
.detail-service p { max-width: 500px; line-height: 1.8; }
.detail-benefits { color: #eef8fa; background: #082332; }
.detail-benefit-grid { display: grid; grid-template-columns: 1fr .7fr; gap: 10vw; }
.detail-benefit-grid h2 { font-size: clamp(2.5rem, 4.5vw, 4.8rem); }
.detail-benefit-grid ul { border-top: 1px solid rgba(255,255,255,.14); list-style: none; }
.detail-benefit-grid li { display: flex; gap: 13px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.14); color: #c7d9df; font-size: .8rem; font-weight: 700; }
.detail-benefit-grid li span { color: var(--brand-emerald); }
.detail-cta { text-align: center; background: #eaf3f2; }
.detail-cta h2 { max-width: 900px; margin: 0 auto; font-size: clamp(2.5rem, 5vw, 5.2rem); }
.detail-cta > .container > p:not(.eyebrow) { max-width: 620px; margin: 24px auto 0; }
.detail-cta > .container > div { display: flex; justify-content: center; gap: 12px; margin-top: 30px; }
.detail-cta .btn-secondary { color: #183945; border: 1px solid #b9cccf; }

@media (max-width: 980px) {
    .overview-hero-grid, .overview-heading, .overview-split, .overview-media-grid, .overview-about-grid, .detail-hero-grid, .detail-benefit-grid { grid-template-columns: 1fr; }
    .overview-card-grid { grid-template-columns: 1fr 1fr; }
    .overview-card-large { grid-column: 1 / -1; }
    .overview-status { max-width: 520px; }
    .footer-overview { grid-template-columns: 1fr 1fr; }
    .footer-overview > p { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
    .overview-hero-copy h1 br, .detail-hero h1 br { display: none; }
    .overview-proof .container, .overview-proof div { align-items: flex-start; flex-direction: column; gap: 12px; }
    .overview-card-grid, .detail-service-grid { grid-template-columns: 1fr; }
    .overview-card-large { grid-column: auto; }
    .overview-card { min-height: 390px; }
    .detail-lead { grid-template-columns: 1fr; }
    .detail-service { min-height: 250px; }
    .detail-service h3 { margin-top: 42px; }
    .footer-overview { grid-template-columns: 1fr; }
    .footer-overview > p { grid-column: auto; }
    .detail-cta > .container > div { align-items: stretch; flex-direction: column; }
}

/* Restrained BMC palette and cleaner homepage header */
.overview-page {
    --brand-cyan: #3478b8;
    --brand-emerald: #4d8fc8;
    --text-dark: #14283b;
    --text-muted: #5e7182;
    --line: #dce3e9;
    background: #fff;
}

.overview-page .header {
    position: sticky;
    border-bottom: 1px solid #e1e7ec;
    background: rgba(255, 255, 255, .96);
    box-shadow: none;
    backdrop-filter: blur(14px);
}
.overview-page .header.is-scrolled { background: rgba(255,255,255,.98); box-shadow: 0 8px 28px rgba(18,40,59,.07); }
.overview-page .nav-link { color: #344c60; }
.overview-page .nav-link:hover,
.overview-page .nav-link.active { color: #173654; background: #edf3f8; }
.overview-page .nav-status > span { background: #3f9c78; box-shadow: 0 0 0 4px rgba(63,156,120,.1); }
.overview-page .btn-nav,
.overview-page .btn-nav:hover,
.overview-page .btn-nav.active { color: #fff; background: #245f96; }

.overview-page .overview-hero {
    padding: clamp(82px, 9vw, 126px) 0 clamp(76px, 8vw, 112px);
    color: #14283b;
    background: #f4f7fa;
}
.overview-page .overview-hero::before {
    background:
        linear-gradient(90deg, rgba(52,120,184,.045) 1px, transparent 1px),
        linear-gradient(rgba(52,120,184,.045) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(90deg, #000, transparent 82%);
}
.overview-page .overview-hero-light { display: none; }
.overview-page .overview-hero-grid { grid-template-columns: minmax(0, 1.25fr) minmax(300px, .48fr); }
.overview-page .badge { color: #315d82; border-color: #cbdbe8; background: #e8f0f7; }
.overview-page .badge span { background: #3478b8; box-shadow: none; }
.overview-page .overview-hero-copy h1 { max-width: 940px; color: #132a40; font-size: clamp(3.1rem, 6.2vw, 6.4rem); }
.overview-page .overview-hero-copy h1 em { color: #3478b8; }
.overview-page .overview-hero-copy > p:not(.badge) { color: #536b7e; }
.overview-page .btn-primary { color: #fff; background: #2b6ca7; box-shadow: 0 10px 24px rgba(43,108,167,.18); }
.overview-page .btn-primary:hover { background: #205987; box-shadow: 0 13px 30px rgba(43,108,167,.24); }
.overview-page .overview-hero .btn-secondary { color: #29465f; border-color: #bdcbd6; background: transparent; }
.overview-page .overview-hero .btn-secondary:hover { color: #17334c; border-color: #879dab; background: #fff; }

.overview-page .overview-status {
    padding: 30px;
    color: #eef5fa;
    border: 0;
    border-radius: 14px;
    background: #18344d;
    box-shadow: 0 24px 55px rgba(20,49,73,.16);
    backdrop-filter: none;
}
.overview-page .overview-status small { color: #9eb4c5; }
.overview-page .overview-status h2 { color: #fff; }
.overview-page .overview-status p { color: #bdccd7; }
.overview-page .overview-status > a { color: #a9cee9; border-color: rgba(255,255,255,.13); }
.overview-page .status-dot { background: #66b58f; box-shadow: 0 0 0 5px rgba(102,181,143,.12); }
.overview-page .overview-proof { border-color: #e2e8ed; }
.overview-page .overview-proof span::before { background: #3478b8; }

.overview-page .overview-services,
.overview-page .overview-customers { background: #f6f8fa; }
.overview-page .overview-card-large { background: #eaf1f7; }
.overview-page .overview-card-dark,
.overview-page .overview-specialists { border-color: #18344d; background: #18344d; }
.overview-page .overview-icon { color: #285b87; background: #dce9f4; }
.overview-page .overview-card-dark .overview-icon { color: #17344d; background: #b9d5eb; }
.overview-page .overview-card > strong,
.overview-page .text-link { color: #2b6ca7; }
.overview-page .overview-specialists .text-link { color: #a9cee9; }
.overview-page .building-core { color: #fff; background: #3478b8; }
.overview-page .building-core i { background: #d9eafa; box-shadow: none; }
.overview-page .building-tenants { border-color: rgba(169,206,233,.35); }

@media (max-width: 820px) {
    .overview-page .hamburger span { background: #23435d; }
    .overview-page .nav-menu { background: rgba(255,255,255,.99); border-bottom-color: #dce4ea; }
    .overview-page .nav-link { color: #29465f; }
}

@media (max-width: 700px) {
    .overview-page .overview-hero { padding-top: 64px; }
    .overview-page .overview-hero-grid { grid-template-columns: 1fr; }
    .overview-page .overview-status { margin-top: 18px; }
}
