@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@500&family=Public+Sans:wght@300;600&display=swap');

:root {
    --black: #000000;
    --near-black: #0b0b0b;
    --white: #ffffff;
    --gold: #D19F53;
    --grey: #A0A09F;
    --font-heading: 'Roboto Slab', serif;
    --font-body: 'Public Sans', sans-serif;
    --space-s: 16px;
    --space-m: 32px;
    --space-l: 64px;
    --space-xl: 96px;
    --max-width: 1200px;
    --text-width: 720px;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-m);
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 300;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
}

/* ================= HEADER ================= */

header {
    background: rgba(0,0,0,0.92);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(8px);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 22px var(--space-m);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: var(--font-heading);
    letter-spacing: 0.08em;
    font-size: 15px;
}

.brand-logo {
    display: flex;
    align-items: center;
}

.brand-logo img {
    height: 28px;
    display: block;
}

.brand a {
    color: var(--white);
}

.menu-toggle {
    display: none !important;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 44px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-parent::after {
    content: "▾";
    font-size: 11px;
    margin-left: 6px;
    opacity: 0.7;
}

.dropdown-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0,0,0,0.96);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 12px 0;
    min-width: 180px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.28);
}

.dropdown-panel a {
    display: block;
    padding: 10px 20px;
    white-space: nowrap;
    border-bottom: none;
    color: var(--white);
    opacity: 0.9;
}

.dropdown-panel a:hover {
    background: rgba(255,255,255,0.06);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
    display: block;
}

/* ================= BANNER ================= */

.banner {
    background: #0f1012;
    color: var(--white);
    padding: 10px 14px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.01em;
}

.banner .cta {
    color: var(--gold);
    font-weight: 700;
    margin-left: 6px;
}

.site-nav,
nav {
    display: flex;
    gap: 26px;
    align-items: center;
}

.site-nav a,
nav a {
        color: var(--white);
        font-weight: 600;
        font-size: 13px;
        letter-spacing: 0.02em;
        padding: 6px 0;
        opacity: 0.92;
        border-bottom: 1px solid transparent;
    }

.site-nav a:hover,
nav a:hover {
            opacity: 1;
            border-bottom-color: rgba(209,159,83,0.65);
        }

.site-nav a.active {
    color: var(--gold);
    border-bottom-color: rgba(209,159,83,0.9);
    opacity: 1;
}

header::after {
    content: "";
    display: block;
    height: 1px;
    background: rgba(255,255,255,0.08);
}

@media (max-width: 840px) {
    .header-inner {
        flex-wrap: wrap;
        row-gap: 12px;
    }

    .menu-toggle {
        display: inline-flex !important;
    }

    .site-nav {
        width: 100%;
        flex-wrap: wrap;
        gap: 0;
        display: none;
        background: rgba(0,0,0,0.96);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 6px;
        padding: 10px var(--space-m) 14px;
    }

    body.nav-open .site-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .site-nav a,
    nav a {
        padding: 10px 0;
    }

    .nav-dropdown {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-dropdown .nav-parent::after {
        margin-left: 8px;
    }

    .dropdown-panel {
        position: static;
        display: none;
        box-shadow: none;
        padding: 8px 0 0;
        border: none;
        background: transparent;
    }

    .nav-dropdown:hover .dropdown-panel,
    .nav-dropdown:focus-within .dropdown-panel,
    body.nav-open .nav-dropdown .dropdown-panel {
        display: block;
    }

    .dropdown-panel a {
        padding: 8px 16px;
    }
}

/* ================= HERO ================= */

.hero {
    position: relative;
    background: #0f1012 url('../img/hero-home.png') center/cover no-repeat;
    color: var(--white);
    padding: var(--space-xl) 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 0;
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-m);
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 620px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: var(--space-m);
}

.hero p {
    color: var(--grey);
    margin-bottom: var(--space-m);
}

.kicker {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
}

/* ================= BUTTONS ================= */

.cta-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 14px 30px;
    margin-right: var(--space-s);
}

.cta-secondary {
    display: inline-block;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 14px 30px;
}

.btn {
    display: inline-block;
    border: 1px solid transparent;
    padding: 13px 26px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.01em;
}

.btn.primary {
    background: var(--gold);
    color: var(--black);
}

.btn.secondary {
    border-color: rgba(255,255,255,0.6);
    color: var(--white);
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ================= EVOLUTION STORY ================= */

.evolution-story {
    background: radial-gradient(circle at 20% 20%, rgba(209, 159, 83, 0.08), transparent 35%), #0f1012;
    color: var(--white);
    padding: var(--space-xl) 0;
    position: relative;
}

.evolution-story::before {
    content: '';
    position: absolute;
    inset: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    pointer-events: none;
}

.story-inner {
    position: relative;
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: var(--space-l);
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
    backdrop-filter: blur(4px);
    overflow: hidden;
}

.story-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, rgba(209,159,83,0.9), rgba(209,159,83,0.55));
    z-index: 1;
}

.story-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/siyaatevent.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.story-inner h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    line-height: 1.25;
    margin: 0 0 var(--space-m) 0;
    padding-left: 18px;
    position: relative;
    z-index: 2;
}

.story-copy {
    color: #e6e5e2;
    padding-left: 18px;
    column-count: 2;
    column-gap: var(--space-l);
    position: relative;
    z-index: 2;
}

.story-copy p {
    margin: 0 0 12px 0;
    font-size: 16px;
    break-inside: avoid;
}

.story-copy p strong {
    color: var(--white);
}

@media (max-width: 900px) {
    .story-copy {
        column-count: 1;
    }
}

/* ================= SERVICES (4-ACROSS GRID) ================= */

.services-tiles {
    background: var(--white);
    padding: var(--space-xl) 0;
}

.tiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-l);
}

.service-tile {
    position: relative;
    display: block;
    padding: var(--space-l);
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    color: var(--black);
    overflow: hidden;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

    .service-tile::before {
        content: attr(data-icon);
        position: absolute;
        top: -30px;
        right: 20px;
        font-size: 160px;
        font-family: var(--font-heading);
        color: rgba(0,0,0,0.035);
        pointer-events: none;
    }

    .service-tile h3 {
        font-family: var(--font-heading);
        font-size: 20px;
        margin-bottom: var(--space-s);
    }

    .service-tile p {
        font-size: 15px;
        color: var(--grey);
        margin-bottom: var(--space-m);
    }

.tile-link {
    font-weight: 600;
    font-size: 13px;
    color: var(--gold);
}

.service-tile:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1100px) {
    .tiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .tiles-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= TESTIMONIALS ================= */

.testimonials {
    padding: var(--space-xl) 0;
}

.testimonials-inner {
    max-width: var(--text-width); /* 720px */
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-slide.is-active {
    display: block;
    opacity: 1;
}

.testimonials blockquote {
    margin: 0;
    padding-left: var(--space-m);
    border-left: 2px solid var(--gold);
}

.testimonials p {
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: var(--space-s);
}

.testimonials footer {
    font-size: 14px;
    color: var(--grey);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: var(--space-m);
}

.testimonial-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.testimonial-dots button.is-active {
    background: var(--gold);
    transform: scale(1.05);
}

/* ================= PATTERN SECTION ================= */

.pattern-section {
    position: relative;
    background: var(--near-black) url('../img/Pattern_Gold.png') repeat;
    background-size: 420px auto;
    padding: var(--space-xl) 0;
}

    .pattern-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.82);
        pointer-events: none;
    }

.pattern-content {
    position: relative;
}

.pattern-inner {
    max-width: 620px;
    color: var(--white);
}

    .pattern-inner h2 {
        font-family: var(--font-heading);
        font-size: 32px;
        margin-bottom: var(--space-s);
    }

    .pattern-inner p {
        color: rgba(255,255,255,0.75);
        margin-bottom: var(--space-m);
    }

/* ================= FOOTER ================= */

.site-footer {
    background: var(--near-black);
    color: var(--white);
    padding: var(--space-xl) 0 var(--space-m);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-l);
}

.footer-logo {
    height: 28px;
    display: block;
    margin-bottom: 10px;
}

.site-footer h4 {
    font-size: 13px;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-s);
}

.site-footer a {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

    .site-footer a:hover {
        color: var(--gold);
    }

.footer-bottom {
    margin-top: var(--space-l);
    padding-top: var(--space-s);
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-m);
}


.services-tiles .tiles-grid {
    max-width: var(--max-width);
    margin: 0 auto;
}

.pattern-inner-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-m);
    position: relative;
    z-index: 2;
}
.split-intro {
    background: var(--near-black);
    color: var(--white);
    padding: var(--space-xl) 0;
}

