:root {
    --primary: #E67925;
    --secondary: #F3A15C;
    --ink: #101010;
    --muted: #5E6A78;
    --line: rgba(230, 121, 37, .16);
    --mist: #FFF7F0;
    --glass: rgba(255, 255, 255, .72);
    --shadow: 0 24px 70px rgba(230, 121, 37, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; letter-spacing: .01em; }
a { transition: color .25s ease, transform .25s ease, background .25s ease, border-color .25s ease; }
img { max-width: 100%; display: block; }

.container-shell {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -120px;
    z-index: 9999;
    background: var(--primary);
    color: white;
    padding: 10px 16px;
    border-radius: 999px;
}
.skip-link:focus { top: 16px; }

.site-orbit {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(circle at 8% 18%, rgba(243, 161, 92, .12), transparent 28%),
        radial-gradient(circle at 92% 5%, rgba(230, 121, 37, .10), transparent 24%),
        linear-gradient(180deg, #fff 0%, #f8fbff 45%, #fff 100%);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}
.top-strip {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: rgba(255,255,255,.92);
    font-family: Inter, sans-serif;
    font-size: 12px;
    padding: 8px 0;
}
.top-strip a, .top-strip p { display: inline-flex; align-items: center; gap: 8px; }
.nav-wrap {
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled .nav-wrap { box-shadow: 0 14px 36px rgba(230, 121, 37, .10); }
.nav-shell {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    flex: 0 0 auto;
}
.brand-symbol {
    width: 54px;
    height: 54px;
    display: inline-grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 18px 42px rgba(230, 121, 37, .24);
}
.brand-mark strong { display: block; font-size: 22px; line-height: 1; letter-spacing: .02em; }
.brand-mark small { display: block; color: var(--muted); font-family: Inter, sans-serif; font-size: 12px; margin-top: 4px; }
.desktop-nav { display: flex; align-items: center; gap: 4px; }
.nav-item > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 30px 9px;
    color: #172232;
    font-size: 15px;
    font-weight: 700;
}
.nav-item > a.active, .nav-item > a:hover { color: var(--primary); }
.nav-item > a i { font-size: 10px; }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 800;
    line-height: 1;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}
.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 16px 35px rgba(230, 121, 37, .24);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 45px rgba(230, 121, 37, .30); }
.btn-outline {
    color: var(--primary);
    background: rgba(255,255,255,.82);
    border-color: rgba(230, 121, 37, .18);
}
.btn-outline:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-light { color: var(--primary); background: #fff; }

.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity .22s ease, transform .22s ease;
    padding: 0 0 20px;
}
.has-mega:hover .mega-menu, .has-mega:focus-within .mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.mega-panel {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 22px;
    padding: 24px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(230, 121, 37, .12);
    border-radius: 30px;
    box-shadow: 0 28px 90px rgba(230, 121, 37, .16);
    backdrop-filter: blur(18px);
}
.mega-panel.compact { grid-template-columns: 250px 1fr; }
.small-panel { grid-template-columns: repeat(3, 1fr); width: min(760px, calc(100% - 32px)); margin-right: 5%; }
.mega-intro {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(230,121,37,.96), rgba(243,161,92,.92));
    color: #fff;
    overflow: hidden;
    position: relative;
}
.mega-intro:after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    right: -70px;
    bottom: -70px;
}
.mega-intro span { color: rgba(255,255,255,.72); font-family: Inter, sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: .16em; }
.mega-intro h3 { font-size: 28px; line-height: 1; margin: 14px 0; font-weight: 800; }
.mega-intro p { color: rgba(255,255,255,.75); font-family: Inter, sans-serif; font-size: 14px; line-height: 1.65; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-weight: 800; }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mega-grid.slim { grid-template-columns: repeat(3, 1fr); }
.mega-card {
    padding: 16px;
    border: 1px solid rgba(230,121,37,.10);
    border-radius: 20px;
    background: #fff;
    min-height: 118px;
}
.mega-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(230,121,37,.12); border-color: rgba(230,121,37,.24); }
.mega-card i { color: var(--primary); font-size: 20px; }
.mega-card span { display: block; margin-top: 10px; font-weight: 800; font-size: 17px; color: var(--ink); }
.mega-card small { display: block; margin-top: 5px; color: var(--muted); font-family: Inter, sans-serif; font-size: 12px; line-height: 1.45; }
.brand-cloud { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.brand-cloud a {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px 14px;
    background: #fff;
    font-weight: 800;
    color: var(--ink);
}
.brand-cloud a:hover { color: var(--primary); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(230,121,37,.10); }

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
.menu-toggle span { width: 20px; height: 2px; background: var(--primary); border-radius: 99px; }
.mobile-drawer {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(390px, 92vw);
    background: #fff;
    z-index: 1500;
    transform: translateX(110%);
    transition: transform .28s ease;
    box-shadow: -30px 0 80px rgba(9, 19, 31, .18);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; }
.drawer-head button { width: 42px; height: 42px; border-radius: 50%; background: var(--mist); color: var(--primary); }
.mobile-drawer nav { display: grid; gap: 8px; overflow-y: auto; padding-right: 3px; }
.mobile-drawer nav a,
.mobile-submenu-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    font-weight: 800;
    color: var(--ink);
    background: #fff;
    text-align: left;
}
.mobile-submenu {
    display: none;
    padding: 8px 0 0 12px;
    gap: 6px;
}
.mobile-nav-group.open .mobile-submenu {
    display: grid;
}
.mobile-nav-group.open .mobile-submenu-toggle i {
    transform: rotate(180deg);
}
.mobile-submenu a {
    padding: 11px 13px;
    border-radius: 13px;
    font-size: 15px;
    background: var(--mist);
}

