:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F6FAEC;
    --bg-tertiary: #F6FAEC;
    --bg-card: #F6FAEC;
    --bg-hover: #E8F3D8;
    --bg-elevated: #F6FAEC;
    --text-primary: #0A0A0A;
    --text-secondary: #0A0A0A;
    --text-tertiary: #737373;
    --text-muted: #737373;
    --text-accent: #A6C639;
    --accent-primary: #A6C639;
    --accent-secondary: #8FAE33;
    --accent-light: #A6C639;
    --accent-dark: #0A0A0A;
    --accent-border: rgba(166, 198, 57, 0.24);
    --accent-glow: rgba(166, 198, 57, 0.18);
    --border-soft: rgba(166, 198, 57, 0.18);
    --border-strong: rgba(166, 198, 57, 0.3);
    --shadow-soft: 0 20px 60px rgba(143, 174, 51, 0.12);
    --shadow-card: 0 14px 40px rgba(143, 174, 51, 0.1);
    --shadow-hover: 0 22px 60px rgba(143, 174, 51, 0.16);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --radius-xl: 44px;
    --container: 1200px;
    --transition-base: 300ms cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 560ms cubic-bezier(0.16, 1, 0.3, 1);
    --motion-delay-step: 90ms;
    --motion-ring: rgba(166, 198, 57, 0.18);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    margin: 0;
    overflow-x: hidden;
    font-family: "Inter", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top right, rgba(166, 198, 57, 0.14), transparent 26%),
        linear-gradient(180deg, #FFFFFF 0%, #FBFDF6 52%, #F6FAEC 100%);
    color: var(--text-primary);
    line-height: 1.6;
    animation: none;
}

body::before,
body::after {
    content: "";
    position: fixed;
    z-index: 0;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(14px);
    opacity: 0.75;
}

body::before {
    top: -12vw;
    right: -10vw;
    width: 36vw;
    height: 36vw;
    background: radial-gradient(circle, rgba(166, 198, 57, 0.18) 0%, rgba(166, 198, 57, 0.05) 42%, rgba(166, 198, 57, 0) 72%);
    animation: none;
}

body::after {
    left: -14vw;
    bottom: -12vw;
    width: 32vw;
    height: 32vw;
    background: radial-gradient(circle, rgba(143, 174, 51, 0.14) 0%, rgba(143, 174, 51, 0.05) 45%, rgba(143, 174, 51, 0) 74%);
    animation: none;
}

.site-header,
main,
.footer {
    position: relative;
    z-index: 1;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--container), calc(100vw - 2rem));
    margin: 0 auto;
}

.section {
    padding: 88px 0;
}

.section--compact {
    padding: 64px 0;
}

.section--soft {
    background: linear-gradient(180deg, rgba(246, 250, 236, 0.8), rgba(255, 255, 255, 0));
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(166, 198, 57, 0.14);
    color: var(--accent-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent-primary);
    box-shadow: 0 0 0 6px rgba(166, 198, 57, 0.12);
}

.section-heading {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.section-heading h2,
.section-heading h1 {
    margin: 0;
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.25;
    letter-spacing: normal;
    font-weight: 700;
}

.section-heading p {
    margin: 0;
    max-width: 720px;
    font-size: 1.05rem;
    color: var(--text-tertiary);
}

.button-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.button,
.button-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    overflow: hidden;
    isolation: isolate;
    padding: 0.95rem 1.4rem;
    border-radius: 16px;
    font-weight: 700;
    transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base), border-color var(--transition-base);
}

.button::after,
.button-secondary::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.32) 50%, transparent 80%);
    transform: translateX(-130%);
    transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.button {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--text-primary);
    border: 1px solid var(--accent-primary);
    box-shadow: 0 18px 40px rgba(166, 198, 57, 0.22);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.78);
    color: var(--text-primary);
    border: 1px solid var(--border-strong);
}

.button:hover,
.button-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.button:hover::after,
.button-secondary:hover::after {
    transform: translateX(130%);
}

.chip-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.chip {
    position: relative;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border-soft);
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-weight: 600;
    transition: transform var(--transition-base), border-color var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
}

.chip:hover {
    transform: translateY(-2px);
    border-color: var(--border-strong);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 26px rgba(143, 174, 51, 0.12);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
    padding: 1rem 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 0;
    box-shadow: none;
    transition: box-shadow var(--transition-base), padding var(--transition-base), background var(--transition-base);
    animation: none;
}

.mobile-preview body {
    max-width: none;
    margin: 0;
    background: inherit;
    box-shadow: none;
}

.mobile-preview .site-header {
    position: sticky;
    max-width: none;
    margin: 0;
}

.mobile-preview .site-header .container {
    width: min(var(--container), calc(100vw - 1.5rem));
}

.mobile-preview .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 50%;
    width: min(92vw, 360px);
    transform: translateX(-50%);
    display: none !important;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.mobile-preview .site-nav.is-open {
    display: grid !important;
    gap: 1rem;
}

.mobile-preview .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.mobile-preview .nav-link,
.mobile-preview .nav-button {
    width: 100%;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(166, 198, 57, 0.08);
}

.mobile-preview .header-row {
    display: flex;
    justify-content: space-between;
}

.mobile-preview .menu-toggle {
    display: inline-grid;
    place-items: center;
}

.mobile-preview .brand-text {
    display: none;
}

.mobile-preview .header-actions {
    gap: 0.5rem;
}

.mobile-preview .header-preview {
    display: none;
}

.mobile-preview .section {
    padding: 56px 0;
}

.mobile-preview .section--compact {
    padding: 44px 0;
}

.mobile-preview .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.mobile-preview .hero-copy {
    max-width: 100%;
}

.mobile-preview .hero-copy h1 {
    font-size: clamp(1.8rem, 8.5vw, 2.4rem);
    max-width: none;
    line-height: 1.12;
}

.mobile-preview .hero-copy p {
    font-size: 0.98rem;
}

.mobile-preview .hero-visual {
    min-height: 280px;
    padding: 1rem;
}

