:root {
    --bg: #e9fbf8;
    --bg-soft: #f7fffd;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: #ffffff;
    --ink: #123f43;
    --muted: #5a7878;
    --accent: #10afa2;
    --teal: #10afa2;
    --teal-deep: #0d6b6a;
    --line: rgba(16, 175, 162, 0.12);
    --shadow: 0 18px 40px rgba(13, 107, 106, 0.1);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --transition: 220ms ease;
    /* Eyebrow margin tuning: top left-right bottom */
    --eyebrow-margin: 0 0 10px;
    --eyebrow-home-hero-margin: -25px 0 10px;
    --eyebrow-home-content-margin: -5px 0 10px;
    --eyebrow-about-margin: -7.5px 0 10px;
    --eyebrow-services-hero-margin: -30px 0 10px;
    --eyebrow-services-content-margin: -5px 0 10px;
    --eyebrow-gallery-margin: 0.5px 0 10px;
    --eyebrow-blog-margin: -20px 0 10px;
    --eyebrow-careers-hero-margin: -20px 0 10px;
    --eyebrow-careers-content-margin: -5px 0 10px;
    --eyebrow-faq-margin: -20px 0 10px;
    --eyebrow-contact-margin: -8px 0 10px;
    --eyebrow-quick-overview-margin: 0 0 10px;
    --headline-shadow:
        0 1px 0 rgba(255, 255, 255, 0.92),
        0 2px 0 rgba(183, 234, 229, 0.9),
        0 3px 0 rgba(136, 212, 205, 0.74),
        0 18px 28px rgba(13, 107, 106, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(0, 206, 200, 0.1), transparent 22%),
        linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.ambient {
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: 0;
    filter: blur(2px);
    opacity: 0.42;
    mix-blend-mode: normal;
}

.ambient-one {
    top: -120px;
    left: -90px;
    width: 320px;
    height: 320px;
    background:
        radial-gradient(circle at 42% 38%, rgba(255, 255, 255, 0.76), transparent 26%),
        radial-gradient(circle at 30% 30%, rgba(0, 206, 200, 0.2), transparent 46%),
        radial-gradient(circle at 70% 70%, rgba(11, 109, 115, 0.18), transparent 40%);
    border-radius: 46% 54% 50% 50% / 44% 44% 56% 56%;
}

.ambient-two {
    right: -80px;
    top: 140px;
    width: 260px;
    height: 260px;
    background:
        radial-gradient(circle at 35% 32%, rgba(255, 255, 255, 0.72), transparent 28%),
        radial-gradient(circle at 28% 28%, rgba(0, 206, 200, 0.16), transparent 44%),
        radial-gradient(circle at 72% 72%, rgba(11, 109, 115, 0.14), transparent 42%);
    border-radius: 54% 46% 42% 58% / 55% 48% 52% 45%;
}

.container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(244, 255, 254, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 30px rgba(11, 109, 115, 0.05);
}

main,
.site-footer,
.whatsapp-float {
    position: relative;
    z-index: 1;
}

.nav-bar,
.nav-links,
.hero-actions,
.footer-grid,
.two-column,
.three-grid,
.four-grid,
.contact-grid,
.metrics-row,
.gallery-motion-grid,
.gallery-columns,
.stack,
.faq-list,
.blog-list,
.modules-list {
    display: grid;
    gap: 24px;
}

.modules-scroll {
    max-height: 560px;
    overflow-y: auto;
    padding-right: 8px;
}

.modules-scroll::-webkit-scrollbar {
    width: 8px;
}

.modules-scroll::-webkit-scrollbar-thumb {
    background: rgba(11, 109, 115, 0.16);
    border-radius: 999px;
}

.nav-bar {
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 22px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex-wrap: nowrap;
}

.brand-copy {
    min-width: 0;
    display: grid;
    gap: 2px;
    align-content: center;
}

.brand-copy,
.footer-grid div,
.maintenance-brand-copy {
    min-width: 0;
}

.brand strong {
    display: block;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.15;
    white-space: nowrap;
}

.brand-mark {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    display: block;
    object-fit: contain;
}

.nav-links {
    grid-auto-flow: column;
    justify-content: end;
    align-items: center;
    gap: 18px;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    padding: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(11, 109, 115, 0.08);
}

.lang-switch a {
    min-width: 42px;
    padding: 7px 10px 8px;
    border-radius: 999px;
    text-align: center;
}

.lang-switch a::after {
    display: none;
}

.lang-switch a.active {
    background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
    color: #fff;
}

.nav-links a {
    position: relative;
    font-size: 0.96rem;
    font-weight: 500;
    color: var(--muted);
    padding-bottom: 4px;
    transition: color var(--transition);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: linear-gradient(90deg, var(--accent), var(--teal));
    transition: transform var(--transition);
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--ink);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    transform: scaleX(1);
}

.hero,
.inner-hero {
    padding: 58px 0 26px;
}

.spectacle-section {
    position: relative;
    overflow: clip;
}

.spectacle-section::before {
    content: "";
    position: absolute;
    inset: 18px 4% auto auto;
    width: min(34vw, 420px);
    height: min(34vw, 420px);
    border-radius: 50%;
    background:
        radial-gradient(circle at 36% 34%, rgba(255, 255, 255, 0.96), transparent 24%),
        radial-gradient(circle at 52% 48%, rgba(0, 206, 200, 0.2), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(11, 109, 115, 0.12), transparent 58%);
    filter: blur(10px);
    opacity: 0.7;
    pointer-events: none;
}

.roomier-hero {
    padding: 65px 0 30px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(420px, 0.96fr);
    gap: 44px;
    align-items: center;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
    gap: 32px;
    align-items: center;
}

.service-shell {
    padding: 36px 0 10px;
}

.service-hero-copy {
    max-width: 680px;
    padding: 18px 0 10px;
}

.service-hero-copy h1 {
    margin: 10px 0 16px;
    max-width: 10.5ch;
    font-size: clamp(2.75rem, 4.3vw, 4.25rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.88),
        0 8px 18px rgba(7, 83, 89, 0.1);
}

