/*! MAYND STOMIR — landing.css — v2.0.44 */

/*  MAYND STOMIR — Landing Page Styles */

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* NAV */
.landing-nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 200;
    height: 70px;
    background: var(--blue-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
    transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                backdrop-filter 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.landing-nav.elevated {
    height: 70px; /* INVARIANT: Zero layout shift */
    background: rgba(15, 23, 42, 0.92) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.35);
}
.landing-nav .logo {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
}
.landing-nav nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.landing-nav nav a {
    position: relative;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'DM Sans', sans-serif;
    transition: color 0.2s ease;
    padding: 0.4rem 0;
}
.landing-nav nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.landing-nav nav a:hover {
    color: var(--gold-light);
}
.landing-nav nav a.active {
    color: var(--gold-light) !important;
}
.landing-nav nav a.active::after {
    transform: scaleX(1);
}
.landing-nav .primary {
    padding: 0.5rem 1.2rem;
    font-size: 0.72rem;
}
.header-request { display:flex; gap:0.6rem; align-items:center;}

/* HERO */
.hero {
    background: var(--blue-dark);
    min-height: 100vh;
    padding-top: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding-left: 3rem;
    padding-right: 3rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.06);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 30%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}
.hero-left {
    z-index: 1;
}
.hero-eyebrow {
    font-size: 0.65rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'DM Sans', sans-serif;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
}
.hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.2rem;
}
.hero h1 span {
    color: var(--gold);
}
.hero-sub {
    font-size: clamp(0.82rem, 1.5vw, 0.95rem);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 420px;
}
.hero-btns {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}
.btn-outline {
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-family: 'Syne', sans-serif;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

/* GLASS CARD */
.hero-right {
    z-index: 1;
    perspective: 1000px;
}
.glass-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.8rem;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transition: transform 0.15s ease-out, box-shadow 0.2s ease;
    box-shadow: 0 16px 36px -10px rgba(15, 23, 42, 0.12);
}
.glass-card-header {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.9rem 1.1rem;
    margin-bottom: 1.2rem;
}
.glass-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.3rem;
}
.glass-header-top p {
    font-size: 0.65rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0;
}
.live-beacon {
    position: relative;
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.beacon-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #16A34A;
    box-shadow: 0 0 8px rgba(22, 163, 74, 0.8);
    z-index: 2;
}
.beacon-ring {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 1.5px solid rgba(22, 163, 74, 0.9);
    animation: beacon-pulse 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    z-index: 1;
}
@keyframes beacon-pulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }
    70% {
        transform: scale(2.8);
        opacity: 0;
    }
    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}
.glass-card-header h3 {
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 700;
}
.glass-steps {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.glass-step {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.45rem 0.6rem;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    border-left: 2px solid transparent;
}
.glass-step.is-active {
    background: rgba(201, 168, 76, 0.08);
    border-left-color: var(--gold);
    transform: translateX(4px);
}
.glass-step.is-active .glass-step-num {
    background: var(--gold);
    color: var(--blue-dark);
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.4);
}
.glass-step.is-active .glass-step-text {
    color: var(--text-primary);
    font-weight: 500;
}
.glass-step-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Syne', sans-serif;
    transition: all 0.3s ease;
}
.glass-step-text {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
    transition: color 0.3s ease;
}
.glass-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--off-white);
    border: 1px var(--border);
    border-radius: 4px;
    padding: 0.35rem 0.9rem;
    font-size: 0.68rem;
    color: var(--assigned);
    margin-top: 1.2rem;
}

/* STATS BAR */
.stats-bar {
    background: var(--blue-mid);
    padding: 1.5rem 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.stat-item {
    text-align: center;
    padding: 0.8rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-item:last-child {
    border-right: none;
}
.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--gold);
}
.stat-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.2rem;
}