.hero {
    position: relative;
    min-height: 720px;
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: 70px 0 80px;
}
.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(230,121,37,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(230,121,37,.045) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(180deg, #000, transparent 90%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.hero-content h1 {
    font-size: clamp(44px, 5.45vw, 74px);
    line-height: .93;
    font-weight: 800;
    letter-spacing: -.025em;
    color: var(--ink);
}
.gradient-text { color: var(--primary); background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-content p { margin-top: 24px; color: #3c4857; font-family: Inter, sans-serif; font-size: 18px; line-height: 1.8; max-width: 700px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 36px; max-width: 600px; }
.metric-card { padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.78); box-shadow: 0 16px 40px rgba(230,121,37,.08); }
.metric-card strong { font-size: 34px; color: var(--primary); line-height: 1; }
.metric-card span { display: block; font-family: Inter, sans-serif; font-size: 12px; color: var(--muted); margin-top: 6px; }
.hero-visual { position: relative; min-height: 560px; }
.hero-swiper {
    border-radius: 40px;
    overflow: hidden;
    height: 540px;
    box-shadow: 0 35px 100px rgba(230,121,37,.22);
    border: 10px solid #fff;
}
.hero-swiper img { width: 100%; height: 100%; object-fit: cover; }
.hero-swiper .swiper-slide:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(230,121,37,.72));
}
.slide-caption { position: absolute; left: 26px; right: 26px; bottom: 26px; color: #fff; z-index: 2; }
.slide-caption span { font-family: Inter, sans-serif; text-transform: uppercase; letter-spacing: .18em; font-size: 11px; opacity: .78; }
.slide-caption h3 { font-size: 34px; font-weight: 800; line-height: 1; margin-top: 8px; }
.floating-spec {
    position: absolute;
    left: -34px;
    bottom: 38px;
    width: 240px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.92);
    box-shadow: var(--shadow);
    z-index: 3;
}
.floating-spec i { color: var(--primary); font-size: 26px; }
.floating-spec strong { display: block; font-size: 22px; margin-top: 10px; }
.floating-spec span { color: var(--muted); font-family: Inter, sans-serif; font-size: 13px; }
.orbit-badge {
    position: absolute;
    right: -22px;
    top: 46px;
    width: 145px;
    height: 145px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--primary);
    font-weight: 800;
    z-index: 3;
}

.section-pad { padding: 100px 0; position: relative; }
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 800;
}
.section-kicker span { width: 36px; height: 2px; background: var(--primary); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 42px; }
.section-heading h2, .page-title h1 { font-size: clamp(38px, 5vw, 66px); line-height: .92; font-weight: 800; letter-spacing: -.025em; }
.section-heading p { color: var(--muted); font-family: Inter, sans-serif; line-height: 1.8; max-width: 560px; }

.category-showcase { background: linear-gradient(180deg, #fff, #f7fbff); }
.category-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 30px; align-items: stretch; }
.feature-panel {
    position: sticky;
    top: 130px;
    min-height: 520px;
    border-radius: 38px;
    padding: 34px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    overflow: hidden;
}
.feature-panel:after {
    content: "";
    position: absolute;
    inset: auto -90px -100px auto;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
}
.feature-panel img { border-radius: 28px; height: 260px; width: 100%; object-fit: cover; margin-bottom: 28px; }
.feature-panel h3 { font-size: 42px; line-height: .95; font-weight: 800; }
.feature-panel p { font-family: Inter, sans-serif; color: rgba(255,255,255,.76); line-height: 1.75; margin-top: 14px; }
.category-stack { display: grid; gap: 16px; }
.category-row {
    display: grid;
    grid-template-columns: 74px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 22px;
    border-radius: 26px;
    background: rgba(255,255,255,.9);
    border: 1px solid var(--line);
    box-shadow: 0 12px 35px rgba(230,121,37,.06);
}
.category-row:hover { transform: translateX(8px); box-shadow: 0 20px 48px rgba(230,121,37,.11); }
.icon-box {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: rgba(230,121,37,.08);
    font-size: 24px;
}
.category-row h3 { font-size: 26px; font-weight: 800; }
.category-row p { color: var(--muted); font-family: Inter, sans-serif; font-size: 14px; line-height: 1.65; }
.category-row .arrow { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--mist); color: var(--primary); }

