/* Telecom India PTS — Healthcare technology design system
   Colors: dark blue (#003B73), white, light grey (#F8FAFC), orange accent (#F58220)
   Fonts: Poppins (headings), Inter (body) */

:root {
    /* Layout */
    --header-offset: calc(5rem + env(safe-area-inset-top, 0px));
    --section-y: 2.75rem;
    --section-y-lg: 3.5rem;
    --container-px: 1.25rem;
    --container-max: 1440px;

    /* Brand — healthcare technology */
    --color-primary: #003B73;
    --color-primary-hover: #005296;
    --color-primary-soft: rgba(0, 59, 115, 0.08);
    --color-primary-deep: #001C39;
    --color-accent: #F58220;
    --color-accent-hover: #E06A0A;
    --color-accent-soft: #FFE8D1;
    --color-accent-on-dark: #FFB877;
    --color-bg: #F8FAFC;
    --color-bg-alt: #F1F5F9;
    --color-surface: #ffffff;
    --color-border: #E2E8F0;
    --color-border-strong: #CBD5E1;
    --color-text: #0F172A;
    --color-muted: #475569;
    --color-subtle: #64748B;
    --color-success: #0F766E;
    --color-error: #ba1a1a;
    --color-on-dark: #ffffff;
    --color-on-dark-muted: rgba(255, 255, 255, 0.72);
    --color-navy-gradient: linear-gradient(160deg, #003B73 0%, #001C39 100%);

    /* Typography */
    --font-display: 'Poppins', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-md: 1.0625rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: clamp(1.35rem, 2vw, 1.75rem);
    --text-3xl: clamp(1.75rem, 3vw, 2.25rem);
    --text-4xl: clamp(2rem, 4vw, 3.25rem);
    --leading-tight: 1.2;
    --leading-snug: 1.35;
    --leading-normal: 1.65;
    --tracking-label: 0.08em;

    /* Spacing scale (4px base) */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --gap-grid: 1.25rem;
    --gap-grid-lg: 1.75rem;

    /* Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-pill: 9999px;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-sm: 0 2px 12px rgba(0, 59, 115, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 59, 115, 0.08);
    --shadow-lg: 0 16px 36px rgba(0, 59, 115, 0.1);
    --shadow-xl: 0 24px 48px rgba(15, 23, 42, 0.12);
    --shadow-cta: 0 4px 20px rgba(0, 59, 115, 0.25);
    --shadow-cta-hover: 0 8px 28px rgba(0, 59, 115, 0.3);

    /* Motion */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-fast: 150ms;
    --duration: 250ms;
    --duration-slow: 450ms;
    --duration-reveal: 700ms;
}

@media (min-width: 640px) {
    :root {
        --container-px: 2rem;
    }
}

@media (min-width: 768px) {
    :root {
        --header-offset: calc(5.75rem + env(safe-area-inset-top, 0px));
        --section-y: 3rem;
        --section-y-lg: 4rem;
    }
}

@media (min-width: 1024px) {
    :root {
        --container-px: 3rem;
    }
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
    font-size: 112.5%; /* 18px base — scales rem-based text site-wide */
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    overflow-x: hidden;
    background: var(--color-bg);
    color: var(--color-text);
}

h1, h2, h3, h4, .bento-heading, .bento-heading-sm, .hero-cinema-title, .stats-title {
    font-family: var(--font-display);
}

img,
video {
    max-width: 100%;
    height: auto;
}

iframe {
    max-width: 100%;
    border: 0;
    display: block;
}

/* Consistent section spacing */
.site-section {
    padding-top: var(--section-y-lg);
    padding-bottom: var(--section-y-lg);
}
.site-section--compact {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
}
.site-section--cta {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
}
.page-hero + .site-section {
    padding-top: var(--section-y);
}
.site-container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-px);
    padding-right: var(--container-px);
}

#main-content {
    padding-top: var(--header-offset);
}
#main-content:has(> .page-hero:first-child),
#main-content:has(> .hero-cinema:first-child) {
    padding-top: 0;
}

#site-header,
.site-header {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
    padding-top: env(safe-area-inset-top, 0px);
}

/* Sticky enterprise header + mega menus */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid #E2E8F0;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.98);
}
.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    width: 100%;
    max-width: var(--container-max, 1440px);
    margin: 0 auto;
    padding: 0.85rem var(--container-px);
    transition: padding 0.25s ease;
}
.site-header.is-scrolled .site-header-inner {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}
.site-logo-img {
    height: 3rem;
    width: auto;
    max-width: min(260px, 42vw);
    object-fit: contain;
    object-position: left center;
}
@media (min-width: 768px) {
    .site-logo-img {
        height: 3.5rem;
        max-width: 280px;
    }
}
.desktop-nav {
    display: none;
    align-items: center;
    gap: 0.05rem;
    flex: 1;
    justify-content: center;
    min-width: 0;
}
@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
        flex-wrap: nowrap;
    }
    .desktop-nav .nav-link-icon {
        display: none;
    }
}
.nav-item {
    position: relative;
}
.nav-link,
.nav-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.65rem;
    border: 0;
    background: transparent;
    color: #475569;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 0.375rem;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
}
@media (min-width: 1400px) {
    .nav-link,
    .nav-link-btn {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
}
.nav-link:hover,
.nav-link-btn:hover,
.nav-item.is-open > .nav-link-btn {
    color: #003B73;
    background: rgba(0, 59, 115, 0.06);
}
.nav-link.is-active,
.nav-link-btn.is-active {
    color: #F58220;
}
.nav-link-icon {
    font-size: 1.05rem;
    color: inherit;
}
.nav-caret {
    font-size: 1rem;
    transition: transform 0.2s ease;
}
.nav-item.is-open .nav-caret {
    transform: rotate(180deg);
}
.site-header-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}
.header-cta {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.15rem;
    border-radius: 0.375rem;
    background: #003B73;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 59, 115, 0.2);
    transition: background 0.2s;
    white-space: nowrap;
}
.header-cta:hover {
    background: #005296;
}
@media (min-width: 640px) {
    .header-cta {
        display: inline-flex;
    }
}

.mega-panel {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: min(860px, calc(100vw - 2rem));
    max-width: calc(100vw - 2rem);
    padding: 1.25rem;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 80;
}
.mega-panel[hidden] {
    display: none !important;
}
.nav-item.is-open .mega-panel {
    display: block !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.mega-grid {
    display: grid;
    gap: 1rem;
}
@media (min-width: 900px) {
    .mega-grid {
        grid-template-columns: 0.85fr 1.15fr;
        gap: 1.25rem;
    }
}
.mega-intro {
    padding: 1rem;
    border-radius: 0.85rem;
    background: linear-gradient(145deg, #003B73, #005296);
    color: #fff;
}
.mega-eyebrow {
    margin: 0 0 0.45rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFB877;
}
.mega-intro h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.3;
}
.mega-intro p {
    margin: 0.55rem 0 1rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}
.mega-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #FFB877;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
}
.mega-all-link .material-symbols-outlined {
    font-size: 1rem;
}
.mega-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.35rem;
}
@media (min-width: 700px) {
    .mega-links {
        grid-template-columns: repeat(2, 1fr);
    }
}
.mega-link {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.75rem 0.8rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s, transform 0.2s;
}
.mega-link:hover {
    background: #F8FAFC;
    transform: translateY(-1px);
}
.mega-link .material-symbols-outlined {
    color: #F58220;
    font-size: 1.25rem;
    margin-top: 0.1rem;
}
.mega-link strong {
    display: block;
    color: #003B73;
    font-size: 0.9rem;
    font-weight: 700;
}
.mega-link small {
    display: block;
    margin-top: 0.15rem;
    color: #64748B;
    font-size: 0.78rem;
    line-height: 1.4;
}

.mobile-accordion-panel {
    display: grid;
    gap: 0.35rem;
    padding: 0.25rem 0.65rem 0.85rem 1rem;
    animation: megaFadeIn 0.22s ease;
}
.mobile-accordion-panel[hidden] {
    display: none !important;
}
.mobile-sub-link {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 0.85rem;
    border-radius: 0.75rem;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #003B73;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}
.mobile-sub-link .material-symbols-outlined {
    color: #F58220;
    font-size: 1.1rem;
}
.mobile-accordion.is-open > .mobile-accordion-trigger .mobile-nav-link-icon {
    transform: rotate(180deg);
}
@keyframes megaFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}
.case-studies-table-wrap {
    overflow-x: auto;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    background: #fff;
}

