@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;700;800&family=Sora:wght@400;600;700;800&display=swap");

:root {
    --ink: #10222f;
    --muted-ink: #4f6372;
    --paper: #f7fbfd;
    --glass: rgba(255, 255, 255, 0.78);
    --line: rgba(17, 46, 64, 0.14);
    --teal: #0f766e;
    --cyan: #0ea5a6;
    --amber: #d97706;
    --shadow: 0 18px 45px rgba(10, 30, 43, 0.12);
}

html {
    scroll-behavior: auto;
    /* Avoid sluggish scroll with custom elements */
}

body {
    font-family: "Outfit", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(1000px 500px at 8% -10%, rgba(14, 165, 166, 0.16), transparent 65%),
        radial-gradient(900px 450px at 95% 0%, rgba(217, 119, 6, 0.14), transparent 70%),
        var(--paper);
}

.site-scroll-progress {
    position: fixed;
    inset: 0 0 auto;
    height: 4px;
    z-index: 120;
    pointer-events: none;
    background: rgba(16, 34, 47, 0.04);
}

.site-scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: 0 999px 999px 0;
    background: linear-gradient(90deg, var(--teal), var(--cyan), var(--amber));
    box-shadow: 0 8px 18px rgba(14, 165, 166, 0.28);
    transition: width 0.08s ease-out;
    /* Sharper transition */
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    background: rgba(247, 251, 253, 0.96);
    transition: opacity .35s ease, visibility .35s ease;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader-mark {
    display: grid;
    justify-items: center;
    gap: 10px;
    color: var(--ink);
    font-family: "Sora", "Segoe UI", sans-serif;
    letter-spacing: 0.12em;
}

.page-loader-mark img {
    width: 68px;
    height: 68px;
    animation: pulseLoader 1.2s ease-in-out infinite;
}

h1,
h2,
h3,
.brand {
    font-family: "Sora", "Segoe UI", sans-serif;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 14px 0 8px;
    /* Pre-optimized final padding */
    background: rgba(247, 251, 253, 0.94);
    backdrop-filter: blur(8px);
    /* Reduced from 12px */
    transition: background-color .2s ease, box-shadow .2s ease;
    /* Removed padding from transition */
}

.topbar.is-compact {
    padding: 8px 0 6px;
    background: rgba(247, 251, 253, 0.98);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.topbar-shell {
    padding-top: 0;
    padding-bottom: 0;
}

.premium-header-card {
    position: relative;
    display: grid;
    gap: 18px;
    padding: 14px 18px 18px;
    border: 1px solid rgba(16, 34, 47, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(250, 252, 253, 0.98));
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
    transition: box-shadow .22s ease, border-radius .22s ease;
    overflow: hidden;
    isolation: isolate;
    --pointer-x: 50%;
    --pointer-y: 50%;
}

.header-spotlight,
.header-aurora,
.header-gridlines {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.header-spotlight {
    background: radial-gradient(220px 140px at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.46), transparent 72%);
    mix-blend-mode: screen;
    opacity: .75;
    animation: spotlightDrift 12s ease-in-out infinite;
    z-index: 0;
}

.header-aurora {
    background:
        radial-gradient(400px at 10% 20%, rgba(14, 165, 166, 0.22), transparent),
        radial-gradient(350px at 90% 10%, rgba(217, 119, 6, 0.16), transparent);
    animation: auroraShift 12s ease-in-out infinite alternate;
    z-index: 0;
}

.header-gridlines {
    background-image:
        linear-gradient(rgba(16, 34, 47, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 34, 47, 0.03) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 70%);
    z-index: 0;
}

.topbar.is-compact .premium-header-card {
    padding: 12px 16px 16px;
    border-radius: 20px;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.premium-header-revamp {
    align-items: stretch;
}

.header-utility-row,
.header-main-row,
.header-brand-zone,
.header-nav-zone {
    display: grid;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.header-utility-row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(16, 34, 47, 0.07);
}

.header-main-row {
    grid-template-columns: minmax(320px, 1fr) auto;
    align-items: center;
    gap: 22px;
}

.header-brand-zone {
    gap: 10px;
}

.header-nav-zone {
    justify-items: end;
    align-content: center;
}

.header-signature {
    margin: 0;
    max-width: 62ch;
    color: #5b6f7c;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 500;
    transition: opacity .2s ease, transform .2s ease;
}

.topbar.is-compact .header-signature {
    opacity: .75;
    transform: translateY(-2px);
}

.header-proof-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.header-proof-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(16, 34, 47, 0.08);
    background: rgba(255, 255, 255, 0.7);
    color: #4f6372;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.header-live-strip {
    display: inline-grid;
    grid-template-columns: auto 1fr;
    gap: 2px 10px;
    align-items: center;
    width: min(100%, 560px);
    padding: 10px 14px;
    border-radius: 16px;
    border: 1px solid rgba(16, 34, 47, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 250, 251, 0.78));
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.header-live-dot {
    grid-row: 1 / span 2;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    box-shadow: 0 0 0 0 rgba(14, 165, 166, 0.30);
    animation: livePulse 1.8s ease-out infinite;
}

.header-live-strip strong {
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink);
}