.split-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-m);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-l);
    align-items: center;
}

.split-text h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: var(--space-s);
}

.split-text p {
    color: rgba(255,255,255,0.75);
    max-width: 520px;
}

.split-image img {
    width: 100%;
    display: block;
    border-radius: 2px;
}

@media (max-width: 900px) {
    .split-inner {
        grid-template-columns: 1fr;
    }
}

/* ================= INNER PAGES ================= */

body {
    background: var(--white);
}

.page-hero {
    position: relative;
    background: var(--near-black);
    color: var(--white);
    padding: var(--space-xl) 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.page-hero .hero-inner {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 46px;
    margin: 0 0 14px;
}

.page-hero .lede {
    color: rgba(255,255,255,0.82);
    max-width: var(--text-width);
    margin-bottom: var(--space-m);
}

.insights-hero {
    background: #0f1012;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.page-hero {
    background-size: cover;
    background-position: center;
}

body[data-page="consultancy"] .page-hero { background-image: url('../img/hero-consultancy.png'); }
body[data-page="technical"] .page-hero { background-image: url('../img/hero-technical.png'); }
body[data-page="marketing"] .page-hero { background-image: url('../img/hero-marketing.png'); }
body[data-page="events"] .page-hero { background-image: url('../img/hero-events.png'); }
body[data-page="standards"] .page-hero { background-image: url('../img/hero-standards.png'); }
body[data-page="insights"] .page-hero { background-image: url('../img/hero-insights.png'); }
body[data-page="contact"] .page-hero { background-image: url('../img/hero-contact.png'); }
body[data-page="b2b"] .page-hero { background-image: url('../img/hero-b2b-connections.png'); }
body[data-page="change"] .page-hero { background-image: url('../img/hero-change-management.png'); }
body[data-page="ai"] .page-hero { background-image: url('../img/hero-integrating-ai.png'); }
body[data-page="digital"] .page-hero { background-image: url('../img/hero-digital-transformation.png'); }
body[data-page="gtm"] .page-hero { background-image: url('../img/hero-go-to-market.png'); }
body[data-page="product"] .page-hero { background-image: url('../img/hero-product-strategy.png'); }
body[data-page="recruitment"] .page-hero { background-image: url('../img/hero-recruitment.png'); }
body[data-page="copywriting"] .page-hero { background-image: url('../img/hero-copywriting-proofreading.png'); }
body[data-page="design"] .page-hero { background-image: url('../img/hero-graphic-design-branding.png'); }
body[data-page="media"] .page-hero { background-image: url('../img/hero-press-media-relations.png'); }
body[data-page="social"] .page-hero { background-image: url('../img/hero-social-media-management.png'); }
body[data-page="video"] .page-hero { background-image: url('../img/hero-video-multimedia.png'); }
body[data-page="ecommerce"] .page-hero { background-image: url('../img/hero-ecommerce.png'); }
body[data-page="embedded"] .page-hero { background-image: url('../img/hero-embedded-software.png'); }
body[data-page="firmware"] .page-hero { background-image: url('../img/hero-firmware.png'); }
body[data-page="frontend"] .page-hero { background-image: url('../img/hero-frontend-web.png'); }
body[data-page="hardware"] .page-hero { background-image: url('../img/hero-hardware.png'); }
body[data-page="pm"] .page-hero { background-image: url('../img/hero-project-management.png'); }
body[data-page="webapp"] .page-hero { background-image: url('../img/hero-web-app.png'); }
body[data-page="ise-booking"] .page-hero { background-image: url('../img/hero-ise-booking.png'); }
body[data-page="ise"] .page-hero { background-image: url('../img/hero-ise.png'); }
body[data-page="privacy"] .page-hero { background-image: url('../img/hero-privacy.png'); }
body[data-page="configurator"] .page-hero { background-image: url('../img/hero-configurator.png'); }

.insights-hero .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: var(--space-l);
    align-items: center;
}

.hero-cta-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
}

.hero-cta-card h3 {
    margin-top: 0;
    margin-bottom: 8px;
}

.hero-cta-card .muted {
    color: rgba(255,255,255,0.7);
}

.page {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-m) var(--space-xl);
}

.section {
    padding: var(--space-xl) 0 0;
}

.section.dark {
    background: #0f1012;
    color: var(--white);
    padding: var(--space-xl) var(--space-m);
    margin: var(--space-xl) calc(-1 * var(--space-m)) 0;
}

.section.dark h2,
.section.dark p,
.section.dark li {
    color: rgba(255,255,255,0.92);
}

.delivery-approach .card {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 16px 36px rgba(0,0,0,0.35);
}

.section.light {
    color: var(--near-black);
}

.image-break {
    padding: var(--space-xl) 0;
}

.image-break figure {
    margin: 0;
}

.image-break img {
    width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 18px 48px rgba(0,0,0,0.12);
}

.consultancy-divider {
    padding: var(--space-l) 0;
}

.section-intro {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    color: var(--grey);
    margin: 0 0 var(--space-l);
    max-width: 600px;
}

.section.light .section-intro {
    color: var(--grey);
}

.section.dark .section-intro {
    color: rgba(255, 255, 255, 0.6);
}

.benefits-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-l);
    margin-top: var(--space-l);
    padding-top: var(--space-m);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--near-black);
}

.benefit-icon {
    color: var(--gold);
    font-size: 10px;
}

/* ================= VIDEO CONTENT SECTION ================= */

.video-content-section {
    padding: var(--space-xl) var(--space-m);
    background: var(--white);
}

.video-content-header {
    max-width: var(--max-width);
    margin: 0 auto var(--space-l);
    text-align: left;
}

.video-workflows-heading {
    max-width: var(--max-width);
    margin: 0 auto var(--space-m);
    text-align: left;
}

.video-workflows-heading h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    margin: 0;
}

.video-workflows-subheading {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--grey);
    margin: 8px 0 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.deliver-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-m);
    max-width: var(--max-width);
    margin: 0 auto var(--space-xl);
}

.deliver-card {
    background: #F5F5F5;
    padding: var(--space-m);
    border-radius: 4px;
    text-align: left;
}

.deliver-card h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 8px;
}

.deliver-card p {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--grey);
    margin: 0;
}

@media (max-width: 768px) {
    .deliver-cards {
        grid-template-columns: 1fr;
    }
}

.video-content-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--grey);
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.video-content-header h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 500;
    color: var(--black);
    margin: 0 0 16px;
}

.video-content-description {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--near-black);
    max-width: 640px;
    margin: 0;
    line-height: 1.7;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.video-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.video-card-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    margin: 0 0 12px;
    line-height: 1.3;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--near-black);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-thumbnail:hover .video-overlay {
    opacity: 1;
}

.play-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    position: relative;
}

.play-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-left: 14px solid var(--near-black);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
}

.video-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 24px 12px 12px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: var(--white);
}

.video-summary {
    background: #F5F0E6;
    padding: 12px 14px;
    margin-bottom: 12px;
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.4;
}

.video-details {
    margin: 0;
    padding: 0;
    list-style: none;
}

.video-details li {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    color: var(--near-black);
    line-height: 1.5;
    padding: 4px 0;
    padding-left: 14px;
    position: relative;
}

.video-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

.video-note {
    max-width: var(--max-width);
    margin: var(--space-l) auto 0;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    font-style: italic;
    color: var(--grey);
}

@media (max-width: 1200px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-content-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.section h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    margin: 0 0 12px;
}

.section p {
    max-width: var(--text-width);
}

.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-l);
    align-items: start;
}

.gtm-balanced {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
}

.gtm-visual {
    padding: 0;
    margin: 0;
    overflow: hidden;
    justify-self: end;
    max-width: 760px;
}

.gtm-visual img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 900px) {
    .gtm-balanced {
        grid-template-columns: 1fr;
    }

    .gtm-visual {
        justify-self: start;
    }
}

.card {
    background: rgba(0,0,0,0.82);
    color: var(--white);
    padding: 26px;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
}