/* ═══ Contact page redesign ═══ */
.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.contact-business-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 640px) {
    .contact-business-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1100px) {
    .contact-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .contact-business-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.contact-quick-connect-grid {
    display: grid;
    gap: 1.15rem;
}
@media (min-width: 1024px) {
    .contact-quick-connect-grid {
        grid-template-columns: 1fr 1fr 1.15fr;
        align-items: stretch;
    }
}
.contact-quick-card {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.35rem;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
a.contact-quick-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 59, 115, 0.08);
    border-color: rgba(245, 130, 32, 0.35);
}
.contact-quick-card-wa {
    border-color: rgba(37, 211, 102, 0.35);
}
.contact-quick-card-map {
    min-height: 100%;
}
.contact-office-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #E2E8F0;
}
.contact-office-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 600;
    color: #003B73;
    text-decoration: none;
}
.contact-office-link:hover {
    color: #F58220;
}
.contact-form-full {
    max-width: 52rem;
    margin: 0 auto;
}
.contact-purpose-card {
    display: flex;
    flex-direction: column;
    padding: 1.35rem;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.contact-purpose-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 59, 115, 0.1);
    border-color: rgba(245, 130, 32, 0.4);
}
.contact-two-col {
    display: grid;
    gap: 1.75rem;
}
@media (min-width: 1024px) {
    .contact-two-col {
        grid-template-columns: 0.92fr 1.08fr;
        gap: 2rem;
        align-items: start;
    }
}
.contact-aside {
    display: grid;
    gap: 1.15rem;
}
.contact-aside-block,
.contact-brochure-card,
.contact-map-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    padding: 1.25rem 1.35rem;
}
.contact-brochure-card {
    display: grid;
    gap: 1rem;
}
@media (min-width: 640px) {
    .contact-brochure-card {
        grid-template-columns: 1fr auto;
        align-items: center;
    }
}
.contact-quick-list {
    display: grid;
    gap: 0.75rem;
}
.contact-info-icon-wa {
    background: rgba(37, 211, 102, 0.12) !important;
    color: #128C7E !important;
}
.contact-map-embed {
    border-radius: 0.85rem;
    overflow: hidden;
    border: 1px solid #E2E8F0;
}
.contact-map-embed iframe {
    width: 100%;
    height: 220px;
    border: 0;
    display: block;
}
.contact-form-wrap {
    background: #fff;
}
.form-file {
    padding: 0.65rem 0.75rem;
}
.form-hint {
    margin: 0.4rem 0 0;
    font-size: 0.8rem;
    color: #64748B;
}
.contact-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.hero-cinema {
    padding-top: var(--header-offset);
}

/* Responsive tables */
.responsive-table-wrap {
    -webkit-overflow-scrolling: touch;
}

/* Project card logos — full width within card */
.project-card-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 4.5rem;
    padding: 0.5rem 0.75rem;
    background: #ffffff;
    border: 1px solid #e2e2e5;
    border-radius: 0.5rem;
}
.project-card-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
@media (min-width: 640px) {
    .project-card-logo {
        height: 5rem;
        padding: 0.65rem 1rem;
    }
}

/* Touch-friendly tap targets */
@media (pointer: coarse) {
    .btn-primary,
    .btn-ghost,
    .form-submit,
    .mobile-nav-link,
    .hero-ctrl,
    .social-btn {
        min-height: 44px;
    }
}

/* Prevent iOS zoom on form focus */
@media (max-width: 639px) {
    .form-input,
    .form-textarea,
    select {
        font-size: 16px;
    }

    .site-logo-img {
        max-width: min(78vw, 360px);
    }

    .hero-cinema {
        min-height: clamp(460px, 82svh, 860px);
    }

    .hero-cinema-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cinema-actions .btn-primary,
    .hero-cinema-actions .btn-ghost {
        justify-content: center;
        width: 100%;
    }

    .trust-strip {
        gap: 0.5rem;
    }

    .trust-chip {
        font-size: 0.75rem;
        padding: 0.45rem 0.75rem;
    }
}

@media (max-width: 380px) {
    .explore-card {
        min-height: 200px;
        padding: 1.5rem 1.25rem;
    }

    .stat-number {
        font-size: clamp(1.5rem, 8vw, 2.25rem);
    }
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.material-symbols-outlined.filled {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Site logo — prominent brand mark */
.site-logo-img {
    transition: transform 0.2s ease;
}
.site-logo:hover .site-logo-img {
    transform: scale(1.02);
}

/* Bento card hover */
.bento-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.bento-card:hover {
    transform: translateY(-4px);
}

/* Stat reveal animation */
.stat-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}
.stat-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ═══ Cinematic Hero Slider ═══ */
.hero-cinema {
    position: relative;
    width: 100%;
    min-height: clamp(480px, 85svh, 860px);
    overflow: hidden;
    background: #f3f3f6;
    display: flex;
    flex-direction: column;
}
.hero-cinema-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-cinema-track {
    position: absolute;
    inset: 0;
}
.hero-cinema-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    z-index: 0;
}
.hero-cinema-slide.active {
    opacity: 1;
    z-index: 1;
}
.hero-cinema-slide.active .hero-cinema-img {
    animation: kenburns 8s ease-out forwards;
}
@keyframes kenburns {
    from { transform: scale(1); }
    to   { transform: scale(1.06); }
}
.hero-cinema-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-cinema-shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(105deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.82) 20%, rgba(255,255,255,0.35) 36%, rgba(240,244,250,0.08) 50%, transparent 68%),
        linear-gradient(to top, rgba(255,255,255,0.55) 0%, transparent 28%);
    pointer-events: none;
}

/* Flex layout — content above, controls below (no overlap) */
.hero-cinema-layout {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 6.5rem 1.25rem 0;
    gap: 2rem;
}
@media (min-width: 640px) {
    .hero-cinema-layout { padding: 7.5rem 2rem 0; gap: 2.5rem; }
}
@media (min-width: 1024px) {
    .hero-cinema-layout { padding: 8.5rem 3rem 0; gap: 3rem; }
}

.hero-cinema-content {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex: 1;
    min-height: 0;
    padding: 1.5rem 0 0;
}
@media (min-width: 1024px) {
    .hero-cinema-content { padding-top: 2rem; }
}
.hero-glass-panel {
    max-width: 560px;
    padding-top: 0.75rem;
    animation: fadeUp 0.8s ease 0.2s both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-badge-row {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0.85rem 0.4rem 0.5rem;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0,81,133,0.12);
    border-radius: 9999px;
    margin-bottom: 1.25rem;
}
.hero-badge-text {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #F58220;
}
.hero-cinema-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.12;
    color: #003B73;
    letter-spacing: -0.02em;
}
.hero-cinema-sub {
    margin-top: 1rem;
    font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
    color: #424750;
    line-height: 1.65;
    max-width: 480px;
}
.hero-cinema-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
}

.hero-cinema-ui {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    margin-bottom: 4.5rem;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 81, 133, 0.1);
    border-radius: 9999px;
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
    max-width: 520px;
}
@media (min-width: 640px) {
    .hero-cinema-ui { margin-bottom: 5rem; padding: 0.85rem 1.25rem; }
}
@media (min-width: 1024px) {
    .hero-cinema-ui { margin-bottom: 5.5rem; max-width: 560px; }
}

.hero-slide-counter {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #003B73;
    font-variant-numeric: tabular-nums;
    min-width: 3rem;
    flex-shrink: 0;
}
.hero-counter-sep { opacity: 0.4; margin: 0 0.15rem; }
.hero-progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(0,51,102,0.12);
    border-radius: 99px;
    overflow: hidden;
    min-width: 60px;
    max-width: 180px;
}
.hero-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #F58220, #FFB877);
    border-radius: 99px;
    transition: width 0.1s linear;
}
.hero-cinema-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    flex-shrink: 0;
}
.hero-ctrl {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(6px);
    color: #003B73;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,51,102,0.1);
    transition: all 0.25s;
}
.hero-ctrl:hover {
    background: #F58220;
    color: #fff;
    transform: scale(1.08);
}
.hero-dots-cinema {
    display: flex;
    gap: 0.35rem;
    position: static;
    transform: none;
    background: none;
    box-shadow: none;
    padding: 0;
}
.hero-dots-cinema .hero-dot {
    width: 6px;
    height: 6px;
    background: rgba(0,51,102,0.25);
}
.hero-dots-cinema .hero-dot.active {
    width: 20px;
    background: #F58220;
}
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    z-index: 20;
    line-height: 0;
}
.hero-wave svg {
    width: 100%;
    height: 50px;
    display: block;
}
@media (min-width: 768px) { .hero-wave svg { height: 70px; } }

@media (max-width: 480px) {
    .hero-cinema-ui {
        flex-wrap: wrap;
        border-radius: 1rem;
        max-width: 100%;
        gap: 0.65rem;
    }
    .hero-progress-bar {
        order: 3;
        flex-basis: 100%;
        max-width: 100%;
    }
    .hero-cinema-controls {
        margin-left: 0;
    }
}
/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.85rem;
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-cta);
    transition: background var(--duration), transform var(--duration), box-shadow var(--duration);
    text-decoration: none;
}
.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-cta-hover);
}
.btn-primary.btn-sm { padding: 0.65rem 1.25rem; font-size: 0.875rem; }
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.9rem 1.6rem;
    background: #e2e2e5;
    border: 1px solid #c2c6d1;
    color: #003B73;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 9999px;
    transition: all 0.2s;
    text-decoration: none;
}
.btn-ghost:hover { background: #e8e8ea; border-color: #003B73; }
.btn-ghost-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.9rem 1.6rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 9999px;
    transition: all 0.2s;
    text-decoration: none;
}
.btn-ghost-dark:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    color: #fff;
}

/* ═══ Homepage — content flanked by images ═══ */
.home-intro { background: #fff; }

.content-flanked {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .content-flanked {
        grid-template-columns: minmax(220px, 26%) 1fr minmax(220px, 26%);
        gap: 2.5rem 3rem;
        align-items: start;
    }
}

.content-flank-img {
    margin: 0;
}
.content-flank-frame {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #f3f3f6;
    border: 1px solid #c2c6d1;
    box-shadow: 0 4px 20px rgba(0, 51, 96, 0.06);
}
.content-flank-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    pointer-events: none;
}
.content-flank-photo {
    display: block;
    width: 100%;
    height: auto;
    min-height: 220px;
    max-height: 420px;
    object-fit: cover;
    object-position: center;
}
.content-flank-photo-contain {
    object-fit: contain;
    padding: 1.25rem;
    background: #F8FAFC;
    min-height: 260px;
}
.content-flank-caption {
    margin-top: 0.65rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #424750;
    text-align: center;
    letter-spacing: 0.02em;
}
@media (min-width: 1024px) {
    .content-flank-left { position: sticky; top: 7rem; }
    .content-flank-right { position: sticky; top: 7rem; }
}