.service-hero-copy .lead {
    max-width: 58ch;
    font-size: 0.98rem;
    line-height: 1.82;
}

.service-hero-panel {
    position: relative;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.service-hero-panel::before {
    display: none;
}

.service-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    display: grid;
}

.service-stat-card {
    min-height: 0;
    padding: 18px 17px;
    border-radius: 20px;
    text-align: left;
    align-content: start;
    justify-items: start;
    justify-content: start;
    box-shadow:
        0 16px 28px rgba(11, 109, 115, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.74);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(232, 248, 247, 0.72));
    transform: none;
}

.service-stat-card:first-child {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(11, 109, 115, 0.96), rgba(0, 206, 200, 0.92));
    color: #fff;
}

.service-stat-card:nth-child(2) {
    background: linear-gradient(180deg, rgba(227, 249, 248, 0.96), rgba(207, 240, 238, 0.82));
}

.service-stat-card:nth-child(3) {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 249, 0.88));
}

.service-stat-card:nth-child(4) {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(235, 249, 248, 0.92));
}

.service-stat-card strong {
    margin-bottom: 8px;
    font-size: 1.05rem;
    line-height: 1.2;
    color: var(--ink);
}

.service-stat-card:first-child strong,
.service-stat-card:first-child span {
    color: #fff;
}

.service-stat-card span {
    width: 100%;
    text-align: left;
    font-size: 0.98rem;
    line-height: 1.6;
}

.hero h1,
.inner-hero h1 {
    margin: 10px 0 16px;
    max-width: 13ch;
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    font-weight: 700;
    text-wrap: balance;
    text-shadow: var(--headline-shadow);
}

.inner-hero.roomier-hero h1 {
    max-width: 12ch;
}

.service-hero-copy h1,
.gallery-hero-copy h1 {
    text-wrap: balance;
    text-shadow: var(--headline-shadow);
}

.lead {
    max-width: 58ch;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.75;
}

.eyebrow {
    margin: var(--eyebrow-margin);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal);
}

body.page-home .eyebrow {
    margin: var(--eyebrow-home-content-margin);
}

body.page-home .hero-copy > .eyebrow {
    margin: var(--eyebrow-home-hero-margin);
}

body.page-about .eyebrow {
    margin: var(--eyebrow-about-margin);
}

body.page-services .eyebrow {
    margin: var(--eyebrow-services-content-margin);
}

body.page-services .service-hero-copy > .eyebrow {
    margin: var(--eyebrow-services-hero-margin);
}

body.page-gallery .eyebrow {
    margin: var(--eyebrow-gallery-margin);
}

body.page-blog .eyebrow {
    margin: var(--eyebrow-blog-margin);
}

body.page-careers .eyebrow {
    margin: var(--eyebrow-careers-content-margin);
}

body.page-careers .inner-hero .eyebrow {
    margin: var(--eyebrow-careers-hero-margin);
}

body.page-faq .eyebrow {
    margin: var(--eyebrow-faq-margin);
}

body.page-contact .eyebrow {
    margin: var(--eyebrow-contact-margin);
}

body.page-home .hero-card > .eyebrow {
    margin: var(--eyebrow-quick-overview-margin);
}

.hero-stage {
    min-height: auto;
}

.hero-copy {
    padding-top: 18px;
    max-width: 760px;
}

.inner-hero > .container {
    position: relative;
    z-index: 1;
}

body.page-about .inner-hero > .container,
body.page-blog .inner-hero > .container,
body.page-careers .inner-hero > .container,
body.page-faq .inner-hero > .container,
body.page-contact .inner-hero > .container {
    display: grid;
    gap: 12px;
    min-height: clamp(300px, 46vw, 460px);
    align-content: center;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
    text-align: center;
    max-width: 1100px;
}