.card.pattern-surface {
    background-color: #0f1012;
    background-image:
        linear-gradient(180deg, rgba(15,16,18,0.72) 0%, rgba(15,16,18,0.9) 45%, rgba(15,16,18,0.96) 100%),
        url('../img/Pattern_Gold.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    border-color: rgba(255,255,255,0.12);
}

.card.light {
    background: var(--white);
    color: var(--near-black);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}

.card.dark {
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.card.dark h3,
.card.dark p {
    color: rgba(255,255,255,0.92);
}

.card.image-card {
    padding: 0;
    overflow: hidden;
}

.card.image-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.consultancy-overview {
    margin-top: 24px;
    padding-top: 24px;
}

.operate-hero-block {
    position: relative;
    color: var(--white);
    background: #0f1012;
    padding: 120px 0 140px;
    margin-top: var(--space-l);
    overflow: hidden;
}

.operate-hero-block::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 45%;
    min-height: 220px;
    background-image: linear-gradient(180deg, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.62) 55%, rgba(15,16,18,0.95) 100%),
        url('../img/hero-consultancy.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.operate-hero-block::after {
    content: '';
    position: absolute;
    left: -10%;
    right: -10%;
    top: -14%;
    height: 72%;
    background: radial-gradient(120% 80% at 20% 10%, rgba(255,255,255,0.12), transparent 60%),
        linear-gradient(135deg, rgba(255,255,255,0.08), transparent 40%);
    mix-blend-mode: screen;
    z-index: 1;
    pointer-events: none;
}

.operate-hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--text-width);
}

.operate-hero-content h2 {
    font-size: 34px;
    margin: 6px 0 10px;
}

.operate-hero-content p {
    color: rgba(255,255,255,0.82);
    margin: 0;
}

.operate-card-row {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-m);
    margin-top: -70px;
}

.operate-card-row .card.light {
    box-shadow: 0 22px 44px rgba(0,0,0,0.16);
    border-color: rgba(0,0,0,0.05);
}

.operate-identity-row {
    grid-template-columns: minmax(0, 1.1fr);
    margin-top: var(--space-s);
}

.operate-identity-section {
    padding-top: var(--space-l);
}

.operate-identity-section .operate-card-row {
    margin-top: 0;
    grid-template-columns: minmax(0, 1.1fr);
}

@media (max-width: 700px) {
    .operate-hero-block {
        padding: 86px 0 130px;
    }

    .operate-card-row {
        margin-top: -52px;
    }
}

.narrative-header {
    max-width: var(--text-width);
    margin-bottom: var(--space-l);
}

.narrative-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-l);
    align-items: start;
}

.narrative-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-m);
}

.story-card {
    padding: 22px 22px 22px 30px;
    border: 1px solid rgba(0,0,0,0.05);
    border-left: 4px solid var(--accent-gold);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,248,248,0.95));
    box-shadow: 0 18px 32px rgba(0,0,0,0.05);
}

.story-card .story-subhead {
    color: var(--accent-gold);
    margin: 0 0 8px;
    font-size: 18px;
    letter-spacing: 0.01em;
}

.story-card p + .story-subhead {
    margin-top: 18px;
}

.story-card p {
    margin: 0 0 12px;
    line-height: 1.6;
}

.story-card p:last-child {
    margin-bottom: 0;
}

.poe-callout {
    position: sticky;
    top: 32px;
}

