:root {
    --navy: #0A1628;
    --navy-2: #0D1F3C;
    --blue: #1565C0;
    --blue-2: #1E88E5;
    --sky: #42A5F5;
    --light-b: #BBDEFB;
    --white: #FFFFFF;
    --off-w: #F8F9FC;
    --gray: #6B7280;
    --gray-l: #E5E7EB;
    --gold: #C9A84C;
    --font-d: 'Cormorant Garamond', Georgia, serif;
    --font-s: 'Barlow', sans-serif;
    --font-c: 'Barlow Condensed', sans-serif;
    --shadow: 0 20px 60px rgba(10,22,40,.10);
    --shadow-b:0 20px 60px rgba(21,101,192,.18);
    --radius: 2px;
    --transition: all .4s cubic-bezier(.4,0,.2,1);
    }
    
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    
    html { scroll-behavior: smooth; }
    
    body {
    font-family: var(--font-s);
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
    }
    
    em { font-style: italic; font-family: var(--font-d); }
    
    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--off-w); }
    ::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }
    
    /* ══════════════════════════════════ NAVBAR ══ */
    #mainNav {
    background: transparent;
    transition: var(--transition);
    padding: 20px 0;
    z-index: 1000;
    }
    #mainNav.scrolled {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 30px rgba(10,22,40,.08);
    padding: 10px 0;
    }
    .nav-logo {
    height: 48px;
    width: auto;
    transition: var(--transition);
    filter: brightness(0) invert(1);
    transform: scale(1.28);
    transform-origin: left center;
    }
    #mainNav.scrolled .nav-logo { filter: none; }
    
    .navbar-nav .nav-link {
    font-family: var(--font-c);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    padding: 6px 12px;
    position: relative;
    transition: color .3s;
    }
    #mainNav.scrolled .navbar-nav .nav-link { color: var(--navy); }
    
    .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 12px;
    width: 0; height: 1px;
    background: var(--blue-2);
    transition: width .3s;
    }
    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after { width: calc(100% - 24px); }
    
    .btn-nav-cta {
    font-family: var(--font-c);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--blue);
    border: 1px solid var(--blue);
    padding: 10px 24px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    }
    .btn-nav-cta:hover { background: transparent; color: var(--blue-2); border-color: var(--blue-2); }
    #mainNav.scrolled .btn-nav-cta { color: var(--white); }
    
    /* Hamburger */
    .navbar-toggler { border: none; padding: 4px 0; background: none; }
    .navbar-toggler:focus { box-shadow: none; }
    .toggler-icon {
    display: block;
    width: 26px; height: 2px;
    background: white;
    margin: 5px 0;
    transition: var(--transition);
    }
    #mainNav.scrolled .toggler-icon { background: var(--navy); }
    
    /* ══════════════════════════════════ HERO ══ */
    .hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
    }
    
    .hero-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    }
.hero-video {
    position: absolute;
 inset: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
    }
    .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
    135deg,
    rgba(10,22,40,.88) 0%,
    rgba(10,22,40,.65) 50%,
    rgba(13,31,60,.75) 100%
    );
    }
    
    .hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    }
    .hero-tag {
    font-family: var(--font-c);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    }
    .hero-tag::before {
    content: '';
    display: block;
    width: 40px; height: 1px;
    background: var(--sky);
    }
    .hero-title {
    font-family: var(--font-d);
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 28px;
    }
    .hero-title em {
    color: var(--sky);
    font-style: italic;
    }
    .hero-sub {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,.75);
    line-height: 1.8;
    margin-bottom: 44px;
    max-width: 520px;
    }
    .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
    
    .btn-hero-primary {
    font-family: var(--font-c);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--blue);
    padding: 16px 36px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--blue);
    display: inline-block;
    }
    .btn-hero-primary:hover {
    background: var(--blue-2);
    border-color: var(--blue-2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(30,136,229,.4);
    }
    .btn-hero-ghost {
    font-family: var(--font-c);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--white);
    background: transparent;
    padding: 16px 36px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,.3);
    display: inline-block;
    }
    .btn-hero-ghost:hover {
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
    }
    
    /* Scroll hint */
    .hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    }
    .hero-scroll-hint span {
    font-family: var(--font-c);
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    }
    .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
    0%,100% { opacity: .4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.3); }
    }
    
    /* Hero stats */
    .hero-stats {
    position: absolute;
    right: 48px;
    bottom: 60px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    }
    .stat-pill {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.12);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: floatPill 5s ease-in-out infinite;
    }