.content-flank-body {
    padding: 0.5rem 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
    .content-flanked {
        grid-template-columns: 1fr 1fr;
    }
    .content-flank-body {
        grid-column: 1 / -1;
        order: -1;
    }
}
.content-flank-text {
    margin-top: 1rem;
    font-size: 1.0625rem;
    color: #424750;
    line-height: 1.75;
}
.content-flank-text:first-of-type {
    margin-top: 1.25rem;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}
.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem;
    background: linear-gradient(135deg, #f0f4fa, #fff);
    border: 1px solid rgba(0,81,133,0.1);
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #003B73;
    box-shadow: 0 2px 8px rgba(0,51,102,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}
.trust-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,51,102,0.1);
}
.trust-chip .material-symbols-outlined {
    font-size: 1.1rem;
    color: #F58220;
}

.bento-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: auto auto auto;
        gap: 1.25rem;
    }
    .bento-main    { grid-column: 1 / 8; grid-row: 1 / 3; }
    .bento-tube    { grid-column: 8 / 13; grid-row: 1; }
    .bento-photo   { grid-column: 8 / 13; grid-row: 2; }
    .bento-features { grid-column: 1 / 13; grid-row: 3; }
}
.bento-cell {
    border-radius: 0.5rem;
    overflow: hidden;
}
.bento-main {
    background: linear-gradient(145deg, #F8FAFC 0%, #edf4ff 100%);
    border: 1px solid rgba(0,81,133,0.08);
    padding: 1.75rem 2rem;
}
.bento-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--tracking-label);
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}
.bento-label-light { color: #ffb690; }
.bento-heading {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #003B73;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.bento-text {
    margin-top: 0.85rem;
    font-size: 1.0625rem;
    color: #424750;
    line-height: 1.7;
}
.bento-heading-sm {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: #003B73;
    line-height: 1.25;
    letter-spacing: -0.02em;
}
.bento-text-tight {
    margin-top: 0;
}
.about-faq-q {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #003B73;
}
.bento-visual {
    position: relative;
    background: #f0f4fa;
    border: 1px solid rgba(0,81,133,0.08);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bento-blob {
    position: absolute;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(0,81,133,0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.bento-img-tube {
    position: relative;
    max-height: 200px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0,51,102,0.12));
}
.bento-img-photo {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
}
.bento-photo-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 0.75rem 1rem;
    background: linear-gradient(to top, rgba(0,51,102,0.85), transparent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.bento-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1rem;
    background: #003B73;
}
@media (min-width: 640px) { .bento-features { grid-template-columns: repeat(3, 1fr); } }
.mini-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.15rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.875rem;
    transition: background 0.2s;
}
.mini-feature:hover { background: rgba(255,255,255,0.12); }
.mini-feature .material-symbols-outlined {
    color: #FFB877;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.mini-feature strong {
    display: block;
    color: #fff;
    font-size: 0.875rem;
    margin-bottom: 0.15rem;
}
.mini-feature span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
}

/* Stats section */
.stats-section {
    background: #2f3133;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 90% 20%, rgba(255,182,144,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.stats-header { text-align: center; margin-bottom: 2.5rem; position: relative; }
.stats-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #f0f0f3;
    margin-top: 0.5rem;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card-modern {
    text-align: center;
    padding: 1.75rem 1rem;
    transition: transform 0.3s;
}
.stat-card-modern:hover {
    transform: translateY(-4px);
}
.stat-icon-wrap {
    width: 2.75rem;
    height: 2.75rem;
    margin: 0 auto 0.75rem;
    border-radius: 0.5rem;
    background: rgba(255,182,144,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffb690;
}
.stat-number {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffb690;
}
.stat-label {
    font-size: 0.75rem;
    color: #f0f0f3;
    margin-top: 0.35rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Explore cards */
.explore-section { background: #F8FAFC; }
.explore-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 768px) { .explore-grid { grid-template-columns: repeat(3, 1fr); } }
.explore-card {
    position: relative;
    padding: 2rem 1.75rem;
    border-radius: 0.5rem;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}
.explore-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
}
.explore-card:hover { transform: translateY(-6px); }
.explore-card-navy  { background: linear-gradient(145deg, #003B73, #005296); box-shadow: 0 8px 30px rgba(0,51,102,0.25); }
.explore-card-orange { background: linear-gradient(145deg, #7a3d00, #F58220); box-shadow: 0 8px 30px rgba(148,75,0,0.25); }
.explore-card-blue  { background: linear-gradient(145deg, #004a7a, #00629f); box-shadow: 0 8px 30px rgba(0,98,159,0.25); }
.explore-card:hover { box-shadow: 0 16px 40px rgba(0,51,102,0.3); }
.explore-num {
    font-size: 2.5rem;
    font-weight: 900;
    opacity: 0.2;
    line-height: 1;
    position: absolute;
    top: 1rem; right: 1.25rem;
}
.explore-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}
.explore-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.explore-card p {
    font-size: 0.8125rem;
    opacity: 0.8;
    line-height: 1.5;
    flex: 1;
}
.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-top: 1.25rem;
    opacity: 0.85;
    transition: opacity 0.2s, gap 0.2s;
}
.explore-card:hover .explore-link { opacity: 1; gap: 0.5rem; }

/* Projects marquee — uniform attractive logo cards */
.projects-marquee {
    padding: 3rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f3f7fc 100%);
    border-top: 1px solid rgba(0, 51, 96, 0.08);
}
.projects-marquee .projects-slider-track {
    gap: 1.15rem;
    align-items: stretch;
}
.project-logo-card {
    flex-shrink: 0;
    width: 11.5rem;
    height: 7.25rem;
}
.project-logo-card-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.15rem;
    background: #ffffff;
    border: 1px solid #d8e0ea;
    border-radius: 0.75rem;
    box-shadow: 0 4px 16px rgba(0, 51, 96, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.project-logo-card-img {
    width: 100%;
    height: 100%;
    max-height: 4.5rem;
    object-fit: contain;
    object-position: center;
    filter: grayscale(0.2);
    opacity: 0.92;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.project-logo-card:hover .project-logo-card-inner {
    transform: translateY(-4px);
    border-color: rgba(0, 51, 96, 0.22);
    box-shadow: 0 12px 28px rgba(0, 51, 96, 0.12);
}
.project-logo-card:hover .project-logo-card-img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.04);
}
@media (min-width: 640px) {
    .project-logo-card {
        width: 13rem;
        height: 7.75rem;
    }
    .project-logo-card-inner {
        padding: 1.1rem 1.25rem;
    }
    .project-logo-card-img {
        max-height: 5rem;
    }
}
@media (min-width: 1024px) {
    .project-logo-card {
        width: 14rem;
        height: 8.25rem;
    }
}

/* Legacy hero (inner pages) — keep dots/nav base */
.hero-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: rgba(0, 51, 102, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.hero-dot.active {
    width: 1.5rem;
    background: #F58220;
}

/* Site footer — full-width professional layout */
.site-footer {
    width: 100%;
    margin-top: 0;
    background: #EEF2F7;
    border-top: 1px solid #CBD5E1;
    color: #1e293b;
}
.site-footer-main {
    width: 100%;
    padding-top: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
}
.site-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media (min-width: 640px) {
    .site-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .site-footer-grid {
        grid-template-columns: 1.35fr 1fr 1fr 1.05fr;
        gap: 2rem 2.5rem;
        align-items: start;
    }
}
.site-footer-bar {
    width: 100%;
    background: #003B73;
    border-top: 0;
}
.site-footer-bar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}
@media (min-width: 768px) {
    .site-footer-bar-inner {
        flex-direction: row;
        padding: 1.1rem 0;
    }
}
.site-footer-copy {
    margin: 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
}
@media (min-width: 768px) {
    .site-footer-copy {
        text-align: left;
    }
}
.site-footer-credentials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-cred-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.75rem;
    background: #fff;
    border-radius: 0.375rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    line-height: 0;
}
.footer-cred-img {
    display: block;
    height: 2.75rem;
    width: auto;
    max-width: 9rem;
    object-fit: contain;
    object-position: center;
}
.site-footer-heading {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #003B73;
    margin: 0 0 1.15rem;
}
.site-footer-link {
    font-size: 0.9375rem;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.4;
}
.site-footer-link:hover,
.site-footer-link.is-active {
    color: #F58220;
}
.site-footer-link.is-active {
    font-weight: 600;
}
.footer-brand-logo {
    display: inline-block;
    margin-bottom: 1rem;
}
.site-footer-logo {
    display: block;
    width: auto;
    max-width: 260px;
    height: auto;
    max-height: 3.75rem;
    object-fit: contain;
    object-position: left center;
}
.footer-brand-text {
    margin: 0 0 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #475569;
    max-width: 22rem;
}
.site-footer-social {
    margin-top: 0.5rem;
    padding-top: 1.15rem;
    border-top: 1px solid #CBD5E1;
}
.footer-link-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem 1.25rem;
}
.footer-link-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.footer-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.25rem;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    font-style: normal;
}
.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #475569;
}
.footer-contact .material-symbols-outlined {
    font-size: 1.2rem;
    color: #F58220;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.footer-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.hero-gradient {
    background: linear-gradient(135deg, #003B73 0%, #005296 60%, #00629f 100%);
}

.contact-map-iframe {
    width: 100%;
    height: 16rem;
    min-height: 16rem;
}
@media (min-width: 640px) {
    .contact-map-iframe {
        height: 20rem;
        min-height: 20rem;
    }
}

/* Inner page hero — light tint from logo navy */
.page-hero {
    background: linear-gradient(165deg, #d4e3ff 0%, #bdd4ef 45%, #c5daf8 100%);
    border-bottom: 1px solid rgba(0, 51, 96, 0.12);
    isolation: isolate;
    padding-top: calc(var(--header-offset) + var(--section-y-lg));
    padding-bottom: var(--section-y);
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 51, 96, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Animated PTS-themed background */
.page-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}
.page-hero-tubes {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.55;
}
.page-hero-tube {
    fill: none;
    stroke: rgba(0, 51, 96, 0.22);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 12 18;
    animation: tube-flow 28s linear infinite;
}
.page-hero-tube--b {
    stroke: rgba(0, 74, 135, 0.18);
    stroke-width: 2;
    stroke-dasharray: 8 22;
    animation-duration: 36s;
    animation-direction: reverse;
}
.page-hero-tube--c {
    stroke: rgba(150, 72, 23, 0.14);
    stroke-width: 1.5;
    stroke-dasharray: 6 20;
    animation-duration: 42s;
}
@keyframes tube-flow {
    from { stroke-dashoffset: 0; }
    to   { stroke-dashoffset: -600; }
}

.page-hero-capsules {
    position: absolute;
    inset: 0;
}
.page-hero-capsule {
    position: absolute;
    width: 2.25rem;
    height: 1.1rem;
    border-radius: 9999px;
    background: linear-gradient(90deg, #003B73 0%, #005296 55%, #28609e 100%);
    box-shadow: 0 2px 10px rgba(0, 51, 96, 0.2);
    opacity: 0.35;
}
.page-hero-capsule::after {
    content: '';
    position: absolute;
    right: 0.2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 50%;
    background: rgba(255, 182, 144, 0.85);
}
.page-hero-capsule--1 {
    top: 38%;
    left: -3rem;
    animation: capsule-route-a 22s linear infinite;
}
.page-hero-capsule--2 {
    top: 58%;
    left: -3rem;
    animation: capsule-route-b 30s linear infinite;
    animation-delay: -8s;
    opacity: 0.28;
    transform: scale(0.85);
}
.page-hero-capsule--3 {
    top: 22%;
    right: -3rem;
    animation: capsule-route-c 26s linear infinite;
    animation-delay: -4s;
    opacity: 0.25;
    transform: scale(0.75);
}
.page-hero-capsule--4 {
    top: 72%;
    right: -3rem;
    animation: capsule-route-d 34s linear infinite;
    animation-delay: -14s;
    opacity: 0.22;
    transform: scale(0.7);
}
@keyframes capsule-route-a {
    0%   { transform: translateX(0) translateY(0); }
    25%  { transform: translateX(28vw) translateY(-12px); }
    50%  { transform: translateX(56vw) translateY(6px); }
    75%  { transform: translateX(84vw) translateY(-8px); }
    100% { transform: translateX(calc(100vw + 3rem)) translateY(0); }
}
@keyframes capsule-route-b {
    0%   { transform: translateX(0) translateY(0) scale(0.85); }
    30%  { transform: translateX(32vw) translateY(10px) scale(0.85); }
    60%  { transform: translateX(64vw) translateY(-6px) scale(0.85); }
    100% { transform: translateX(calc(100vw + 3rem)) translateY(0) scale(0.85); }
}
@keyframes capsule-route-c {
    0%   { transform: translateX(0) translateY(0) scale(0.75); }
    35%  { transform: translateX(-30vw) translateY(8px) scale(0.75); }
    70%  { transform: translateX(-62vw) translateY(-10px) scale(0.75); }
    100% { transform: translateX(calc(-100vw - 3rem)) translateY(0) scale(0.75); }
}
@keyframes capsule-route-d {
    0%   { transform: translateX(0) translateY(0) scale(0.7); }
    40%  { transform: translateX(-36vw) translateY(-8px) scale(0.7); }
    100% { transform: translateX(calc(-100vw - 3rem)) translateY(6px) scale(0.7); }
}

.page-hero-glyphs {
    position: absolute;
    inset: 0;
}
.page-hero-glyph {
    position: absolute;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: rgba(0, 51, 96, 0.07);
    user-select: none;
    animation: glyph-drift 20s ease-in-out infinite;
}
.page-hero-glyph--1 { top: 12%; left: 8%;  animation-duration: 24s; }
.page-hero-glyph--2 { top: 18%; right: 10%; animation-duration: 28s; animation-delay: -6s; }
.page-hero-glyph--3 { bottom: 20%; left: 14%; animation-duration: 22s; animation-delay: -3s; }
.page-hero-glyph--4 { bottom: 16%; right: 16%; animation-duration: 26s; animation-delay: -9s; }
.page-hero-glyph--5 { top: 42%; left: 4%;  animation-duration: 30s; animation-delay: -12s; font-size: clamp(2rem, 5vw, 3.5rem); }
.page-hero-glyph--6 { top: 36%; right: 5%; animation-duration: 32s; animation-delay: -15s; font-size: clamp(2rem, 5vw, 3.5rem); }
@keyframes glyph-drift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.07; }
    33%      { transform: translate(12px, -14px) rotate(3deg); opacity: 0.1; }
    66%      { transform: translate(-10px, 10px) rotate(-2deg); opacity: 0.06; }
}

.page-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    animation: glow-pulse 14s ease-in-out infinite;
}
.page-hero-glow--a {
    width: 280px;
    height: 280px;
    top: -80px;
    left: 10%;
    background: rgba(0, 51, 96, 0.12);
}
.page-hero-glow--b {
    width: 220px;
    height: 220px;
    bottom: -60px;
    right: 12%;
    background: rgba(150, 72, 23, 0.1);
    animation-delay: -7s;
}
@keyframes glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50%      { transform: scale(1.15); opacity: 1; }
}