.poe-inner {
    background: var(--near-black);
    color: var(--white);
    border-radius: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.poe-inner h3 {
    color: var(--white);
}

.poe-inner .muted {
    color: rgba(255,255,255,0.8);
}

.poe-legend {
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin: 10px 0 6px;
}

.poe-scale {
    display: grid;
    gap: 10px;
}

.poe-standard {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 10px 12px;
}

.poe-standard.highlight {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 26px rgba(201, 158, 49, 0.35);
}

.poe-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.poe-name {
    color: var(--white);
}

.poe-watts {
    color: rgba(255,255,255,0.82);
    font-variant-numeric: tabular-nums;
}

.poe-bar {
    margin-top: 8px;
    height: calc((var(--w) / 90) * 120px);
    background: linear-gradient(90deg, #c99e31, #f4d25e);
    border-radius: 8px;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.2);
}

.poe-standard:not(.highlight) .poe-bar {
    background: linear-gradient(90deg, rgba(255,255,255,0.12), rgba(255,255,255,0.3));
}

.poe-note {
    color: rgba(255,255,255,0.76);
    margin-top: 12px;
    line-height: 1.5;
}

.metric-scale {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

.metric-line {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 12px;
    align-items: center;
}

.metric-label {
    color: var(--white);
    font-weight: 650;
    letter-spacing: 0.01em;
}

.metric-sub {
    color: rgba(255,255,255,0.78);
    font-size: 13px;
    margin-top: 2px;
}

.metric-bar {
    position: relative;
    height: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

.metric-bar::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--fill, 68%);
    background: linear-gradient(90deg, #c99e31, #f4d25e);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.15);
}

.metric-bar.tier-guarded::after {
    background: linear-gradient(90deg, #5bc0be, #80ffea);
}

.metric-bar.tier-hardened::after {
    background: linear-gradient(90deg, #6c63ff, #cbd5ff);
}

.metric-bar-label {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.9);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.metric-note {
    color: rgba(255,255,255,0.7);
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.flywheel-grid {
    display: grid;
    gap: 10px;
    margin-top: 8px;
}

.flywheel-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
}

.flywheel-node {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, #c99e31, #f4d25e);
    display: grid;
    place-items: center;
    color: var(--near-black);
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(201, 158, 49, 0.35);
}

.flywheel-title {
    color: var(--white);
    font-weight: 700;
}

.flywheel-copy {
    color: rgba(255,255,255,0.78);
    font-size: 13px;
    line-height: 1.5;
    margin-top: 2px;
}

.uptime-grid {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.uptime-row {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 10px 12px;
}

.uptime-label {
    color: var(--white);
    font-weight: 650;
}

.uptime-detail {
    color: rgba(255,255,255,0.76);
    font-size: 13px;
}

.uptime-badge {
    justify-self: end;
    padding: 6px 10px;
    border-radius: 20px;
    background: rgba(201, 158, 49, 0.12);
    color: var(--white);
    border: 1px solid rgba(201, 158, 49, 0.3);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.01em;
}

.uptime-row.tier-guarded {
    border-color: rgba(91, 192, 190, 0.4);
}

.uptime-row.tier-guarded .uptime-badge {
    background: rgba(91, 192, 190, 0.18);
    border-color: rgba(91, 192, 190, 0.4);
}

.uptime-row.tier-hardened {
    border-color: rgba(108, 99, 255, 0.45);
}

.uptime-row.tier-hardened .uptime-badge {
    background: rgba(108, 99, 255, 0.2);
    border-color: rgba(108, 99, 255, 0.45);
}

@media (max-width: 980px) {
    .narrative-layout {
        grid-template-columns: 1fr;
    }

    .poe-callout {
        position: static;
    }
}

.card[class*="icon-"]::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 10px;
    width: 96px;
    height: 96px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.22;
    pointer-events: none;
    filter: drop-shadow(0 12px 18px rgba(0,0,0,0.06));
}

.card:not(.light)[class*="icon-"]::after {
    opacity: 0.3;
}

.package-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    font-size: 15px;
}

.package-table .package-row {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.package-table .package-row.header {
    background: #0f1012;
    color: #fff;
    font-weight: 700;
    border: none;
}

.package-table .package-row.header .package-cell {
    padding: 12px 14px;
}

.package-table .package-cell {
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-table .package-cell .label {
    font-weight: 600;
    color: #0f1012;
}

.package-table .package-cell .note {
    color: #555;
    font-size: 13px;
}

.package-table .plan-core { background: #f6f6f6; }
.package-table .plan-pro { background: #fdf8f0; }
.package-table .plan-plus { background: #fff4df; }

.package-table .price-row {
    background: #f6f6f6;
    color: #0f1012;
    font-weight: 700;
}

.timeline-bar {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.timeline-segment {
    flex: 1;
    min-width: 140px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #0f1012;
    font-weight: 700;
    font-size: 14px;
    position: relative;
}

.timeline-segment small {
    display: block;
    font-weight: 500;
    color: #333;
    margin-top: 4px;
}

.timeline-segment.consult { background: #fff4df; }
.timeline-segment.training { background: #fdf8f0; }
.timeline-segment.onboarding { background: #f6f6f6; }
.timeline-segment.review { background: #e9ecf3; }

.icon-target::after { background-image: url('../img/card-icons/icon-target.svg'); }
.icon-chat::after { background-image: url('../img/card-icons/icon-chat.svg'); }
.icon-network::after { background-image: url('../img/card-icons/icon-network.svg'); }
.icon-monitor::after { background-image: url('../img/card-icons/icon-monitor.svg'); }
.icon-clapboard::after { background-image: url('../img/card-icons/icon-clapboard.svg'); }
.icon-stars::after { background-image: url('../img/card-icons/icon-stars.svg'); }
.icon-megaphone::after { background-image: url('../img/card-icons/icon-megaphone.svg'); }
.icon-bolt::after { background-image: url('../img/card-icons/icon-bolt.svg'); }
.icon-gears::after { background-image: url('../img/card-icons/icon-gears.svg'); }
.icon-cable::after { background-image: url('../img/card-icons/icon-cable.svg'); }
.icon-pen::after { background-image: url('../img/card-icons/icon-pen.svg'); }
.icon-shield::after { background-image: url('../img/card-icons/icon-shield.svg'); }
.icon-calendar::after { background-image: url('../img/card-icons/icon-calendar.svg'); }
.icon-rocket::after { background-image: url('../img/card-icons/icon-rocket.svg'); }
.icon-handshake::after { background-image: url('../img/card-icons/icon-handshake.svg'); }
.icon-lightbulb::after { background-image: url('../img/card-icons/icon-lightbulb.svg'); }
.icon-clipboard::after { background-image: url('../img/card-icons/icon-clipboard.svg'); }
.icon-layers::after { background-image: url('../img/card-icons/icon-layers.svg'); }
.icon-radar::after { background-image: url('../img/card-icons/icon-radar.svg'); }
.icon-globe::after { background-image: url('../img/card-icons/icon-globe.svg'); }

@media (max-width: 720px) {
    .card[class*="icon-"]::after {
        width: 78px;
        height: 78px;
        right: 10px;
        bottom: 6px;
        opacity: 0.18;
    }
}

.video-feature {
    background: var(--near-black);
    color: var(--white);
    padding: var(--space-l) var(--space-m);
    margin-top: var(--space-l);
}

.video-feature-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-l);
    align-items: center;
}

.video-feature .kicker {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin: 0 0 6px 0;
}

.video-feature h3 {
    font-family: var(--font-heading);
    margin: 0 0 10px 0;
}

.video-feature .muted {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.video-frame {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 18px 48px rgba(0,0,0,0.36);
    background: #000;
}

.video-frame::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.bullets {
    padding-left: 18px;
    margin: 0;
    display: grid;
    gap: 10px;
}

.bullets li {
    margin: 0;
}

.sector-band {
    position: relative;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.58) 50%, rgba(0,0,0,0.32) 100%),
        url('../img/BG_2.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left bottom;
    color: var(--white);
    padding: var(--space-l) var(--space-m);
    margin: var(--space-xl) calc(-1 * var(--space-m)) 0;
    box-shadow: 0 18px 48px rgba(0,0,0,0.18);
}

.sector-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.pattern-band {
    background: var(--near-black) url('../img/Pattern_Gold.png') repeat;
    background-size: 420px auto;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.band-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-l) var(--space-m);
    position: relative;
    color: var(--white);
}

.band-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.78);
}

.band-inner > * {
    position: relative;
}

.muted {
    color: rgba(255,255,255,0.65);
}

.section .muted {
    color: #4b4b4b;
}

.post-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.post-meta {
    color: #7a7a7a;
    font-size: 13px;
    letter-spacing: 0.02em;
}

.post-title {
    display: inline-block;
    font-family: var(--font-heading);
    color: var(--near-black);
    font-size: 20px;
    margin-bottom: 6px;
}

.post-intro {
    margin: 0;
    color: #4b4b4b;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-m);
    margin-top: var(--space-m);
}

.blog-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.blog-card-thumb {
    background-size: cover;
    background-position: center;
    height: 160px;
    border-radius: 6px;
    margin: -18px -18px 14px;
}

.blog-card-thumb.placeholder {
    background: linear-gradient(135deg, #0f1012, #1b1b1b);
}

.blog-card-meta {
    color: #666;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.blog-card-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--near-black);
    margin-bottom: 8px;
}

.blog-card-title:hover {
    color: var(--gold);
}

.blog-card-intro {
    margin: 0;
    color: #4b4b4b;
}

.post-page {
    max-width: 840px;
}

.post-header h1 {
    margin: 6px 0 6px;
}

.post-meta {
    color: #666;
    font-size: 14px;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.share-label {
    color: #666;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.share-links {
    display: flex;
    gap: 10px;
}

.share-link {
    font-size: 14px;
    color: var(--near-black);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    box-shadow: 0 6px 14px rgba(0,0,0,0.04);
}

.share-link:hover {
    color: var(--gold);
    border-color: rgba(0,0,0,0.14);
}

.post-hero {
    padding: 0;
}

.post-hero-image {
    width: 100%;
    height: 380px;
    background: #0f1012;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.post-hero-image.no-image {
    background: linear-gradient(135deg, #0f1012, #1b1b1b);
}

.post-body {
    margin-top: var(--space-m);
    font-size: 17px;
    line-height: 1.7;
    color: #191919;
}

.post-body p {
    margin-bottom: 14px;
}

.post-back {
    margin-top: var(--space-l);
}

/* ================= ISE BOOKING ================= */

.slot-grid {
    display: grid;
    gap: var(--space-m);
}

.slot-day-heading {
    font-family: var(--font-heading);
    color: var(--gold);
    margin-bottom: 8px;
}

.slot-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.slot-card {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 12px;
    background: #fff;
    box-shadow: 0 6px 14px rgba(0,0,0,0.04);
}

.slot-card.is-full {
    opacity: 0.5;
}

.slot-time {
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--near-black);
}

.slot-meta {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

.slot-status {
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 6px;
    color: #0f1012;
}

.slot-card.is-full .slot-status {
    color: #9b9b9b;
}

.tab-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: var(--space-m) 0;
}

.tab-nav button {
    padding: 12px 18px;
    border-radius: 999px;
    border: 2px solid rgba(0,0,0,0.12);
    background: #f6f6f6;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-nav button.is-active {
    background: var(--gold);
    color: #0f1012;
    border-color: var(--gold);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.tab-nav button:hover:not(.is-active) {
    border-color: rgba(0,0,0,0.22);
    background: #ffffff;
}

.contact-links a {
    color: var(--gold);
    font-weight: 600;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-m);
}

.form-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1b1b1b;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1.5px solid rgba(0,0,0,0.22);
    font-size: 15px;
    font-family: var(--font-body);
    background: #ffffff;
}

.form-field textarea {
    min-height: 160px;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(210, 170, 78, 0.2);
}

.form-hint {
    color: #666;
    font-size: 13px;
    margin-top: 6px;
}

.form-actions {
    margin-top: var(--space-m);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ise-form {
    margin-top: 10px;
    padding: 18px;
    border-radius: 12px;
    border: 2px solid rgba(0,0,0,0.06);
    box-shadow: 0 14px 36px rgba(0,0,0,0.06);
    background: linear-gradient(135deg, rgba(210,170,78,0.08), rgba(15,16,18,0.02));
    display: grid;
    gap: 14px;
}

.ise-form .field-label {
    display: block;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 12px;
    color: #0f1012;
    margin-bottom: 6px;
}

.ise-form input,
.ise-form select,
.ise-form textarea {
    width: 100%;
    padding: 13px 14px;
    border-radius: 10px;
    border: 2px solid rgba(0,0,0,0.12);
    font-size: 15px;
    font-family: var(--font-body);
    background: #ffffff;
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
}

.ise-form textarea {
    min-height: 140px;
    resize: vertical;
}

.ise-form input:focus,
.ise-form select:focus,
.ise-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(210, 170, 78, 0.25);
}

.ise-form .form-actions {
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ise-form button[type="submit"] {
    padding: 14px 18px;
    font-weight: 700;
}

.ise-form .status {
    font-size: 13px;
    color: #4a4a4a;
}

.status {
    font-size: 14px;
}

.status.success {
    color: #1b7a3c;
}

.status.error {
    color: #a30000;
}

.new-footer {
    margin-top: var(--space-xl);
}

@media (max-width: 700px) {
    .page-hero h1 {
        font-size: 36px;
    }
    .insights-hero .hero-inner {
        grid-template-columns: 1fr;
    }
    .sector-band {
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
    }
    .post-row {
        grid-template-columns: 1fr;
    }
}

/* Evolution of Signal Distribution page */
.signal-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: radial-gradient(circle at 20% 30%, rgba(209,159,83,0.18), transparent 35%),
                radial-gradient(circle at 80% 10%, rgba(209,159,83,0.12), transparent 30%),
                #0d0d0d;
    padding-bottom: calc(var(--space-xl) * 1.1);
}

.signal-hero .hero-inner {
    position: relative;
    max-width: 760px;
    z-index: 1;
}

.signal-hero .hero-visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.connector-cluster {
    position: absolute;
    right: 8%;
    top: 18%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    display: grid;
    place-items: center;
    filter: drop-shadow(0 12px 40px rgba(0,0,0,0.35));
}

.connector-cluster .node {
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.35);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
}

.connector-cluster .node.gold {
    background: rgba(209,159,83,0.55);
    border-color: rgba(209,159,83,0.7);
}

.connector-cluster .wave {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,0.12);
    animation: spin 22s linear infinite;
}

.signal-hero .hero-note {
    margin-top: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
}

.signal-intro .card.icon-film::before { content: ""; }

.timeline-wrap {
    background: linear-gradient(180deg, #faf7f2 0%, #ffffff 100%);
    padding-top: calc(var(--space-xl) * 1.1);
    padding-bottom: calc(var(--space-xl) * 1.2);
    scroll-margin-top: 80px;
}

.timeline-grid {
    display: grid;
    grid-template-columns: minmax(220px, 240px) 1fr;
    gap: calc(var(--space-lg) + 10px);
    align-items: start;
    position: relative;
}

.timeline-grid.avoip-expanded {
    grid-template-columns: 1fr;
}

.timeline-rail {
    position: sticky;
    top: 96px;
    align-self: start;
    background: #0d0d0d;
    color: var(--white);
    padding: var(--space-md);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    z-index: 3;
    width: 100%;
    max-width: 240px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.timeline-grid.avoip-expanded .timeline-rail {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-18px);
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 0;
}

.timeline-rail .rail-label {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

.timeline-rail ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
}

.timeline-rail li {
    font-weight: 600;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    transition: border-color 0.3s, transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.timeline-rail .rail-link {
    display: block;
    padding: 10px 12px;
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    outline: none;
}

.timeline-rail li.active,
.timeline-rail .rail-link:focus-visible {
    border-color: rgba(209,159,83,0.65);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    background: rgba(209,159,83,0.14);
    transform: translateX(4px);
}

.timeline-rail .rail-link:focus-visible {
    box-shadow: 0 0 0 2px rgba(209,159,83,0.75);
}
.timeline-stages {
    position: relative;
    display: grid;
    gap: var(--space-lg);
}

.stage {
    min-height: 125vh;
    position: relative;
}

.stage-pin {
    position: sticky;
    top: 110px;
    will-change: transform;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.stage::after {
    content: "";
    position: absolute;
    inset: 12% 0 10% auto;
    width: 72%;
    background: radial-gradient(circle at 20% 20%, rgba(209,159,83,0.08), transparent 30%),
                radial-gradient(circle at 80% 60%, rgba(209,159,83,0.05), transparent 32%);
    filter: blur(0px);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.stage.is-active::after {
    opacity: 1;
}

.milestone-card {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    margin-left: 10px;
    padding: calc(var(--space-md) + 8px) calc(var(--space-md) + 16px) calc(var(--space-md) + 10px) calc(var(--space-md) + 61px);
    box-shadow: 0 18px 52px rgba(0,0,0,0.12);
    border: 1px solid #f0e5d7;
    overflow: hidden;
    transform: translateY(22px) scale(0.98);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease, opacity 0.35s ease;
}

.stage.is-active .milestone-card {
    transform: translateY(0) scale(1);
}

.stage.is-faded .milestone-card {
    opacity: 0.35;
}

.milestone-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, rgba(209,159,83,0.9) 0%, rgba(209,159,83,0.35) 100%);
}

.milestone-head {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.milestone-head .era {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--grey-dark);
}

.connector-mark {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #0d0d0d;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.22);
}

.stage.is-active .milestone-card {
    transform: translateY(0) scale(1);
    box-shadow: 0 26px 70px rgba(0,0,0,0.16);
    border-color: rgba(209,159,83,0.4);
}

.connector-illustration {
    position: absolute;
    inset: -10% auto auto -6%;
    width: 260px;
    height: 220px;
    opacity: 0.08;
    background: radial-gradient(circle, rgba(209,159,83,0.35) 0%, rgba(209,159,83,0) 55%);
    filter: blur(0.4px);
    transform: translateY(26px) rotate(-6deg);
    transition: transform 0.6s ease, opacity 0.6s ease;
    pointer-events: none;
}

.stage.is-active .connector-illustration {
    opacity: 0.16;
    transform: translateY(0) rotate(0deg);
}

.connector-illustration.xlr { mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 90"><rect x="8" y="18" width="32" height="54" rx="8" ry="8" stroke="black" fill="white" stroke-width="8"/><circle cx="26" cy="30" r="6" fill="black"/><circle cx="26" cy="46" r="6" fill="black"/><circle cx="26" cy="62" r="6" fill="black"/></svg>') center/contain no-repeat; }
.connector-illustration.rca { mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140 90"><rect x="16" y="12" width="42" height="66" rx="10" stroke="black" fill="white" stroke-width="8"/><rect x="82" y="12" width="42" height="66" rx="10" stroke="black" fill="white" stroke-width="8"/></svg>') center/contain no-repeat; }
.connector-illustration.sdi { mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 80"><rect x="12" y="20" width="126" height="40" rx="12" stroke="black" fill="white" stroke-width="10"/><circle cx="40" cy="40" r="8" fill="black"/><circle cx="72" cy="40" r="8" fill="black"/><circle cx="104" cy="40" r="8" fill="black"/></svg>') center/contain no-repeat; }
.connector-illustration.hdmi { mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 90"><rect x="20" y="18" width="110" height="54" rx="8" stroke="black" fill="white" stroke-width="10"/><rect x="44" y="30" width="62" height="12" fill="black"/><rect x="44" y="48" width="62" height="12" fill="black"/></svg>') center/contain no-repeat; }
.connector-illustration.hdbaset { mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 160 90"><rect x="16" y="18" width="92" height="54" rx="8" stroke="black" fill="white" stroke-width="10"/><rect x="112" y="36" width="32" height="18" fill="black"/></svg>') center/contain no-repeat; }
.connector-illustration.avoip { mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 120"><rect x="16" y="26" width="60" height="68" rx="10" stroke="black" fill="white" stroke-width="8"/><rect x="86" y="18" width="60" height="86" rx="10" stroke="black" fill="white" stroke-width="8"/><rect x="156" y="34" width="28" height="54" rx="6" stroke="black" fill="white" stroke-width="8"/></svg>') center/contain no-repeat; }
.connector-illustration.st2110 { mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 120"><rect x="18" y="26" width="48" height="68" rx="10" stroke="black" fill="white" stroke-width="8"/><rect x="76" y="18" width="48" height="86" rx="10" stroke="black" fill="white" stroke-width="8"/><rect x="134" y="10" width="48" height="104" rx="10" stroke="black" fill="white" stroke-width="8"/></svg>') center/contain no-repeat; }

.connector-illustration.rca,
.connector-illustration.hdmi { inset: -12% auto auto -4%; }
.connector-illustration.hdbaset,
.connector-illustration.avoip,
.connector-illustration.st2110 { inset: -14% auto auto -8%; }

.stage[data-era="2015"] .milestone-card::before,
.stage[data-era="2015"] .milestone-card {
    background: linear-gradient(180deg, rgba(209,159,83,0.08), #ffffff);
}

.timeline-grid.avoip-expanded .stage[data-era="2015"] .stage-pin {
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-grid.avoip-expanded .stage[data-era="2015"] .milestone-card {
    margin-inline: auto;
    padding-right: var(--space-lg);
}

.standards-note {
    margin: 14px 0 10px;
    padding: 12px 14px 12px calc(14px + 10px);
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(209,159,83,0.08), rgba(255,255,255,0.6));
    border: 1px solid rgba(209,159,83,0.28);
}

.standards-note .muted {
    max-width: 680px;
    margin: 4px 0 0;
}

.legend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 16px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f5eee4;
    font-weight: 600;
}

.pill::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #d19f53;
    border-radius: 50%;
}

.pill-muted {
    background: #f0f0f0;
    color: #4a4a4a;
}

.pill-muted::before {
    background: #b5b5b5;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: calc(var(--space-md) + 6px);
    align-items: center;
}

.pros-cons .bullets li { margin-bottom: 6px; }

.range {
    background: #0d0d0d;
    color: var(--white);
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(209,159,83,0.35);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.range-label {
    font-weight: 600;
    margin-bottom: 10px;
}

.range-bar {
    position: relative;
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.12);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 8px;
}

.range-bar span {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, #d19f53, #f2d19b);
    border-radius: 999px;
}

.range-meta {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.callout-grid .card {
    min-height: 100%;
}

.callout-grid .mini-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.callout-grid .mini-badges span {
    padding: 8px 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    font-weight: 600;
}

.documentary-teaser {
    background: #0c0c0c;
    color: var(--white);
    padding-top: calc(var(--space-xl) * 1.1);
}

.teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    align-items: center;
}

.teaser-copy h3 {
    margin-top: 8px;
    margin-bottom: 14px;
}

.teaser-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0 10px;
}

.teaser-actions .btn.disabled {
    background: linear-gradient(90deg, rgba(209,159,83,0.4), rgba(209,159,83,0.7));
    cursor: not-allowed;
    border-color: rgba(209,159,83,0.5);
    color: var(--white);
}

.small-print {
    font-size: 14px;
}

.teaser-visual {
    display: flex;
    justify-content: center;
}

.teaser-poster {
    width: min(520px, 100%);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(209,159,83,0.1), rgba(255,255,255,0.06));
    border: 1px solid rgba(209,159,83,0.25);
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.poster-inner {
    background: #0f0f0f;
    border: 1px dashed rgba(209,159,83,0.45);
    border-radius: 12px;
    padding: var(--space-md);
    position: relative;
    overflow: hidden;
    min-height: 220px;
}

.poster-inner .pill {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(209,159,83,0.16);
    color: var(--white);
    border: 1px solid rgba(209,159,83,0.45);
}

.poster-illustration {
    display: grid;
    place-items: center;
    gap: 14px;
    height: 100%;
    color: rgba(255,255,255,0.8);
    animation: float 6s ease-in-out infinite;
}

.poster-illustration .line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(209,159,83,0.9), transparent);
    opacity: 0.7;
}

.poster-illustration .node {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.65);
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

.poster-illustration .node.gold {
    background: linear-gradient(135deg, #d19f53, #f6d8a4);
    box-shadow: 0 8px 30px rgba(209,159,83,0.45);
}

.poster-meta {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-align: center;
}

.avoip-explorer {
    margin-top: var(--space-md);
    border: 1px solid #f0e5d7;
    border-radius: 16px;
    padding: var(--space-md);
    background: linear-gradient(180deg, rgba(209,159,83,0.06), rgba(255,255,255,0.9));
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 16px 48px rgba(0,0,0,0.08);
}

.avoip-explorer::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 22% 30%, rgba(209,159,83,0.12), transparent 26%),
                radial-gradient(circle at 85% 60%, rgba(209,159,83,0.10), transparent 28%);
    opacity: 0.8;
}

.explorer-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-sm);
    align-items: center;
    position: relative;
    z-index: 1;
}

.explorer-head .eyebrow {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #7d602c;
    margin-bottom: 6px;
}

.pulse-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(209,159,83,0.45), rgba(209,159,83,0.05));
    border: 1px solid rgba(209,159,83,0.35);
    animation: pulse 3s ease-in-out infinite;
    box-shadow: 0 0 0 12px rgba(209,159,83,0.08);
}

.standards-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.standard-card {
    position: relative;
    border-radius: 14px;
    padding: var(--space-sm);
    background: #0d0d0d;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 16px 40px rgba(0,0,0,0.22);
    overflow: hidden;
    transform: translateY(14px);
    opacity: 0;
    animation: cascade-in 0.9s ease forwards;
}

.standard-card:nth-child(1) { animation-delay: 0.1s; }
.standard-card:nth-child(2) { animation-delay: 0.2s; }
.standard-card:nth-child(3) { animation-delay: 0.3s; }
.standard-card:nth-child(4) { animation-delay: 0.4s; }
.standard-card:nth-child(5) { animation-delay: 0.5s; }
.standard-card:nth-child(6) { animation-delay: 0.6s; }

.standard-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(209,159,83,0.14), transparent 40%);
    pointer-events: none;
}

.standard-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 600;
}

.standard-top .badge {
    background: rgba(209,159,83,0.18);
    color: #f8d7a0;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(209,159,83,0.4);
    font-size: 13px;
}

.standard-top .metric {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
}

.standard-card h5 {
    margin: 0 0 6px;
    font-size: 18px;
}

.standard-card p {
    color: rgba(255,255,255,0.82);
    margin-bottom: 10px;
}

.mini-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
}

.mini-list li {
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255,255,255,0.85);
}

.mini-list strong { color: #f2d19b; }

.standard-card.ndi { background: radial-gradient(circle at 10% 10%, rgba(91,175,255,0.18), rgba(13,13,13,0.95)); }
.standard-card.st2110 { background: radial-gradient(circle at 85% 0%, rgba(112,255,214,0.18), rgba(13,13,13,0.95)); }
.standard-card.dante { background: radial-gradient(circle at 15% 85%, rgba(255,139,139,0.18), rgba(13,13,13,0.95)); }
.standard-card.srt { background: radial-gradient(circle at 50% 20%, rgba(255,227,139,0.16), rgba(13,13,13,0.95)); }
.standard-card.rtsp { background: radial-gradient(circle at 30% 30%, rgba(139,192,255,0.16), rgba(13,13,13,0.95)); }
.standard-card.webrtc { background: radial-gradient(circle at 70% 80%, rgba(169,255,203,0.16), rgba(13,13,13,0.95)); }

.pathways {
    margin-top: var(--space-sm);
    display: grid;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.pathway {
    background: rgba(13,13,13,0.9);
    color: var(--white);
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(209,159,83,0.32);
    box-shadow: 0 10px 30px rgba(0,0,0,0.16);
}

.path-label {
    display: inline-block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #f2d19b;
    letter-spacing: 0.2px;
}

.path-bar {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 6px;
    margin-bottom: 6px;
}

.path-bar span {
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(209,159,83,0.8), rgba(242,209,155,0.8));
    position: relative;
    overflow: hidden;
}

.path-bar span::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.18), transparent 70%);
}