.mobile-preview .button,
.mobile-preview .button-secondary {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
}

.mobile-preview .chip-row {
    flex-wrap: wrap;
    gap: 0.5rem;
}

.mobile-preview .page-hero__shell {
    padding: 1.4rem;
}

.mobile-preview .page-hero h1 {
    font-size: clamp(1.6rem, 7.8vw, 2.2rem);
}

.mobile-preview .why-us-viewport {
    min-height: 520px;
}

.mobile-preview .footer-card {
    padding: 1.4rem;
}

.mobile-preview .hero-grid,
.mobile-preview .page-hero__shell,
.mobile-preview .trust-strip,
.mobile-preview .solutions-layout,
.mobile-preview .page-grid,
.mobile-preview .contact-grid,
.mobile-preview .footer-grid {
    grid-template-columns: 1fr;
}

.mobile-preview .grid-three,
.mobile-preview .grid-four,
.mobile-preview .metric-grid,
.mobile-preview .timeline-grid,
.mobile-preview .partner-certifications__grid,
.mobile-preview .career-grid {
    grid-template-columns: 1fr;
}

.mobile-preview .container {
    width: calc(100% - 1.5rem);
}

.mobile-preview .why-us-carousel {
    padding: 0 0.75rem;
}

.mobile-preview .why-us-viewport {
    min-height: 600px;
}

.header-preview {
    margin-right: 0.65rem;
}

.site-header.is-scrolled {
    padding: 0.8rem 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
    box-shadow: 0 10px 32px rgba(143, 174, 51, 0.08);
}

.header-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    cursor: default;
    user-select: none;
}

.brand-logo {
    display: block;
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.brand-mark {
    width: 50px;
    height: 50px;
    display: inline-grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--text-primary);
    box-shadow: 0 18px 40px rgba(166, 198, 57, 0.2);
}

.brand-mark__glyph {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
}

.brand-text {
    display: grid;
    gap: 0.15rem;
}

.brand-text strong {
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    font-weight: 700;
}

.brand-text small {
    color: var(--text-tertiary);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    text-transform: none;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-strong);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-primary);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    margin: 4px auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    justify-self: center;
    position: relative;
}

.nav-list {
    list-style: none;
    padding: 0.35rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(166, 198, 57, 0.16);
    border-radius: 999px;
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 28px rgba(166, 198, 57, 0.08);
}

.nav-item {
    position: static;
}

.nav-link,
.nav-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    overflow: hidden;
    padding: 0.56rem 0.9rem;
    border-radius: 999px;
    border: 0;
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background var(--transition-base), color var(--transition-base), transform var(--transition-base);
}

.nav-link::after,
.nav-button::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.32rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(166, 198, 57, 0), rgba(166, 198, 57, 0.92), rgba(166, 198, 57, 0));
    transform: scaleX(0.2);
    opacity: 0;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-link:hover,
.nav-button:hover,
.nav-item:hover > .nav-link,
.nav-item:hover > .nav-button,
.nav-item.panel-open > .nav-button {
    background: rgba(166, 198, 57, 0.12);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-button:hover::after,
.nav-item:hover > .nav-link::after,
.nav-item:hover > .nav-button::after,
.nav-item.panel-open > .nav-button::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-caret {
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform var(--transition-base);
}

.nav-item:hover .nav-caret,
.nav-item.panel-open .nav-caret {
    transform: rotate(225deg) translateY(-1px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: flex-end;
    justify-self: end;
}

.header-actions .button {
    padding: 0.62rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(166, 198, 57, 0.18);
    color: var(--text-primary);
    box-shadow: 0 12px 28px rgba(166, 198, 57, 0.08);
    font-size: 0.95rem;
}

.header-actions .button:hover {
    background: rgba(246, 250, 236, 0.96);
    color: var(--text-primary);
    box-shadow: 0 14px 30px rgba(166, 198, 57, 0.1);
}

.mega-panel {
    position: absolute;
    top: calc(100% + 0.9rem);
    left: 50%;
    width: min(1040px, calc(100vw - 4rem));
    transform: translate(-50%, 12px);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border-soft);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.4fr);
    gap: 1.5rem;
    padding: 1.75rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base);
}

.nav-item:hover .mega-panel,
.nav-item:focus-within .mega-panel,
.nav-item.panel-open .mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.mega-panel__intro {
    display: grid;
    gap: 1rem;
    align-content: start;
    padding: 0.6rem 0.4rem;
}

.mega-panel__intro p {
    margin: 0;
    color: var(--text-tertiary);
}

.mega-panel__panel {
    display: grid;
    gap: 1rem;
}