body.page-about .inner-hero.spectacle-section,
body.page-blog .inner-hero.spectacle-section,
body.page-careers .inner-hero.spectacle-section,
body.page-faq .inner-hero.spectacle-section,
body.page-contact .inner-hero.spectacle-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    --hero-glow:
        radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 18%, rgba(233, 250, 247, 0.72) 38%, rgba(233, 250, 247, 0.22) 58%, transparent 76%),
        radial-gradient(circle at 22% 28%, rgba(16, 175, 162, 0.14) 0%, transparent 28%),
        radial-gradient(circle at 78% 24%, rgba(16, 175, 162, 0.12) 0%, transparent 26%),
        radial-gradient(circle at 66% 74%, rgba(13, 107, 106, 0.09) 0%, transparent 24%),
        radial-gradient(circle at 35% 78%, rgba(16, 175, 162, 0.08) 0%, transparent 22%);
    --hero-starfield:
        radial-gradient(circle at 48% 46%, rgba(8, 19, 22, 0.96) 0 0.34px, transparent 0.8px),
        radial-gradient(circle at 52% 48%, rgba(8, 19, 22, 0.92) 0 0.28px, transparent 0.72px),
        radial-gradient(circle at 46% 52%, rgba(8, 19, 22, 0.9) 0 0.26px, transparent 0.68px),
        radial-gradient(circle at 54% 54%, rgba(8, 19, 22, 0.84) 0 0.3px, transparent 0.76px),
        radial-gradient(circle at 50% 43%, rgba(8, 19, 22, 0.8) 0 0.24px, transparent 0.62px),
        radial-gradient(circle at 43% 49%, rgba(8, 19, 22, 0.82) 0 0.26px, transparent 0.68px),
        radial-gradient(circle at 57% 50%, rgba(8, 19, 22, 0.82) 0 0.26px, transparent 0.68px),
        radial-gradient(circle at 49% 57%, rgba(8, 19, 22, 0.8) 0 0.28px, transparent 0.72px),
        radial-gradient(circle at 51% 45%, rgba(8, 19, 22, 0.94) 0 0.34px, transparent 0.82px),
        radial-gradient(circle at 45% 47%, rgba(8, 19, 22, 0.84) 0 0.26px, transparent 0.68px),
        radial-gradient(circle at 55% 51%, rgba(8, 19, 22, 0.84) 0 0.26px, transparent 0.68px),
        radial-gradient(circle at 47% 55%, rgba(8, 19, 22, 0.82) 0 0.28px, transparent 0.72px),
        radial-gradient(circle at 50% 47%, rgba(8, 19, 22, 0.88) 0 0.22px, transparent 0.6px),
        radial-gradient(circle at 53% 44%, rgba(8, 19, 22, 0.84) 0 0.22px, transparent 0.58px),
        radial-gradient(circle at 44% 53%, rgba(8, 19, 22, 0.82) 0 0.22px, transparent 0.58px),
        radial-gradient(circle at 56% 56%, rgba(8, 19, 22, 0.8) 0 0.24px, transparent 0.62px),
        radial-gradient(circle at 41% 46%, rgba(8, 19, 22, 0.74) 0 0.18px, transparent 0.52px),
        radial-gradient(circle at 59% 47%, rgba(8, 19, 22, 0.74) 0 0.18px, transparent 0.52px),
        radial-gradient(circle at 46% 41%, rgba(8, 19, 22, 0.72) 0 0.18px, transparent 0.52px),
        radial-gradient(circle at 52% 59%, rgba(8, 19, 22, 0.72) 0 0.18px, transparent 0.52px),
        radial-gradient(circle at 42% 57%, rgba(8, 19, 22, 0.78) 0 0.2px, transparent 0.56px),
        radial-gradient(circle at 58% 42%, rgba(8, 19, 22, 0.78) 0 0.2px, transparent 0.56px),
        radial-gradient(circle at 39% 51%, rgba(8, 19, 22, 0.7) 0 0.16px, transparent 0.48px),
        radial-gradient(circle at 61% 52%, rgba(8, 19, 22, 0.7) 0 0.16px, transparent 0.48px),
        radial-gradient(circle at 47% 43%, rgba(8, 19, 22, 0.8) 0 0.17px, transparent 0.5px),
        radial-gradient(circle at 53% 57%, rgba(8, 19, 22, 0.8) 0 0.17px, transparent 0.5px),
        radial-gradient(circle at 44% 45%, rgba(8, 19, 22, 0.76) 0 0.16px, transparent 0.48px),
        radial-gradient(circle at 56% 45%, rgba(8, 19, 22, 0.76) 0 0.16px, transparent 0.48px),
        radial-gradient(circle at 45% 58%, rgba(8, 19, 22, 0.74) 0 0.16px, transparent 0.48px),
        radial-gradient(circle at 57% 54%, rgba(8, 19, 22, 0.74) 0 0.16px, transparent 0.48px);
    background: var(--hero-glow);
}

body.page-about .inner-hero.spectacle-section::before,
body.page-blog .inner-hero.spectacle-section::before,
body.page-careers .inner-hero.spectacle-section::before,
body.page-faq .inner-hero.spectacle-section::before,
body.page-contact .inner-hero.spectacle-section::before {
    content: "";
    position: absolute;
    inset: -42%;
    width: auto;
    height: auto;
    border-radius: 0;
    background:
        var(--hero-starfield),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.82) 0 12%, rgba(255, 255, 255, 0) 42%);
    background-repeat: no-repeat;
    filter: blur(0.16px);
    opacity: 0.9;
    transform-origin: 50% 50%;
    will-change: transform, opacity;
    animation: heroParticleBurst 2.2s linear infinite;
    pointer-events: none;
    z-index: 0;
}

body.page-about .inner-hero.spectacle-section::after,
body.page-blog .inner-hero.spectacle-section::after,
body.page-careers .inner-hero.spectacle-section::after,
body.page-faq .inner-hero.spectacle-section::after,
body.page-contact .inner-hero.spectacle-section::after {
    content: "";
    position: absolute;
    inset: -42%;
    background:
        var(--hero-starfield),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.82) 0 12%, rgba(255, 255, 255, 0) 42%);
    background-repeat: no-repeat;
    filter: blur(0.16px);
    opacity: 0.72;
    transform-origin: 50% 50%;
    will-change: transform, opacity;
    animation: heroParticleBurst 2.2s linear infinite;
    animation-delay: -1.1s;
    pointer-events: none;
    z-index: 0;
}

body.page-about .inner-hero h1,
body.page-blog .inner-hero h1,
body.page-careers .inner-hero h1,
body.page-faq .inner-hero h1,
body.page-contact .inner-hero h1 {
    max-width: 14ch;
    font-size: clamp(3rem, 5.8vw, 5.1rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
}

body.page-faq .inner-hero h1 {
    max-width: 15ch;
}

body.page-about .inner-hero .eyebrow,
body.page-blog .inner-hero .eyebrow,
body.page-careers .inner-hero .eyebrow,
body.page-faq .inner-hero .eyebrow,
body.page-contact .inner-hero .eyebrow {
    justify-self: center;
}

body.page-about .inner-hero .lead,
body.page-careers .inner-hero .lead,
body.page-contact .inner-hero .lead,
body.page-blog .inner-hero .lead {
    max-width: 56ch;
    text-align: center;
}

.hero-stage .hero-card {
    max-width: 560px;
    margin-left: auto;
    width: 100%;
}

.hero-card,
.card,
.mini-card,
.stat-card,
.metric-card,
.gallery-tile,
.maintenance-card {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(0, 206, 200, 0.04), transparent 28%),
        radial-gradient(circle at bottom left, rgba(11, 109, 115, 0.05), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68));
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.hero-card::before,
.card::before,
.mini-card::before,
.stat-card::before,
.metric-card::before,
.gallery-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.24), transparent 22%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 60%);
    pointer-events: none;
}

.hero-card,
.card,
.mini-card,
.stat-card,
.metric-card,
.gallery-tile {
    padding: 28px;
}

.floating-card {
    width: 100%;
}