@media (max-width: 639px) {
    .page-hero-glyph--5,
    .page-hero-glyph--6 {
        display: none;
    }
    .page-hero-capsule--3,
    .page-hero-capsule--4 {
        display: none;
    }
}

/* Section dividers */
.section-divider {
    width: 4rem;
    height: 3px;
    background: linear-gradient(90deg, #F58220, #FFB877);
    border-radius: 2px;
}
.section-divider-light {
    background: linear-gradient(90deg, #FFB877, #9bcbff);
}

/* Trust cards */
.trust-card {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: #fff;
    border: 1px solid rgba(0, 81, 133, 0.12);
    box-shadow: 0 2px 12px rgba(0, 51, 102, 0.06);
    font-size: 0.8125rem;
    font-weight: 600;
    color: #003B73;
    transition: transform 0.2s, box-shadow 0.2s;
}
.trust-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.1);
}

/* Quick link cards */
.quick-link-card {
    display: block;
    padding: 1.5rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(192, 199, 210, 0.4);
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.05);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.quick-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 51, 102, 0.12);
    border-color: rgba(148, 75, 0, 0.3);
}

/* Dark stat cards */
.stat-card-dark {
    transition: transform 0.3s, background 0.3s;
}
.stat-card-dark:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
}

/* Contact page */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 12px rgba(0, 59, 115, 0.04);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    color: inherit;
}
a.contact-info-card:hover {
    border-color: rgba(245, 130, 32, 0.4);
    box-shadow: 0 8px 24px rgba(0, 59, 115, 0.1);
    transform: translateY(-2px);
}
.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: rgba(0, 59, 115, 0.08);
    color: #003B73;
    flex-shrink: 0;
}
.contact-form-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.75rem;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 20px rgba(0, 59, 115, 0.06);
}
@media (min-width: 640px) {
    .contact-form-card { padding: 2rem 2.25rem; }
}
.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #003B73;
    margin-bottom: 0.4rem;
}
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.625rem;
    border: 1.5px solid rgba(192, 199, 210, 0.7);
    background: #F8FAFC;
    font-size: 1rem;
    color: #1a1c1e;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-input:focus {
    outline: none;
    border-color: #005296;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 81, 133, 0.12);
}
.form-input-error {
    border-color: #ba1a1a;
    background: #fff8f8;
}
.form-textarea {
    resize: vertical;
    min-height: 120px;
}
.form-error {
    font-size: 0.75rem;
    color: #ba1a1a;
    margin-top: 0.35rem;
}
.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 9999px;
    background: #003B73;
    color: #fff;
    font-weight: 500;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 51, 96, 0.25);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-submit:hover {
    background: #005296;
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(0, 51, 96, 0.3);
}
.form-submit:active { transform: scale(0.98); }
.form-alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
}
.form-alert-success {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: #065f46;
}
.form-alert-warning {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    color: #92400e;
}
.checkbox-card {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    border: 1.5px solid rgba(192, 199, 210, 0.6);
    background: #F8FAFC;
    cursor: pointer;
    transition: all 0.2s ease;
}
.checkbox-card:hover {
    border-color: rgba(0, 81, 133, 0.35);
    background: #edf4ff;
}
.checkbox-card-active,
.checkbox-card:has(input:checked) {
    border-color: #F58220;
    background: linear-gradient(135deg, rgba(254, 147, 59, 0.08), rgba(0, 81, 133, 0.06));
    box-shadow: 0 0 0 1px rgba(148, 75, 0, 0.15);
}
.checkbox-card .checkbox-icon {
    font-size: 1.25rem;
    color: #c0c7d2;
    transition: color 0.2s;
}
.checkbox-card:has(input:checked) .checkbox-icon {
    color: #F58220;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: rgba(0, 51, 96, 0.1);
    color: #003B73;
    transition: background 0.2s, transform 0.2s, color 0.2s;
    text-decoration: none;
}
.social-btn svg {
    width: 1.125rem;
    height: 1.125rem;
}
.social-btn:hover {
    transform: translateY(-2px);
    background: #003B73;
    color: #fff;
}
.social-btn-x:hover {
    background: #000000;
    border-color: #000000;
}
.social-btn-youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}
.social-btn-linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
}
.social-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}
.social-btn-footer {
    background: rgba(0, 51, 96, 0.1);
    border: none;
}
.social-btn-footer:hover {
    background: #003B73;
    color: #fff;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* Glass card */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stat counter */
.stat-card {
    transition: background-color 0.4s ease, color 0.4s ease, transform 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-4px);
}