.mega-link-grid {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mega-link {
    position: relative;
    overflow: hidden;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid transparent;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.mega-link::before {
    content: "";
    position: absolute;
    inset: auto -10% -30% auto;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(166, 198, 57, 0.16) 0%, rgba(166, 198, 57, 0) 72%);
    opacity: 0;
    transform: scale(0.84);
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.mega-link strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.mega-link span {
    display: block;
    color: var(--text-tertiary);
    font-size: 0.94rem;
}

.mega-link:hover {
    transform: translateY(-3px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-card);
}

.mega-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.hero {
    padding: 132px 0 66px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 2.5rem;
    align-items: center;
}

.hero-copy {
    display: grid;
    gap: 1.35rem;
}

.hero-kicker {
    display: inline-flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.hero-kicker__brand {
    display: inline-block;
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1.05;
    animation: hero-kicker-rise 0.8s ease both, hero-kicker-glow 4.8s ease-in-out infinite;
}

.hero-kicker__sub {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1.05;
    animation: hero-kicker-rise 0.8s ease 0.12s both, hero-kicker-glow 4.8s ease-in-out 0.35s infinite;
}

@keyframes hero-kicker-rise {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-kicker-glow {
    0%,
    100% {
        text-shadow: 0 0 0 rgba(166, 198, 57, 0);
    }
    50% {
        text-shadow: 0 0 18px rgba(166, 198, 57, 0.18);
    }
}

.hero-copy h1 {
    margin: 0;
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: clamp(2rem, 4.8vw, 3.4rem);
    line-height: 1.15;
    letter-spacing: normal;
    max-width: 12ch;
    font-weight: 700;
}

.hero-copy h1 .accent {
    color: transparent;
    background: linear-gradient(90deg, var(--accent-secondary), #cadf6c, var(--accent-secondary));
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: accent-shimmer 7s linear infinite;
}

.hero-copy p {
    margin: 0;
    color: var(--text-tertiary);
    max-width: 62ch;
    font-size: 1.06rem;
    animation: soft-rise-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    font-weight: 700;
    color: var(--accent-secondary);
    transition: color var(--transition-base), transform var(--transition-base);
}

.hero-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.18rem;
    height: 2px;
    background: currentColor;
    transform: scaleX(0.28);
    transform-origin: left center;
    opacity: 0.7;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.hero-link:hover {
    color: var(--text-primary);
    transform: translateX(3px);
}

.hero-link:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

.hero-visual {
    position: relative;
    min-height: 520px;
    padding: 2rem;
    background: transparent;
    overflow: hidden;
    animation: soft-rise-in 0.78s cubic-bezier(0.16, 1, 0.3, 1) 0.16s both;
}

.hero-logo-scene {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 100%;
    width: 100%;
}

.hero-logo-image {
    display: block;
    width: min(56%, 240px);
    max-width: 100%;
    max-height: 240px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 16px 24px rgba(166, 198, 57, 0.18));
    animation: hero-logo-float 5.4s ease-in-out infinite, hero-logo-glow 4.8s ease-in-out infinite;
}

@keyframes hero-logo-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes hero-logo-glow {
    0%,
    100% {
        filter: drop-shadow(0 14px 22px rgba(166, 198, 57, 0.14));
    }
    50% {
        filter: drop-shadow(0 20px 30px rgba(166, 198, 57, 0.28));
    }
}

@keyframes page-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes header-float-in {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes soft-rise-in {
    from {
        opacity: 0;
        transform: translate3d(0, 22px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes accent-shimmer {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 220% 50%;
    }
}

@keyframes ambient-orb-one {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    100% {
        transform: translate3d(-4vw, 4vw, 0) scale(1.12);
    }
}

@keyframes ambient-orb-two {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    100% {
        transform: translate3d(5vw, -3vw, 0) scale(1.1);
    }
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.trust-card,
.highlight-card,
.content-card,
.resource-card,
.footer-card,
.metric-card,
.timeline-card,
.career-card,
.contact-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--border-soft);
    border-radius: 28px;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.trust-card::before,
.highlight-card::before,
.content-card::before,
.resource-card::before,
.footer-card::before,
.metric-card::before,
.timeline-card::before,
.career-card::before,
.contact-card::before,
.section-shell::before,
.sticky-card::before,
.partner-certifications::before,
.industry-card::before {
    content: "";
    position: absolute;
    inset: auto auto -32% -10%;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(166, 198, 57, 0.18) 0%, rgba(166, 198, 57, 0.06) 38%, rgba(166, 198, 57, 0) 72%);
    opacity: 0;
    transform: translateY(16px) scale(0.88);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
    pointer-events: none;
    z-index: 0;
}

.trust-card > *,
.highlight-card > *,
.content-card > *,
.resource-card > *,
.footer-card > *,
.metric-card > *,
.timeline-card > *,
.career-card > *,
.contact-card > *,
.section-shell > *,
.sticky-card > *,
.partner-certifications > *,
.industry-card > * {
    position: relative;
    z-index: 1;
    transition: transform var(--transition-base), color var(--transition-base);
}

.trust-card {
    padding: 1.6rem;
}

.partner-card {
    display: grid;
    gap: 1rem;
}

.partner-wall {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.partner-wall span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.7rem 0.95rem;
    border-radius: 16px;
    background: var(--bg-secondary);
    border: 1px solid rgba(166, 198, 57, 0.16);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

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

.stat-box {
    position: relative;
    overflow: hidden;
    padding: 1rem;
    border-radius: 20px;
    background: var(--bg-secondary);
    transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.stat-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.32) 45%, transparent 100%);
    transform: translateX(-140%);
    transition: transform 880ms cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.stat-box strong {
    display: block;
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 700;
}

.stat-box span {
    color: var(--text-tertiary);
    font-size: 0.92rem;
}

.grid-three,
.grid-four,
.resource-grid,
.industry-grid,
.timeline-grid,
.career-grid,
.metric-grid {
    display: grid;
    gap: 1.15rem;
}

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

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

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

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

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

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

.content-card,
.highlight-card,
.resource-card,
.timeline-card,
.career-card,
.metric-card {
    padding: 1.5rem;
}

.content-card h3,
.highlight-card h3,
.resource-card h3,
.timeline-card h3,
.career-card h3,
.metric-card h3 {
    margin: 0 0 0.55rem;
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
}

.highlight-card h4 {
    margin: 0 0 0.75rem;
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.content-card p,
.highlight-card p,
.resource-card p,
.timeline-card p,
.career-card p,
.metric-card p,
.content-card li,
.timeline-card li {
    margin: 0;
    color: var(--text-tertiary);
}

.content-card ul,
.timeline-card ul {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.5rem;
}

.highlight-card ul {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.5rem;
}

.content-card:hover,
.highlight-card:hover,
.resource-card:hover,
.metric-card:hover,
.timeline-card:hover,
.career-card:hover,
.mega-link:hover {
    transform: translateY(-4px);
}

.trust-card:hover,
.highlight-card:hover,
.content-card:hover,
.resource-card:hover,
.metric-card:hover,
.timeline-card:hover,
.career-card:hover,
.contact-card:hover,
.section-shell:hover,
.sticky-card:hover,
.partner-certifications:hover,
.industry-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-hover);
}

.trust-card:hover::before,
.highlight-card:hover::before,
.content-card:hover::before,
.resource-card:hover::before,
.metric-card:hover::before,
.timeline-card:hover::before,
.career-card:hover::before,
.contact-card:hover::before,
.section-shell:hover::before,
.sticky-card:hover::before,
.partner-certifications:hover::before,
.industry-card:hover::before {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stat-box:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 30px rgba(143, 174, 51, 0.14);
}

.stat-box:hover::after {
    transform: translateX(140%);
}

.trust-card:hover h3,
.highlight-card:hover h3,
.content-card:hover h3,
.resource-card:hover h3,
.timeline-card:hover h3,
.career-card:hover h3,
.metric-card:hover h3,
.contact-card:hover h3 {
    transform: translateX(4px);
}

.section-shell {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 2rem;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 250, 236, 0.82));
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.solutions-layout,
.page-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
    gap: 1.5rem;
}

.sticky-card {
    position: sticky;
    top: 112px;
    align-self: start;
    overflow: hidden;
    isolation: isolate;
    padding: 1.6rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(166, 198, 57, 0.16), rgba(255, 255, 255, 0.9));
    border: 1px solid var(--border-soft);
}

.sticky-card p {
    color: var(--text-tertiary);
    margin: 0;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.industry-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 1.25rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-card);
}

.industry-card strong {
    display: block;
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: 1rem;
    margin-bottom: 0.35rem;
    font-weight: 700;
}

.split-callout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.discuss-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 2.75rem;
    align-items: stretch;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.discuss-copy h2 {
    margin: 0.8rem 0 0.8rem;
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.1;
    font-weight: 700;
}

.discuss-copy p {
    margin: 0;
    max-width: 34rem;
    color: var(--text-tertiary);
}

.discuss-form {
    display: grid;
    gap: 1.1rem;
    padding: 0.25rem 0;
}

.discuss-field {
    display: grid;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-tertiary);
}