.solutions-ribbon { background: #fff; overflow: hidden; }
.solution-map {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--line);
}
.solution-tile {
    min-height: 300px;
    padding: 26px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.solution-tile:nth-child(even) { background: #f8fbff; }
.solution-tile:hover { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; transform: translateY(-8px); }
.solution-tile:hover p, .solution-tile:hover i { color: rgba(255,255,255,.82); }
.solution-tile i { font-size: 32px; color: var(--primary); }
.solution-tile h3 { font-size: 28px; line-height: 1; font-weight: 800; }
.solution-tile p { color: var(--muted); font-family: Inter, sans-serif; font-size: 14px; line-height: 1.65; }

.about-band { background: linear-gradient(180deg, #f7fbff, #fff); }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 52px; align-items: center; }
.image-collage { position: relative; min-height: 560px; }
.image-collage img { position: absolute; object-fit: cover; border: 10px solid #fff; box-shadow: var(--shadow); }
.image-collage img:first-child { width: 78%; height: 390px; border-radius: 38px; left: 0; top: 0; }
.image-collage img:nth-child(2) { width: 54%; height: 260px; border-radius: 30px; right: 0; bottom: 28px; }
.image-collage .collage-note {
    position: absolute;
    left: 30px;
    bottom: 0;
    width: 250px;
    padding: 22px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.collage-note strong { font-size: 32px; color: var(--primary); }
.collage-note span { display: block; color: var(--muted); font-family: Inter, sans-serif; font-size: 13px; }
.about-copy h2 { font-size: clamp(38px, 5vw, 64px); line-height: .95; font-weight: 800; }
.about-copy p { color: var(--muted); font-family: Inter, sans-serif; line-height: 1.85; margin-top: 18px; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 26px; }
.check-grid span { padding: 14px; background: #fff; border: 1px solid var(--line); border-radius: 16px; font-weight: 800; }
.check-grid i { color: var(--primary); margin-right: 8px; }

.why-zone { background: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-card {
    position: relative;
    padding: 28px;
    min-height: 285px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: #fff;
    overflow: hidden;
}
.why-card:before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(230,121,37,.07);
    right: -45px;
    top: -45px;
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.why-card i { color: var(--primary); font-size: 30px; }
.why-card h3 { font-size: 28px; line-height: 1; font-weight: 800; margin-top: 34px; }
.why-card p { color: var(--muted); font-family: Inter, sans-serif; font-size: 14px; line-height: 1.7; margin-top: 12px; }

.brand-marquee {
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: #fbfdff;
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 28s linear infinite;
}
.marquee-track span {
    min-width: 190px;
    padding: 28px 22px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    border-right: 1px solid var(--line);
}
@keyframes marquee { to { transform: translateX(-50%); } }

.industries-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: center; }
.industry-list { display: flex; flex-wrap: wrap; gap: 12px; }
.industry-list span { padding: 13px 18px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-weight: 800; box-shadow: 0 12px 28px rgba(230,121,37,.06); }
.tech-card {
    border-radius: 36px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(230,121,37,.96), rgba(243,161,92,.9));
    color: #fff;
    position: relative;
    overflow: hidden;
}
.tech-card p { color: rgba(255,255,255,.76); font-family: Inter, sans-serif; line-height: 1.75; }

.service-orbit { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.service-card {
    padding: 24px;
    min-height: 245px;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.86);
    box-shadow: 0 12px 32px rgba(230,121,37,.07);
}
.service-card:nth-child(2), .service-card:nth-child(4) { margin-top: 42px; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card i { color: var(--primary); font-size: 28px; }
.service-card h3 { font-size: 28px; line-height: 1; font-weight: 800; margin-top: 28px; }
.service-card p { color: var(--muted); font-family: Inter, sans-serif; font-size: 14px; line-height: 1.7; margin-top: 10px; }

.stats-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 36px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.stat-box { padding: 34px; border-right: 1px solid var(--line); }
.stat-box:last-child { border-right: 0; }
.stat-box strong { font-size: 54px; line-height: 1; color: var(--primary); }
.stat-box span { display: block; color: var(--muted); font-family: Inter, sans-serif; margin-top: 8px; }

.blog-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 18px; }
.blog-card {
    min-height: 300px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.blog-card:first-child { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; }
.blog-card:first-child p, .blog-card:first-child .meta { color: rgba(255,255,255,.75); }
.meta { color: var(--muted); font-family: Inter, sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.blog-card h3 { font-size: 32px; line-height: 1; font-weight: 800; }
.blog-card p { color: var(--muted); font-family: Inter, sans-serif; line-height: 1.7; }

.page-hero {
    padding: 92px 0 54px;
    background:
        linear-gradient(135deg, rgba(230,121,37,.08), transparent 48%),
        linear-gradient(180deg, #fff, #f7fbff);
    border-bottom: 1px solid var(--line);
}
.page-title { display: grid; grid-template-columns: 1fr .55fr; gap: 40px; align-items: end; }
.page-title p { color: var(--muted); font-family: Inter, sans-serif; line-height: 1.8; font-size: 17px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 22px; font-family: Inter, sans-serif; font-size: 13px; color: var(--muted); }
.breadcrumbs li:not(:last-child):after { content: "/"; margin-left: 8px; color: rgba(230,121,37,.35); }
.breadcrumbs a { color: var(--primary); font-weight: 700; }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.premium-card {
    border: 1px solid var(--line);
    border-radius: 30px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(230,121,37,.06);
}
.premium-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.premium-card img { width: 100%; height: 220px; object-fit: cover; }
.premium-card-body { padding: 24px; }
.premium-card h3 { font-size: 30px; line-height: 1; font-weight: 800; }
.premium-card p { color: var(--muted); font-family: Inter, sans-serif; line-height: 1.7; margin-top: 12px; }
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pill-list span, .pill-list a { padding: 9px 12px; border-radius: 999px; background: var(--mist); color: var(--primary); font-weight: 800; font-size: 13px; }

.detail-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 42px; align-items: start; }
.detail-media { position: sticky; top: 140px; border-radius: 34px; overflow: hidden; border: 10px solid #fff; box-shadow: var(--shadow); }
.detail-media img { width: 100%; height: 460px; object-fit: cover; }
.detail-copy { display: grid; gap: 18px; }
.detail-copy h2 { font-size: 48px; line-height: .98; font-weight: 800; }
.detail-copy p { color: var(--muted); font-family: Inter, sans-serif; line-height: 1.85; }
.spec-list { display: grid; gap: 12px; }
.spec-list li { padding: 16px 18px; border-radius: 18px; border: 1px solid var(--line); background: #fff; font-weight: 800; }
.spec-list i { color: var(--primary); margin-right: 10px; }

.contact-panel { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; }
.contact-info, .contact-form {
    border: 1px solid var(--line);
    border-radius: 34px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 32px;
}
.contact-info { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; }
.contact-info p { color: rgba(255,255,255,.78); font-family: Inter, sans-serif; line-height: 1.75; }
.contact-method { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.contact-method i { font-size: 22px; color: #fff; }
.contact-method span { display: block; color: rgba(255,255,255,.74); font-family: Inter, sans-serif; font-size: 13px; }
.contact-method strong { font-size: 22px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 800; color: var(--ink); }
.field input, .field select, .field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 16px;
    font-family: Inter, sans-serif;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(230,121,37,.08); }
.alert { padding: 14px 16px; border-radius: 16px; margin-bottom: 18px; font-family: Inter, sans-serif; }
.alert-success { background: #ecfdf3; color: #146c43; border: 1px solid #badbcc; }
.alert-info { background: #eef6ff; color: var(--primary); border: 1px solid rgba(230,121,37,.16); }

.site-footer { background: linear-gradient(135deg, var(--primary), #09243f); color: #fff; margin-top: 80px; }
.footer-cta {
    transform: translateY(-50%);
    margin-bottom: -48px;
    border-radius: 34px;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.footer-cta span { color: var(--primary); font-family: Inter, sans-serif; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 800; }
.footer-cta h2 { font-size: clamp(30px, 4vw, 48px); line-height: .98; font-weight: 800; max-width: 760px; margin-top: 8px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 30px; padding: 95px 0 44px; }
.brand-mark.light { color: #fff; }
.brand-mark.light small { color: rgba(255,255,255,.68); }
.footer-brand p, .footer-grid p { color: rgba(255,255,255,.68); font-family: Inter, sans-serif; line-height: 1.75; margin-top: 18px; }
.footer-grid h3 { font-size: 22px; font-weight: 800; margin-bottom: 16px; }
.footer-grid a { display: block; color: rgba(255,255,255,.72); margin: 10px 0; font-family: Inter, sans-serif; font-size: 14px; }
.footer-grid a:hover { color: #fff; transform: translateX(4px); }
.social-row { display: flex; gap: 10px; margin-top: 22px; }
.social-row a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.10); color: #fff; margin: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; color: rgba(255,255,255,.65); font-family: Inter, sans-serif; font-size: 13px; }
.footer-bottom .container-shell { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

@media (max-width: 1120px) {
    .desktop-nav { display: none; }
    .menu-toggle { display: flex; }
    .hero-grid, .about-grid, .category-layout, .industries-grid, .contact-panel, .detail-layout, .page-title { grid-template-columns: 1fr; }
    .solution-map, .why-grid, .service-orbit, .stats-panel, .cards-grid, .blog-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-panel, .detail-media { position: relative; top: auto; }
}

@media (max-width: 720px) {
    .top-strip { display: none; }
    .nav-shell { height: 72px; }
    .brand-mark small { display: none; }
    .brand-mark strong { font-size: 18px; }
    .brand-symbol { width: 46px; height: 46px; border-radius: 15px; font-size: 18px; }
    .nav-actions .btn { display: none; }
    .hero { min-height: auto; padding: 42px 0 70px; }
    .hero-content h1 { font-size: 45px; }
    .hero-content p { font-size: 16px; }
    .hero-metrics, .solution-map, .why-grid, .service-orbit, .stats-panel, .cards-grid, .blog-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
    .hero-visual { min-height: auto; }
    .hero-swiper { height: 380px; border-radius: 28px; }
    .floating-spec, .orbit-badge { display: none; }
    .section-pad { padding: 70px 0; }
    .section-heading { display: block; }
    .section-heading h2, .page-title h1 { font-size: 40px; margin: 10px 0 16px; }
    .category-row { grid-template-columns: 58px 1fr; }
    .category-row .arrow { display: none; }
    .icon-box { width: 56px; height: 56px; border-radius: 18px; }
    .image-collage { min-height: 460px; }
    .image-collage img:first-child { width: 100%; height: 300px; }
    .image-collage img:nth-child(2) { width: 72%; height: 200px; }
    .service-card:nth-child(2), .service-card:nth-child(4) { margin-top: 0; }
    .stat-box { border-right: 0; border-bottom: 1px solid var(--line); }
    .footer-cta { transform: none; margin: 0 0 30px; display: block; }
    .footer-cta .btn { margin-top: 20px; }
    .footer-grid { padding-top: 50px; }
}

/* Premium light-theme refinement: keeps #E67925 as the accent, not a dark background system. */
.top-strip {
    background: rgba(255, 255, 255, .94);
    color: var(--primary);
    border-bottom: 1px solid rgba(230, 121, 37, .10);
}
.top-strip a { color: var(--primary); }
.nav-wrap {
    background: rgba(255,255,255,.92);
}
.brand-symbol {
    background:
        linear-gradient(135deg, #E67925, #F3A15C);
}
.btn-primary {
    background: linear-gradient(135deg, #E67925, #F3A15C);
    color: #fff;
    box-shadow: 0 18px 44px rgba(230, 121, 37, .28);
}

.hero-premium-carousel {
    min-height: 85vh;
    padding: 0;
    background:
        radial-gradient(circle at 11% 16%, rgba(230, 121, 37, .12), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(243, 161, 92, .12), transparent 25%),
        linear-gradient(180deg, #ffffff 0%, #f6faff 54%, #ffffff 100%);
}
.hero-premium-carousel:before {
    content: none;
}
.hero-circuit {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, transparent 0 18%, rgba(230,121,37,.16) 18.1% 18.25%, transparent 18.4% 100%),
        linear-gradient(18deg, transparent 0 63%, rgba(230,121,37,.13) 63.1% 63.25%, transparent 63.4% 100%);
    pointer-events: none;
    z-index: 5;
}
.hero-stage {
    position: relative;
    height: 85vh;
    min-height: 620px;
    max-height: 860px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    background: transparent;
}
.hero-track {
    position: absolute;
    inset: 0;
    height: 100%;
}
.hero-slide {
    position: absolute;
    inset: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(34px) scale(.985);
    transition: opacity .75s ease, transform .9s cubic-bezier(.2, .8, .2, 1);
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.hero-slide.is-active {
    position: absolute;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 6;
    display: grid;
    align-items: center;
    padding: 44px 0 96px;
}
.hero-slide-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.83) 35%, rgba(255,255,255,.34) 72%, rgba(255,255,255,.64) 100%),
        radial-gradient(circle at 72% 18%, rgba(230,121,37,.22), transparent 26%),
        linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.58));
    z-index: 1;
}
.hero-slide:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16,16,16,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,16,16,.045) 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: 2;
}
.hero-slide-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(280px, .5fr);
    gap: 44px;
    align-items: center;
    z-index: 3;
}
.hero-content {
    position: relative;
    z-index: 5;
}
.hero-glass-panel {
    max-width: 780px;
    padding: clamp(24px, 3vw, 42px);
    border-radius: 34px;
    background: rgba(255,255,255,.76);
    border: 1px solid rgba(255,255,255,.86);
    box-shadow: 0 28px 90px rgba(16, 16, 16, .12);
    backdrop-filter: blur(18px);
}
.hero-content h1 {
    max-width: 720px;
    text-wrap: balance;
}
.hero-content p {
    color: #243142;
    max-width: 660px;
}
.hero-metrics {
    position: relative;
}
.metric-card {
    background:
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.68)),
        radial-gradient(circle at top right, rgba(230,121,37,.08), transparent 46%);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(230, 121, 37, .13);
}
.hero-floating-cluster {
    justify-self: end;
    display: grid;
    gap: 16px;
    width: min(330px, 100%);
}
.hero-image-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(255,255,255,.9);
    color: var(--primary);
    font-weight: 800;
    box-shadow: 0 18px 44px rgba(16, 16, 16, .10);
    backdrop-filter: blur(16px);
}
.hero-image-label i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(230, 121, 37, .08);
}
.floating-spec {
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(255,255,255,.9);
    position: static;
    width: auto;
    box-shadow: 0 18px 44px rgba(16, 16, 16, .10);
}
.orbit-badge {
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(16px);
}
.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 30;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
    pointer-events: none;
}
.hero-prev,
.hero-next {
    pointer-events: auto;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--primary);
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(230, 121, 37, .22);
    box-shadow: 0 14px 36px rgba(16, 16, 16, .10);
}
.hero-prev:hover,
.hero-next:hover {
    color: #fff;
    background: var(--primary);
}
.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 92px;
    pointer-events: auto;
}
.hero-dots button,
.hero-controls .swiper-pagination-bullet {
    width: 28px;
    height: 6px;
    border-radius: 999px;
    background: rgba(230, 121, 37, .28);
    opacity: 1;
}
.hero-dots button.is-active,
.hero-controls .swiper-pagination-bullet-active {
    background: var(--primary);
}

.mega-intro,
.feature-panel,
.tech-card,
.contact-info,
.blog-card:first-child {
    color: var(--ink);
    background:
        linear-gradient(145deg, rgba(255,255,255,.95), rgba(246,250,255,.88)),
        radial-gradient(circle at top right, rgba(230,121,37,.12), transparent 42%);
    border: 1px solid rgba(230, 121, 37, .14);
    box-shadow: 0 24px 64px rgba(230, 121, 37, .10);
}
.mega-intro:after,
.feature-panel:after {
    border-color: rgba(230, 121, 37, .12);
}
.mega-intro span,
.footer-cta span {
    color: var(--primary);
}
.mega-intro h3,
.feature-panel h3,
.tech-card h3,
.contact-info h2,
.blog-card:first-child h3 {
    color: var(--ink);
}
.mega-intro p,
.feature-panel p,
.tech-card p,
.contact-info p,
.blog-card:first-child p,
.blog-card:first-child .meta {
    color: var(--muted);
}
.feature-panel .btn-light {
    background: linear-gradient(135deg, #E67925, #F3A15C);
    color: #fff;
}
.solution-tile:hover {
    background:
        linear-gradient(145deg, #ffffff, #f3f8ff),
        radial-gradient(circle at top right, rgba(230,121,37,.12), transparent 38%);
    color: var(--ink);
    border-color: rgba(230, 121, 37, .22);
}
.solution-tile:hover p,
.solution-tile:hover i {
    color: var(--primary);
}
.why-card,
.service-card,
.premium-card,
.category-row,
.stats-panel,
.contact-form {
    background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.82)),
        radial-gradient(circle at top right, rgba(230,121,37,.055), transparent 42%);
}

.site-footer {
    color: var(--ink);
    margin-top: 80px;
    background:
        radial-gradient(circle at 12% 0%, rgba(230, 121, 37, .10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
    border-top: 1px solid rgba(230, 121, 37, .12);
}
.footer-cta {
    border: 1px solid rgba(230, 121, 37, .14);
    background:
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,250,255,.9)),
        radial-gradient(circle at 92% 14%, rgba(230,121,37,.12), transparent 30%);
}
.brand-mark.light,
.footer-grid h3 {
    color: var(--ink);
}
.brand-mark.light small,
.footer-brand p,
.footer-grid p,
.footer-grid a,
.footer-bottom {
    color: var(--muted);
}
.footer-grid a:hover {
    color: var(--primary);
}
.social-row a {
    color: var(--primary);
    background: #fff;
    border: 1px solid rgba(230, 121, 37, .14);
}
.footer-bottom {
    border-top: 1px solid rgba(230, 121, 37, .10);
}

.contact-info .contact-method {
    border-bottom: 1px solid rgba(230, 121, 37, .12);
}
.contact-method i,
.contact-method span,
.contact-method strong {
    color: var(--primary);
}

body:not(.aos-enabled) [data-aos] {
    opacity: 1 !important;
    transform: none !important;
}
.hero [data-aos],
.hero .image-reveal {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
}

@media (max-width: 1120px) {
    .hero-slide-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .hero-stage .swiper-slide {
        min-height: auto;
        padding: 54px 0 112px;
    }
    .hero-stage {
        height: auto;
        min-height: 920px;
        max-height: none;
    }
    .hero-track {
        position: absolute;
        min-height: 100%;
    }
    .hero-visual {
        min-height: auto;
    }
}

@media (max-width: 720px) {
    .hero-premium-carousel {
        padding: 0;
    }
    .hero-stage {
        height: auto;
        border-radius: 0;
    }
    .hero-stage .swiper-slide {
        padding: 38px 0 104px;
    }
    .hero-stage {
        min-height: 890px;
        height: auto;
    }
    .hero-overlay {
        padding: 30px 0 96px;
    }
    .hero-content h1 {
        font-size: 30px;
        line-height: 1.04;
        letter-spacing: -.012em;
        max-width: 100%;
        overflow-wrap: anywhere;
    }
    .hero-slide-grid.container-shell {
        width: calc(100vw - 48px);
        max-width: calc(100vw - 48px);
        margin-inline: auto;
        overflow: visible;
    }
    .hero .section-kicker {
        flex-wrap: wrap;
        font-size: 10px;
        gap: 7px;
        letter-spacing: .11em;
    }
    .hero .section-kicker span {
        width: 28px;
    }
    .hero-glass-panel {
        width: min(100%, 342px);
        max-width: 342px;
        padding: 20px;
        border-radius: 28px;
    }
    .hero-content p {
        font-size: 15px;
        line-height: 1.75;
    }
    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .hero-actions .btn {
        justify-content: center;
        padding: 13px 16px;
    }
    .hero-floating-cluster {
        display: none;
    }
    .hero-image-frame {
        min-height: 360px;
        border-radius: 30px;
    }
    .hero-image-frame img {
        height: 360px;
    }
    .hero-image-label {
        left: 16px;
        right: 16px;
        bottom: 16px;
        border-radius: 22px;
    }
    .hero-controls {
        bottom: 26px;
    }
    .footer-cta {
        transform: none;
        margin-bottom: 28px;
    }
}

/* Final corporate UI pass */
.site-header {
    background: #111111;
}
.top-strip {
    background: #0b0b0b;
    color: rgba(255,255,255,.78);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.top-strip a {
    color: rgba(255,255,255,.82);
}
.top-strip i {
    color: var(--primary);
}
.nav-wrap {
    background: rgba(17,17,17,.96);
    border-bottom: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.site-header.is-scrolled .nav-wrap {
    box-shadow: 0 18px 46px rgba(0,0,0,.28);
}
.brand-mark,
.brand-mark strong {
    color: #fff;
}
.brand-mark small {
    color: rgba(255,255,255,.62);
}
.nav-item > a {
    color: rgba(255,255,255,.86);
}
.nav-item > a.active,
.nav-item > a:hover {
    color: var(--primary);
}
.menu-toggle {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.14);
}
.menu-toggle span {
    background: #fff;
}

.hero-premium-carousel {
    display: block;
    min-height: 0;
    padding: 0;
    background: #101010;
}
.hero-stage {
    height: 85vh;
    min-height: 600px;
    max-height: none;
}
.hero-slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateX(100%) scale(1.02);
    opacity: 0;
    filter: saturate(.9) contrast(.96);
    transition:
        opacity .95s ease,
        transform 1.25s cubic-bezier(.16, 1, .3, 1),
        filter 1.2s ease;
}
.hero-slide.is-prev {
    transform: translateX(-100%) scale(1.03);
}
.hero-slide.is-next {
    transform: translateX(100%) scale(1.03);
}
.hero-slide.is-active {
    transform: translateX(0) scale(1);
    opacity: 1;
    filter: saturate(1.05) contrast(1.02);
}
.hero-slide.is-active + .hero-slide {
    transform: translateX(12%) scale(1.02);
}
.hero-controls {
    justify-content: flex-end;
    bottom: 34px;
}
.hero-prev,
.hero-next {
    color: #fff;
    background: rgba(0,0,0,.42);
    border-color: rgba(255,255,255,.22);
    backdrop-filter: blur(14px);
}
.hero-prev:hover,
.hero-next:hover {
    background: var(--primary);
}
.hero-dots {
    padding: 14px 16px;
    min-width: auto;
    border-radius: 999px;
    background: rgba(0,0,0,.36);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(14px);
}
.hero-dots button {
    width: 34px;
    height: 5px;
    background: rgba(255,255,255,.42);
}
.hero-dots button.is-active {
    width: 56px;
    background: var(--primary);
}

.intro-command {
    margin-top: 0;
    background:
        radial-gradient(circle at 8% 0%, rgba(230,121,37,.12), transparent 34%),
        linear-gradient(180deg, #fff, #fff7f0);
    overflow: hidden;
}
.intro-command-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .7fr);
    gap: 42px;
    align-items: center;
}
.intro-command h1 {
    max-width: 860px;
    font-size: clamp(42px, 6vw, 84px);
    line-height: .92;
    font-weight: 800;
    letter-spacing: -.032em;
}
.intro-command p {
    max-width: 760px;
    margin-top: 22px;
    color: #263241;
    font-family: Inter, sans-serif;
    font-size: 18px;
    line-height: 1.85;
}
.intro-metrics {
    display: grid;
    gap: 14px;
}
.intro-metrics .metric-card {
    min-height: 128px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 28px;
}

.mega-menu {
    padding-top: 8px;
}
.mega-panel,
.mega-panel.compact,
.small-panel,
.mega-panel-editorial {
    width: min(1220px, calc(100% - 44px));
    min-height: auto;
    margin-inline: auto;
    border-radius: 28px;
    padding: 18px;
    background:
        radial-gradient(circle at top left, rgba(230,121,37,.22), transparent 28%),
        linear-gradient(135deg, rgba(21,21,21,.98), rgba(36,28,22,.97));
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 32px 90px rgba(0,0,0,.34);
    backdrop-filter: blur(18px);
}
.mega-panel-editorial {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 18px;
}
.mega-spotlight {
    min-height: 330px;
    padding: 28px;
    border-radius: 22px;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(230,121,37,.96), rgba(243,161,92,.76)),
        radial-gradient(circle at bottom right, rgba(255,255,255,.24), transparent 34%);
    position: relative;
    overflow: hidden;
}
.mega-spotlight:after {
    content: "";
    position: absolute;
    right: -72px;
    bottom: -82px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.34);
}
.mega-spotlight span {
    display: inline-block;
    color: rgba(255,255,255,.82);
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.mega-spotlight h3 {
    margin-top: 16px;
    color: #fff;
    font-size: 34px;
    line-height: .96;
    font-weight: 800;
}
.mega-spotlight p {
    margin-top: 16px;
    max-width: 290px;
    color: rgba(255,255,255,.82);
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 1.7;
}
.mega-spotlight-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: #fff;
    font-weight: 800;
}
.mega-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.mega-feature-card,
.mega-company-card {
    display: flex;
    gap: 14px;
    padding: 18px;
    min-height: 142px;
    border-radius: 20px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
    color: #fff;
}
.mega-feature-card:hover,
.mega-company-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,.12);
    border-color: rgba(230,121,37,.58);
}
.mega-feature-icon,
.mega-company-card i {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: rgba(230,121,37,.92);
}
.mega-feature-copy strong,
.mega-company-card strong {
    display: block;
    color: #fff;
    font-size: 20px;
    line-height: 1.08;
}
.mega-feature-copy small,
.mega-company-card small {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,.64);
    font-family: Inter, sans-serif;
    font-size: 12px;
    line-height: 1.55;
}
.service-feature-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.service-feature-grid .mega-feature-card {
    display: block;
}
.service-feature-grid .mega-feature-icon {
    margin-bottom: 14px;
}
.company-editorial {
    grid-template-columns: 420px 1fr;
}
.mega-company-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.mega-company-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.mega-company-card i {
    margin-bottom: auto;
}