.path-bar .st2110 { box-shadow: 0 0 0 1px rgba(112,255,214,0.35); }
.path-bar .webrtc { box-shadow: 0 0 0 1px rgba(169,255,203,0.35); }
.path-bar .ndi { box-shadow: 0 0 0 1px rgba(91,175,255,0.35); }
.path-bar .dante { box-shadow: 0 0 0 1px rgba(255,139,139,0.32); }
.path-bar .srt { box-shadow: 0 0 0 1px rgba(255,227,139,0.35); }
.path-bar .nmos { box-shadow: 0 0 0 1px rgba(112,255,214,0.35); }
.path-bar .onvif { box-shadow: 0 0 0 1px rgba(139,192,255,0.35); }
.path-bar .bridge { box-shadow: 0 0 0 1px rgba(255,255,255,0.25); }

.pathway p {
    margin: 0;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.avoip-card {
    position: relative;
    overflow: visible;
}

.avoip-lab {
    margin-top: var(--space-md);
    background: radial-gradient(circle at 20% 20%, rgba(209,159,83,0.08), transparent 45%),
                radial-gradient(circle at 80% 60%, rgba(13,13,13,0.05), transparent 42%),
                #0d0d0d;
    color: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(209,159,83,0.4);
    padding: calc(var(--space-lg) - 2px);
    box-shadow: 0 26px 70px rgba(0,0,0,0.2);
    overflow: hidden;
    transform: translateY(26px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.stage.is-active .avoip-lab {
    transform: translateY(0);
    opacity: 1;
}

.lab-head {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: var(--space-md);
    align-items: center;
}

.lab-note {
    background: rgba(209,159,83,0.12);
    border: 1px solid rgba(209,159,83,0.32);
    color: #6d4a1a;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}

.lab-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.lab-pillars span {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    color: #f2d19b;
}

.lab-meter {
    margin: 16px 0 18px;
    padding: 16px;
    border: 1px solid rgba(209,159,83,0.32);
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
}

.meter-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 8px;
}

.meter-legend {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.78);
}

.meter-track {
    display: grid;
    grid-template-columns: 160px 1fr 180px;
    gap: 10px;
    align-items: center;
    margin: 8px 0;
}

.meter-label {
    font-weight: 800;
    color: rgba(255,255,255,0.9);
}

.meter-bar {
    position: relative;
    width: 100%;
    height: 10px;
    background: rgba(255,255,255,0.12);
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.18);
}

.meter-bar span {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 52%;
    background: linear-gradient(90deg, rgba(242,209,155,0.1), #f2d19b);
    box-shadow: 0 0 0 1px rgba(242,209,155,0.28);
    border-radius: 999px;
    transform-origin: left;
    transition: width 0.4s ease;
}

.meter-track.latency .meter-bar span {
    background: linear-gradient(90deg, rgba(135,206,250,0.1), #7fd2ff);
}

.meter-track.latency .meter-bar {
    direction: rtl;
}

.meter-value {
    font-weight: 700;
    color: rgba(255,255,255,0.78);
}

.lab-standards {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 2px;
    position: relative;
    z-index: 1;
}

.lab-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    margin: 12px 0 14px;
    position: relative;
    z-index: 1;
}

.summary-card {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(209,159,83,0.28);
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 10px 26px rgba(0,0,0,0.08);
}

.summary-card h5 {
    margin: 0 0 6px;
    font-size: 18px;
}

.lab-standard-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(13,13,13,0.86);
    border-radius: 12px;
    border: 1px solid rgba(209,159,83,0.32);
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 10px 32px rgba(0,0,0,0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.lab-standard-badge span {
    color: #f2d19b;
    font-weight: 600;
}

.lab-standard-badge.active {
    border-color: rgba(242,209,155,0.6);
    box-shadow: 0 14px 38px rgba(0,0,0,0.26);
    transform: translateY(-2px);
}

.lab-codecs {
    margin: 18px 0 6px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.04);
}

.lab-codecs-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.codec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.codec-lane {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.codec-title {
    font-weight: 800;
    margin-bottom: 6px;
}

.codec-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.codec-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 8px;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.16);
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
}

.codec-pill.bright {
    background: rgba(242,209,155,0.15);
    border-color: rgba(242,209,155,0.4);
}

.codec-lane.active {
    border-color: rgba(242,209,155,0.6);
    box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}

.lab-network {
    position: relative;
    margin: var(--space-sm) 0;
    min-height: 160px;
    border: 1px dashed rgba(255,255,255,0.14);
    border-radius: 12px;
    padding: 12px;
    background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.06));
    overflow: hidden;
}