.discuss-field span {
    font-weight: 600;
    color: var(--text-secondary);
}

.discuss-input {
    width: 100%;
    border: 0;
    border: 1px solid rgba(166, 198, 57, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.7rem 0.85rem;
    font-size: 1rem;
    color: var(--text-primary);
    transition: border-color var(--transition-base);
}

.discuss-input:focus {
    outline: none;
    border-color: var(--accent-secondary);
    box-shadow: 0 0 0 3px rgba(166, 198, 57, 0.15);
}

.discuss-input::placeholder {
    color: rgba(16, 24, 40, 0.4);
}

.discuss-field--full {
    grid-column: 1 / -1;
}

.discuss-input textarea,
.discuss-form textarea.discuss-input {
    resize: vertical;
}

.discuss-actions {
    display: flex;
    justify-content: flex-start;
    padding-top: 0.6rem;
}

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

.why-us-carousel {
    position: relative;
    display: grid;
    gap: 1.4rem;
    padding: 0 2rem;
}

.why-us-viewport {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 240, 0.92));
    border: 1px solid rgba(166, 198, 57, 0.12);
    box-shadow: 0 20px 48px rgba(143, 174, 51, 0.08);
}

.why-us-track {
    display: flex;
    align-items: stretch;
    transition: transform 1050ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.why-us-slide {
    flex: 0 0 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    gap: 2.4rem;
    align-items: center;
    min-height: 430px;
    padding: 1.4rem 1.6rem;
}

.why-us-copy h2 {
    margin: 1rem 0 0.9rem;
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: clamp(2rem, 4.6vw, 3.25rem);
    line-height: 1.08;
    font-weight: 700;
    max-width: 10ch;
}

.why-us-copy p {
    margin: 0;
    max-width: 30rem;
    color: var(--text-tertiary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.why-us-image {
    position: relative;
    width: min(100%, 560px);
    min-height: 360px;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow:
        0 30px 60px rgba(18, 28, 13, 0.18),
        0 12px 28px rgba(18, 28, 13, 0.1);
    background: #dbe5d2;
    justify-self: end;
}

.why-us-image::before,
.why-us-image::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.why-us-image::before {
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    z-index: 1;
}

.why-us-image::after {
    inset: auto 0 0 0;
    height: 42%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(246, 250, 236, 0.06) 48%, rgba(246, 250, 236, 0.28) 100%);
    z-index: 1;
}

.why-us-image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: block;
    object-fit: cover;
    transform: scale(1.01);
    filter: brightness(1.04) saturate(0.96);
    transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.why-us-slide.is-active .why-us-image img {
    transform: scale(1.05);
}

.why-us-control {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(166, 198, 57, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-primary);
    box-shadow: 0 14px 28px rgba(143, 174, 51, 0.12);
    transform: translateY(-50%);
    cursor: pointer;
    transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.why-us-control:hover {
    background: rgba(246, 250, 236, 0.98);
    box-shadow: 0 18px 34px rgba(143, 174, 51, 0.16);
}

.why-us-control--prev {
    left: 0;
}

.why-us-control--next {
    right: 0;
}

.why-us-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

.why-us-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 0;
    background: rgba(166, 198, 57, 0.26);
    cursor: pointer;
    transition: transform var(--transition-base), background var(--transition-base);
}

.why-us-dot.is-active {
    background: var(--accent-secondary);
    transform: scale(1.1);
}

@media (max-width: 1080px) {
    .why-us-slide {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        min-height: auto;
    }

    .why-us-viewport {
        min-height: 740px;
    }

    .why-us-copy h2 {
        max-width: none;
    }

    .why-us-image {
        width: 100%;
        justify-self: stretch;
    }
}

@media (max-width: 760px) {
    .why-us-control--prev {
        left: 0.4rem;
    }

    .why-us-control--next {
        right: 0.4rem;
    }

    .why-us-viewport {
        min-height: 650px;
    }

    .why-us-image {
        min-height: 300px;
    }

    .why-us-image img {
        min-height: 300px;
    }
}

.contact-card {
    padding: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.5rem;
    align-items: stretch;
}

.contact-grid--compact {
    grid-template-columns: 1fr;
    justify-items: center;
}

.contact-grid--compact .button-row {
    justify-content: center;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1.1rem 0 0;
    display: grid;
    gap: 0.8rem;
}

.contact-list li {
    padding: 1rem;
    border-radius: 18px;
    background: var(--bg-secondary);
    border: 1px solid rgba(166, 198, 57, 0.12);
}

@media (prefers-reduced-motion: reduce) {
    .hero-kicker__brand,
    .hero-kicker__sub,
    .hero-logo-image {
        animation: none;
        opacity: 1;
    }
}

.page-hero {
    padding: 132px 0 42px;
}

.page-hero__shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 34px;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(246, 250, 236, 0.9));
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.page-hero__shell--single {
    grid-template-columns: minmax(0, 1fr);
}

.page-hero__content {
    max-width: 760px;
}

.page-hero__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    flex-wrap: nowrap;
}