.header-live-strip small {
    color: var(--muted-ink);
    line-height: 1.45;
    font-size: 12px;
}

.header-utility-links {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.header-ghost-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(16, 34, 47, 0.10);
    text-decoration: none;
    color: #27404f;
    background: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 700;
}

.premium-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    align-items: center;
}

.premium-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #314754;
    background: rgba(255, 255, 255, 0.44);
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.premium-nav a.is-active {
    background: rgba(240, 247, 248, 0.96);
    border-color: rgba(15, 118, 110, 0.14);
    color: #10222f;
}

.premium-nav a:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(16, 34, 47, 0.08);
}

.premium-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.topbar.is-compact .header-utility-row {
    padding-bottom: 10px;
}

.topbar.is-compact .header-proof-pills {
    opacity: 0.88;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(16, 34, 47, 0.10);
    background: #ffffff;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #203542;
    transition: transform .2s ease, opacity .2s ease;
}

.header-nav-zone.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.header-nav-zone.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.header-nav-zone.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.header-secondary-cta {
    border-color: rgba(16, 34, 47, 0.10);
    background: rgba(255, 255, 255, 0.72);
}

.brand {
    color: var(--teal);
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: block;
}

.brand-text-wrap {
    display: grid;
    gap: 2px;
}

.brand-text {
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.20em;
    color: var(--teal);
}

.brand-text span {
    color: var(--ink);
}

.brand-text-wrap small {
    color: #586c79;
    font-size: 10px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.brand span {
    color: var(--ink);
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(16, 34, 47, 0.12);
    text-decoration: none;
    color: #203542;
    font-weight: 800;
    background: #ffffff;
}

.lang-toggle:hover {
    color: var(--teal);
    border-color: rgba(15, 118, 110, 0.32);
}

.topbar-cta {
    min-width: 132px;
    box-shadow: 0 16px 28px rgba(15, 118, 110, 0.22);
}

.nav a:hover {
    background: #f3f7f9;
    color: #10222f;
}

.btn {
    border-radius: 12px;
    font-weight: 700;
    min-height: 44px;
    padding: 0 16px;
}

.btn.primary {
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    border-color: rgba(15, 118, 110, 0.3);
}

.btn.ghost {
    background: #ffffff;
    border-color: rgba(16, 34, 47, 0.12);
    color: #203542;
}

.premium-shell {
    display: grid;
    gap: 26px;
}

.premium-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(15, 118, 110, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 118, 110, 0.03) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.7), transparent 82%);
    z-index: 0;
}

.premium-hero,
.premium-section,
.premium-contact {
    position: relative;
    border: 1px solid rgba(16, 34, 47, 0.08);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    /* Increased opacity to reduce blur workload */
    backdrop-filter: blur(6px);
    /* Reduced from 10px */
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.premium-hero {
    padding: 34px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 20px;
    overflow: hidden;
}

.cinematic-hero {
    min-height: 560px;
    align-items: end;
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(24px);
    opacity: 0.45;
    pointer-events: none;
}

.orb-one {
    width: 220px;
    height: 220px;
    top: -30px;
    right: 18%;
    background: rgba(14, 165, 166, 0.28);
}

.orb-two {
    width: 260px;
    height: 260px;
    bottom: -80px;
    left: -20px;
    background: rgba(217, 119, 6, 0.18);
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    pointer-events: none;
    background-image: linear-gradient(transparent 97%, rgba(15, 118, 110, 0.2) 98%);
    background-size: 100% 12px;
}

.hero-content,
.hero-panel {
    position: relative;
    z-index: 1;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--teal);
    font-weight: 700;
    letter-spacing: 0.14em;
    font-size: 11px;
}