.stat-pill:nth-child(2) { animation-delay: .6s; }
.stat-pill:nth-child(3) { animation-delay: 1.2s; }
    .stat-num {
    font-family: var(--font-d);
    font-size: 28px;
    font-weight: 700;
    color: var(--sky);
    }
    .stat-pill > span:nth-child(2) {
    font-family: var(--font-d);
    font-size: 22px;
    color: var(--sky);
    margin-right: 4px;
    }
    .stat-label {
    font-family: var(--font-c);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    }
    
    /* ══════════════════════════════════ MARQUEE ══ */
    .marquee-bar {
    background: var(--navy);
    padding: 14px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.06);
    }
    .marquee-track {
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    }
    .marquee-track span {
    font-family: var(--font-c);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    }
    .marquee-track .dot { color: var(--sky); font-size: 7px; }
    @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
    }
    
    /* ══════════════════════════════════ SECTION COMMONS ══ */
    .section-header {
    text-align: center;
    margin-bottom: 64px;
    }
    .section-tag {
    font-family: var(--font-c);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--blue);
    display: block;
    margin-bottom: 16px;
    }
    .section-tag.light { color: var(--sky); }
    .section-title {
    font-family: var(--font-d);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--navy);
    }
    
    /* ══════════════════════════════════ SERVICES ══ */
    .services-section {
    padding: 100px 0;
    background: var(--off-w);
    }
    
    .services-grid { margin-top: 0; }
    
    .service-card {
    position: relative;
    display: block;
    background: var(--white);
    padding: 52px 40px;
    overflow: hidden;
    text-decoration: none;
    color: var(--navy);
    transition: var(--transition);
    border: 1px solid var(--gray-l);
    border-right: none;
    min-height: 420px;
    }
    .col-lg-4:last-child .service-card { border-right: 1px solid var(--gray-l); }
    
    .service-card:hover {
    color: white;
    transform: none;
    }
    .service-card:hover .service-bg-img {
    opacity: .15;
    transform: scale(1.05);
    }
    .service-card:hover .service-num { color: rgba(255,255,255,.2); }
    .service-card:hover h3 { color: white; }
    .service-card:hover p { color: rgba(255,255,255,.8); }
    .service-card:hover .service-icon { color: var(--sky); }
    .service-card:hover .service-link { color: white; }
    .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--navy);
    transform: translateY(100%);
    transition: transform .5s cubic-bezier(.4,0,.2,1);
    z-index: 0;
    }
    .service-card:hover::before { transform: translateY(0); }
    
    .service-card > * { position: relative; z-index: 1; }
    
    .service-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: all .6s;
    z-index: 0;
    }
    
    .service-num {
    font-family: var(--font-d);
    font-size: 60px;
    font-weight: 700;
    color: var(--gray-l);
    line-height: 1;
    margin-bottom: 24px;
    transition: color .4s;
    }
    .service-icon {
    font-size: 28px;
    color: var(--blue);
    margin-bottom: 20px;
    transition: color .4s;
    }
    .service-card h3 {
    font-family: var(--font-d);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    transition: color .4s;
    }
    .service-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 32px;
    transition: color .4s;
    }
    .service-link {
    font-family: var(--font-c);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap .3s, color .4s;
    }
    .service-card:hover .service-link { gap: 14px; }

/* ══════════════════════════════════ VALUE SECTION ══ */
.value-section {
    padding: 100px 0;
    background: #ffffff;
    }
.value-card {
    height: 100%;
    border: 1px solid rgba(21,101,192,.10);
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    padding: 34px 28px;
    transition: var(--transition);
    box-shadow: 0 12px 32px rgba(10,22,40,.06);
    }
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(10,22,40,.12);
    }
.value-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(21,101,192,.10);
    color: var(--blue);
    font-size: 20px;
    margin-bottom: 18px;
    }
.value-card h4 {
    font-family: var(--font-d);
    font-size: 28px;
    margin-bottom: 10px;
    }