/* SERVICES */
.services-section {
    padding: 6rem 3rem;
    background: var(--cream);
}
.section-header {
    margin-bottom: 2.5rem;
}
.section-eyebrow {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--blue-accent);
    font-family: 'DM Sans', sans-serif;
}
.section-eyebrow::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--blue-accent);
    flex-shrink: 0;
}
.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 0.5rem;
}
.section-sub {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.6;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.3rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(350px circle at var(--mouse-x, -999px) var(--mouse-y, -999px), rgba(201, 168, 76, 0.12), transparent 65%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.service-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(201, 168, 76, 0.08);
    transform: translateY(-2px);
}
.service-card:hover::before {
    opacity: 1;
}
.service-icon {
    width: 38px;
    height: 38px;
    background: var(--blue-soft);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
    color: var(--blue-dark);
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}
.service-icon i {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
    display: inline-block;
}
.service-card:hover .ti-wind { transform: rotate(25deg) scale(1.15); color: var(--gold); }
.service-card:hover .ti-droplet { transform: translateY(-3px) scale(1.12); color: var(--gold); }
.service-card:hover .ti-bolt { transform: scale(1.2); color: var(--gold); }
.service-card:hover .ti-brush { transform: rotate(15deg) scale(1.15); color: var(--gold); }
.service-card:hover .ti-tools { transform: rotate(-15deg) scale(1.15); color: var(--gold); }
.service-card:hover .ti-wash-machine { transform: scale(1.15); color: var(--gold); }
.service-card:hover .ti-sparkles { transform: rotate(20deg) scale(1.2); color: var(--gold); }
.service-card:hover .ti-lock { transform: scale(1.12); color: var(--gold); }
.service-name {
    font-family: 'Syne', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    position: relative;
    z-index: 2;
}
.service-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* HOW IT WORKS */
.how-section {
    background: var(--blue-mid);
    padding: 4rem 3rem;
}
.how-section .section-eyebrow {
    color: var(--gold);
}
.how-section .section-eyebrow::before {
    background: var(--gold);
}
.how-section .section-title {
    color: var(--white);
}
.how-section .section-sub {
    color: rgba(255, 255, 255, 0.55);
}
.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 0.5rem;
}
.how-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.how-step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
}
.how-step h4 {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.how-step p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* CTA SPLIT */
.cta-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.cta-customer {
    background: var(--cream);
    padding: 4rem 3rem;
    border-right: 1px solid var(--border);
}
.cta-tech {
    background: var(--blue-dark);
    padding: 4rem 3rem;
}
.cta-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
    font-family: 'DM Sans', sans-serif;
}
.cta-customer .cta-tag { color: var(--maroon); }
.cta-tech .cta-tag { color: var(--gold); }
.cta-h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 0.8rem;
}
.cta-customer .cta-h2 { color: var(--maroon-deep); }
.cta-tech .cta-h2 { color: var(--white); }
.cta-p {
    font-size: 0.82rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.cta-customer .cta-p { color: var(--text-muted); }
.cta-tech .cta-p { color: rgba(255, 255, 255, 0.6); }
.cta-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2rem;
}
.cta-list li {
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.cta-customer .cta-list li { color: var(--text-primary); }
.cta-tech .cta-list li { color: rgba(255, 255, 255, 0.78); }
.check-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
}
.cta-customer .check-icon {
    background: rgba(139, 26, 43, 0.1);
    color: var(--maroon);
}
.cta-tech .check-icon {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
}