.hero-card h3 {
    margin: 0 0 20px;
    font-size: 1.35rem;
    line-height: 1.35;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.hero-points div {
    display: grid;
    gap: 4px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(231, 251, 250, 0.75);
    border: 1px solid rgba(11, 109, 115, 0.06);
}

.hero-points strong {
    font-size: 0.88rem;
    color: var(--teal);
}

.hero-points span {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--muted);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid rgba(11, 109, 115, 0.12);
    font-size: 0.95rem;
    font-weight: 600;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.button-primary {
    background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
    color: white;
    box-shadow: 0 14px 24px rgba(0, 181, 176, 0.2);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.62);
}

.hero-actions {
    grid-auto-flow: column;
    justify-content: start;
    gap: 14px;
    margin-top: 22px;
}

.center-card .hero-actions {
    justify-content: center;
}

.section {
    padding: 18px 0 48px;
}

.muted {
    background:
        radial-gradient(circle at top left, rgba(0, 206, 200, 0.08), transparent 24%),
        radial-gradient(circle at bottom right, rgba(11, 109, 115, 0.06), transparent 22%),
        linear-gradient(180deg, rgba(0, 206, 200, 0.12), rgba(255, 255, 255, 0.08));
}

.two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-grid,
.metrics-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metrics-row {
    margin-top: 18px;
}

.metric-card,
.stat-card {
    text-align: center;
    padding: 32px 20px;
}

.metric-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: clamp(2rem, 4vw, 2.6rem);
    line-height: 1;
    font-weight: 700;
}

.metric-number {
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.03em;
}

.stat-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.stat-card span {
    display: block;
    line-height: 1.6;
}

.metric-card span,
.stat-card span,
.card small,
.mini-card small,
.contact-card p,
.site-footer a,
.site-footer p {
    color: var(--muted);
}

.card h2,
.center-card h2,
.section-heading h2 {
    margin: 0 0 14px;
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    line-height: 1.2;
    font-weight: 700;
}

.card p,
.mini-card p,
.gallery-tile p,
.contact-card p,
.module-item p {
    margin: 0;
    line-height: 1.8;
    color: var(--muted);
}

.service-preview {
    padding-top: 12px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 20px;
}

.logo-marquee-wrap {
    padding: 4px 0 24px;
}

.marquee-mask {
    position: relative;
    overflow: hidden;
}

.marquee-mask::before,
.marquee-mask::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(26px, 4vw, 54px);
    z-index: 2;
    pointer-events: none;
}

.marquee-mask::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-soft) 0%, rgba(255, 251, 246, 0) 100%);
}

.marquee-mask::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg-soft) 0%, rgba(255, 251, 246, 0) 100%);
}

.logo-marquee {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
    animation: marquee 30s linear infinite;
}

.logo-marquee.reverse {
    animation-direction: reverse;
}

.logo-marquee-set {
    display: flex;
    flex: 0 0 auto;
    gap: 16px;
}

.logo-pill {
    flex: 0 0 auto;
    padding: 14px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.82);
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--teal-deep);
    box-shadow: 0 8px 20px rgba(11, 109, 115, 0.08);
}

body.page-home .hero {
    padding: 52px 0 14px;
}

body.page-home .hero-grid {
    gap: clamp(30px, 4vw, 54px);
    align-items: start;
}

body.page-home .hero-copy {
    display: grid;
    align-content: start;
    gap: 16px;
    padding-top: 8px;
}

body.page-home .hero-copy h1 {
    margin: 0;
    max-width: 10.8ch;
    font-size: clamp(3rem, 5.3vw, 4.55rem);
    line-height: 0.96;
}

body.page-home .hero-copy .lead {
    max-width: 58ch;
    margin: 0;
}

body.page-home .hero-actions {
    margin-top: 10px;
    gap: 16px;
}

body.page-home .hero-stage {
    align-self: center;
}

body.page-home .hero-stage .hero-card {
    max-width: 540px;
}

body.page-home .hero-card {
    padding: 30px;
}

body.page-home .hero-card h3 {
    margin: 0 0 18px;
}

body.page-home .hero-points {
    gap: 12px;
}

body.page-home .hero-points div {
    padding: 14px 15px;
}

body.page-home .metrics-row {
    gap: 16px;
    margin-top: 30px;
    margin-bottom: 18px;
}