.solutions-ribbon {
    color: #fff;
    background:
        radial-gradient(circle at 15% 10%, rgba(230,121,37,.26), transparent 30%),
        linear-gradient(135deg, #101010, #211a15 64%, #101010);
}
.solutions-ribbon .section-heading h2,
.solutions-ribbon .section-heading p {
    color: #fff;
}
.solutions-ribbon .solution-map {
    border-color: rgba(255,255,255,.10);
    background: rgba(255,255,255,.10);
}
.solutions-ribbon .solution-tile {
    color: #fff;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
}
.solutions-ribbon .solution-tile:nth-child(even) {
    background: rgba(255,255,255,.09);
}
.solutions-ribbon .solution-tile h3,
.solutions-ribbon .solution-tile i {
    color: #fff;
}
.solutions-ribbon .solution-tile p {
    color: rgba(255,255,255,.66);
}
.solutions-ribbon .solution-tile:hover {
    background: var(--primary);
    color: #fff;
}
.solutions-ribbon .solution-tile:hover p,
.solutions-ribbon .solution-tile:hover i {
    color: #fff;
}

.brand-marquee {
    background: #111;
    border-color: rgba(255,255,255,.12);
}
.marquee-track span {
    color: #fff;
    border-right-color: rgba(255,255,255,.12);
}
.site-footer {
    color: #fff;
    background:
        radial-gradient(circle at 15% 0%, rgba(230,121,37,.24), transparent 34%),
        linear-gradient(135deg, #101010, #1f1813);
    border-top: 1px solid rgba(255,255,255,.10);
}
.brand-mark.light,
.footer-grid h3 {
    color: #fff;
}
.brand-mark.light small,
.footer-brand p,
.footer-grid p,
.footer-grid a,
.footer-bottom {
    color: rgba(255,255,255,.66);
}
.footer-grid a:hover {
    color: var(--primary);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.10);
}

@media (max-width: 1120px) {
    .intro-command-grid,
    .mega-panel-editorial,
    .company-editorial {
        grid-template-columns: 1fr;
    }
    .mega-feature-grid,
    .service-feature-grid,
    .mega-company-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .hero-stage {
        height: 70vh;
        min-height: 500px;
    }
}

@media (max-width: 720px) {
    .hero-stage {
        height: 68vh;
        min-height: 420px;
    }
    .hero-controls {
        justify-content: center;
        bottom: 22px;
    }
    .hero-prev,
    .hero-next {
        width: 42px;
        height: 42px;
    }
    .intro-command {
        padding-top: 56px;
    }
    .intro-command h1 {
        font-size: 29px;
        line-height: 1.02;
        letter-spacing: -.018em;
        overflow-wrap: anywhere;
    }
    .intro-command p {
        font-size: 15px;
    }
    .intro-metrics {
        grid-template-columns: 1fr;
    }
    .mega-menu {
        display: none;
    }
}

/* Animated networking vector system and final section motion polish */
@keyframes circuitDrift {
    0% { background-position: 0 0, 0 0, 0 0; transform: translate3d(0,0,0); }
    50% { background-position: 42px 24px, -28px 36px, 18px -20px; transform: translate3d(0,-8px,0); }
    100% { background-position: 84px 48px, -56px 72px, 36px -40px; transform: translate3d(0,0,0); }
}
@keyframes chipOrbit {
    0% { transform: rotate(0deg) scale(1); opacity: .18; }
    50% { transform: rotate(12deg) scale(1.06); opacity: .32; }
    100% { transform: rotate(0deg) scale(1); opacity: .18; }
}
@keyframes nodePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(230,121,37,.28); }
    50% { box-shadow: 0 0 0 14px rgba(230,121,37,0); }
}
@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.section-pad,
.page-hero,
.intro-command {
    overflow: hidden;
}
.section-pad > .container-shell,
.page-hero > .container-shell,
.intro-command > .container-shell {
    position: relative;
    z-index: 2;
}
.section-pad::before,
.page-hero::before,
.intro-command::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .45;
    background:
        radial-gradient(circle at 18% 26%, rgba(230,121,37,.18) 0 3px, transparent 4px),
        radial-gradient(circle at 82% 38%, rgba(16,16,16,.11) 0 2px, transparent 3px),
        linear-gradient(115deg, transparent 0 21%, rgba(230,121,37,.10) 21.1% 21.28%, transparent 21.4% 100%),
        linear-gradient(24deg, transparent 0 62%, rgba(230,121,37,.10) 62.1% 62.28%, transparent 62.4% 100%);
    background-size: 220px 220px, 180px 180px, 680px 680px, 760px 760px;
    animation: circuitDrift 22s linear infinite;
}
.section-pad::after,
.page-hero::after,
.intro-command::after {
    content: "";
    position: absolute;
    right: clamp(-130px, -8vw, -70px);
    bottom: clamp(-130px, -8vw, -80px);
    width: clamp(220px, 25vw, 420px);
    height: clamp(220px, 25vw, 420px);
    z-index: 0;
    pointer-events: none;
    border: 1px solid rgba(230,121,37,.16);
    border-radius: 34%;
    background:
        linear-gradient(90deg, rgba(230,121,37,.16) 1px, transparent 1px),
        linear-gradient(rgba(230,121,37,.16) 1px, transparent 1px);
    background-size: 38px 38px;
    animation: chipOrbit 13s ease-in-out infinite;
}
.solutions-ribbon::before,
.brand-marquee::before,
.site-footer::before {
    opacity: .24;
}