.hero-content h1 {
    margin: 0;
    font-size: clamp(30px, 5vw, 56px);
    line-height: 1.1;
    max-width: 14ch;
}

.hero-content h1 span {
    color: var(--amber);
}

.hero-content p {
    margin: 16px 0 0;
    max-width: 56ch;
    color: var(--muted-ink);
    line-height: 1.75;
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-mini-proof {
    margin-top: 18px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hero-mini-proof span,
.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    color: var(--muted-ink);
    font-size: 13px;
}

.meta-pill {
    border-radius: 16px;
    justify-content: space-between;
    width: 100%;
}

.meta-pill strong {
    color: var(--ink);
}

.hero-panel {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
}

.hero-panel h3 {
    margin: 2px 0 12px;
    font-size: 14px;
}

.hero-panel-card {
    margin-top: 12px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.84);
}

.hero-panel-card p {
    margin: 0 0 6px;
    color: var(--muted-ink);
    font-size: 12px;
}

.hero-panel-card strong {
    font-size: 14px;
}

.hero-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.hero-panel li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 11px;
    border-radius: 12px;
    border: 1px solid var(--line);
    color: var(--muted-ink);
}

.hero-panel strong {
    color: var(--ink);
    font-weight: 800;
}

.premium-section {
    padding: 26px;
}

.section-headline h2 {
    margin: 0;
    font-size: clamp(22px, 3.2vw, 34px);
    max-width: 28ch;
}

.experience-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.exp-card {
    border-radius: 18px;
    border: 1px solid var(--line);
    padding: 18px;
    background: rgba(255, 255, 255, 0.72);
}

.exp-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.exp-card p {
    margin: 0;
    color: var(--muted-ink);
    line-height: 1.7;
}

.solution-timeline {
    margin-top: 16px;
    display: grid;
    gap: 11px;
}

.case-study-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
}

.case-study-copy,
.case-study-card,
.slider-card {
    padding: 22px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
}

.case-study-copy h3,
.slider-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

.case-study-copy p,
.slider-card p {
    color: var(--muted-ink);
    line-height: 1.8;
}

.case-study-card {
    display: grid;
    gap: 12px;
}

.case-study-stat {
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
}

.case-study-stat span {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--teal);
}

.case-study-stat small {
    display: block;
    margin-top: 6px;
    color: var(--muted-ink);
    line-height: 1.6;
}

.solution-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.7);
}

.solution-item>span {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    color: #fff;
    font-weight: 800;
}

.solution-item h3 {
    margin: 0;
    font-size: 18px;
}

.solution-item p {
    margin: 8px 0 0;
    color: var(--muted-ink);
    line-height: 1.7;
}

.process-lane {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.process-step {
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.74);
    padding: 16px;
    display: grid;
    gap: 8px;
}

.process-step b {
    font-size: 18px;
}

.process-step small {
    color: var(--muted-ink);
    line-height: 1.6;
    font-size: 14px;
}

.premium-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 26px;
    background:
        radial-gradient(500px 240px at 85% 20%, rgba(14, 165, 166, 0.16), transparent 75%),
        radial-gradient(400px 220px at 5% 95%, rgba(217, 119, 6, 0.14), transparent 70%),
        rgba(255, 255, 255, 0.82);
}

.contact-left h2 {
    margin: 0;
    font-size: clamp(24px, 3.5vw, 38px);
    max-width: 18ch;
}

.contact-left p {
    color: var(--muted-ink);
    line-height: 1.7;
}

.contact-meta-grid {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.contact-right {
    display: grid;
    gap: 10px;
}

.contact-row {
    text-decoration: none;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.84);
    display: grid;
    gap: 5px;
    transition: transform .2s ease, border-color .2s ease;
}

.contact-row span {
    color: var(--muted-ink);
    font-size: 13px;
}

.contact-row strong {
    font-size: 16px;
}

.contact-row:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 118, 110, 0.34);
}

.map-section {
    overflow: hidden;
}

.map-layout {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 16px;
    align-items: stretch;
}

.map-copy {
    display: grid;
    align-content: start;
    gap: 12px;
}