.lab-network svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.lab-network line {
    stroke: rgba(242,209,155,0.45);
    stroke-width: 2;
    stroke-linecap: round;
    filter: drop-shadow(0 0 8px rgba(209,159,83,0.35));
}

.lab-network[data-active="ndi"] line { stroke: rgba(91,175,255,0.46); }
.lab-network[data-active="dante"] line { stroke: rgba(255,139,139,0.5); }
.lab-network[data-active="srt"] line { stroke: rgba(255,227,139,0.52); }
.lab-network[data-active="rtsp"] line { stroke: rgba(139,192,255,0.5); }
.lab-network[data-active="webrtc"] line { stroke: rgba(169,255,203,0.5); }
.lab-network[data-active="sdvoe"] line { stroke: rgba(255,255,255,0.55); }
.lab-network[data-active="svsi"] line { stroke: rgba(255,200,145,0.55); }

.lab-network .node {
    position: absolute;
    padding: 8px 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 12px;
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.22);
    backdrop-filter: blur(4px);
}

.lab-network .node.core { left: 45%; top: 40%; transform: translate(-50%, -50%); background: rgba(209,159,83,0.25); border-color: rgba(209,159,83,0.5); }
.lab-network .node.edge:nth-of-type(2) { left: 18%; top: 18%; }
.lab-network .node.edge:nth-of-type(3) { left: 70%; top: 20%; }
.lab-network .node.edge:nth-of-type(4) { left: 12%; top: 68%; }
.lab-network .node.edge:nth-of-type(5) { left: 68%; top: 72%; }
.lab-network .node.edge:nth-of-type(6) { left: 26%; top: 44%; }
.lab-network .node.edge:nth-of-type(7) { left: 86%; top: 46%; }