body.page-home .metric-card {
    padding: 28px 20px 26px;
    border-color: rgba(255, 255, 255, 0.92);
    box-shadow:
        0 18px 34px rgba(11, 109, 115, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

body.page-home .logo-marquee-wrap {
    padding: 18px 0 40px;
}

body.page-home .marquee-mask::before,
body.page-home .marquee-mask::after {
    background: linear-gradient(90deg, rgba(244, 255, 254, 0.94) 0%, rgba(244, 255, 254, 0) 100%);
}

body.page-home .marquee-mask::after {
    background: linear-gradient(270deg, rgba(244, 255, 254, 0.94) 0%, rgba(244, 255, 254, 0) 100%);
}

body.page-home .logo-marquee {
    gap: 18px;
}

body.page-home .logo-marquee-set {
    gap: 18px;
}

body.page-home .logo-pill {
    padding: 15px 24px;
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(255, 255, 255, 0.94);
    box-shadow:
        0 12px 26px rgba(11, 109, 115, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

body.page-home .section {
    padding: 34px 0;
}

body.page-home .section .two-column {
    gap: 22px;
    align-items: stretch;
}

body.page-home .section .card,
body.page-home .section .mini-card {
    height: 100%;
}

body.page-home .section .card {
    padding: 26px 28px;
}

body.page-home .section .card h2 {
    margin-bottom: 12px;
}

body.page-home .section .card p,
body.page-home .section .mini-card p {
    line-height: 1.72;
}

body.page-home .muted {
    margin-top: 0;
    padding-top: 12px;
    background: transparent;
}

body.page-home .muted .container {
    align-items: center;
}

body.page-home .muted .stack {
    gap: 18px;
}

body.page-home .gallery-showcase {
    padding-top: 26px;
    padding-bottom: 34px;
}

body.page-home .section-heading {
    max-width: 720px;
    margin-bottom: 22px;
}

body.page-home .gallery-motion-grid {
    gap: 18px;
}

body.page-home .gallery-tile {
    min-height: 0;
    gap: 16px;
    padding: 18px 18px 20px;
}

body.page-home .gallery-slider {
    height: 190px;
}

body.page-home .gallery-slider img {
    width: 146px;
    height: 190px;
    flex-basis: 146px;
    border-radius: 18px;
}

body.page-home .gallery-tile h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    line-height: 1.35;
}

body.page-home .center-card {
    max-width: 820px;
    gap: 12px;
    padding: 34px 32px;
}

body.page-home .center-card h2 {
    margin-bottom: 6px;
}

body.page-home .center-card p {
    margin: 0 auto;
    max-width: 60ch;
}

.gallery-motion-grid,
.gallery-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-hero {
    padding: 44px 0 18px;
}

.gallery-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 44px;
    align-items: center;
}

.gallery-hero-copy h1 {
    max-width: 11.5ch;
    font-size: clamp(3rem, 5.3vw, 4.9rem);
    line-height: 0.96;
    margin: 0;
}

.gallery-hero-note {
    max-width: 520px;
    justify-self: end;
    padding: 26px 28px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(232, 248, 247, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 18px 36px rgba(11, 109, 115, 0.08);
}

.gallery-hero-note p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    font-size: 0.96rem;
}

.gallery-editorial-grid {
    display: grid;
    gap: 26px;
}

.gallery-feature-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 22px;
    align-items: center;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.gallery-feature-card.is-reversed {
    grid-template-columns: 280px minmax(0, 1fr);
}

.gallery-feature-card.is-reversed .gallery-feature-copy {
    order: 1;
    padding-left: 0;
}

.gallery-feature-card.is-reversed .gallery-slider,
.gallery-feature-card.is-reversed .gallery-shape {
    order: 2;
}

.gallery-feature-card.is-reversed .gallery-slider-track {
    animation-name: gallerySlideRight;
}

.gallery-slider.editorial {
    height: 228px;
    border-radius: 0;
}

.gallery-feature-copy {
    display: grid;
    gap: 8px;
    align-content: center;
}

.gallery-feature-copy small {
    color: var(--teal);
    font-weight: 700;
    letter-spacing: 0.16em;
}

.gallery-feature-copy h2 {
    margin: 0;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.15;
}

.gallery-feature-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.gallery-tile {
    min-height: 220px;
    gap: 18px;
    align-content: start;
}

.gallery-shape {
    height: 170px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22), transparent 24%),
        linear-gradient(135deg, var(--accent) 0%, var(--teal-deep) 100%);
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
}

.gallery-slider {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-radius: 0;
    height: 228px;
    background: transparent;
    box-shadow: none;
    -webkit-mask-image: none;
    mask-image: none;
}

.gallery-slider::before,
.gallery-slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 34px;
    z-index: 2;
    pointer-events: none;
}

.gallery-slider::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-soft) 0%, rgba(255, 251, 246, 0) 100%);
}

.gallery-slider::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg-soft) 0%, rgba(255, 251, 246, 0) 100%);
}

.gallery-slider.large {
    height: 220px;
}

.gallery-slider-track {
    display: flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    height: 100%;
    padding: 0;
    will-change: transform;
    animation: gallerySlide 24s linear infinite;
}

.gallery-slider-set {
    display: flex;
    flex: 0 0 auto;
    gap: 14px;
    height: 100%;
}

.gallery-slider img {
    width: 174px;
    height: 228px;
    object-fit: cover;
    flex: 0 0 174px;
    border-radius: 22px;
    box-shadow: none;
}

.gallery-slider:hover .gallery-slider-track {
    animation-play-state: paused;
}

.gallery-feature-copy {
    min-width: 0;
    padding-left: 6px;
}

.gallery-feature-copy h2 {
    font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.center-card {
    text-align: center;
    padding: 40px;
}

.service-preview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
    gap: 28px;
    align-items: start;
}

.services-two-column {
    align-items: start;
}

.service-bullets {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.8;
    display: grid;
    gap: 14px;
}

.service-bullets li::marker {
    color: var(--teal-deep);
}

.service-story-card,
.service-benefits-card,
.modules-card {
    min-height: 0;
}

.service-story-card h2,
.service-benefits-card h2,
.service-outcomes-copy h2,
.modules-card h2 {
    max-width: 12ch;
    letter-spacing: -0.03em;
}

.service-story-card p:last-child,
.service-outcomes-copy p {
    max-width: 56ch;
}

.service-story-card {
    padding: 26px 28px 20px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.58), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(241, 252, 251, 0.56));
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 28px;
    box-shadow: 0 18px 34px rgba(11, 109, 115, 0.06);
    overflow: visible;
}

.service-story-card::before,
.modules-card::before,
.service-outcomes-copy::before {
    display: none;
}

.service-benefits-card {
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 30px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 22%),
        linear-gradient(160deg, rgba(11, 109, 115, 0.97), rgba(17, 70, 78, 0.96));
    color: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.12);
    position: sticky;
    top: 112px;
}

.service-list-title {
    color: #fff;
    font-size: 0.95rem;
}

.service-corporate-cta {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.service-benefits-card .eyebrow,
.service-benefits-card h2,
.service-benefits-card p,
.service-benefits-card li {
    color: rgba(255, 255, 255, 0.92);
}

.service-benefits-card .eyebrow {
    color: rgba(182, 245, 242, 0.88);
}

.service-benefits-card .service-bullets {
    padding-left: 18px;
    gap: 10px;
}

.service-benefits-card .service-bullets li::marker {
    color: rgba(182, 245, 242, 0.88);
}

.service-benefits-card .button-primary {
    width: 100%;
    margin-top: 6px;
}

.service-outcomes-grid {
    align-items: start;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    gap: 30px;
}

.service-outcomes-copy {
    display: grid;
    gap: 18px;
    align-content: start;
    padding: 6px 0 0;
    border-radius: 0;
    background: transparent;
    border: 0;
}

.service-outcomes-copy p {
    margin: 0;
    line-height: 1.9;
    color: var(--muted);
}

.modules-card {
    padding: 26px 28px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(242, 251, 251, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 34px rgba(11, 109, 115, 0.06);
    overflow: visible;
}

.modules-card h2 {
    margin-bottom: 12px;
}

.service-programme-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
    border-top: 0;
}

.service-programme-item {
    display: block;
    padding: 22px 22px 18px;
    border: 1px solid rgba(11, 109, 115, 0.1);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 252, 252, 0.78));
    box-shadow: 0 12px 24px rgba(11, 109, 115, 0.05);
}