/* Feature card */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 51, 102, 0.12);
}

/* ═══ Products page ═══ */
.products-intro { background: #fff; }
.products-intro-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.products-intro-text {
    margin-top: 1rem;
    font-size: 1.0625rem;
    color: #424750;
    line-height: 1.75;
}

.products-features { background: #F8FAFC; }

.product-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(0, 81, 133, 0.08);
}
.product-showcase:last-child { border-bottom: none; }
@media (min-width: 1024px) {
    .product-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
        padding: 3.5rem 0;
    }
    .product-showcase-reverse .product-showcase-media { order: 2; }
    .product-showcase-reverse .product-showcase-body { order: 1; }
}

.product-media-frame {
    margin: 0;
    border-radius: 1.25rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 81, 133, 0.1);
    box-shadow: 0 12px 40px rgba(0, 51, 102, 0.1);
}
.product-media-frame.product-media-portrait {
    background: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-media-img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 240px;
    max-height: 420px;
    object-fit: cover;
    object-position: center;
}
.product-media-contain {
    object-fit: contain;
    object-position: center;
    min-height: unset;
    max-height: min(560px, 75vh);
    width: 100%;
    height: auto;
    padding: 1rem 1.25rem;
    background: #F8FAFC;
}
.product-media-portrait .product-media-contain {
    max-height: min(620px, 80vh);
    padding: 1.25rem 1.5rem;
}
.product-media-video .product-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #003B73;
}
.product-media-video.is-playing .product-video {
    display: block;
}
.product-media-video.is-playing .video-poster-wrap {
    display: none;
}
.product-media-video:not(.is-playing) .product-video {
    display: none;
}
.video-poster-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #0a1628;
    cursor: pointer;
    overflow: hidden;
}
.video-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.video-poster-wrap.poster-contain .video-poster-img {
    object-fit: contain;
    background: #F8FAFC;
}
.video-play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 4rem;
    height: 4rem;
    border: none;
    border-radius: 50%;
    background: rgba(0, 51, 102, 0.85);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s, background 0.2s;
}
.video-play-btn .material-symbols-outlined {
    font-size: 2.25rem;
    margin-left: 0.15rem;
}
.video-poster-wrap:hover .video-play-btn {
    transform: scale(1.08);
    background: #F58220;
}
.about-intro-video .product-video {
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: #0a1628;
}
.product-media-caption {
    padding: 0.65rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #424750;
    background: #f0f4fa;
    text-align: center;
}
.product-media-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 640px) {
    .product-media-grid { grid-template-columns: 1fr 1fr; }
}
.product-media-grid .product-media-img {
    min-height: 200px;
    max-height: 280px;
}

.product-showcase-body {
    position: relative;
    padding: 0.5rem 0;
}
.product-showcase-num {
    position: absolute;
    top: -0.5rem;
    right: 0;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(0, 51, 102, 0.06);
    pointer-events: none;
}
@media (min-width: 1024px) {
    .product-showcase-reverse .product-showcase-num { right: auto; left: 0; }
}
.product-showcase-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.875rem;
    background: linear-gradient(135deg, #003B73, #005296);
    color: #FFB877;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.product-showcase-icon .material-symbols-outlined { font-size: 1.5rem; }
.product-showcase-title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: #003B73;
    line-height: 1.25;
    letter-spacing: -0.02em;
    padding-right: 3rem;
}
.product-showcase-desc {
    margin-top: 1rem;
    font-size: 1.0625rem;
    color: #424750;
    line-height: 1.75;
}
.product-showcase-list {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    list-style: none;
    padding: 0;
}
.product-showcase-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #003B73;
    font-weight: 500;
    line-height: 1.5;
}
.product-showcase-list .material-symbols-outlined {
    font-size: 1.125rem;
    color: #F58220;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.products-overview {
    background: #fff;
    border-top: 1px solid rgba(0, 81, 133, 0.08);
}
.products-overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .products-overview-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.products-diagram-inline {
    height: 10rem;
    width: auto;
    object-fit: contain;
}

.products-support-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    padding: 2.5rem;
    border-radius: 1.5rem;
    background: linear-gradient(145deg, #003B73 0%, #004a7a 55%, #005296 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
}
.products-support-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 100% 0%, rgba(254, 147, 59, 0.18) 0%, transparent 60%);
    pointer-events: none;
}
@media (min-width: 1024px) {
    .products-support-card {
        grid-template-columns: 1.1fr 0.9fr;
        padding: 3rem 3.5rem;
        gap: 3rem;
    }
}
.products-support-content { position: relative; z-index: 1; }
.products-support-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-top: 0.5rem;
    line-height: 1.2;
}
.products-support-desc,
.products-support-closing {
    margin-top: 1rem;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
}
.products-support-closing {
    margin-top: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}
.products-support-visual {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.products-support-img-main .product-media-contain {
    min-height: unset;
    max-height: min(480px, 70vh);
}
.products-support-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.products-support-badge {
    height: 3.5rem;
    width: auto;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 0.75rem;
    border-radius: 0.625rem;
}
.products-support-badge-diagram {
    height: 4rem;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    background: #fff;
    padding: 0.35rem 0.5rem;
    border-radius: 0.625rem;
}

/* Header nav icons */
.nav-link-icon {
    opacity: 0.85;
    transition: opacity 0.2s;
}
.nav-link:hover .nav-link-icon,
.nav-link.text-secondary .nav-link-icon {
    opacity: 1;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 2.75rem;
    padding: 0.5rem 0.85rem;
    border-radius: 9999px;
    border: 1px solid #E2E8F0;
    background: #ffffff;
    color: #003B73;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 59, 115, 0.08);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover {
    background: #F8FAFC;
    border-color: #003B73;
}
.mobile-menu-toggle-icon {
    font-size: 1.35rem;
}
.mobile-menu-toggle-label {
    line-height: 1;
}
@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}
@media (max-width: 380px) {
    .mobile-menu-toggle-label {
        display: none;
    }
    .mobile-menu-toggle {
        padding: 0.5rem;
        min-width: 2.75rem;
    }
}

/* Mobile menu — full-screen overlay + solid drawer */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
}
.mobile-menu:not(.hidden) {
    pointer-events: auto;
}
.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 28, 57, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.32s ease;
}
.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    height: 100dvh;
    width: min(100vw - 2.5rem, 22rem);
    max-width: 88vw;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    box-shadow: -8px 0 40px rgba(0, 28, 57, 0.18);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    overflow: hidden;
}
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid #e2e2e5;
    background: linear-gradient(180deg, #f3f7fc 0%, #ffffff 100%);
    flex-shrink: 0;
}
.mobile-menu-logo {
    display: block;
    min-width: 0;
    flex: 1;
}
.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.5rem;
    border: 1px solid #c2c6d1;
    background: #ffffff;
    color: #003B73;
    flex-shrink: 0;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.mobile-menu-close:hover {
    background: #f3f3f6;
    border-color: #003B73;
}
.mobile-menu-nav {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    background: #ffffff;
}
.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    color: #424750;
    text-decoration: none;
    background: transparent;
    border: 1px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.mobile-nav-link-leading {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}
.mobile-nav-link-menu-icon {
    font-size: 1.25rem;
    color: #003B73;
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    background: rgba(0, 51, 96, 0.08);
}
.mobile-nav-link-icon {
    font-size: 1.25rem;
    color: #c2c6d1;
    transition: color 0.2s, transform 0.2s;
}
.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
    background: #f3f3f6;
    color: #003B73;
    outline: none;
}
.mobile-nav-link:hover .mobile-nav-link-icon {
    color: #F58220;
    transform: translateX(2px);
}
.mobile-nav-link.is-active {
    background: linear-gradient(135deg, #d4e3ff 0%, #e8f0fa 100%);
    color: #003B73;
    font-weight: 600;
    border-color: rgba(0, 51, 96, 0.12);
}
.mobile-nav-link.is-active .mobile-nav-link-menu-icon {
    background: rgba(0, 51, 96, 0.14);
    color: #F58220;
}
.mobile-nav-link.is-active .mobile-nav-link-icon {
    color: #F58220;
}
.mobile-menu-actions {
    flex-shrink: 0;
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid #e2e2e5;
    background: #F8FAFC;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.mobile-menu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9rem 1.25rem;
    border-radius: 9999px;
    background: #003B73;
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 51, 96, 0.22);
    transition: background 0.2s;
}
.mobile-menu-cta:hover {
    background: #005296;
}
.mobile-menu-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #424750;
    text-decoration: none;
    transition: color 0.2s;
}
.mobile-menu-phone:hover {
    color: #003B73;
}
.mobile-menu.open .mobile-menu-backdrop {
    opacity: 1;
}
.mobile-menu.open .mobile-menu-panel {
    transform: translateX(0);
}
body.mobile-menu-open {
    overflow: hidden;
    touch-action: none;
}
body.mobile-menu-open #main-content,
body.mobile-menu-open #site-header {
    pointer-events: none;
}