.feature-panel {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
    padding: 28px;
}
.feature-panel img {
    height: clamp(340px, 38vw, 470px);
    margin-bottom: 30px;
}
.feature-panel p {
    margin-bottom: 24px;
}
.feature-panel .btn {
    margin-top: auto;
    width: fit-content;
}
.feature-panel:before {
    content: "";
    position: absolute;
    top: 28px;
    right: 28px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    animation: nodePulse 2.4s ease-in-out infinite;
}

.category-row,
.solution-tile,
.why-card,
.service-card,
.premium-card,
.blog-card,
.stat-box,
.metric-card,
.brand-logo-card,
.mega-feature-card,
.mega-company-card {
    transition:
        transform .34s cubic-bezier(.2,.8,.2,1),
        box-shadow .34s ease,
        border-color .34s ease,
        background .34s ease;
    will-change: transform;
}
.category-row:hover,
.why-card:hover,
.service-card:hover,
.premium-card:hover,
.blog-card:hover {
    transform: translateY(-10px);
}
.category-row:hover .icon-box,
.solution-tile:hover i,
.service-card:hover i,
.why-card:hover i {
    animation: nodePulse 1.8s ease-in-out infinite;
}

.brand-cloud-logo {
    display: grid !important;
    grid-template-columns: 38px 1fr;
    align-items: center;
    gap: 10px;
}
.brand-cloud-logo img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
    padding: 5px;
}
.brand-cloud-logo span {
    font-size: 14px;
}
.brand-marquee {
    position: relative;
}
.brand-marquee-logo {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.brand-marquee-logo img {
    width: 72px;
    height: 42px;
    object-fit: contain;
    padding: 8px 12px;
    border-radius: 14px;
    background: #fff;
    filter: saturate(.95);
    animation: logoFloat 5s ease-in-out infinite;
}
.brand-marquee-logo strong {
    color: inherit;
    font-size: 20px;
}
.brand-logo-card {
    height: 118px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, #fff, #fff7f0),
        radial-gradient(circle at top right, rgba(230,121,37,.12), transparent 42%);
    border: 1px solid rgba(230,121,37,.16);
}
.brand-logo-card img {
    max-width: 72%;
    max-height: 70px;
    object-fit: contain;
    filter: saturate(.96) contrast(1.02);
}
.brand-logo-card:hover img {
    animation: logoFloat 1.7s ease-in-out infinite;
}

@media (max-width: 1120px) {
    .feature-panel img {
        height: clamp(300px, 48vw, 420px);
    }
}

@media (max-width: 720px) {
    .section-pad::after,
    .page-hero::after,
    .intro-command::after {
        width: 220px;
        height: 220px;
    }
    .feature-panel {
        padding: 22px;
    }
    .feature-panel img {
        height: 310px;
    }
    .brand-marquee-logo img {
        width: 58px;
        height: 36px;
    }
}

/* Menu parity, spacing cleanup, and footer CTA image overlay */
.products-editorial,
.brands-editorial {
    grid-template-columns: 420px 1fr;
}
.mega-brand-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.mega-brand-card {
    min-height: 116px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 10px;
    padding: 14px;
    border-radius: 20px;
    color: #fff;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
}
.mega-brand-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,.12);
    border-color: rgba(230,121,37,.58);
}
.mega-brand-card img {
    width: 72px;
    height: 42px;
    object-fit: contain;
    padding: 7px 10px;
    border-radius: 12px;
    background: #fff;
}
.mega-brand-card span {
    color: rgba(255,255,255,.86);
    font-weight: 800;
    text-align: center;
    line-height: 1.1;
}