.map-copy h3 {
    margin: 0;
    font-size: 24px;
}

.map-copy p {
    margin: 0;
    color: var(--muted-ink);
    line-height: 1.75;
}

.map-frame-wrap {
    min-height: 360px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.74);
}

.map-frame-inline {
    margin-top: 16px;
    min-height: 260px;
}

.map-frame-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    color: var(--muted-ink);
    font-size: 13px;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--teal);
}

.footer-shell {
    display: grid;
    gap: 14px;
    padding: 8px 0 28px;
}

.footer-lux-band {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
    padding: 24px;
    border-radius: 26px;
    border: 1px solid rgba(16, 34, 47, 0.10);
    background:
        radial-gradient(420px 180px at 8% 15%, rgba(14, 165, 166, 0.14), transparent 75%),
        radial-gradient(360px 180px at 92% 10%, rgba(217, 119, 6, 0.12), transparent 75%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 253, 0.92));
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.footer-lux-band h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    max-width: 20ch;
}

.footer-lux-stats {
    display: grid;
    gap: 10px;
}

.footer-lux-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(16, 34, 47, 0.08);
    background: rgba(255, 255, 255, 0.76);
}

.footer-lux-stat span,
.footer-icon-chip,
.card-icon-chip,
.faq-summary-icon,
.section-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    color: #fff;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(14, 165, 166, 0.18);
}

.footer-lux-stat span {
    width: 36px;
    height: 36px;
    font-size: 12px;
}

.footer-lux-stat strong {
    font-size: 14px;
}

.footer-grid,
.footer-bottom-bar {
    border: 1px solid rgba(16, 34, 47, 0.10);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 253, 0.94));
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.7fr 0.7fr 0.95fr 1fr;
    gap: 18px;
    padding: 24px;
}

.minimal-footer-grid {
    align-items: start;
}

.footer-brand-column,
.footer-column {
    display: grid;
    align-content: start;
    gap: 12px;
}

.footer-brand-lockup {
    align-items: start;
}

.footer-brand-column p {
    margin: 0;
    color: #5a7080;
    line-height: 1.8;
}

.footer-signature-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(16, 34, 47, 0.08);
    background: rgba(255, 255, 255, 0.80);
}

.footer-signature-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

.footer-signature-card p {
    font-size: 13px;
    line-height: 1.7;
}

.footer-icon-chip {
    width: 38px;
    height: 38px;
    font-size: 12px;
    letter-spacing: 0.08em;
}

.footer-column h3 {
    margin: 0;
    font-size: 16px;
}

.footer-links-column {
    display: grid;
    gap: 10px;
}

.footer-links-column a {
    line-height: 1.5;
}

.footer-proof-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-proof-row span {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(16, 34, 47, 0.08);
    background: #f7fafb;
    color: #5a7080;
    font-size: 12px;
    font-weight: 700;
}

.footer-contact-cards {
    display: grid;
    gap: 10px;
}

.footer-contact-card {
    text-decoration: none;
    color: var(--ink);
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(16, 34, 47, 0.10);
    background: #fbfcfd;
}

.footer-contact-card span {
    color: var(--muted-ink);
    font-size: 12px;
}

.footer-contact-card strong {
    font-size: 15px;
}

.footer-service-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.90), rgba(244, 250, 251, 0.88));
}

.static-footer-card {
    cursor: default;
}

.footer-contact-column {
    align-content: start;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 14px 18px;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom-links .muted {
    margin-right: 4px;
}

.footer-bottom-links a {
    text-decoration: none;
    color: #4f6372;
    font-weight: 600;
}

.footer-bottom-links a:hover {
    color: #10222f;
}

.footer {
    margin-top: 34px;
}

.subpage-shell {
    display: grid;
    gap: 18px;
}

.subpage-hero,
.content-card,
.narrative-band,
.feature-card-xl,
.contact-panel,
.form-panel,
.success-panel {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    /* Solid-ish for B2B reliability and perf */
    backdrop-filter: blur(4px);
    /* Minimal blur */
    box-shadow: var(--shadow);
}

.subpage-hero {
    padding: 28px;
}

.enhanced-subpage-hero {
    overflow: hidden;
    background:
        radial-gradient(520px 240px at 92% 8%, rgba(14, 165, 166, 0.12), transparent 72%),
        radial-gradient(380px 220px at 0% 100%, rgba(217, 119, 6, 0.10), transparent 72%),
        var(--glass);
}

.subpage-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
    align-items: start;
}