/* Hero pattern overlay */
.hero-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(148,75,0,0.15) 0%, transparent 40%);
    pointer-events: none;
}

/* Trust badge pulse */
@keyframes subtle-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}
.trust-badge {
    animation: subtle-pulse 3s ease-in-out infinite;
}

/* Projects slider — infinite autoplay carousel */
.projects-slider-wrap {
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    overflow: hidden;
}
.projects-slider-track {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: max-content;
    animation: projects-slide 45s linear infinite;
}
.projects-slider-slide {
    flex-shrink: 0;
}
.projects-slider-wrap:hover .projects-slider-track {
    animation-play-state: paused;
}
@keyframes projects-slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .mobile-menu-backdrop,
    .mobile-menu-panel {
        transition: none;
    }
    html {
        scroll-behavior: auto;
    }
    .reveal,
    .stat-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .stat-card:hover,
    .feature-card:hover {
        transform: none;
    }
    .trust-badge {
        animation: none;
    }
    .projects-slider-track {
        animation: none;
    }
    .hero-cinema-slide.active .hero-cinema-img {
        animation: none;
    }
    .page-hero-tube,
    .page-hero-capsule,
    .page-hero-glyph,
    .page-hero-glow {
        animation: none !important;
    }
}

/* ═══ Premium homepage redesign ═══ */
.home-hero-shade {
    background:
        linear-gradient(105deg, rgba(0, 59, 115, 0.92) 0%, rgba(0, 59, 115, 0.62) 45%, rgba(0, 28, 57, 0.45) 100%);
}
.home-hero-shade::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 28, 57, 0.35) 100%);
    pointer-events: none;
}
.home-hero-layout {
    align-items: flex-end;
    padding-bottom: 2.5rem;
}
.home-hero-panel {
    max-width: 44rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
}
.home-hero-eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FFB877;
}
.home-hero-tagline {
    display: block;
    margin-bottom: 1rem;
    padding-left: 0.85rem;
    border-left: 3px solid var(--color-accent);
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2.1vw, 1.35rem);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: #fff;
    max-width: 38rem;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.home-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.home-hero-sub {
    margin-top: 1rem;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    max-width: 34rem;
}
.home-hero-highlights {
    margin-top: 1.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.72);
    max-width: 38rem;
}
@media (min-width: 640px) {
    .home-hero-highlights {
        font-size: 0.875rem;
    }
}
.home-hero-actions {
    margin-top: 1.75rem;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}
.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.85rem 1.4rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s, border-color 0.2s;
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

.home-trust-strip {
    position: relative;
    z-index: 2;
    margin-top: -1.5rem;
    padding: 0 0 0.5rem;
}
.home-trust-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin: 0;
    padding: 1rem;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}
@media (min-width: 640px) {
    .home-trust-list {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.25rem 1.5rem;
    }
}
@media (min-width: 1024px) {
    .home-trust-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        padding: 1.25rem 1.5rem;
    }
}
@media (min-width: 1280px) {
    .home-trust-list {
        grid-template-columns: repeat(7, 1fr);
        gap: 0.5rem;
    }
}
.home-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #003B73;
    line-height: 1.35;
}
@media (min-width: 1280px) {
    .home-trust-item {
        font-size: 0.75rem;
    }
}
.home-trust-item .material-symbols-outlined {
    color: #F58220;
    font-size: 1.35rem;
}

.home-section-alt {
    background: #F1F5F9;
}
.home-section-navy {
    background: linear-gradient(145deg, #003B73 0%, #005296 100%);
    color: #fff;
}
.home-section-head {
    max-width: 44rem;
    margin-bottom: 2.25rem;
}
.home-section-head-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: none;
    align-items: flex-start;
    justify-content: space-between;
}
@media (min-width: 768px) {
    .home-section-head-row {
        flex-direction: row;
        align-items: flex-end;
    }
}
.home-section-head-light .bento-heading {
    color: #fff;
}
.home-section-lead {
    margin-top: 0.85rem;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #475569;
}
.home-section-head-light .home-section-lead {
    color: rgba(255, 255, 255, 0.82);
}

.home-card-grid {
    display: grid;
    gap: 1.25rem;
}
.home-card-grid-3 {
    grid-template-columns: 1fr;
}
.home-card-grid-4 {
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .home-card-grid-3,
    .home-card-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .home-card-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .home-card-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.home-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.home-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 59, 115, 0.1);
    border-color: rgba(245, 130, 32, 0.35);
}
.home-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}
.home-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    background: rgba(0, 59, 115, 0.08);
    color: #003B73;
    font-size: 1.4rem;
}
.home-card-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: #003B73;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.home-card-text {
    margin-top: 0.55rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #475569;
}
.home-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #F58220;
}
.home-card-cta .material-symbols-outlined {
    font-size: 1rem;
}
.home-card-on-dark {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}
.home-card-on-dark:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 184, 119, 0.55);
}
.home-card-on-dark .home-card-icon {
    background: rgba(255, 255, 255, 0.12);
    color: #FFB877;
}
.home-card-on-dark .home-card-title {
    color: #fff;
}
.home-card-on-dark .home-card-text {
    color: rgba(255, 255, 255, 0.78);
}

.home-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}
@media (min-width: 768px) {
    .home-icon-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.home-icon-grid-apps {
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
    .home-icon-grid-apps {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (min-width: 1024px) {
    .home-icon-grid-apps {
        grid-template-columns: repeat(7, 1fr);
    }
}
.home-icon-tile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    font-weight: 600;
    color: #003B73;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.home-icon-tile:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 59, 115, 0.25);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}
.home-icon-tile .material-symbols-outlined {
    font-size: 1.75rem;
    color: #F58220;
}
.home-icon-tile-accent {
    min-height: 8.5rem;
    text-decoration: none;
}

.home-project-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    padding: 1.35rem;
}
.home-project-sector {
    display: inline-block;
    margin-bottom: 0.5rem;
    padding: 0.2rem 0.55rem;
    border-radius: 9999px;
    background: rgba(0, 59, 115, 0.08);
    color: #003B73;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.home-project-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.85rem;
}

.home-cert-img {
    height: 2.75rem;
    width: auto;
    margin-bottom: 1rem;
    object-fit: contain;
}

.home-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}
@media (min-width: 768px) {
    .home-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1200px) {
    .home-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
}
.home-timeline-item {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 0.85rem;
    align-items: start;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
}
.home-timeline-num {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: #F58220;
    padding-top: 0.2rem;
}
.home-timeline-icon {
    color: #003B73;
    font-size: 1.5rem;
    margin-top: 0.1rem;
}

.home-logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}
@media (min-width: 640px) {
    .home-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.home-logo-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 5.5rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 0.875rem;
}
.home-logo-cell img {
    max-height: 3rem;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.75;
    transition: filter 0.2s, opacity 0.2s;
}
.home-logo-cell:hover img {
    filter: none;
    opacity: 1;
}

.home-inquiry-layout {
    display: grid;
    gap: 2rem;
}
@media (min-width: 1024px) {
    .home-inquiry-layout {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 3rem;
        align-items: start;
    }
}
.home-inquiry-points {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}
.home-inquiry-points li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 500;
    color: #003B73;
}
.home-inquiry-points .material-symbols-outlined {
    color: #F58220;
    font-size: 1.2rem;
}
.home-inquiry-contact {
    display: grid;
    gap: 0.65rem;
    margin-top: 1.75rem;
}
.home-inquiry-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
    font-weight: 500;
}
.home-inquiry-contact a:hover {
    color: #003B73;
}
.home-inquiry-form-wrap {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}
@media (min-width: 640px) {
    .home-inquiry-form-wrap {
        padding: 2rem;
    }
}
.home-inquiry-form-centered {
    max-width: 48rem;
    margin: 0 auto;
}
.home-contact-layout {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 1024px) {
    .home-contact-layout {
        grid-template-columns: 0.95fr 1.05fr;
        gap: 1.75rem;
        align-items: start;
    }
}

.form-alert-warning {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.9rem 1rem;
    border-radius: 0.75rem;
    background: #FFF7ED;
    border: 1px solid #FED7AA;
    color: #9A3412;
    font-size: 0.9375rem;
}

#site-header {
    background: rgba(255, 255, 255, 0.92);
}
#site-header .nav-link.is-active,
#site-header .nav-link.text-secondary {
    color: #F58220;
}

/* ═══ About — enterprise company profile ═══ */
.home-card-grid-2 {
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .home-card-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-opening-text {
    margin-top: 1rem;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #334155;
}

.about-point-list {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}
.about-point-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-weight: 500;
    color: #003B73;
    line-height: 1.45;
}
.about-point-list .material-symbols-outlined {
    color: #F58220;
    font-size: 1.25rem;
    margin-top: 0.1rem;
}

.about-holland-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.75rem;
    padding: 1rem 1.15rem;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
}
.about-holland-card img {
    height: 3.5rem;
    width: auto;
    flex-shrink: 0;
}
.about-holland-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #475569;
}

.about-mission-card {
    min-height: 100%;
}

.about-team-banner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}
@media (min-width: 768px) {
    .about-team-banner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}
.about-team-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 7.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(145deg, #003B73, #005296);
    color: #fff;
    box-shadow: 0 16px 36px rgba(0, 59, 115, 0.2);
}
.about-team-stat span {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
}
.about-team-stat small {
    margin-top: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #FFB877;
}

.about-partner-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 1024px) {
    .about-partner-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 2.5rem;
        align-items: start;
    }
}
.about-partner-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}
.about-partner-cards {
    margin-top: 1.5rem;
}