.value-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
    }
    
    /* ══════════════════════════════════ ABOUT STRIP ══ */
    .about-strip { background: var(--white); }
    
    .about-strip-img {
    position: relative;
    overflow: hidden;
    height: 600px;
    }
    .about-strip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
    }
    .about-strip-img:hover img { transform: scale(1.03); }
    
    .about-strip-badge {
    position: absolute;
    bottom: 32px;
    right: -1px;
    background: var(--navy);
    color: white;
    padding: 20px 28px;
    text-align: center;
    }
    .badge-num {
    display: block;
    font-family: var(--font-d);
    font-size: 40px;
    font-weight: 700;
    color: var(--sky);
    line-height: 1;
    }
    .badge-label {
    display: block;
    font-family: var(--font-c);
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    margin-top: 4px;
    }
    
    .about-strip-content {
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    }
    .about-strip-content h2 {
    font-family: var(--font-d);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    margin: 16px 0 24px;
    }
    .lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--navy);
    font-weight: 400;
    margin-bottom: 20px;
    }
    .about-strip-content p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 32px;
    }
    .about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 40px;
    }
    .feature-item {
    font-size: 14px;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
    }
    .feature-item i { color: var(--blue); font-size: 14px; }
    
    .btn-primary-outline {
    font-family: var(--font-c);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    padding: 14px 32px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    align-self: flex-start;
    }
    .btn-primary-outline:hover {
    background: var(--navy);
    color: white;
    }

/* ══════════════════════════════════ SECTORS ══ */
.sectors-section {
    padding: 95px 0;
    background: var(--off-w);
    }
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    }
.sector-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(21,101,192,.12);
    background: rgba(255,255,255,.8);
    padding: 14px 16px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-family: var(--font-c);
    color: var(--navy);
    transition: var(--transition);
    }
.sector-chip i { color: var(--blue); font-size: 14px; }
.sector-chip:hover {
    transform: translateY(-4px);
    border-color: var(--blue);
    box-shadow: 0 12px 30px rgba(10,22,40,.08);
    }
    
    /* ══════════════════════════════════ STATS BAND ══ */
    .stats-band {
    background: var(--navy);
    padding: 72px 0;
    }
    .stats-item { padding: 12px; }
    .stats-number {
    font-family: var(--font-d);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    color: var(--sky);
    line-height: 1;
    margin-bottom: 10px;
    }
    .stats-label {
    font-family: var(--font-c);
    font-size: 13px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    }

/* ══════════════════════════════════ PERFORMANCE ══ */
.performance-section {
    padding: 100px 0;
    background: #fff;
    }
.perf-intro {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.9;
    margin: 18px 0 28px;
    max-width: 620px;
    }
.perf-bars { display: grid; gap: 18px; }
.perf-head {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-c);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 11px;
    color: var(--navy);
    margin-bottom: 8px;
    }
.perf-head strong { color: var(--blue); font-size: 12px; }
.perf-track {
    height: 10px;
    background: #eaf0f8;
    overflow: hidden;
    }
.perf-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--blue), var(--blue-2));
    transition: width 1.4s cubic-bezier(.4,0,.2,1);
    }
.perf-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    }
.metric-box {
    border: 1px solid rgba(21,101,192,.10);
    background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
    padding: 28px 20px;
    text-align: center;
    }
.metric-box span {
    display: block;
    font-family: var(--font-d);
    font-size: 54px;
    line-height: 1;
    color: var(--blue);
    }
.metric-box small {
    font-family: var(--font-c);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 10px;
    color: var(--gray);
    }
    
    /* ══════════════════════════════════ GALLERY ══ */
    .gallery-section {
    padding: 110px 0;
    background: linear-gradient(180deg, #f7fafe 0%, #eef4fb 100%);
    }
.gallery-intro {
    max-width: 620px;
    margin: 16px 0 0;
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    }
.universe-list {
    margin-top: 28px;
    display: grid;
    gap: 14px;
    }
.universe-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--navy);
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(21,101,192,.10);
    padding: 14px 18px;
    }
.universe-point i {
    color: var(--blue);
    font-size: 14px;
    }
.universe-illustrations {
    display: grid;
    gap: 14px;
    }
.illu-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1px solid rgba(21,101,192,.10);
    padding: 18px 20px;
    box-shadow: 0 14px 30px rgba(10,22,40,.08);
    }
.illu-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(21,101,192,.10);
    color: var(--blue);
    font-size: 18px;
    flex-shrink: 0;
    }
.illu-card h4 {
    margin: 0 0 4px;
    font-family: var(--font-d);
    font-size: 24px;
    color: var(--navy);
    line-height: 1.1;
    }