.lab-network .node.spark {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, #f2d19b, transparent 65%);
    border: 1px solid rgba(255,255,255,0.3);
    animation: pulse 4s ease-in-out infinite;
}

.lab-network .node.spark:nth-of-type(8) { left: 36%; top: 16%; animation-delay: 0.2s; }
.lab-network .node.spark:nth-of-type(9) { left: 62%; top: 64%; animation-delay: 0.6s; }
.lab-network .node.spark:nth-of-type(10) { left: 80%; top: 34%; animation-delay: 0.9s; }

.lab-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-md);
    position: relative;
    z-index: 1;
}

.lab-col {
    display: grid;
    gap: 10px;
}

.lab-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 10px;
    font-weight: 700;
    color: #f2d19b;
    width: fit-content;
}

.lab-card {
    background: rgba(13,13,13,0.92);
    border-radius: 12px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.14);
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.22);
}

.lab-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(209,159,83,0.16), transparent 42%);
    opacity: 0.8;
    pointer-events: none;
}

.lab-card-head {
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: baseline;
    margin-bottom: 6px;
}

.lab-card-head span { color: rgba(255,255,255,0.7); font-weight: 700; font-size: 14px; }
.lab-card p { margin: 0 0 6px; color: rgba(255,255,255,0.85); }

.lab-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
}

.lab-list li { font-size: 14px; color: rgba(255,255,255,0.86); }
.lab-list strong { color: #f2d19b; }

.lab-card.st2110 { box-shadow: 0 0 0 1px rgba(112,255,214,0.32), 0 16px 48px rgba(0,0,0,0.32); }
.lab-card.webrtc { box-shadow: 0 0 0 1px rgba(169,255,203,0.28), 0 16px 48px rgba(0,0,0,0.32); }
.lab-card.ndi { box-shadow: 0 0 0 1px rgba(91,175,255,0.28), 0 16px 48px rgba(0,0,0,0.32); }
.lab-card.dante { box-shadow: 0 0 0 1px rgba(255,139,139,0.28), 0 16px 48px rgba(0,0,0,0.32); }
.lab-card.srt { box-shadow: 0 0 0 1px rgba(255,227,139,0.28), 0 16px 48px rgba(0,0,0,0.32); }
.lab-card.rtsp { box-shadow: 0 0 0 1px rgba(139,192,255,0.28), 0 16px 48px rgba(0,0,0,0.32); }
.lab-card.sdvoe { box-shadow: 0 0 0 1px rgba(255,255,255,0.3), 0 16px 48px rgba(0,0,0,0.32); }
.lab-card.svsi { box-shadow: 0 0 0 1px rgba(255,200,145,0.3), 0 16px 48px rgba(0,0,0,0.32); }

.lab-card.active {
    outline: 1px solid rgba(242,209,155,0.7);
    box-shadow: 0 0 0 1px rgba(242,209,155,0.5), 0 18px 52px rgba(0,0,0,0.32);
}

.avoip-lab.open .lab-network {
    box-shadow: 0 0 0 1px rgba(209,159,83,0.5), 0 24px 70px rgba(0,0,0,0.32);
}

.avoip-lab.open .lab-network .node.edge { animation: float 8s ease-in-out infinite alternate; }
.avoip-lab.open .lab-card { animation: cascade-in 0.9s ease forwards; }

.avoip-lab.open .lab-card:nth-child(1) { animation-delay: 0.1s; }
.avoip-lab.open .lab-card:nth-child(2) { animation-delay: 0.2s; }
.avoip-lab.open .lab-card:nth-child(3) { animation-delay: 0.3s; }
.avoip-lab.open .lab-card:nth-child(4) { animation-delay: 0.4s; }
.avoip-lab.open .lab-card:nth-child(5) { animation-delay: 0.5s; }
.avoip-lab.open .lab-card:nth-child(6) { animation-delay: 0.6s; }
.avoip-lab.open .lab-card:nth-child(7) { animation-delay: 0.7s; }
.avoip-lab.open .lab-card:nth-child(8) { animation-delay: 0.8s; }

.avoip-lab .lab-card.st2110 {
    border-color: rgba(112,255,214,0.38);
}

@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.14); opacity: 1; }
}

@keyframes cascade-in {
    0% { opacity: 0; transform: translateY(18px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 960px) {
    .connector-cluster { display: none; }
    .timeline-grid { grid-template-columns: 1fr; }
    .timeline-rail { position: relative; top: 0; display: flex; gap: 10px; overflow-x: auto; }
    .timeline-rail ol { grid-auto-flow: column; grid-auto-columns: max-content; }
    .stage { min-height: 100vh; }
    .stage-pin { top: 40px; }
    .pros-cons { grid-template-columns: 1fr; }
    .lab-head { grid-template-columns: 1fr; }
    .lab-pillars { justify-content: flex-start; }
    .lab-network { min-height: 220px; }
    .meter-track { grid-template-columns: 1fr; }
    .meter-value { justify-self: start; }
}

@media (max-width: 700px) {
    .signal-hero { padding-bottom: var(--space-lg); }
    .timeline-wrap { padding-top: var(--space-lg); }
    .milestone-card { margin-left: 10px; padding: calc(var(--space-sm) + 2px) calc(var(--space-sm) + 2px) calc(var(--space-sm) + 2px) calc(var(--space-sm) + 45px); }
}

/* AVoIP deep-dive refresh */
.avoip-head {
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
    align-items: flex-start;
}

.avoip-head-pill {
    align-self: flex-start;
    background: linear-gradient(135deg, rgba(209,159,83,0.16), rgba(209,159,83,0.36));
    border: 1px solid rgba(209,159,83,0.45);
    color: #6d4a1a;
    padding: 10px 14px;
    border-radius: 14px;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.65), 0 10px 24px rgba(0,0,0,0.08);
    letter-spacing: 0.3px;
}

.avoip-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-md);
    margin: var(--space-sm) 0 var(--space-md);
}