.about-year-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
    position: relative;
}
@media (min-width: 768px) {
    .about-year-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1200px) {
    .about-year-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
}
.about-year-item {
    display: grid;
    gap: 0.75rem;
}
.about-year-marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 3.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    background: rgba(245, 130, 32, 0.12);
    color: #F58220;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.about-year-card {
    height: 100%;
}

/* ═══ Products — premium catalog ═══ */
.product-cat-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}
.product-cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.9rem;
    border-radius: 9999px;
    background: #fff;
    border: 1px solid #E2E8F0;
    color: #003B73;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.product-cat-chip .material-symbols-outlined {
    font-size: 1.1rem;
    color: #F58220;
}
.product-cat-chip:hover {
    border-color: rgba(245, 130, 32, 0.45);
    background: #FFF7ED;
    transform: translateY(-1px);
}

.products-card-stack {
    display: grid;
    gap: 1.75rem;
}
.product-premium-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
}
@media (min-width: 1024px) {
    .product-premium-card {
        grid-template-columns: minmax(280px, 0.9fr) 1.3fr;
    }
}
.product-premium-media {
    position: relative;
    background: linear-gradient(160deg, #F1F5F9, #E8EEF5);
    min-height: 16rem;
}
.product-premium-img {
    width: 100%;
    height: 100%;
    min-height: 16rem;
    object-fit: cover;
    display: block;
}
.product-premium-img.is-contain {
    object-fit: contain;
    padding: 1.5rem;
}
.product-premium-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.7rem;
    border-radius: 9999px;
    background: rgba(0, 59, 115, 0.92);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
}
.product-premium-badge .material-symbols-outlined {
    font-size: 1rem;
    color: #FFB877;
}
.product-premium-body {
    padding: 1.5rem;
}
@media (min-width: 768px) {
    .product-premium-body {
        padding: 1.75rem 2rem 2rem;
    }
}
.product-premium-title {
    font-size: clamp(1.45rem, 2.4vw, 1.85rem);
}
.product-premium-desc {
    margin-top: 0.65rem;
    max-width: 46rem;
}
.product-premium-panels {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}
@media (min-width: 768px) {
    .product-premium-panels {
        grid-template-columns: repeat(2, 1fr);
    }
}
.product-panel {
    padding: 1rem 1.1rem;
    border: 1px solid #E2E8F0;
    border-radius: 0.9rem;
    background: #F8FAFC;
}
.product-panel-title {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: #003B73;
}
.product-panel-title .material-symbols-outlined {
    font-size: 1.15rem;
    color: #F58220;
}
.product-check-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}
.product-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.9rem;
    line-height: 1.45;
    color: #475569;
}
.product-check-list .material-symbols-outlined {
    font-size: 1.05rem;
    color: #F58220;
    margin-top: 0.1rem;
}
.product-spec-list {
    margin: 0;
    display: grid;
    gap: 0.45rem;
}
.product-spec-row {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0.5rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid #E2E8F0;
    font-size: 0.875rem;
}
.product-spec-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.product-spec-row dt {
    color: #64748B;
    font-weight: 500;
}
.product-spec-row dd {
    margin: 0;
    color: #003B73;
    font-weight: 600;
}
.product-app-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}
.product-app-chip {
    padding: 0.3rem 0.65rem;
    border-radius: 9999px;
    background: rgba(0, 59, 115, 0.08);
    color: #003B73;
    font-size: 0.78rem;
    font-weight: 600;
}

.product-tech-details {
    margin-top: 1.25rem;
    border: 1px solid #E2E8F0;
    border-radius: 0.9rem;
    background: #fff;
    overflow: hidden;
}
.product-tech-details summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1.1rem;
    font-weight: 600;
    color: #003B73;
}
.product-tech-details summary::-webkit-details-marker {
    display: none;
}
.product-tech-details summary .material-symbols-outlined {
    transition: transform 0.2s;
}
.product-tech-details[open] summary .material-symbols-outlined {
    transform: rotate(180deg);
}
.product-details-list {
    margin: 0;
    padding: 0 1.1rem 1.1rem 2.1rem;
    display: grid;
    gap: 0.5rem;
    color: #475569;
    font-size: 0.925rem;
    line-height: 1.55;
}
.product-premium-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.35rem;
}
.product-lead-actions .btn-primary,
.product-lead-actions .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.product-panel-full {
    grid-column: 1 / -1;
}

.product-compare-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}
.product-compare-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.product-compare-table th,
.product-compare-table td {
    padding: 0.95rem 1rem;
    text-align: left;
    border-bottom: 1px solid #E2E8F0;
    vertical-align: top;
}
.product-compare-table thead th {
    background: #003B73;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    white-space: nowrap;
}
.product-compare-table tbody th {
    color: #003B73;
    font-weight: 700;
    background: #F8FAFC;
    min-width: 10rem;
}
.product-compare-table tbody tr:hover td,
.product-compare-table tbody tr:hover th {
    background: #FFF7ED;
}
.product-compare-table tbody tr:last-child th,
.product-compare-table tbody tr:last-child td {
    border-bottom: 0;
}

.products-page-intro .form-alert a {
    color: #9A3412;
    font-weight: 700;
    text-decoration: underline;
}

/* ═══ Projects portfolio ═══ */
.portfolio-count {
    margin: 0;
    font-weight: 700;
    color: #003B73;
    font-size: 0.95rem;
}
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.75rem;
}
.portfolio-filter {
    appearance: none;
    border: 1px solid #E2E8F0;
    background: #fff;
    color: #003B73;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.55rem 1rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.portfolio-filter:hover {
    border-color: rgba(245, 130, 32, 0.5);
    transform: translateY(-1px);
}
.portfolio-filter.is-active {
    background: #003B73;
    border-color: #003B73;
    color: #fff;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 640px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1100px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.portfolio-card {
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.portfolio-card.is-hidden {
    display: none;
}
.portfolio-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 1.15rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.portfolio-card-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(0, 59, 115, 0.14);
    border-color: rgba(245, 130, 32, 0.4);
}
.portfolio-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #E8EEF5;
}
.portfolio-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.portfolio-card-link:hover .portfolio-card-media img {
    transform: scale(1.06);
}
.portfolio-card-industry {
    position: absolute;
    left: 0.85rem;
    bottom: 0.85rem;
    padding: 0.3rem 0.65rem;
    border-radius: 9999px;
    background: rgba(0, 59, 115, 0.92);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.portfolio-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1.15rem 1.2rem 1.35rem;
    flex: 1;
}
.portfolio-card-logo {
    width: 100%;
    height: 2.75rem;
    display: flex;
    align-items: center;
}
.portfolio-card-logo img {
    max-height: 2.5rem;
    max-width: 9rem;
    width: auto;
    object-fit: contain;
}
.portfolio-card-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: #003B73;
    line-height: 1.3;
}
.portfolio-card-location {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin: 0;
    font-size: 0.875rem;
    color: #64748B;
}
.portfolio-card-location .material-symbols-outlined {
    font-size: 1rem;
    color: #F58220;
}
.portfolio-card-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin: 0.15rem 0 0;
}
.portfolio-card-meta dt {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #94A3B8;
    font-weight: 600;
}
.portfolio-card-meta dd {
    margin: 0.15rem 0 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #003B73;
    line-height: 1.35;
}
.portfolio-card-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.portfolio-card-services span {
    padding: 0.22rem 0.5rem;
    border-radius: 9999px;
    background: #F1F5F9;
    color: #475569;
    font-size: 0.72rem;
    font-weight: 600;
}
.portfolio-card-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #F58220;
    padding-top: 0.35rem;
}
.portfolio-card-cta .material-symbols-outlined {
    font-size: 1rem;
    transition: transform 0.2s;
}
.portfolio-card-link:hover .portfolio-card-cta .material-symbols-outlined {
    transform: translateX(3px);
}
.portfolio-empty {
    text-align: center;
    color: #64748B;
    font-weight: 500;
    padding: 2rem 1rem;
}
.portfolio-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
@media (min-width: 768px) {
    .portfolio-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.portfolio-gallery-grid img {
    width: 100%;
    height: 8.5rem;
    object-fit: cover;
    border-radius: 0.85rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}
@media (min-width: 768px) {
    .portfolio-gallery-grid img {
        height: 10rem;
    }
}

@media (min-width: 768px) {
    .portfolio-gallery-grid img {
        height: 10rem;
    }
}

.project-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}
.project-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    font-size: 0.925rem;
}
.project-table th,
.project-table td {
    padding: 1rem 1.1rem;
    text-align: left;
    border-bottom: 1px solid #E2E8F0;
    vertical-align: top;
}
.project-table thead th {
    background: #003B73;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    white-space: nowrap;
}
.project-table tbody th {
    font-weight: 600;
    color: #003B73;
}
.project-table-link {
    color: #003B73;
    text-decoration: none;
    font-weight: 600;
}
.project-table-link:hover {
    color: #F58220;
    text-decoration: underline;
}
.project-status-badge {
    display: inline-block;
    padding: 0.3rem 0.65rem;
    border-radius: 9999px;
    background: #ECFDF5;
    color: #047857;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.3;
}
.project-table tbody tr:hover td,
.project-table tbody tr:hover th {
    background: #F8FAFC;
}
.project-table tbody tr:last-child th,
.project-table tbody tr:last-child td {
    border-bottom: 0;
}

.case-study-feature-grid {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 1024px) {
    .case-study-feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.case-study-feature-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.case-study-theme-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}