.page-hero__meta {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: nowrap;
}

.page-hero__meta .eyebrow {
    white-space: nowrap;
}

.page-hero__meta .chip-row {
    margin-top: 0 !important;
    flex-wrap: nowrap;
    gap: 0.6rem;
}

.page-hero__meta .chip {
    padding: 0.45rem 0.75rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.page-hero__back-button {
    margin-top: 0;
    justify-content: flex-end;
    flex-shrink: 0;
    margin-left: 0.6rem;
}

.page-hero__back-button .button-secondary {
    padding: 0.6rem 0.9rem;
    border-radius: 14px;
    font-size: 0.92rem;
}

.page-hero h1 {
    margin: 0.65rem 0 1rem;
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.2;
    letter-spacing: normal;
    font-weight: 700;
}

.page-hero p {
    margin: 0;
    color: var(--text-tertiary);
}

.page-aside {
    padding: 1.4rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--border-soft);
    align-self: stretch;
}

.page-aside h3 {
    margin: 0 0 0.75rem;
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
}

.page-aside ul {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.5rem;
    color: var(--text-tertiary);
}

.partner-certifications {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 2rem;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.partner-certifications__eyebrow {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.partner-certifications__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.1rem;
}

.partner-certifications--four .partner-certifications__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cert-card {
    position: relative;
    overflow: hidden;
    min-height: 132px;
    padding: 1.35rem 1.25rem;
    border-radius: 22px;
    background: linear-gradient(180deg, #111b33, #10182c);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 28px rgba(16, 24, 44, 0.18);
}

.cert-card__visual {
    position: absolute;
    top: 0.85rem;
    right: 0.9rem;
    width: 72px;
    height: 72px;
    opacity: 0.95;
    pointer-events: none;
}

.cert-card__visual span {
    position: absolute;
    display: block;
    border-radius: 999px;
}

.cert-card__visual span:nth-child(1) {
    inset: 12px;
    border: 2px solid rgba(166, 198, 57, 0.9);
    animation: cert-spin 10s linear infinite;
}

.cert-card__visual span:nth-child(2) {
    inset: 24px;
    background: radial-gradient(circle at 35% 35%, rgba(233, 244, 196, 0.95), rgba(166, 198, 57, 0.55));
    box-shadow: 0 0 18px rgba(166, 198, 57, 0.28);
    animation: cert-pulse 3.4s ease-in-out infinite;
}

.cert-card__visual span:nth-child(3) {
    width: 12px;
    height: 12px;
    top: 8px;
    left: 50%;
    margin-left: -6px;
    background: #ffcc66;
    box-shadow: 0 0 14px rgba(255, 204, 102, 0.4);
    transform-origin: 0 28px;
    animation: cert-orbit 5.2s linear infinite;
}

.cert-card__visual--security span:nth-child(1) {
    clip-path: polygon(50% 0%, 92% 18%, 92% 56%, 50% 100%, 8% 56%, 8% 18%);
    inset: 8px;
    border-radius: 18px;
    border: 2px solid rgba(120, 223, 255, 0.88);
}

.cert-card__visual--security span:nth-child(2) {
    inset: 25px 22px 18px;
    border-radius: 16px 16px 10px 10px;
    background: linear-gradient(180deg, rgba(120, 223, 255, 0.9), rgba(62, 135, 255, 0.5));
}

.cert-card__visual--security span:nth-child(3) {
    width: 10px;
    height: 10px;
    top: 21px;
    left: 50%;
    margin-left: -5px;
    background: #ffffff;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.45);
    transform-origin: 0 18px;
}

.cert-card__visual--soc span:nth-child(1) {
    inset: 10px;
    border-radius: 18px;
    border: 2px dashed rgba(255, 255, 255, 0.42);
}

.cert-card__visual--soc span:nth-child(2) {
    inset: 20px;
    border-radius: 20px;
    background:
        linear-gradient(90deg, rgba(166, 198, 57, 0.95) 0 30%, transparent 30% 36%, rgba(166, 198, 57, 0.95) 36% 64%, transparent 64% 70%, rgba(166, 198, 57, 0.95) 70% 100%),
        linear-gradient(180deg, rgba(166, 198, 57, 0.95) 0 30%, transparent 30% 36%, rgba(166, 198, 57, 0.95) 36% 64%, transparent 64% 70%, rgba(166, 198, 57, 0.95) 70% 100%);
    opacity: 0.88;
}

.cert-card__visual--soc span:nth-child(3) {
    width: 16px;
    height: 16px;
    top: 28px;
    left: 28px;
    margin-left: 0;
    background: #ffcc66;
    box-shadow: 0 0 14px rgba(255, 204, 102, 0.32);
    transform-origin: 8px 8px;
    animation: cert-float 3.2s ease-in-out infinite;
}

.cert-card__visual--aws span:nth-child(1) {
    inset: 14px 8px 18px;
    border-radius: 16px;
    border: 2px solid rgba(255, 153, 0, 0.85);
    animation-duration: 8.5s;
}

.cert-card__visual--aws span:nth-child(2) {
    inset: 24px 16px 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 153, 0, 0.95), rgba(255, 213, 122, 0.92));
    clip-path: ellipse(48% 28% at 50% 50%);
}