.service-editorial {
    grid-template-columns: 360px 1fr;
}
.service-editorial .mega-spotlight {
    min-height: 285px;
}
.service-feature-grid {
    grid-template-columns: repeat(5, minmax(150px, 1fr));
}
.service-feature-grid .mega-feature-card {
    min-height: 285px;
    padding: 22px;
}
.service-feature-grid .mega-feature-copy strong {
    font-size: 22px;
}
.service-feature-grid .mega-feature-copy small {
    font-size: 13px;
    line-height: 1.58;
}

.company-editorial {
    grid-template-columns: 420px 1fr;
    width: min(1120px, calc(100% - 44px));
}
.company-editorial .mega-spotlight {
    min-height: 260px;
}
.mega-company-list {
    align-items: stretch;
}
.mega-company-card {
    min-height: 260px;
}

.footer-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    transform: translateY(-50%);
    margin-bottom: -70px;
    min-height: 245px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(16,16,16,.84), rgba(16,16,16,.62)),
        url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    border: 1px solid rgba(255,255,255,.16);
}
.footer-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 88% 22%, rgba(230,121,37,.44), transparent 32%),
        linear-gradient(115deg, transparent 0 72%, rgba(230,121,37,.26) 72.2% 72.45%, transparent 72.7% 100%);
}
.footer-cta span {
    color: #F3A15C;
}
.footer-cta h2 {
    color: #fff;
}
.footer-cta .btn-light {
    color: var(--primary);
    background: #fff;
    border-color: rgba(255,255,255,.34);
}
.site-footer {
    padding-top: 96px;
    margin-top: 118px;
}
.social-row a {
    color: #fff !important;
    background: rgba(255,255,255,.14) !important;
    border: 1px solid rgba(255,255,255,.28) !important;
    opacity: 1;
}
.social-row a i {
    color: #fff;
}
.social-row a:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    transform: translateY(-4px);
}