.service-programme-index {
    display: inline-block;
    min-width: 22px;
    color: var(--teal-deep);
    font-weight: 700;
    font-size: 0.82rem;
    line-height: 1.2;
}

.service-programme-copy {
    display: grid;
    gap: 14px;
}

.service-programme-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
}

.service-programme-heading-group {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.service-programme-title-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.service-programme-copy h3 {
    margin: 0;
    font-size: 1.12rem;
    letter-spacing: -0.02em;
}

.service-programme-meta-inline {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    align-items: center;
}

.service-programme-meta-inline div {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    color: var(--muted);
    position: relative;
}

.service-programme-meta-inline div:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    width: 1px;
    height: 14px;
    background: rgba(11, 109, 115, 0.14);
    transform: translateY(-50%);
}

.service-programme-meta-inline dt,
.service-programme-detail-label {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(11, 109, 115, 0.72);
}

.service-programme-meta-inline dd {
    margin: 0;
    color: var(--ink);
    line-height: 1.4;
    font-weight: 500;
}

.service-programme-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding-top: 2px;
}

.service-programme-detail-card {
    display: grid;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(233, 248, 247, 0.5);
    border: 1px solid rgba(11, 109, 115, 0.06);
}

.service-programme-detail-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    max-width: 34ch;
}

.service-programme-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    flex: 0 0 auto;
}

.service-programme-status-open {
    background: rgba(0, 206, 200, 0.08);
    color: rgba(11, 109, 115, 0.86);
}

.service-programme-status-closed {
    background: rgba(157, 51, 66, 0.08);
    color: #8b2a38;
}

.service-programme-button.is-disabled {
    border-color: rgba(11, 109, 115, 0.08);
    background: rgba(244, 248, 248, 0.9);
    color: var(--muted);
    box-shadow: none;
    cursor: not-allowed;
}

.service-programme-button {
    width: 100%;
    margin-top: 2px;
}

.service-tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(11, 109, 115, 0.1);
    color: var(--ink);
    font-weight: 600;
    text-align: center;
    font-size: 0.92rem;
}

.service-final-cta .center-card {
    display: grid;
    gap: 14px;
    justify-items: center;
    padding: 30px 28px;
    background:
        radial-gradient(circle at top center, rgba(0, 206, 200, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 252, 252, 0.9));
}

.service-final-cta h2 {
    margin: 0;
    max-width: 14ch;
}

.module-item {
    display: grid;
    gap: 10px;
    padding: 18px 0 18px 18px;
    border-bottom: 1px solid rgba(11, 109, 115, 0.12);
    position: relative;
}

.module-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(0, 206, 200, 0.08), rgba(11, 109, 115, 0.32), rgba(0, 206, 200, 0.08));
}

.module-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.module-item-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.module-index {
    width: 32px;
    height: 32px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(11, 109, 115, 0.08);
    color: var(--teal-deep);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.module-item strong {
    font-size: 1rem;
    line-height: 1.4;
}

.module-item:hover .module-index {
    transform: none;
    transition: none;
}

.faq-item {
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 18px;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
}

.contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: 24px;
}

.career-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.contact-info-card,
.contact-form-card,
.career-intro-card,
.career-opening-card,
.trainer-card {
    box-shadow: 0 20px 36px rgba(11, 109, 115, 0.08);
}

.contact-info-card,
.contact-form-card {
    min-height: 100%;
}

.contact-info-header,
.contact-form-header {
    display: grid;
    gap: 8px;
    margin-bottom: 22px;
}

.contact-info-header h2,
.contact-form-header h2 {
    margin: 0;
}

.contact-info-header p,
.contact-form-header p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.contact-info-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-info-list div {
    display: grid;
    gap: 6px;
    min-width: 0;
    padding: 18px;
    border-radius: 18px;
    background: rgba(231, 251, 250, 0.72);
}

.contact-info-list strong {
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
}

.contact-info-list span {
    display: block;
    min-width: 0;
    color: var(--muted);
    line-height: 1.7;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-info-actions {
    margin-top: 20px;
}

.balanced-form {
    align-items: start;
}

.balanced-form label {
    display: grid;
    gap: 8px;
}

.balanced-form label span {
    font-size: 0.9rem;
    font-weight: 600;
}

.balanced-form button {
    width: fit-content;
    min-width: 220px;
    margin-top: 6px;
}

.career-opening-label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
}

.career-info,
.career-opening-list {
    display: grid;
    gap: 18px;
}

.career-intro-card,
.career-opening-card {
    background:
        radial-gradient(circle at top right, rgba(0, 206, 200, 0.08), transparent 26%),
        radial-gradient(circle at bottom left, rgba(11, 109, 115, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.career-intro-card {
    padding: 28px;
}

.career-intro-card h2 {
    margin: 0 0 12px;
    font-size: 2rem;
    line-height: 1.2;
}

.career-intro-card p:last-child {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.career-opening-card {
    padding: 22px 24px;
}

.career-opening-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 600;
}

.career-opening-card h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
}

.career-opening-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.career-form-header {
    margin-bottom: 24px;
}

.career-form-header h2 {
    margin: 0 0 10px;
}

.career-form-header p:last-child {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.career-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.career-form label {
    display: grid;
    gap: 9px;
    font-size: 0.94rem;
    font-weight: 500;
}

.career-form label span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
}

.career-form input,
.career-form select,
.career-form textarea {
    background: #fcfaf7;
    border: 1px solid rgba(11, 109, 115, 0.09);
    border-radius: 16px;
    min-height: 56px;
}

.career-form textarea {
    min-height: 138px;
}

.career-form button {
    width: fit-content;
    min-width: 220px;
    margin-top: 8px;
}

.career-submit-stack {
    display: grid;
    gap: 14px;
}

.career-upload-field {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(232, 248, 247, 0.85), rgba(255, 255, 255, 0.92));
    border: 1px solid rgba(11, 109, 115, 0.09);
    box-shadow: 0 16px 26px rgba(11, 109, 115, 0.08);
}

.career-upload-field input[type="file"] {
    min-height: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 0.95rem;
}

.career-form label small,
.career-upload-field small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    line-height: 1.6;
}