.avoip-deep-card {
    display: grid;
    grid-template-columns: minmax(250px, 280px) minmax(0, 1fr);
    gap: calc(var(--space-lg) - 2px);
    margin-top: var(--space-md);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(209,159,83,0.32);
    border-radius: 16px;
    padding: calc(var(--space-md) + 6px);
}

.protocol-stack {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-sm);
}

.avoip-protocol {
    width: 100%;
    text-align: left;
    border: 1px solid rgba(209,159,83,0.22);
    background: rgba(255,255,255,0.04);
    color: var(--white);
    border-radius: 12px;
    padding: 12px 14px;
    font-weight: 800;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.avoip-protocol span {
    display: block;
    color: #f2d19b;
    font-weight: 600;
    font-size: 14px;
    margin-top: 2px;
}

.avoip-protocol:hover,
.avoip-protocol:focus {
    border-color: rgba(242,209,155,0.6);
    transform: translateX(2px);
    outline: none;
}

.avoip-protocol.active {
    border-color: rgba(242,209,155,0.9);
    box-shadow: 0 12px 28px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, rgba(209,159,83,0.12), rgba(209,159,83,0.28));
    color: #0d0d0d;
}

.protocol-detail {
    background: #0b0b0b;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    padding: calc(var(--space-md) + 4px);
    display: grid;
    gap: var(--space-md);
    min-height: 100%;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.protocol-detail .muted {
    color: rgba(255,255,255,0.78);
}

.codec-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 6px;
}

.codec-chip {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(209,159,83,0.24);
    color: var(--white);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
}

.workflow-block {
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 14px 16px;
}

.workflow-diagram {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 4px;
    color: var(--white);
    font-weight: 700;
}

.workflow-node {
    position: relative;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(209,159,83,0.35);
    border-radius: 999px;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(0,0,0,0.24);
}

.workflow-connector {
    display: inline-block;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, rgba(209,159,83,0.7), rgba(242,209,155,0.9));
}

.workflow-diagram .workflow-node:last-of-type + .workflow-connector {
    display: none;
}

.detail-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}

.metric {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 10px 12px;
    border-radius: 12px;
}

.metric-label {
    color: rgba(255,255,255,0.8);
    font-weight: 800;
    margin-bottom: 6px;
}

.metric-bar {
    position: relative;
    width: 100%;
    height: 10px;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.14);
}

.metric-bar span {
    position: absolute;
    inset: 0 auto 0 0;
    width: 50%;
    background: linear-gradient(90deg, rgba(242,209,155,0.1), #f2d19b);
    border-radius: 999px;
    box-shadow: 0 0 0 1px rgba(242,209,155,0.32);
    transition: width 0.35s ease;
}

.metric-bar.latency span {
    background: linear-gradient(90deg, rgba(127,210,255,0.14), #7fd2ff);
}

.metric-note {
    margin-top: 6px;
    color: rgba(255,255,255,0.76);
    font-weight: 700;
}

@media (max-width: 900px) {
    .avoip-deep-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .workflow-diagram span::after { width: 12px; }
}

.avoip-lab .summary-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(209,159,83,0.26);
    color: var(--white);
    padding: 10px 12px;
}

.avoip-lab .summary-card p,
.avoip-lab .summary-card h5,
.avoip-lab .summary-card .eyebrow {
    color: var(--white);
}

.avoip-lab .summary-card p {
    font-size: 14px;
    line-height: 1.5;
}

.avoip-head .muted {
    color: rgba(255,255,255,0.82);
}


/* ================= PROTOCOL STACK ================= */
.protocol-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 20px 0;
}

.stack-layer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(209, 159, 83, 0.15);
  border-left: 3px solid var(--gold);
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
  transition: background 0.2s ease;
}

.stack-layer:hover {
  background: rgba(209, 159, 83, 0.25);
}

.layer-name {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--gold);
  font-size: 0.95rem;
  min-width: 70px;
}

.layer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-align: right;
}


/* ================= CARD OVERFLOW EFFECT ================= */
.operate-hero-block {
  padding-bottom: 180px !important;
}

.operate-hero-block .operate-card-row {
  position: relative;
  transform: translateY(110px);
}

.operate-identity-section {
  padding-top: 120px !important;
  margin-top: -80px;
}


/* ================= SIGNAL EVOLUTION CARD SPACING ================= */
.milestone-card {
  padding: 32px !important;
}

.milestone-card .pros-cons {
  margin-top: 24px;
}

.milestone-card .legend {
  margin: 16px 0;
}

.avoip-deep-card {
  padding: 28px !important;
}

.summary-card {
  padding: 20px !important;
}


/* ================= AVOIP DEEP DIVE SPACING ================= */
.protocol-detail {
  padding: 28px !important;
}

.protocol-detail .detail-head {
  margin-bottom: 24px;
}

.workflow-block {
  padding: 20px !important;
  margin: 20px 0 !important;
}

.workflow-diagram {
  padding: 16px;
  margin-top: 12px;
  background: rgba(0,0,0,0.3);
  border-radius: 8px;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
}

.detail-metrics {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.detail-metrics .metric {
  margin-bottom: 16px;
}

.avoip-summary {
  gap: 16px !important;
  margin: 20px 0 !important;
}

.avoip-head {
  padding-bottom: 20px !important;
  margin-bottom: 16px !important;
}


/* ================= AVOIP LAB FIXES ================= */
.avoip-lab {
  padding: 32px !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.avoip-head {
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  margin-bottom: 20px;
}

.avoip-summary {
  padding: 0 8px;
}

.avoip-deep-card {
  margin: 24px 16px !important;
}


/* ================= AVOIP FIXES - REMOVE WHITE LAYER + CONSISTENT HEIGHT ================= */
.avoip-head {
  background: transparent !important;
  padding: 0 !important;
}

.protocol-detail {
  min-height: 380px;
}

.protocol-detail .detail-head {
  min-height: 160px;
}

.workflow-block {
  min-height: 100px;
}

.workflow-diagram {
  font-size: 13px;
  min-height: 50px;
  display: flex;
  align-items: center;
}

.detail-metrics {
  min-height: 120px;
}

.protocol-detail .bullets {
  min-height: 60px;
  font-size: 13px;
}

.protocol-detail .muted {
  font-size: 14px;
  min-height: 40px;
}


/* ================= DISABLE FADE EFFECTS ON AVOIP ================= */
.stage.is-faded .milestone-card {
  opacity: 1 !important;
}

.stage .milestone-card {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

.avoip-card {
  opacity: 1 !important;
}

.avoip-explorer::after {
  display: none !important;
}


/* ================= ISE VIDEOS SECTION ================= */
.ise-videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.ise-video-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.ise-video-card h3 {
  padding: 16px 20px 12px;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.ise-video-card.placeholder h3 {
  color: #666;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-placeholder {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ISE Daily Videos - 5 Box Horizontal Layout */
.ise-daily-videos {
  margin-top: var(--space-xl);
}

.ise-daily-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.ise-day-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ise-day-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.ise-day-header {
  background: #0f1012;
  color: #fff;
  padding: 14px 16px;
  text-align: center;
}

.ise-day-header .day-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #D19F53;
  margin-bottom: 4px;
}

.ise-day-header .day-date {
  font-size: 15px;
  font-weight: 600;
}

.ise-day-content {
  padding: 16px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ise-day-content .video-title {
  font-size: 14px;
  font-weight: 600;
  color: #0b0b0b;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.4;
}

.ise-day-content .video-embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
}

.ise-day-content .video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.ise-day-content .placeholder-text {
  text-align: center;
  color: #888;
  font-size: 14px;
}

.ise-day-content .placeholder-text .icon {
  font-size: 32px;
  margin-bottom: 8px;
  display: block;
}

@media (max-width: 1100px) {
  .ise-daily-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .ise-daily-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .ise-daily-grid {
    grid-template-columns: 1fr;
  }
}


/* ================= CONTACT SOCIAL ICONS ================= */
.contact-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #333;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: #D19F53;
  color: #fff;
  transform: translateY(-2px);
}

.social-link img {
  width: 24px;
  height: 24px;
}