@media (max-width: 1120px) {
    .products-editorial,
    .brands-editorial,
    .service-editorial,
    .company-editorial {
        grid-template-columns: 1fr;
    }
    .mega-brand-logo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .service-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .footer-cta {
        transform: translateY(-42%);
        /*margin-bottom: -54px;*/
        min-height: 300px;
        padding: 28px;
        margin:15px;
    }
    .site-footer {
        padding-top: 86px;
    }
}

/* Final premium service/company refinements */
@keyframes servicePanelFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -10px, 0); }
}

@keyframes serviceGlowTravel {
    0% { transform: translate3d(-12%, 12%, 0) rotate(0deg); opacity: .28; }
    50% { transform: translate3d(9%, -8%, 0) rotate(8deg); opacity: .48; }
    100% { transform: translate3d(-12%, 12%, 0) rotate(0deg); opacity: .28; }
}

@keyframes serviceScanline {
    0% { transform: translateX(-35%) rotate(-8deg); opacity: 0; }
    16%, 72% { opacity: .42; }
    100% { transform: translateX(135%) rotate(-8deg); opacity: 0; }
}

.service-feature-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: stretch;
}
.service-feature-grid .mega-feature-card {
    grid-column: span 2;
    min-height: 208px;
    padding: 22px;
}
.service-feature-grid .mega-feature-card:nth-child(n+4) {
    grid-column: span 3;
}