.trainers-stack {
    gap: 28px;
}

.trainer-card {
    display: grid;
    grid-template-columns: 164px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    padding: 6px 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.trainer-card.no-image {
    grid-template-columns: 1fr;
}

.trainer-card-image {
    width: 164px;
    height: 164px;
    object-fit: cover;
    border-radius: 38px;
    box-shadow: none;
}

.trainer-card-copy {
    display: grid;
    gap: 10px;
    padding-top: 8px;
}

.trainer-card.no-image .trainer-card-copy {
    max-width: none;
}

.trainer-card-copy strong {
    font-size: 1.9rem;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.trainer-card-copy p {
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.35;
    color: var(--muted);
}

.trainer-card-copy small {
    line-height: 1.8;
    font-size: 1.05rem;
}

.form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-grid label {
    display: grid;
    gap: 8px;
    font-size: 0.94rem;
    font-weight: 500;
}

.full-width {
    grid-column: 1 / -1;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(11, 109, 115, 0.1);
    background: rgba(255, 255, 255, 0.86);
    color: var(--ink);
    transition: border-color var(--transition), box-shadow var(--transition);
}

select {
    padding-right: 44px;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(0, 181, 176, 0.42);
    box-shadow: 0 0 0 4px rgba(0, 206, 200, 0.12);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.alert {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 14px;
}

.alert.success {
    background: #e4f7ef;
    color: #136147;
}

.alert.error {
    background: #fdebec;
    color: #8a2330;
}

.search-form {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.site-footer {
    padding: 40px 0 48px;
    border-top: 1px solid var(--line);
}

.footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.footer-grid div {
    display: grid;
    gap: 10px;
}

.footer-brand-logo {
    width: 108px;
    height: auto;
    margin-bottom: 4px;
}

.hrdc-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.hrdc-badge img {
    display: block;
    width: 96px;
    height: auto;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 45;
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    padding: 8px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 16px 32px rgba(11, 141, 150, 0.2);
}

.whatsapp-float img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.maintenance-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    font-family: "Poppins", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(0, 206, 200, 0.18), transparent 24%),
        radial-gradient(circle at bottom right, rgba(11, 109, 115, 0.14), transparent 26%),
        linear-gradient(180deg, #f7ffff 0%, #def8f7 100%);
}

.maintenance-shell {
    position: relative;
    width: min(980px, 100%);
}

.maintenance-card {
    width: min(640px, 100%);
    padding: 36px;
    text-align: center;
}

.maintenance-card-premium {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 18px;
    margin: 0 auto;
    padding: 48px;
    text-align: left;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(18px);
}

.maintenance-card-premium h1 {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.02;
    max-width: 10ch;
}

.maintenance-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.maintenance-brand-mark {
    width: 70px;
    height: 70px;
    display: block;
    object-fit: contain;
}

.maintenance-brand-copy {
    display: grid;
    gap: 3px;
}

.maintenance-brand-copy strong {
    font-size: 1.02rem;
}

.maintenance-brand-copy span {
    color: var(--muted);
}

.maintenance-badge-wrap {
    display: flex;
    justify-content: flex-start;
}

.maintenance-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(0, 181, 176, 0.09);
    color: var(--teal-deep);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.maintenance-lead {
    max-width: 54ch;
    margin: 0;
    color: var(--muted);
    line-height: 1.85;
    font-size: 1rem;
}

.maintenance-progress {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
    color: var(--teal-deep);
    font-size: 0.92rem;
    font-weight: 600;
}

.maintenance-progress-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 rgba(0, 206, 200, 0.4);
    animation: maintenancePulse 1.8s ease-in-out infinite;
}

.maintenance-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.maintenance-meta-item {
    display: grid;
    gap: 6px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.62);
}

.maintenance-meta-item strong {
    font-size: 0.92rem;
}

.maintenance-meta-item span {
    color: var(--muted);
    line-height: 1.7;
}

.maintenance-contact-card {
    display: grid;
    gap: 8px;
    padding: 22px 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.58));
}

.maintenance-contact-card strong,
.maintenance-contact-card p {
    margin: 0;
}

.maintenance-contact-card p {
    color: var(--muted);
    line-height: 1.8;
}

.maintenance-contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.maintenance-contact-list span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(0, 181, 176, 0.08);
    color: var(--teal-deep);
    font-size: 0.92rem;
    font-weight: 600;
}

.maintenance-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
}

.maintenance-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.75;
    pointer-events: none;
}

.maintenance-glow-one {
    top: -24px;
    left: 24px;
    width: 180px;
    height: 180px;
    background: rgba(0, 206, 200, 0.18);
}

.maintenance-glow-two {
    right: 28px;
    bottom: -28px;
    width: 220px;
    height: 220px;
    background: rgba(11, 109, 115, 0.15);
}

.interactive:hover {
    transform: none;
    box-shadow: none;
}

.interactive:active {
    transform: none;
}

.reveal {
    opacity: 1;
}

.js .reveal {
    opacity: 0;
    filter: blur(5px);
    transition: opacity 560ms ease, transform 560ms ease, filter 560ms ease;
    will-change: transform, opacity, filter;
}

.js .reveal[data-animate="up"] {
    transform: translateY(20px);
}

.js .reveal[data-animate="left"] {
    transform: translateX(-20px);
}

.js .reveal[data-animate="right"] {
    transform: translateX(20px);
}

.js .reveal[data-animate="scale"] {
    transform: scale(0.98);
}

.js .reveal[data-animate="fade"] {
    transform: translateY(10px);
}