.cert-card__visual--aws span:nth-child(3) {
    width: 22px;
    height: 10px;
    top: 47px;
    left: 25px;
    margin-left: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 153, 0, 0.15), rgba(255, 153, 0, 0.95));
    box-shadow: none;
    transform-origin: 11px 5px;
    animation: cert-sway 2.8s ease-in-out infinite;
}

.cert-card__brand,
.cert-card__meta,
.cert-card h3 {
    position: relative;
    z-index: 1;
}

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

@keyframes cert-pulse {
    0%, 100% { transform: scale(0.92); opacity: 0.7; }
    50% { transform: scale(1.06); opacity: 1; }
}

@keyframes cert-orbit {
    from { transform: rotate(0deg) translateY(-18px); }
    to { transform: rotate(360deg) translateY(-18px); }
}

@keyframes cert-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

@keyframes cert-sway {
    0%, 100% { transform: rotate(-10deg) scaleX(0.92); }
    50% { transform: rotate(8deg) scaleX(1.04); }
}

.cert-card__brand {
    margin: 0 0 1rem;
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.cert-card__brand span {
    color: #ff9900;
}

.cert-card__meta {
    margin: 0 0 0.7rem;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.72);
}

.cert-card h3 {
    margin: 0;
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: 1.02rem;
    line-height: 1.4;
    font-weight: 500;
    color: #ffffff;
}

.footer {
    padding: 72px 0 28px;
}