.mega-company-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 270px;
    padding: 22px;
}
.mega-company-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .42;
}
.mega-company-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.92) contrast(1.08);
    transform: scale(1.06);
    transition: transform .45s ease, opacity .45s ease;
}
.mega-company-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(16,16,16,.18), rgba(16,16,16,.88)),
        radial-gradient(circle at 20% 14%, rgba(230,121,37,.30), transparent 34%);
}
.mega-company-card i,
.mega-company-card strong,
.mega-company-card small {
    position: relative;
    z-index: 2;
}
.mega-company-card:hover .mega-company-image img {
    transform: scale(1.12);
}

.services-showcase {
    position: relative;
    isolation: isolate;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(16,16,16,.95), rgba(37,27,21,.90) 54%, rgba(16,16,16,.96)),
        url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}
.services-showcase::before {
    opacity: .32;
    background:
        radial-gradient(circle at 12% 18%, rgba(230,121,37,.24) 0 3px, transparent 4px),
        radial-gradient(circle at 78% 38%, rgba(255,255,255,.16) 0 2px, transparent 3px),
        linear-gradient(112deg, transparent 0 18%, rgba(230,121,37,.22) 18.1% 18.22%, transparent 18.35% 100%),
        linear-gradient(24deg, transparent 0 66%, rgba(255,255,255,.13) 66.1% 66.22%, transparent 66.35% 100%);
    background-size: 180px 180px, 220px 220px, 620px 620px, 760px 760px;
    animation: circuitDrift 18s linear infinite;
}
.services-showcase::after {
    right: auto;
    left: -160px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(230,121,37,.20);
    background: radial-gradient(circle, rgba(230,121,37,.22), transparent 64%);
    animation: serviceGlowTravel 12s ease-in-out infinite;
}
.services-showcase .section-kicker {
    color: #F3A15C;
}
.services-showcase .section-kicker span {
    background: #F3A15C;
}
.services-showcase .section-heading h2 {
    max-width: 1120px;
    color: #fff;
}
.services-showcase .service-orbit {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: stretch;
}
.services-showcase .service-card {
    grid-column: span 2;
    position: relative;
    overflow: hidden;
    min-height: 286px;
    margin-top: 0;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.045)),
        radial-gradient(circle at 18% 10%, rgba(230,121,37,.18), transparent 36%);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 24px 70px rgba(0,0,0,.18);
    backdrop-filter: blur(18px);
    animation: servicePanelFloat 7s ease-in-out infinite;
}
.services-showcase .service-card:nth-child(2) { animation-delay: .5s; }
.services-showcase .service-card:nth-child(3) { animation-delay: 1s; }
.services-showcase .service-card:nth-child(4),
.services-showcase .service-card:nth-child(5) {
    grid-column: span 3;
    animation-delay: 1.5s;
}
.services-showcase .service-card:nth-child(5) { animation-delay: 2s; }
.services-showcase .service-card:hover {
    animation: none;
    transform: translateY(-12px) scale(1.01);
    border-color: rgba(243,161,92,.58);
    background:
        linear-gradient(145deg, rgba(255,255,255,.17), rgba(255,255,255,.07)),
        radial-gradient(circle at 18% 10%, rgba(230,121,37,.24), transparent 36%);
}
.services-showcase .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: .16;
}
.services-showcase .service-card i {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 18px 36px rgba(230,121,37,.30);
}
.services-showcase .service-card h3 {
    color: #fff;
}
.services-showcase .service-card p {
    max-width: 360px;
    color: rgba(255,255,255,.68);
}
.services-motion,
.services-scanline {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}
.services-motion {
    width: 190px;
    height: 190px;
    border: 1px solid rgba(230,121,37,.26);
    border-radius: 38px;
    background:
        linear-gradient(90deg, rgba(230,121,37,.18) 1px, transparent 1px),
        linear-gradient(rgba(230,121,37,.18) 1px, transparent 1px);
    background-size: 24px 24px;
    animation: chipOrbit 11s ease-in-out infinite;
}
.services-motion-one {
    top: 74px;
    right: 7vw;
}
.services-motion-two {
    left: 5vw;
    bottom: 70px;
    width: 122px;
    height: 122px;
    border-radius: 50%;
    animation-duration: 15s;
    animation-delay: -4s;
}
.services-scanline {
    top: 26%;
    left: 0;
    width: 42%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(243,161,92,.85), transparent);
    animation: serviceScanline 8s ease-in-out infinite;
}

@media (max-width: 1120px) {
    .service-feature-grid,
    .services-showcase .service-orbit {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .service-feature-grid .mega-feature-card,
    .service-feature-grid .mega-feature-card:nth-child(n+4),
    .services-showcase .service-card,
    .services-showcase .service-card:nth-child(4),
    .services-showcase .service-card:nth-child(5) {
        grid-column: auto;
    }
    .mega-company-card {
        min-height: 240px;
    }
}

@media (max-width: 720px) {
    .service-feature-grid,
    .services-showcase .service-orbit {
        grid-template-columns: 1fr;
    }
    .services-showcase {
        background-attachment: scroll;
    }
    .services-showcase .service-card {
        min-height: 235px;
        animation-duration: 9s;
    }
    .services-motion {
        opacity: .45;
    }
}