.case-study-theme-list li {
    position: relative;
    padding-left: 1.15rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #475569;
}
.case-study-theme-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: #F58220;
}
.case-study-theme-list-block {
    margin-top: 1.5rem;
}
.case-study-highlights {
    display: grid;
    gap: 1rem;
    margin: 0;
}
@media (min-width: 640px) {
    .case-study-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .case-study-highlights {
        grid-template-columns: repeat(3, 1fr);
    }
}
.case-study-highlight {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 0.85rem;
    padding: 1rem 1.1rem;
}
.case-study-highlight dt {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94A3B8;
    font-weight: 700;
}
.case-study-highlight dd {
    margin: 0.35rem 0 0;
    color: #003B73;
    font-weight: 600;
    line-height: 1.45;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.testimonial-quote-icon {
    font-size: 2rem;
    color: #FFB877;
}
.testimonial-meta {
    margin-top: auto;
    display: grid;
    gap: 0.2rem;
}
.testimonial-meta strong {
    color: #fff;
    font-size: 0.95rem;
}
.testimonial-meta span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.85rem;
}

.case-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #64748B;
}
.case-breadcrumb a {
    color: #003B73;
    font-weight: 600;
    text-decoration: none;
}
.case-breadcrumb .material-symbols-outlined {
    font-size: 1rem;
}

/* Sitewide SEO breadcrumbs */
.site-breadcrumb {
    display: flex;
    justify-content: center;
    margin: 0 auto 1.15rem;
    max-width: 52rem;
}
.site-breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.8rem;
    color: #64748B;
}
.site-breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
}
.site-breadcrumb-item a {
    color: #003B73;
    font-weight: 600;
    text-decoration: none;
}
.site-breadcrumb-item a:hover {
    color: #F58220;
}
.site-breadcrumb-item [aria-current="page"] {
    color: #475569;
    font-weight: 500;
}
.site-breadcrumb-sep {
    font-size: 1rem;
    color: #94A3B8;
}

/* Legal pages */
.legal-prose {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}
.legal-prose .bento-heading-sm {
    margin-top: 1.75rem;
    margin-bottom: 0.65rem;
}
.legal-prose p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0.85rem;
}
.legal-prose a {
    color: #003B73;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Footer legal links */
.site-footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    justify-content: center;
}
.site-footer-legal a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    text-decoration: none;
}
.site-footer-legal a:hover {
    color: #fff;
}

.case-hero-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 1024px) {
    .case-hero-grid {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: start;
        gap: 2.5rem;
    }
}
.case-meta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin: 1.5rem 0 0;
}
@media (min-width: 640px) {
    .case-meta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.case-meta-grid dt {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94A3B8;
    font-weight: 700;
}
.case-meta-grid dd {
    margin: 0.25rem 0 0;
    color: #003B73;
    font-weight: 600;
    line-height: 1.4;
}
.case-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}
.case-cover {
    position: relative;
    margin: 0;
    border-radius: 1.15rem;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}
.case-cover > img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}
.case-cover-logo {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0.75rem;
    padding: 0.55rem 0.75rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}
.case-cover-logo img {
    max-height: 2.5rem;
    max-width: 8rem;
    width: auto;
    object-fit: contain;
}
.case-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}
@media (min-width: 640px) {
    .case-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .case-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.case-gallery-grid img {
    width: 100%;
    height: 14rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}
.case-testimonial {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}
.case-testimonial .material-symbols-outlined {
    font-size: 2.5rem;
    color: #FFB877;
}
.case-testimonial p {
    margin: 1rem 0 1.25rem;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #fff;
    font-weight: 500;
}
.case-testimonial footer {
    display: grid;
    gap: 0.2rem;
}
.case-testimonial strong {
    color: #fff;
}
.case-testimonial span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

/* ═══ Solutions landing pages ═══ */
.solution-index-card {
    min-height: 100%;
}
.solution-hero-grid {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 1024px) {
    .solution-hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 2rem;
        align-items: start;
    }
}
.solution-solution-card {
    height: 100%;
}
.solution-app-chips {
    margin-bottom: 1.5rem;
}
.solution-visual {
    margin: 0;
    border-radius: 1.15rem;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}
.solution-visual img {
    width: 100%;
    max-height: 22rem;
    object-fit: cover;
    display: block;
}
.solution-feature-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}
@media (min-width: 640px) {
    .solution-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.solution-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 0;
    font-weight: 500;
    color: #003B73;
    line-height: 1.45;
}
.solution-feature-item .material-symbols-outlined {
    color: #F58220;
    margin-top: 0.1rem;
}
.solution-faq-list {
    max-width: 52rem;
    display: grid;
    gap: 0.85rem;
}
.home-solutions-cta {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

/* Accordion + FAQ (used sitewide; design-system.css is showcase-only) */
.ds-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}
.ds-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}
.ds-accordion {
    display: grid;
    gap: 0.75rem;
    max-width: 48rem;
}
.ds-accordion-item {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.ds-accordion-item[open] {
    border-color: rgba(0, 59, 115, 0.25);
    box-shadow: 0 8px 24px rgba(0, 59, 115, 0.08);
}
.ds-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.1rem 1.25rem;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    list-style: none;
}
.ds-accordion-trigger::-webkit-details-marker { display: none; }
.ds-accordion-icon {
    flex-shrink: 0;
    color: var(--color-accent);
    transition: transform 0.25s ease;
}
.ds-accordion-item[open] .ds-accordion-icon {
    transform: rotate(180deg);
}
.ds-accordion-panel {
    padding: 0 1.25rem 1.2rem;
    color: var(--color-muted);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* ═══ Products — TIPTS portfolio ═══ */
.portfolio-highlight-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0.85rem;
    margin: 0 0 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #003B73;
    text-align: center;
}
.portfolio-highlight-sep {
    color: #F58220;
    font-weight: 700;
}
.portfolio-brand-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
    .portfolio-brand-row {
        grid-template-columns: repeat(3, 1fr);
    }
}
.portfolio-brand-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    padding: 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.portfolio-brand-card strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: #003B73;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.portfolio-brand-card span {
    color: #475569;
    font-size: 0.9rem;
}
.portfolio-lifecycle {
    margin: 0;
    text-align: center;
    font-weight: 700;
    color: #003B73;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.8rem;
}
.portfolio-lifecycle-steps {
    margin: 0.5rem 0 0;
    text-align: center;
    color: #475569;
    font-size: 0.95rem;
}
.portfolio-intro-heading {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}
.portfolio-intro-text {
    max-width: 48rem;
    margin-bottom: 1.75rem;
}
.portfolio-pillar-grid {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 900px) {
    .portfolio-pillar-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.portfolio-pillar-card {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 1.15rem;
    padding: 1.5rem 1.4rem 1.35rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.portfolio-pillar-card:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 130, 32, 0.45);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}
.portfolio-pillar-num {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #F58220;
}
.portfolio-pillar-card h3 {
    margin: 0;
    font-size: 1.15rem;
    color: #003B73;
    line-height: 1.35;
}
.portfolio-pillar-card p {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}
.portfolio-pillar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #F58220;
}
.portfolio-pillar-link .material-symbols-outlined {
    font-size: 1.05rem;
}
.portfolio-turnkey {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
@media (min-width: 768px) {
    .portfolio-turnkey {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (min-width: 1100px) {
    .portfolio-turnkey {
        grid-template-columns: repeat(7, 1fr);
    }
}
.portfolio-turnkey li {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 0.9rem;
    padding: 1rem 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-weight: 600;
    color: #0f172a;
    font-size: 0.9rem;
}
.portfolio-turnkey li span {
    width: 1.75rem;
    height: 1.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(245, 130, 32, 0.12);
    color: #F58220;
    font-size: 0.75rem;
    font-weight: 700;
}
.product-detail-block {
    margin-top: 2.25rem;
}
.product-detail-block:first-of-type {
    margin-top: 1rem;
}
.product-stat-grid {
    display: grid;
    gap: 1rem;
}
@media (min-width: 768px) {
    .product-stat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.product-stat-card {
    background: #003B73;
    color: #fff;
    border-radius: 1.1rem;
    padding: 1.4rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.product-stat-card strong {
    font-size: 1.65rem;
    font-family: var(--font-display);
    line-height: 1.2;
}
.product-stat-card span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
}
.product-card-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: rgba(245, 130, 32, 0.12);
    color: #F58220;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}
.product-check-list-wide {
    max-width: 44rem;
}
.product-note {
    margin-top: 2rem;
    padding: 1.25rem 1.35rem;
    border-left: 4px solid #F58220;
    background: #FFF7ED;
    border-radius: 0 0.9rem 0.9rem 0;
}
.product-note h2 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    color: #9A3412;
}
.product-note p {
    margin: 0;
    color: #7c2d12;
    line-height: 1.65;
}
.product-related {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.85rem;
    align-items: center;
    color: #475569;
}
.product-related a {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 700;
    color: #003B73;
    text-decoration: none;
}
.product-related a:hover {
    color: #F58220;
}
.product-pager {
    display: grid;
    gap: 1rem;
    margin-top: 2.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid #E2E8F0;
}
@media (min-width: 768px) {
    .product-pager {
        grid-template-columns: 1fr 1fr;
    }
}
.product-pager-link {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 1.15rem;
    border: 1px solid #E2E8F0;
    border-radius: 0.9rem;
    text-decoration: none;
    background: #fff;
    color: #0f172a;
}
.product-pager-link.is-next {
    text-align: right;
}
.product-pager-dir {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 700;
}
.product-pager-link:hover {
    border-color: rgba(245, 130, 32, 0.45);
}
.product-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    line-height: 1.6;
    color: #64748b;
}
.product-spec-table th {
    width: 40%;
}

/* Smooth section reveal polish */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        transition: opacity 0.7s var(--ease-out, ease), transform 0.7s var(--ease-out, ease);
    }
}