/* ABOUT */
.about-section {
    background: var(--white);
    padding:6rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-left .section-eyebrow { color: var(--maroon); }
.about-left .section-eyebrow::before { background: var(--maroon); }
.about-left .section-title { color: var(--maroon-deep); }
.about-body {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 1rem;
}
.about-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.about-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.5rem 1.2rem;
    text-align: center;
}
.about-card-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 0.3rem;
}
.about-card-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* CONTACT */
.contact-section {
    background: var(--blue-dark);
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.contact-left h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.contact-left p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}
.contact-emails {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.contact-email {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.2s ease;
}
.contact-email:hover { color: var(--white); }
.contact-email i { font-size: 1rem; color: var(--gold); }

/* FOOTER */
.landing-footer {
    background: var(--charcoal);
    padding: 1.8rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.landing-footer .logo { font-size: 1rem; }
.footer-links {
    display: flex;
    gap: 1.5rem;
}
.footer-links a {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-links a:hover { color: rgba(255, 255, 255, 0.7); }
.footer-copy {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.25);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 5rem 1.5rem 3rem;
        text-align: center;
    }
    .hero-eyebrow { justify-content: center; }
    .hero-sub { margin: 0 auto 2rem; }
    .hero-btns { justify-content: center; }
    .hero-right { display: none; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .how-steps { grid-template-columns: repeat(2, 1fr); }
    .how-steps::before { display: none; }
    .cta-split { grid-template-columns: 1fr; }
    .cta-customer { border-right: none; border-bottom: 1px solid var(--border); }
    .about-section { grid-template-columns: 1fr; }
    .about-right { grid-template-columns: repeat(4, 1fr); }
    .landing-nav { padding: 0 1.5rem; }
    .landing-nav nav { display: none; }
    .desktop-cta { display: none !important; }
    .services-section,
    .how-section,
    .contact-section,
    .landing-footer { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (max-width: 540px) {
    .services-grid { grid-template-columns: 1fr; }
    .how-steps { grid-template-columns: 1fr; }
    .about-right { grid-template-columns: repeat(2, 1fr); }
    .stats-bar { grid-template-columns: 1fr 1fr; padding: 1rem; }
    .contact-section { flex-direction: column; align-items: flex-start; }
    .desktop-cta { display: none !important; }
}
.landing-footer .logo {
    color: var(--white);
}
.landing-footer .logo span {
    color: var(--maroon-deep);
}
.landing-nav .logo span {
    color: var(--maroon-deep);
}
/* CAREER */
.career-section {
    background: var(--off-white);
    padding: 6rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.career-left .section-eyebrow { color: var(--blue-accent); }
.career-left .section-eyebrow::before { background: var(--blue-accent); }
.career-left .section-title { color: var(--blue-dark); }
.career-right {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}
.career-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1rem 0.8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.career-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(350px circle at var(--mouse-x, -999px) var(--mouse-y, -999px), rgba(201, 168, 76, 0.12), transparent 65%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.career-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(201, 168, 76, 0.08);
    transform: translateY(-2px);
}
.career-card:hover::before {
    opacity: 1;
}
.career-card-icon {
    font-size: 1.3rem;
    color: var(--blue-dark);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}
.career-card-icon i {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
    display: inline-block;
}
.career-card:hover .ti-wind { transform: rotate(25deg) scale(1.15); color: var(--gold); }
.career-card:hover .ti-droplet { transform: translateY(-3px) scale(1.12); color: var(--gold); }
.career-card:hover .ti-bolt { transform: scale(1.2); color: var(--gold); }
.career-card:hover .ti-tools { transform: rotate(-15deg) scale(1.15); color: var(--gold); }
.career-card:hover .ti-wash-machine { transform: scale(1.15); color: var(--gold); }
.career-card:hover .ti-sparkles { transform: rotate(20deg) scale(1.2); color: var(--gold); }
.career-card:hover .ti-wall { transform: scale(1.15); color: var(--gold); }
.career-card:hover .ti-dots-circle-horizontal { transform: rotate(90deg); color: var(--gold); }
.career-card-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: 'Syne', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .career-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .career-right {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 540px) {
    .career-right {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* STAGGERED VIEWPORT REVEALS */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--reveal-index, 0) * 55ms);
    will-change: opacity, transform;
}
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* TACTILE BUTTON PHYSICS */
.primary:active, .desktop-cta:active, button:active, .btn-outline:active {
    transform: scale(0.96) translateY(1px);
    transition: transform 60ms ease-out;
}

/* MOBILE DRAWER FLUIDITY */
.drawer {
    transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.drawer-nav a {
    opacity: 0;
    transform: translateX(18px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.drawer.open .drawer-nav a {
    opacity: 1;
    transform: translateX(0);
}
.drawer.open .drawer-nav a:nth-child(1) { transition-delay: 0.08s; }
.drawer.open .drawer-nav a:nth-child(2) { transition-delay: 0.13s; }
.drawer.open .drawer-nav a:nth-child(3) { transition-delay: 0.18s; }
.drawer.open .drawer-nav a:nth-child(4) { transition-delay: 0.23s; }
.drawer.open .drawer-nav a:nth-child(5) { transition-delay: 0.28s; }

/* SMOOTH SCROLLING & TAP HIGHLIGHT */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-tap-highlight-color: transparent;
}

/* ACCESSIBILITY: PREFERS REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto !important;
    }
    .reveal-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .beacon-ring {
        animation: none !important;
    }
    .glass-card {
        transform: none !important;
        transition: none !important;
    }
    .primary:active, .desktop-cta:active, button:active, .btn-outline:active {
        transform: none !important;
    }
    .service-card::before, .career-card::before {
        display: none !important;
    }
    .service-icon i, .career-card-icon i {
        transform: none !important;
        transition: none !important;
    }
}