.footer-card {
    padding: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.footer-card h3,
.footer-card h4 {
    margin: 0 0 0.8rem;
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.footer-card p,
.footer-card li,
.footer-meta {
    color: var(--text-tertiary);
}

.footer-meta {
    margin: 0.75rem 0 0;
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-meta strong {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.footer-meta--tight {
    margin-top: 0.45rem;
}

.footer-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.55rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
    color: var(--text-tertiary);
    font-size: 0.94rem;
}

[data-reveal] {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.992);
    transition:
        opacity 640ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
        transform 640ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
        filter 640ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
    filter: none;
    will-change: opacity, transform, filter;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    body::before,
    body::after {
        display: none;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
        filter: none;
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .page-hero__shell,
    .trust-strip,
    .solutions-layout,
    .page-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .grid-three,
    .grid-four,
    .metric-grid,
    .timeline-grid,
    .partner-certifications__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .sticky-card {
        position: static;
    }

    .page-hero__top {
        flex-direction: column;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .page-hero__back-button {
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .section {
        padding: 72px 0;
    }

    .section--compact {
        padding: 56px 0;
    }

    .button,
    .button-secondary {
        padding: 0.85rem 1.2rem;
    }

    .page-hero__content {
        max-width: 100%;
    }

    .page-hero__meta .chip-row {
        flex-wrap: wrap;
    }

    .why-us-carousel {
        padding: 0 1rem;
    }
}

@media (max-width: 760px) {
    .section {
        padding: 64px 0;
    }

    .section--compact {
        padding: 48px 0;
    }

    .header-row {
        grid-template-columns: 1fr auto;
    }

    .brand-text {
        display: none;
    }

    .site-nav {
        width: min(92vw, 360px);
    }

    .header-preview {
        display: none;
    }

    .hero-copy h1 {
        font-size: clamp(2rem, 8vw, 2.6rem);
        max-width: none;
    }

    .why-us-carousel {
        padding: 0 0.5rem;
    }

    .why-us-viewport {
        min-height: 620px;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .container {
        width: calc(100vw - 1.2rem);
    }

    .section {
        padding: 56px 0;
    }

    .page-hero__shell {
        padding: 1.25rem;
    }

    .page-hero h1 {
        font-size: clamp(1.8rem, 9vw, 2.3rem);
    }

    .chip-row {
        gap: 0.5rem;
    }

    .chip {
        padding: 0.45rem 0.7rem;
        font-size: 0.86rem;
    }

    .why-us-viewport {
        min-height: 560px;
    }

    .partner-certifications__grid {
        grid-template-columns: 1fr;
    }

    .partner-certifications--four .partner-certifications__grid {
        grid-template-columns: 1fr;
    }

    .footer-social {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .site-header {
        padding: 0.45rem 0;
    }

    .section-shell,
    .footer-card {
        padding: 1.25rem;
        border-radius: 24px;
    }

    .hero-grid {
        gap: 1rem;
    }

    .hero-visual {
        min-height: 180px;
        padding: 0.75rem;
    }

    .hero-copy h1 {
        font-size: clamp(1.55rem, 8vw, 2rem);
    }

    .hero-copy p {
        font-size: 0.95rem;
    }

    .button,
    .button-secondary {
        padding: 0.7rem 0.95rem;
        font-size: 0.88rem;
    }

    .content-card,
    .highlight-card,
    .resource-card,
    .timeline-card,
    .career-card,
    .metric-card {
        padding: 1.15rem;
        border-radius: 20px;
    }

    .header-actions .button {
        display: none !important;
    }

    .header-actions {
        gap: 0;
    }
}

@media (max-width: 520px) {
    .container {
        width: calc(100vw - 1rem);
    }

    .site-header {
        background: rgba(255, 255, 255, 0.97);
    }

    .hero,
    .page-hero {
        padding-top: 84px;
    }

    .header-row {
        grid-template-columns: auto 1fr;
        gap: 0.35rem;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
    }

    .menu-toggle {
        width: auto;
        height: auto;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        justify-self: end;
    }

    .menu-toggle span {
        margin: 3px 0;
        border-radius: 999px;
    }

    .menu-toggle span:nth-child(1) {
        width: 18px;
    }

    .menu-toggle span:nth-child(2) {
        width: 14px;
    }

    .menu-toggle span:nth-child(3) {
        width: 10px;
    }

    .header-actions {
        display: none !important;
    }

    .hero-grid {
        gap: 0.9rem;
    }

    .hero-copy {
        padding-top: 0.45rem;
        max-width: 100%;
    }

    .hero-kicker {
        display: inline-flex;
        align-items: baseline;
        flex-wrap: nowrap;
        gap: 0.18rem;
        white-space: nowrap;
        width: fit-content;
        padding: 0;
        border-radius: 0;
        background: transparent;
        border: 0;
        margin-top: 0.55rem;
    }

    .hero-kicker__brand,
    .hero-kicker__sub {
        font-size: 0.92rem;
        letter-spacing: 0.06em;
        line-height: 1;
        font-weight: 900;
        color: #9fbf3a;
        opacity: 1;
        text-shadow: none;
    }

    .hero-copy h1 {
        font-size: clamp(1.25rem, 8vw, 1.65rem);
        line-height: 1.1;
        max-width: none;
    }

    .hero-copy p {
        font-size: 0.86rem;
        line-height: 1.45;
    }

    .hero-visual {
        min-height: 130px;
    }

    .hero-logo-image {
        width: min(58%, 120px);
        max-height: 120px;
    }

    .page-hero {
        padding-top: 18px;
        padding-bottom: 24px;
    }

    .page-hero__shell {
        padding: 0.95rem;
    }

    .page-hero__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
    }

    .page-hero__meta {
        flex-wrap: wrap;
        gap: 0.55rem;
    }

    .page-hero__meta .eyebrow {
        white-space: normal;
    }

    .page-hero__meta .chip-row {
        margin-top: 0.4rem !important;
        flex-wrap: wrap;
        gap: 0.45rem;
    }

    .page-hero__meta .chip {
        padding: 0.4rem 0.62rem;
        font-size: 0.8rem;
    }

    .page-hero__back-button {
        margin-left: 0;
        justify-content: flex-start;
    }

    .page-hero__back-button .button-secondary {
        padding: 0.52rem 0.82rem;
        font-size: 0.84rem;
    }

    .partner-certifications--four .partner-certifications__grid {
        grid-template-columns: 1fr;
    }

    .partner-certifications__eyebrow {
        margin-bottom: 1rem;
    }

    .cert-card {
        min-height: auto;
        padding: 1rem 0.95rem;
        border-radius: 18px;
    }

    .cert-card__visual {
        width: 54px;
        height: 54px;
        top: 0.65rem;
        right: 0.7rem;
    }

    .cert-card h3 {
        font-size: 1rem;
        line-height: 1.2;
    }

    .cert-card__brand,
    .cert-card__meta {
        font-size: 0.82rem;
    }

    .page-hero h1 {
        font-size: clamp(1.3rem, 8.4vw, 1.8rem);
        margin: 0.45rem 0 0.8rem;
    }

    .page-hero p {
        font-size: 0.88rem;
        line-height: 1.48;
    }
}

@media (max-width: 1200px) {
    .page-hero__top {
        flex-wrap: wrap;
    }

    .page-hero__meta {
        flex-wrap: wrap;
    }
}

@media (max-width: 980px) {
    .header-row {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 0.5rem;
    }

    .menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .header-actions {
        display: none;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.6rem);
        left: 50%;
        width: min(720px, calc(100vw - 1rem));
        transform: translateX(-50%);
        display: none;
        padding: 1rem;
        border-radius: 28px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--border-soft);
        box-shadow: var(--shadow-soft);
    }

    .site-nav.is-open {
        display: grid;
        gap: 1rem;
        max-height: calc(100vh - 5.5rem);
        overflow-y: auto;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        backdrop-filter: none;
    }

    .nav-link,
    .nav-button {
        width: 100%;
        justify-content: space-between;
        padding: 1rem 1rem;
        background: rgba(166, 198, 57, 0.08);
    }

    .mega-panel {
        position: static;
        width: 100%;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        margin-top: 0.75rem;
        grid-template-columns: 1fr;
        padding: 1.3rem;
        box-shadow: none;
        background: var(--bg-card);
    }

    .mega-panel__intro {
        padding: 0;
        gap: 0.7rem;
    }

    .mega-panel__intro p {
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .mega-link-grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .mega-link {
        padding: 0.9rem 1rem;
        border-radius: 16px;
    }

    .mega-link strong {
        font-size: 0.96rem;
    }

    .mega-link span {
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .nav-item:hover .mega-panel,
    .nav-item:focus-within .mega-panel {
        transform: none;
    }

    .nav-item.panel-open .mega-panel {
        display: grid;
    }

    .header-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        justify-self: stretch;
    }
}

@media (max-width: 760px) {
    .section {
        padding: 72px 0;
    }

    .site-header {
        background: #f6faec;
        border-bottom: 0;
        box-shadow: none;
    }

    .hero,
    .page-hero {
        background: #f6faec;
        padding-top: 76px;
    }

    .hero {
        margin-top: 0;
        padding-bottom: 40px;
    }

    .hero-copy h1 {
        max-width: none;
    }

    .hero-visual {
        min-height: 190px;
        padding: 0.45rem 0.6rem;
    }

    .hero-logo-image {
        width: min(40%, 130px);
        max-height: 130px;
    }

    .trust-stats,
    .grid-three,
    .grid-four,
    .resource-grid,
    .industry-grid,
    .timeline-grid,
    .metric-grid,
    .partner-certifications__grid,
    .icon-grid,
    .career-grid,
    .split-callout {
        grid-template-columns: 1fr;
    }

    .section-shell,
    .page-hero__shell,
    .contact-card,
    .footer-card {
        padding: 1.2rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.learnx-page {
    background: linear-gradient(180deg, #edf5ff 0%, #e8f1fe 56%, #f7faff 100%);
}

.learnx-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(53, 99, 233, 0.14);
    box-shadow: 0 12px 30px rgba(34, 73, 183, 0.08);
    backdrop-filter: blur(14px);
}

.learnx-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 78px;
}

.learnx-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.learnx-brand__logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.learnx-brand__wordmark {
    font-size: 1.1rem;
    font-weight: 800;
    color: #254db7;
}

.learnx-nav {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.learnx-nav__icon,
.learnx-nav__link,
.learnx-nav__button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1.15rem;
    border-radius: 12px;
    font-weight: 700;
    transition: transform var(--transition-base), background var(--transition-base), border-color var(--transition-base);
}

.learnx-nav__icon {
    width: 46px;
    padding: 0;
    background: rgba(47, 91, 214, 0.18);
    border: 1px solid rgba(47, 91, 214, 0.18);
}

.learnx-nav__icon::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 999px 999px 3px 3px;
    border: 2px solid #ffffff;
    border-bottom: 0;
    box-shadow: 0 10px 0 -6px #ffffff;
}

.learnx-badge {
    position: absolute;
    top: -5px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 0.3rem;
    border-radius: 999px;
    background: #ff5d5d;
    color: #ffffff;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.learnx-nav__link {
    color: #264baf;
    padding-inline: 0.2rem;
}

.learnx-nav__button {
    border: 1px solid rgba(84, 120, 226, 0.28);
}

.learnx-nav__button--ghost {
    background: rgba(76, 112, 226, 0.1);
    color: #264baf;
}

.learnx-nav__button--danger {
    background: #ef5253;
    border-color: #ef5253;
    color: #ffffff;
}

.learnx-nav__icon:hover,
.learnx-nav__link:hover,
.learnx-nav__button:hover {
    transform: translateY(-2px);
}

.learnx-hero {
    padding: 0 0 56px;
}

.learnx-hero__inner {
    min-height: 450px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #3c7ae7, #7a58ec);
    box-shadow: 0 28px 60px rgba(75, 102, 229, 0.24);
}

.learnx-hero__content {
    width: min(860px, calc(100% - 2rem));
    text-align: center;
    color: #ffffff;
}

.learnx-hero__content h1 {
    margin: 0;
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    line-height: 1.12;
    font-weight: 800;
}

.learnx-hero__content p {
    margin: 1.1rem auto 0;
    max-width: 760px;
    font-size: clamp(1.05rem, 2.2vw, 1.45rem);
    color: rgba(255, 255, 255, 0.9);
}

.learnx-hero__actions {
    justify-content: center;
    margin-top: 2rem;
}

.learnx-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    min-height: 56px;
    padding: 0.95rem 1.3rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-weight: 700;
}

.learnx-cta--light {
    background: #ffffff;
    border-color: #ffffff;
    color: #396ef1;
}

.learnx-dashboard {
    padding-top: 34px;
    padding-bottom: 12px;
}

.learnx-panel {
    padding: 2rem 2.15rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border-left: 5px solid #4580ff;
    box-shadow: 0 18px 38px rgba(56, 93, 198, 0.12);
}

.learnx-panel h2 {
    margin: 0;
    color: #244aaf;
    font-size: clamp(1.8rem, 4vw, 2.75rem);
}

.learnx-panel p {
    margin: 0.7rem 0 0;
    color: #607197;
    font-size: 1.05rem;
}

.learnx-section-heading h2 {
    color: #244aaf;
}

.learnx-quick-grid {
    align-items: stretch;
}

.learnx-quick-card {
    min-height: 138px;
    border-radius: 22px;
    box-shadow: 0 18px 34px rgba(56, 93, 198, 0.15);
    display: grid;
    place-items: center;
    color: #ffffff;
}

.learnx-quick-card h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.learnx-quick-card--violet {
    background: linear-gradient(135deg, #7b57ed, #975ff7);
}

.learnx-quick-card--green {
    background: linear-gradient(135deg, #1fbe8a, #18b68a);
}

.learnx-quick-card--pink {
    background: linear-gradient(135deg, #ef4498, #e03f91);
}

.learnx-quick-card--cyan {
    background: linear-gradient(135deg, #21afd1, #1ca8c9);
}

.learnx-about-hero {
    padding: 28px 0 0;
}

.learnx-about-hero__inner {
    padding: 3.4rem 2.4rem 3.6rem;
    background: linear-gradient(135deg, #2f66df, #3a69df);
    color: #ffffff;
    box-shadow: 0 24px 54px rgba(56, 93, 198, 0.18);
}

.learnx-about-hero__inner h1 {
    margin: 0;
    font-size: clamp(2.7rem, 5.5vw, 4rem);
    line-height: 1.08;
    font-weight: 800;
}

.learnx-about-hero__inner p {
    margin: 0.85rem 0 0;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.learnx-page .highlight-card,
.learnx-page .content-card,
.learnx-page .metric-card,
.learnx-page .contact-card {
    box-shadow: 0 18px 36px rgba(56, 93, 198, 0.1);
}

.learnx-page .section-heading h2,
.learnx-page .metric-card h3,
.learnx-page .highlight-card h3 {
    color: #2850bb;
}

.learnx-page .footer {
    padding-top: 48px;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.35rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(16, 24, 40, 0.08);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(183, 203, 88, 0.14);
    color: var(--text-primary);
    border: 1px solid rgba(183, 203, 88, 0.28);
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
    animation: none;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.04);
    background: rgba(183, 203, 88, 0.22);
    border-color: rgba(183, 203, 88, 0.4);
}

.social-link svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-link--instagram svg,
.social-link--linkedin svg {
    fill: none;
}

.footer-social .social-link:nth-child(2) {
    animation-delay: 0.16s;
}

.footer-social .social-link:nth-child(3) {
    animation-delay: 0.32s;
}

.footer-social .social-link:nth-child(4) {
    animation-delay: 0.48s;
}

@keyframes social-bob {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@media (max-width: 980px) {
    .learnx-header__row {
        min-height: auto;
        padding: 0.9rem 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .learnx-nav {
        justify-content: flex-start;
    }

    .learnx-hero__inner {
        min-height: 400px;
    }
}

@media (max-width: 760px) {
    .learnx-nav {
        gap: 0.65rem;
    }

    .learnx-nav__button,
    .learnx-nav__icon {
        min-height: 40px;
        padding: 0.65rem 0.95rem;
    }

    .learnx-nav__link {
        min-height: auto;
        padding: 0;
    }

    .learnx-hero__actions {
        flex-direction: column;
    }

    .learnx-cta {
        width: 100%;
    }

    .learnx-about-hero__inner,
    .learnx-panel {
        padding: 1.5rem;
    }
}