.hero-side-panel {
    padding: 18px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.06);
}

.hero-side-panel h2 {
    margin: 0 0 12px;
    font-size: 24px;
}

.hero-stat-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.hero-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
}

.hero-stat-pill span {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.hero-stat-pill strong {
    font-size: 13px;
}

.page-icon-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.section-icon-badge {
    width: 36px;
    height: 36px;
    font-size: 12px;
    letter-spacing: 0.06em;
}

.section-icon-label {
    color: var(--muted-ink);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.policy-grid {
    margin-top: 0;
}

.policy-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
    color: var(--muted-ink);
    line-height: 1.7;
}

.policy-note {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    display: grid;
    gap: 6px;
}

.policy-note strong {
    color: var(--ink);
}

.modern-narrative-band {
    background:
        radial-gradient(420px 180px at 100% 10%, rgba(14, 165, 166, 0.14), transparent 75%),
        rgba(255, 255, 255, 0.82);
}

.faq-shell {
    display: grid;
    gap: 12px;
}

.faq-shell details {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    padding: 16px 18px;
    transition: border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.faq-shell summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--ink);
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-shell summary::-webkit-details-marker {
    display: none;
}

.faq-body {
    margin-top: 12px;
    color: var(--muted-ink);
    line-height: 1.75;
}

.faq-summary-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    font-size: 11px;
}

.faq-shell details[open] {
    border-color: rgba(14, 165, 166, 0.22);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.faq-shell details[open] .faq-summary-icon {
    animation: faqPulse .42s ease;
}

.subpage-hero h1,
.success-panel h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 46px);
    max-width: 16ch;
}

.content-grid,
.feature-catalog {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.pricing-card,
.table-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--glass);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow);
}

.pricing-card.is-selected {
    border-color: rgba(15, 118, 110, 0.4);
    box-shadow: 0 18px 45px rgba(15, 118, 110, 0.14);
}

.pricing-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: start;
}

.pricing-top h2,
.table-card h2 {
    margin: 0;
    font-size: 22px;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(14, 165, 166, 0.18));
    color: var(--teal);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid rgba(15, 118, 110, 0.12);
}

.pricing-card p {
    color: var(--muted-ink);
    line-height: 1.75;
}

.modern-motion-card {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.modern-motion-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.58) 18%, transparent 36%);
    transform: translateX(-140%);
    transition: transform .8s ease;
    pointer-events: none;
}

.modern-motion-card:hover {
    border-color: rgba(14, 165, 166, 0.22);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
}

.modern-motion-card:hover::before {
    transform: translateX(140%);
}

.premium-hero .hero-content,
.premium-hero .hero-panel,
.premium-section>*,
.premium-contact>* {
    position: relative;
    z-index: 1;
}

.pricing-list {
    margin: 14px 0 0;
    padding-left: 18px;
    color: var(--muted-ink);
    display: grid;
    gap: 8px;
}

.pricing-grid-portal {
    margin-bottom: 2px;
}

.auth-shell {
    display: grid;
    justify-items: center;
}

.auth-panel {
    width: min(100%, 560px);
}

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

.admin-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 18px;
}

.compact-success h2 {
    margin: 0;
}