.js .reveal.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-25% - 4px)); }
}

@keyframes gallerySlide {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-25% - 3.5px)); }
}

@keyframes gallerySlideRight {
    from { transform: translateX(calc(-25% - 3.5px)); }
    to { transform: translateX(0); }
}

@keyframes heroGlowFloat {
    0% {
        transform: translate3d(-4%, -3%, 0) scale(1) rotate(0deg);
        opacity: 0.84;
    }
    50% {
        transform: translate3d(3%, 2%, 0) scale(1.09) rotate(0.7deg);
        opacity: 1;
    }
    100% {
        transform: translate3d(-2%, 3%, 0) scale(1.15) rotate(-0.7deg);
        opacity: 0.9;
    }
}

@keyframes heroParticleBurst {
    0% {
        transform: scale(0.06);
        opacity: 0;
    }
    8% {
        transform: scale(0.14);
        opacity: 1;
    }
    42% {
        transform: scale(1.55);
        opacity: 0.96;
    }
    78% {
        transform: scale(4.55);
        opacity: 0.9;
    }
    100% {
        transform: scale(7.2);
        opacity: 0;
    }
}

@keyframes maintenancePulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 206, 200, 0.38);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 0 0 10px rgba(0, 206, 200, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none !important;
    }
}

@media (max-width: 980px) {
    .hero-grid,
    .service-hero-grid,
    .two-column,
    .three-grid,
    .four-grid,
    .metrics-row,
    .service-preview-grid,
    .gallery-motion-grid,
    .gallery-columns,
    .gallery-hero-grid,
    .gallery-feature-card,
    .career-grid,
    .contact-grid,
    .footer-grid,
    .form-grid,
    .career-form,
    .career-submit-stack {
        grid-template-columns: 1fr;
    }

    .gallery-hero-note {
        justify-self: start;
    }

    .gallery-slider.editorial {
        height: 210px;
    }

    .service-hero-copy h1 {
        max-width: none;
        font-size: clamp(2.5rem, 7vw, 4rem);
    }

    .service-hero-copy {
        max-width: none;
    }

    .service-shell {
        padding-top: 52px;
    }

    .service-hero-panel {
        padding: 14px;
    }

    .service-benefits-card {
        position: static;
        top: auto;
    }

    .gallery-slider img {
        width: 148px;
        height: 210px;
    }

    .maintenance-card-premium {
        padding: 34px 24px;
    }

    .maintenance-meta {
        grid-template-columns: 1fr;
    }

    .contact-info-list,
    .trainer-card {
        grid-template-columns: 1fr;
    }

    .trainer-card-image {
        width: 100%;
        max-width: 220px;
        height: 220px;
    }

    .hero-actions {
        grid-auto-flow: row;
    }

    .hero-points {
        grid-template-columns: 1fr;
    }

    .hero h1,
    .inner-hero h1 {
        max-width: none;
    }

    body.page-about .inner-hero > .container,
    body.page-blog .inner-hero > .container,
    body.page-careers .inner-hero > .container,
    body.page-faq .inner-hero > .container,
    body.page-contact .inner-hero > .container {
        min-height: auto;
        margin-left: 0;
        margin-right: 0;
        justify-items: center;
        text-align: center;
    }

    body.page-blog .inner-hero .eyebrow,
    body.page-contact .inner-hero .eyebrow,
    body.page-faq .inner-hero .eyebrow {
        justify-self: center;
    }

    body.page-about .inner-hero h1,
    body.page-blog .inner-hero h1,
    body.page-careers .inner-hero h1,
    body.page-faq .inner-hero h1,
    body.page-contact .inner-hero h1 {
        max-width: none;
        font-size: clamp(2.5rem, 7vw, 4.15rem);
        line-height: 0.98;
    }

    .hero-copy {
        padding-top: 0;
    }

    body.page-home .hero {
        padding: 42px 0 10px;
    }

    body.page-home .hero-copy {
        gap: 14px;
    }

    body.page-home .hero-copy h1 {
        max-width: none;
        font-size: clamp(2.55rem, 8.2vw, 3.8rem);
    }

    body.page-home .hero-stage .hero-card,
    body.page-home .center-card {
        max-width: none;
    }

    body.page-home .metrics-row {
        margin-top: 22px;
        margin-bottom: 14px;
        gap: 14px;
    }

    body.page-home .section {
        padding: 28px 0;
    }

    body.page-home .logo-marquee-wrap {
        padding: 14px 0 30px;
    }

    body.page-home .muted {
        padding-top: 10px;
    }

    body.page-home .gallery-showcase {
        padding-bottom: 28px;
    }

    body.page-home .gallery-tile {
        padding: 18px;
    }

    body.page-home .gallery-slider {
        height: 210px;
    }

    body.page-home .gallery-slider img {
        width: 148px;
        height: 210px;
        flex-basis: 148px;
    }

    .service-outcomes-copy {
        padding: 0;
    }

    .service-programme-item {
        padding: 24px 0;
    }

    .service-programme-meta-inline,
    .service-programme-details-grid {
        grid-template-columns: 1fr;
    }

    .service-programme-header,
    .service-programme-title-row {
        flex-direction: column;
        align-items: start;
    }

    .service-programme-meta-inline {
        display: grid;
        gap: 8px;
    }

    .service-programme-meta-inline div:not(:last-child)::after {
        display: none;
    }

    .service-outcomes-grid {
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .nav-bar {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .nav-links {
        grid-auto-flow: row;
        justify-content: start;
        gap: 12px;
    }

    .lang-switch {
        width: fit-content;
    }

    .search-form {
        flex-direction: column;
    }

    .brand strong {
        font-size: 0.98rem;
    }

    .brand small {
        font-size: 0.8rem;
    }

    .brand-mark {
        width: 60px;
        height: 60px;
        flex-basis: 60px;
    }

    .service-hero-stats {
        grid-template-columns: 1fr;
    }

    .service-stat-card {
        min-height: auto;
    }

    .service-hero-panel {
        padding-left: 0;
    }
}