.illu-card p {
    margin: 0;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    }
.illu-image {
    border: 1px solid rgba(21,101,192,.10);
    box-shadow: 0 14px 30px rgba(10,22,40,.10);
    overflow: hidden;
    }
.illu-image img {
    width: 100%;
    display: block;
    height: 240px;
    object-fit: cover;
    }

/* ══════════════════════════════════ FAQ ══ */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
    }
.faq-accordion .accordion-item {
    border: 1px solid rgba(21,101,192,.10);
    margin-bottom: 10px;
    overflow: hidden;
    }
.faq-accordion .accordion-button {
    background: #fff;
    color: var(--navy);
    font-family: var(--font-d);
    font-size: 28px;
    padding: 22px 24px;
    box-shadow: none;
    }
.faq-accordion .accordion-button:not(.collapsed) {
    background: #f2f8ff;
    color: var(--blue);
    }
.faq-accordion .accordion-body {
    font-size: 15px;
    line-height: 1.9;
    color: var(--gray);
    background: #fff;
    padding: 0 24px 20px;
    }
    
    /* ══════════════════════════════════ CTA BAND ══ */
    .cta-band {
    background: linear-gradient(135deg, var(--blue) 0%, var(--navy-2) 100%);
    padding: 100px 0;
    }
    .cta-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    }
    .cta-inner h2 {
    font-family: var(--font-d);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 600;
    color: white;
    margin: 16px 0 20px;
    line-height: 1.2;
    }
    .cta-inner p {
    font-size: 16px;
    color: rgba(255,255,255,.75);
    margin-bottom: 36px;
    }
    .btn-cta-white {
    font-family: var(--font-c);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--navy);
    background: white;
    padding: 16px 40px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    }
    .btn-cta-white:hover {
    background: var(--sky);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,.2);
    }

@keyframes floatPill {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}
    
    /* ══════════════════════════════════ FOOTER ══ */
    .site-footer {
    background: var(--navy);
    padding: 80px 0 0;
    color: rgba(255,255,255,.65);
    }
    .footer-logo {
    height: 52px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: .9;
    }
    .footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 300px;
    }
    .footer-social {
    display: flex;
    gap: 12px;
    }
    .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 13px;
    }
    .footer-social a:hover {
    border-color: var(--sky);
    color: var(--sky);
    background: rgba(66,165,245,.1);
    }
    .footer-heading {
    font-family: var(--font-c);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 20px;
    }
    .footer-links {
    list-style: none;
    padding: 0;
    }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: color .3s;
    display: flex;
    align-items: center;
    gap: 8px;
    }
    .footer-links a::before {
    content: '';
    display: block;
    width: 0; height: 1px;
    background: var(--sky);
    transition: width .3s;
    }
    .footer-links a:hover { color: var(--sky); }
    .footer-links a:hover::before { width: 12px; }
    
    .footer-contact-list {
    list-style: none;
    padding: 0;
    }
    .footer-contact-list li {
    font-size: 14px;
    color: rgba(255,255,255,.55);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    line-height: 1.5;
    }
    .footer-contact-list i {
    color: var(--sky);
    margin-top: 2px;
    flex-shrink: 0;
    }
    .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 56px;
    padding: 24px 0;
    text-align: center;
    }
    .footer-bottom p {
    font-family: var(--font-c);
    font-size: 12px;
    letter-spacing: .08em;
    color: rgba(255,255,255,.3);
    }
    
    /* ══════════════════════════════════ PAGE HERO (sub-pages) ══ */
    .page-hero {
    background: var(--navy);
    padding: 160px 0 90px;
    position: relative;
    overflow: hidden;
    }
    .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