.table-wrap {
    overflow-x: auto;
    margin-top: 14px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.data-table th,
.data-table td {
    text-align: left;
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.data-table th {
    color: var(--muted-ink);
    font-size: 13px;
    font-weight: 700;
}

.data-table td span {
    color: var(--muted-ink);
    font-size: 13px;
}

.timeline-list {
    display: grid;
    gap: 14px;
    margin-top: 14px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: start;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    margin-top: 6px;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    box-shadow: 0 0 0 6px rgba(14, 165, 166, 0.12);
}

.timeline-item p {
    margin: 6px 0;
    color: var(--muted-ink);
    line-height: 1.7;
}

.timeline-item small {
    color: var(--muted-ink);
}

.content-card,
.feature-card-xl {
    padding: 20px;
}

.card-icon-chip {
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
    font-size: 11px;
}

.content-card h2,
.feature-card-xl h2,
.contact-panel h2 {
    margin: 0 0 10px;
    font-size: 20px;
}

.content-card p,
.feature-card-xl p,
.contact-panel p,
.narrative-band p,
.success-panel p {
    margin: 0;
    color: var(--muted-ink);
    line-height: 1.75;
}

.narrative-band {
    padding: 24px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 20px;
}

.narrative-band h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 18px;
}

.contact-panel,
.form-panel,
.success-panel {
    padding: 24px;
}

.contact-stack {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.static-row {
    cursor: default;
}

.static-row:hover {
    transform: none;
}

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

.field-group {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.field-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}

.text-input,
.text-area {
    width: 100%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.84);
    border-radius: 14px;
    padding: 13px 14px;
    font: inherit;
    color: var(--ink);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.text-input:focus,
.text-area:focus {
    border-color: rgba(15, 118, 110, 0.45);
    box-shadow: 0 0 0 4px rgba(14, 165, 166, 0.10);
}

.text-area {
    min-height: 160px;
    resize: vertical;
}

.field-group-full {
    margin-bottom: 16px;
}

.submit-btn {
    min-width: 160px;
}

.field-error,
.validation-summary {
    color: #b42318;
    font-size: 13px;
}

.validation-summary ul {
    margin: 0;
    padding-left: 18px;
}

.success-panel {
    padding: 32px;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease-out, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal[data-reveal-delay="1"] {
    transition-delay: .05s;
}

.reveal[data-reveal-delay="2"] {
    transition-delay: .1s;
}

.reveal[data-reveal-delay="3"] {
    transition-delay: .15s;
}

.cinematic-hero .hero-orb {
    animation: floatOrb 9s ease-in-out infinite;
}

.cinematic-hero .orb-two {
    animation-delay: -2.2s;
}

@keyframes pulseLoader {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.06);
        opacity: .82;
    }
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(0, -18px, 0) scale(1.05);
    }
}

@keyframes auroraShift {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: .95;
    }

    50% {
        transform: translate3d(0, -4px, 0) scale(1.02);
        opacity: 1;
    }
}

@keyframes spotlightDrift {

    0%,
    100% {
        opacity: .62;
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        opacity: .88;
        transform: translate3d(0, -2px, 0) scale(1.04);
    }
}

@keyframes livePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(14, 165, 166, 0.30);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(14, 165, 166, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(14, 165, 166, 0);
    }
}

@keyframes faqPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 980px) {

    .footer-lux-band,
    .footer-bottom-bar,
    .footer-grid,
    .premium-header-card {
        grid-template-columns: 1fr;
    }

    .header-utility-row,
    .header-main-row {
        grid-template-columns: 1fr;
    }

    .premium-hero,
    .premium-contact,
    .process-lane,
    .experience-grid,
    .content-grid,
    .subpage-hero-grid,
    .feature-catalog,
    .pricing-grid,
    .case-study-grid,
    .contact-layout,
    .narrative-band,
    .map-layout,
    .admin-grid,
    .portal-kpi-grid {
        grid-template-columns: 1fr;
    }

    .premium-hero,
    .premium-section,
    .premium-contact,
    .subpage-hero,
    .contact-panel,
    .form-panel,
    .success-panel,
    .narrative-band {
        padding: 20px;
    }

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

    .header-nav-zone {
        position: relative;
        gap: 14px;
        justify-items: stretch;
    }

    .header-live-strip {
        width: 100%;
    }

    .header-utility-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .header-signature {
        max-width: none;
    }

    .nav-toggle {
        display: inline-flex;
        justify-self: start;
    }

    .premium-nav,
    .premium-actions {
        display: none;
        width: 100%;
    }

    .header-nav-zone.is-open .premium-nav,
    .header-nav-zone.is-open .premium-actions {
        display: flex;
    }

    .header-nav-zone.is-open .premium-nav {
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: 18px;
        border: 1px solid rgba(16, 34, 47, 0.08);
        background: rgba(249, 251, 252, 0.95);
    }

    .header-nav-zone.is-open .premium-nav a {
        width: 100%;
        justify-content: space-between;
    }

    .header-nav-zone.is-open .premium-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .topbar-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

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

    .premium-nav,
    .premium-actions {
        justify-content: flex-start;
        justify-items: start;
    }

    .slider-headline {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-text-wrap small {
        display: none;
    }

    .header-signature {
        max-width: none;
    }

    .header-proof-pills {
        gap: 6px;
    }
}