background-image: var(--hero-bg, linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%));
    background-size: cover;
    background-position: center;
    opacity: .15;
    }
    .page-hero-content { position: relative; z-index: 1; }
    .page-hero-tag {
    font-family: var(--font-c);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--sky);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    }
    .page-hero-tag::before {
    content: '';
    display: block;
    width: 32px; height: 1px;
    background: var(--sky);
    }
    .page-hero h1 {
    font-family: var(--font-d);
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    }
    .page-hero p {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,.7);
    max-width: 560px;
    line-height: 1.8;
    }
    .page-hero-deco {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-d);
    font-size: 200px;
    font-weight: 700;
    color: rgba(255,255,255,.03);
    pointer-events: none;
    line-height: 1;
    user-select: none;
    }
    
    /* ══════════════════════════════════ BREADCRUMB ══ */
    .breadcrumb-bar {
    background: var(--off-w);
    border-bottom: 1px solid var(--gray-l);
    padding: 12px 0;
    }
    .breadcrumb-bar .breadcrumb {
    margin: 0;
    font-family: var(--font-c);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    }
    .breadcrumb-item a { color: var(--blue); text-decoration: none; }
    .breadcrumb-item.active { color: var(--gray); }
    .breadcrumb-item + .breadcrumb-item::before { color: var(--gray-l); }
    
    /* ══════════════════════════════════ CONTENT SECTIONS ══ */
    .content-section { padding: 90px 0; }
    .content-section.bg-off { background: var(--off-w); }
    
    .content-block h2 {
    font-family: var(--font-d);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    }
    .content-block p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 16px;
    }
    
    /* Feature boxes */
    .feat-box {
    background: var(--white);
    border: 1px solid var(--gray-l);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    }
    .feat-box::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--blue);
    transition: width .4s;
    }
    .feat-box:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
    }
    .feat-box:hover::after { width: 100%; }
    .feat-box .feat-icon {
    font-size: 32px;
    color: var(--blue);
    margin-bottom: 16px;
    }
    .feat-box h4 {
    font-family: var(--font-d);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    }
    .feat-box p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray);
    margin: 0;
    }
    
    /* Process steps */
    .process-step {
    display: flex;
    gap: 28px;
    margin-bottom: 40px;
    align-items: flex-start;
    }
    .step-num {
    flex-shrink: 0;
    width: 52px; height: 52px;
    border: 2px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-d);
    font-size: 22px;
    font-weight: 700;
    color: var(--blue);
    }
    .step-content h4 {
    font-family: var(--font-d);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    }
    .step-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
    }
    
    /* ══════════════════════════════════ CONTACT FORM ══ */
    .contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--gray-l);
    padding: 56px 48px;
    box-shadow: var(--shadow);
    }
    .form-label {
    font-family: var(--font-c);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 8px;
    }
    .form-control {
    border: 1px solid var(--gray-l);
    border-radius: 0;
    padding: 14px 16px;
    font-family: var(--font-s);
    font-size: 15px;
    color: var(--navy);
    background: var(--off-w);
    transition: border-color .3s;
    }
    .form-control:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(21,101,192,.1);
    background: white;
    }
    textarea.form-control { min-height: 140px; resize: vertical; }
    
    .btn-submit {
    font-family: var(--font-c);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: white;
    background: var(--blue);
    border: none;
    padding: 16px 40px;
    transition: var(--transition);
    cursor: pointer;
    width: 100%;
    display: block;
    text-align: center;
    }
    .btn-submit:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-b);
    }
    
    /* Info box */
    .contact-info-box {
    background: var(--navy);
    color: white;
    padding: 48px 40px;
    height: 100%;
    }
    .info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    align-items: flex-start;
    }
    .info-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--sky);
    font-size: 16px;
    }
    .info-label {
    font-family: var(--font-c);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 4px;
    }
    .info-value {
    font-size: 15px;
    color: rgba(255,255,255,.85);
    line-height: 1.5;
    }
    
    /* ══════════════════════════════════ RESPONSIVE ══ */
    @media (max-width: 992px) {
    .hero-stats { display: none; }
    .about-strip-content { padding: 56px 32px; }
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .perf-metrics { margin-top: 10px; }
    .universe-illustrations { margin-top: 8px; }
    .contact-form-wrap { padding: 36px 24px; }
    .page-hero-deco { display: none; }
    }
    @media (max-width: 768px) {
    .hero-title { font-size: 44px; }
    .services-section { padding: 60px 0; }
    .value-section,
    .sectors-section,
    .performance-section,
    .faq-section { padding: 70px 0; }
    .service-card { border-right: 1px solid var(--gray-l); border-bottom: none; }
    .sectors-grid,
    .perf-metrics { grid-template-columns: 1fr; }
    .faq-accordion .accordion-button { font-size: 22px; }
    .about-strip-img { height: 340px; }
    .about-features { grid-template-columns: 1fr; }
    .illu-image img { height: 210px; }
    }
    
    /* ══════════════════════════════════ AOS custom ══ */
    [data-aos] { pointer-events: none; }
    [data-aos].aos-animate { pointer-events: auto; }
    