* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Times New Roman", Times, serif;
}

:root {
    --primary: #0076a3;
    --primary-rgb: 0, 118, 163;
    --cyan-accent: #0ea5e9;
    --dark-slate: #0f172a;
    --body-text: #334155;
    --glass-base: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.7);
}

body {
    overflow-x: hidden;
    background-color: #f8fafc;
}

/* --- Hero Frame --- */
.kinetic-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    overflow: hidden;
}

/* --- Cinema Slider with Ken Burns Scale Inversion --- */
.cinema-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cinema-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.15) rotate(1deg);
    transition: opacity 2.5s ease-in-out, transform 8s cubic-bezier(0.25, 1, 0.5, 1);
}

.cinema-slider .slide.active {
    opacity: 1;
    transform: scale(1.03) rotate(0deg);
}

/* --- High-Motion Ambient Layer --- */
.atmosphere-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Fluid Plasma Blob Orbs */
.plasma-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.45;
    animation: dynamicFluidMovement 20s infinite alternate ease-in-out;
}

.orb-alpha {
    width: 450px;
    height: 450px;
    background: linear-gradient(45deg, rgba(0, 118, 163, 0.3), rgba(14, 165, 233, 0.2));
    top: -10%;
    left: 5%;
}

.orb-beta {
    width: 550px;
    height: 550px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.25), rgba(0, 118, 163, 0.1));
    bottom: -15%;
    right: 5%;
    animation-delay: -7s;
}

/* Micro-Particles Floating on Scroll/Mouse Parallax */
.float-item {
    position: absolute;
    background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(14, 165, 233, 0.25));
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    border-radius: 35% 65% 70% 30% / 30% 40% 60% 70%; /* Organic morphing shapes */
    animation: fluidMorphing 10s infinite alternate ease-in-out;
}

.particle-sm { width: 45px; height: 45px; top: 20%; left: 12%; animation-duration: 7s; }
.particle-md { width: 80px; height: 80px; top: 65%; left: 42%; animation-duration: 12s; }
.particle-lg { width: 110px; height: 110px; top: 15%; right: 15%; animation-duration: 16s; }

/* --- Structural UI Grid --- */
.hero-grid {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1240px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

/* Top Badge Live Status */
.live-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--glass-base);
    border: 1px solid var(--glass-border);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.03);
    backdrop-filter: blur(12px);
    margin-bottom: 24px;
}

.pulsing-core {
    width: 10px;
    height: 10px;
    background: var(--cyan-accent);
    border-radius: 50%;
    position: relative;
}

.pulsing-core::after {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border-radius: 50%;
    border: 2px solid var(--cyan-accent);
    animation: coreWaves 1.8s infinite ease-out;
}

/* Main Interactive Typography */
.kinetic-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--cyan-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    color: white;
}

.text-glow::after {
    content: '';
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--cyan-accent));
    filter: blur(25px);
    opacity: 0.25;
    z-index: -1;
}

.fluid-lead {
    font-size: 1.15rem;
    color: white;
    line-height: 1.7;
    margin: 28px 0;
    max-width: 540px;
}

/* Kinetic Pill Chains */
.stagger-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 44px;
}

.k-pill {
    background: var(--glass-base);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    padding: 12px 22px;
    border-radius: 18px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-slate);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-active .k-pill {
    transform: translateY(0);
    opacity: 1;
    transition-delay: calc(var(--order) * 150ms);
}

.icon-pulse {
    color: var(--primary);
    animation: iconBounce 2.5s infinite ease-in-out;
}

/* --- Magnetic Action Button --- */
.magnetic-wrap {
    display: inline-block;
    position: relative;
}

.magnetic-btn {
    position: relative;
    background: var(--primary);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 30px rgba(0, 118, 163, 0.3);
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}

.magnetic-btn:hover {
    box-shadow: 0 18px 40px rgba(0, 118, 163, 0.45);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.icon-slide {
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.magnetic-btn:hover .icon-slide {
    transform: translateX(6px) scale(1.1);
}

/* --- Right Column Graphic Block --- */
.matrix-card-frame {
    position: relative;
    display: flex;
    justify-content: center;
}

.glass-underlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 40px;
    transform: scale(0.95) translate(-15px, 15px);
    filter: blur(10px);
    z-index: -1;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.interactive-viewport {
    position: relative;
    border-radius: 36px;
    padding: 12px;
    background: var(--glass-base);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.fluid-parallax-img {
    width: 100%;
    max-width: 380px;
    height: 490px;
    object-fit: cover;
    border-radius: 26px;
    display: block;
    transition: transform 0.2s ease-out;
}

/* Linear scanning shine effect overlay */
.glass-sheen {
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: scanningShine 5s infinite linear;
}

/* Floating Status Radar Badge */
.floating-stat-badge {
    position: absolute;
    bottom: 50px;
    left: -35px;
    background: #ffffff;
    padding: 18px 26px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
}

.radar-signal {
    width: 48px;
    height: 48px;
    background: #f0fdf4;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    position: relative;
}

.radar-signal .wave {
    position: absolute;
    width: 100%; height: 100%;
    border: 2px solid #16a34a;
    border-radius: 50%;
    animation: radarPulse 2s infinite linear;
}

.stat-meta h3 { font-size: 1.6rem; color: var(--dark-slate); font-weight: 800; }
.stat-meta p { font-size: 0.85rem; color: var(--body-text); font-weight: 500; }

/* --- Complex Kinetic Animations Keyframes --- */
@keyframes coreWaves {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
}

@keyframes dynamicFluidMovement {
    0% { transform: scale(1) translate(0px, 0px) rotate(0deg); }
    50% { transform: scale(1.12) translate(40px, -30px) rotate(180deg); }
    100% { transform: scale(1) translate(-20px, 20px) rotate(360deg); }
}

@keyframes fluidMorphing {
    0% { border-radius: 35% 65% 70% 30% / 30% 40% 60% 70%; }
    100% { border-radius: 60% 40% 45% 55% / 50% 60% 40% 50%; }
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-4px) scale(1.08); }
}

@keyframes scanningShine {
    0% { left: -100%; }
    30%, 100% { left: 150%; }
}

@keyframes radarPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

.float-anim {
    animation: floatingFloat 4s infinite ease-in-out;
}
@keyframes floatingFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* --- Reveal System Entrance --- */
.reveal-left, .reveal-right {
    opacity: 0;
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.4s ease-out;
}
.reveal-left { transform: translateX(-80px); }
.reveal-right { transform: translateX(80px); }
.reveal-active { opacity: 1; transform: translate(0, 0); }

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 60px; }
    .kinetic-title { font-size: 2.8rem; }
    .fluid-lead { margin-inline: auto; }
    .stagger-pills { justify-content: center; }
    .floating-stat-badge { left: 50%; transform: translateX(-50%); bottom: -25px; }
}


/* Section 1 Starts */


/* --- Section Container Layout --- */
.mv-section {
    position: relative;
    width: 100%;
    padding: 120px 24px;
    background-color: #fcfdfe;
    overflow: hidden;
}

/* --- Soft Glow Background Atmosphere --- */
.mv-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 1;
}

.orb-left {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #0076a3, rgba(0, 118, 163, 0));
    top: 10%;
    left: -10%;
}

.orb-right {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #0ea5e9, rgba(14, 165, 233, 0));
    bottom: 5%;
    right: -10%;
}

.mv-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* --- Section Header Styling --- */
.mv-header {
    text-align: center;
    margin-bottom: 70px;
}

.mv-tag {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0076a3;
    display: inline-block;
    margin-bottom: 12px;
}

.mv-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.mv-gradient-text {
    background: linear-gradient(135deg, #0076a3, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mv-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0076a3, #0ea5e9);
    border-radius: 10px;
    margin: 20px auto 0 auto;
}

/* --- Glassmorphic UI Cards Grid --- */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mv-card {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.04);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.2s ease-out;
}

.mv-card:hover {
    border-color: rgba(0, 118, 163, 0.25);
    box-shadow: 0 40px 80px rgba(0, 118, 163, 0.08);
}

/* Hover-tracking interactive radial glow spotlight */
.mv-card-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(800px circle at var(--x, 0px) var(--y, 0px), rgba(14, 165, 233, 0.07), transparent 45%);
    border-radius: 31px;
    pointer-events: none;
}

/* Card Micro-Graphics */
.mv-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 118, 163, 0.1), rgba(0, 118, 163, 0.02));
    border: 1px solid rgba(0, 118, 163, 0.15);
    color: #0076a3;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 32px;
    transform: translateZ(30px); /* 3D layer depth separation */
}

.vision-icon {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(14, 165, 233, 0.02));
    border-color: rgba(14, 165, 233, 0.15);
    color: #0ea5e9;
}

.mv-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
    transform: translateZ(25px);
}

.mv-card-text {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 35px;
    transform: translateZ(20px);
}

.mv-card-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    padding: 6px 14px;
    border-radius: 100px;
    transform: translateZ(15px);
}

.mv-dot {
    width: 6px;
    height: 6px;
    background-color: #0076a3;
    border-radius: 50%;
}
.dot-cyan { background-color: #0ea5e9; }

/* --- Scroll Reveal Animations CSS Hooks --- */
.mv-reveal-up, .mv-reveal-left, .mv-reveal-right {
    opacity: 0;
    will-change: transform, opacity;
    transition: transform 1.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.3s ease-out;
}

.mv-reveal-up { transform: translateY(60px); }
.mv-reveal-left { transform: translateX(-70px); }
.mv-reveal-right { transform: translateX(70px); }

/* Animation trigger class applied by JavaScript */
.mv-active {
    opacity: 1;
    transform: translate(0, 0) !important;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .mv-grid { grid-template-columns: 1fr; gap: 30px; }
    .mv-title { font-size: 2.3rem; }
    .mv-card { padding: 40px 30px; }
}
/* Section 1 Ends */


/* Section 2 Starts */

/* --- Section Architecture --- */
.wcu-section {
    position: relative;
    width: 100%;
    padding: 120px 24px;
    background-color: #f8fafc; /* Crisp slight off-white contrast against section two */
    overflow: hidden;
}

.wcu-ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 118, 163, 0.05), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.wcu-container {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* --- Section Header Layout --- */
.wcu-header {
    text-align: center;
    margin-bottom: 80px;
}

.wcu-tag {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #0076a3;
    display: inline-block;
    margin-bottom: 12px;
}

.wcu-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.wcu-gradient-text {
    background: linear-gradient(135deg, #0076a3, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wcu-line-accent {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #0076a3, #0ea5e9);
    border-radius: 20px;
    margin: 22px auto 0 auto;
}

/* --- Responsive Layout Grid --- */
.wcu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- High-End Advantage Cards --- */
.wcu-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.01);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                border-color 0.4s ease;
}

.wcu-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 118, 163, 0.2);
    box-shadow: 0 25px 50px rgba(0, 118, 163, 0.06);
}

/* --- Interactive Asset Icons --- */
.wcu-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(0, 118, 163, 0.06);
    color: #0076a3;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 28px;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.icon-ring {
    position: absolute;
    top: -4px; left: -4px; right: -4px; bottom: -4px;
    border: 1px dashed rgba(0, 118, 163, 0.2);
    border-radius: 20px;
    transition: transform 0.6s ease;
}

.wcu-card:hover .wcu-icon-wrapper {
    background: linear-gradient(135deg, #0076a3, #0ea5e9);
    color: #ffffff;
    transform: scale(1.05);
}

.wcu-card:hover .icon-ring {
    transform: rotate(90deg) scale(1.1);
    border-color: #0ea5e9;
}

/* Typography elements */
.wcu-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
    line-height: 1.35;
}

.wcu-card-desc {
    font-size: 0.98rem;
    color: #64748b;
    line-height: 1.65;
}

/* --- Staggered Scroll Reveal Animations Framework --- */
.wcu-reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease-out;
}

.wcu-reveal-card {
    opacity: 0;
    transform: translateY(60px) scale(0.96);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease-out;
}

/* Applied dynamically by standard trigger logic script */
.wcu-active {
    opacity: 1;
    transform: translateY(0) scale(1) !important;
}

/* Custom mathematical delay matrix mapping to standard variable arrays */
.wcu-grid.wcu-active-grid .wcu-reveal-card {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: calc(var(--card-index) * 100ms);
}

/* --- Responsive Adaptation Layers --- */
@media (max-width: 1024px) {
    .wcu-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .wcu-title { font-size: 2.3rem; }
}

@media (max-width: 768px) {
    .wcu-grid { grid-template-columns: 1fr; }
    .wcu-card { padding: 32px 24px; }
}
/* Section 2 Ends */


/* Section 3 Starts */


/* --- Global / Body Safeguards (Ensures Sticky Positions Can Calculate Viewport Heights) --- */
html, body {
    overflow-x: clip !important; /* Safer alternative to overflow-x: hidden */
    overflow-y: visible !important;
}

/* --- Master Section Container --- */
.explorer-section {
    position: relative;
    width: 100%;
    padding: 140px 24px;
    background-color: #ffffff;
    overflow: visible !important; /* CRITICAL: 'hidden' or 'auto' here completely breaks position: sticky */
}

/* --- Dual Column Layout Matrix --- */
.explorer-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    /* FORCES both the left runway and the right timeline to have identical matching height boundaries */
    align-items: stretch !important; 
}

/* --- Left Column: The Pinned Tracking Runway --- */
.explorer-left {
    position: relative !important;
    height: 100% !important; /* Forces this column to stretch all the way down alongside Stage 06 */
    display: block;
    overflow: visible !important;
}

/* --- Left Side Content: The Box That Actually Locks Onto Your Screen --- */
.sticky-panel-box {
    position: -webkit-sticky !important; /* Safari Browser Engine Support */
    position: sticky !important;         /* Modern Browser Support */
    top: 100px !important;                /* Distance from the top of the browser screen when pinned */
    height: fit-content !important;       /* Prevents the text box from stretching, allowing it to slide down its track */
    z-index: 100;
}

/* --- Text Typography & Design Styling --- */
.exp-tag {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #0076a3;
    display: block;
    margin-bottom: 16px;
}

.exp-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 24px;
}

.exp-gradient-text {
    background: linear-gradient(135deg, #0076a3, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.exp-lead {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Progress Indicator Bar Engine */
.step-progress-track {
    position: relative;
    width: 100%;
    height: 6px;
    background: #f1f5f9;
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden;
}

.step-progress-bar {
    position: absolute;
    top: 0; left: 0; height: 100%; width: 0%;
    background: linear-gradient(90deg, #0076a3, #0ea5e9);
    border-radius: 10px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.exp-footer-notice {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f8fafc;
    border-left: 4px solid #0ea5e9;
    padding: 16px 20px;
    border-radius: 0 16px 16px 0;
}

.exp-footer-notice i {
    font-size: 1.2rem;
    color: #0ea5e9;
}

.exp-footer-notice span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.4;
}

/* --- Right Side Column: Scrollable Timeline Stream --- */
.explorer-right {
    position: relative;
    padding-left: 30px;
    border-left: 2px dashed #e2e8f0;
    height: auto;
}

.step-row {
    position: relative;
    padding-bottom: 50px;
    transition: transform 0.4s ease;
}

.step-row:last-child {
    padding-bottom: 0;
}

/* Timeline Connection Node Bubbles */
.step-indicator-node {
    position: absolute;
    top: 4px;
    left: -42px;
    width: 22px;
    height: 22px;
    background: #ffffff;
    border: 3px solid #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.4s ease;
}

.node-dot {
    width: 6px;
    height: 6px;
    background: transparent;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
}

/* Step Card UI Wrappers */
.step-body-content {
    background: #ffffff;
    border: 1px solid transparent;
    padding: 24px 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.step-header-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.step-num-lbl {
    font-size: 0.75rem;
    font-weight: 800;
    color: #64748b;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.step-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    transition: color 0.3s ease;
}

.step-desc {
    font-size: 0.98rem;
    color: #64748b;
    line-height: 1.65;
}

/* --- Dynamic Active Scroll Intersection States --- */
.step-row.row-active .step-indicator-node {
    border-color: #0076a3;
    background: #0076a3;
    box-shadow: 0 0 0 6px rgba(0, 118, 163, 0.15);
    transform: scale(1.1);
}

.step-row.row-active .node-dot {
    background: #ffffff;
}

.step-row.row-active .step-body-content {
    background: #f8fafc;
    border-color: #e2e8f0;
    transform: translateX(10px);
}

.step-row.row-active .step-num-lbl {
    background: #0076a3;
    color: #ffffff;
}

.step-row.row-active .step-heading {
    color: #0076a3;
}

/* --- Scroll Reveal Structural Hooks --- */
.exp-reveal-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s ease-out;
}

.exp-reveal-row {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.exp-active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Mobile Breakpoints Adaptive Layer --- */
@media (max-width: 992px) {
    .explorer-container { 
        grid-template-columns: 1fr; 
        gap: 50px; 
    }
    .sticky-panel-box { 
        position: relative !important; 
        top: 0 !important; 
    }
    .exp-title { 
        font-size: 2.5rem; 
    }
    .explorer-right { 
        border-left: none; 
        padding-left: 0; 
    }
    .step-indicator-node { 
        display: none; 
    }
    .step-row.row-active .step-body-content { 
        transform: none; 
    }
}
/* Section 3 Ends */


/* Section 4 Starts */

/* --- Section Layout Container --- */
.services-horizon-section {
    position: relative;
    width: 100%;
    padding: 120px 24px;
    background-color: #f8fafc;
    overflow: hidden;
}

.services-horizon-container {
    max-width: 1340px;
    margin: 0 auto;
}

/* --- Section Header Layout --- */
.services-horizon-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.srv-tag {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #0076a3;
    display: block;
    margin-bottom: 12px;
}

.srv-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 16px;
}

.srv-gradient-text {
    background: linear-gradient(135deg, #0076a3, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.srv-lead {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.65;
}

.srv-accent-bar {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0076a3, #0ea5e9);
    border-radius: 10px;
    margin: 22px auto 0 auto;
}

/* --- Horizon Flex Accordion Main Wrapper --- */
.services-flex-accordion {
    display: flex;
    gap: 16px;
    width: 100%;
    height: 560px; /* Enhanced height clearance */
    margin: 0 auto;
    overflow: hidden;
}

/* --- Base Flex Card Structural Rules --- */
.srv-flex-card {
    position: relative;
    flex: 1; /* Balanced distribution for collapsed cards */
    height: 100%;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 30px 20px;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers items vertically when collapsed */
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                background-color 0.4s ease, 
                border-color 0.4s ease, 
                box-shadow 0.4s ease;
}

.srv-card-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(15, 23, 42, 0.02));
    z-index: 1;
    transition: opacity 0.4s ease;
}

/* --- Dynamic Active Expanded Card Scaling --- */
.srv-flex-card.active {
    flex: 4; /* Gives the expanded card plenty of breathing room */
    background-color: #ffffff;
    border-color: rgba(0, 118, 163, 0.2);
    box-shadow: 0 30px 60px rgba(0, 118, 163, 0.05);
    align-items: flex-start; /* Resets to traditional layout alignment when active */
}

.srv-flex-card.active .srv-card-bg-overlay {
    background: linear-gradient(135deg, rgba(0, 118, 163, 0.02), rgba(14, 165, 233, 0.04));
}

/* --- Inner Core Text Content Frame --- */
.srv-content-bound {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.srv-flex-card.active .srv-content-bound {
    align-items: flex-start;
    justify-content: flex-end;
}

/* --- Micro Asset Icon Badges --- */
.srv-icon-badge {
    width: 54px;
    height: 54px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all 0.4s ease;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.srv-flex-card.active .srv-icon-badge {
    background: linear-gradient(135deg, #0076a3, #0ea5e9);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 118, 163, 0.15);
    margin-bottom: auto; /* Pushes icon back to top edge when expanded */
}

/* --- FIX: Perfect Vertical Text Alignment Mechanics --- */
.srv-card-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #475569;
    text-align: center;
    white-space: nowrap;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    
    /* Native vertical formatting engine rules */
    writing-mode: vertical-lr;
    transform: rotate(180deg); 
    margin-top: auto;
    margin-bottom: auto;
}

/* Instant transformation layout reset upon active expansion state */
.srv-flex-card.active .srv-card-name {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1.45rem;
    color: #0076a3;
    text-align: left;
    margin-top: 0;
    margin-bottom: 14px;
}

/* --- Description Text Reveal Subsystem --- */
.srv-card-summary {
    font-size: 0.98rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 480px;
    opacity: 0;
    max-height: 0;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.1s ease;
    display: none; /* Keeps collapsed nodes cleanly isolated */
    margin-bottom: auto;
}

.srv-flex-card.active .srv-card-summary {
    display: block;
    opacity: 1;
    max-height: 120px;
    transform: translateY(0);
    margin-bottom: 24px;
    transition: opacity 0.5s ease 0.25s, transform 0.5s ease 0.25s;
}

/* --- Action Links Reveal Mechanics --- */
.srv-explore-btn {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0ea5e9;
    display: none;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.srv-flex-card.active .srv-explore-btn {
    display: inline-flex;
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}

/* --- Scroll Entrance Triggers --- */
.srv-reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.srv-reveal-accordion {
    opacity: 0;
    transform: translateY(60px) scale(0.98);
    transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.srv-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}






/* ===========================================
   SERVICE FLEX CARD
=========================================== */

.srv-flex-card{
    position:relative;
    flex:1;
    height:100%;
    background:#fff;
    border:1px solid #dbeafe;
    border-radius:24px;
    padding:30px;
    overflow:hidden;
    cursor:pointer;
    transition:.6s cubic-bezier(.25,1,.5,1);
    display:flex;
}

.srv-flex-card.active{
    flex:4;
    box-shadow:0 20px 50px rgba(0,118,163,.08);
}

/* ===========================================
   BACKGROUND
=========================================== */

.srv-card-bg-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to bottom,
        transparent 30%,
        rgba(0,118,163,.03));
    z-index:1;
}

/* ===========================================
   CONTENT
=========================================== */

.srv-content-bound{
    position:relative;
    z-index:2;
    width:100%;
    height:100%;

    display:flex;
    flex-direction:column;
}

/* Push content to bottom */

.srv-card-content{
    margin-top:auto;
    width:100%;
}

/* ===========================================
   ICON
=========================================== */

.srv-icon-badge{
    width:64px;
    height:64px;
    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(135deg,#0076a3,#1da1f2);
    color:#fff;
    font-size:24px;

    flex-shrink:0;

    box-shadow:0 15px 35px rgba(0,118,163,.15);
}

/* ===========================================
   TITLE
=========================================== */

.srv-card-name{

    writing-mode:vertical-lr;
    transform:rotate(180deg);

    font-size:1.3rem;
    font-weight:700;
    color:#475569;

    margin:auto;

    white-space:nowrap;

    transition:.5s;
}

.srv-flex-card.active .srv-card-name{

    writing-mode:horizontal-tb;
    transform:none;

    margin:0 0 18px;

    font-size:2rem;
    color:#0076a3;

    text-align:left;
}

/* ===========================================
   DESCRIPTION
=========================================== */

.srv-card-summary{

    display:none;

    opacity:0;
    max-height:0;
    overflow:hidden;

    font-size:1rem;
    line-height:1.9;
    color:#64748b;

    transition:.4s;
}

.srv-flex-card.active .srv-card-summary{

    display:block;

    opacity:1;
    max-height:300px;

    margin-bottom:28px;
}

/* ===========================================
   BUTTON
=========================================== */

.srv-explore-btn{

    display:none;

    align-items:center;
    gap:10px;

    color:#0ea5e9;
    text-decoration:none;

    font-size:1rem;
    font-weight:700;

    transition:.3s;
}

.srv-flex-card.active .srv-explore-btn{

    display:inline-flex;
}

.srv-explore-btn:hover{

    gap:16px;
}
/* --- Clean Mobile View Fallbacks --- */
@media (max-width: 1100px) {
    .services-flex-accordion { 
        height: auto; 
        flex-direction: column; 
        gap: 16px; 
    }
    .srv-flex-card { 
        flex: none !important; 
        height: auto; 
        padding: 24px; 
        align-items: flex-start; 
    }
    .srv-content-bound {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 16px;
    }
    .srv-icon-badge {
        margin-bottom: 0 !important;
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
    }
    .srv-card-name, .srv-flex-card.active .srv-card-name { 
        writing-mode: horizontal-tb;
        transform: none;
        margin: 0;
        font-size: 1.25rem;
        color: #0f172a;
        text-align: left;
    }
    .srv-card-summary, .srv-flex-card.active .srv-card-summary { 
        display: block;
        flex-basis: 100%; 
        margin-top: 10px; 
        margin-bottom: 12px !important; 
        max-height: none;
        opacity: 1;
    }
    .srv-explore-btn, .srv-flex-card.active .srv-explore-btn { 
        display: inline-flex;
        width: 100%; 
        opacity: 1;
        transform: none;
    }
}
/* Section 4 Ends */


/* Section 5 Starts */

/* --- Section Structural Framework --- */
.safety-matrix-section {
    position: relative;
    width: 100%;
    padding: 140px 24px;
    background-color: #ffffff;
    overflow: hidden;
}

.safety-matrix-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Asymmetric distribution blueprint */
    gap: 64px;
    align-items: center;
}

/* --- Left Side: Hero Commitment Panel --- */
.safety-hero-panel {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 32px;
    padding: 60px 50px;
    color: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
    overflow: hidden;
}

/* Abstract subtle glowing backdrop effect */
.safety-panel-overlay {
    position: absolute;
    top: -20%; right: -20%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.safety-hero-content {
    position: relative;
    z-index: 2;
}

.sf-tag {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.1);
    padding: 6px 14px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 24px;
}

.sf-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.sf-highlight {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sf-hero-lead {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Modern Sterilization Systems Badge */
.safety-feature-badge {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    border-radius: 20px;
    align-items: flex-start;
}

.sf-badge-icon {
    width: 48px;
    height: 48px;
    background: #0ea5e9;
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.sf-badge-text {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* --- Right Side: Smile Care & Trust Panel --- */
.care-info-panel {
    position: relative;
}

.sf-subtag {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #0076a3;
    display: block;
    margin-bottom: 12px;
}

.sf-panel-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 18px;
}

.sf-panel-lead {
    font-size: 1.02rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Trust Factors Micro-Grid Engine */
.trust-factor-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
}

.trust-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.trust-icon-box {
    width: 44px;
    height: 44px;
    background: #f0fdf4; /* Light clean green tint accentuating wellness */
    color: #16a34a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.trust-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.trust-item p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Regional Footer Anchor Graphic */
.regional-footer-strip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #334155;
    border: 1px solid #f1f5f9;
}

.regional-footer-strip i {
    color: #ef4444; /* Standard Red Pin accentuation */
}

/* --- Scroll Interaction Animations System --- */
.sf-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.sf-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.sf-active {
    opacity: 1;
    transform: translateX(0);
}

/* --- Adaptive Breakpoint Controls --- */
@media (max-width: 992px) {
    .safety-matrix-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .safety-hero-panel {
        padding: 40px 30px;
    }
    .sf-hero-title {
        font-size: 2.2rem;
    }
    .sf-panel-title {
        font-size: 2rem;
    }
}

/* Section 5 Ends */


/* Section 6 Starts */


/* --- Section Structural Framework --- */
.authority-hero-section {
    position: relative;
    width: 100%;
    padding: 130px 24px;
    background-color: #f8fafc; /* Alternating clean canvas tint */
    overflow: hidden;
}

.authority-hero-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 80px;
    align-items: center;
}

/* --- Left Column: Value Proposition --- */
.auth-content-column {
    position: relative;
}

.auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 118, 163, 0.06);
    border: 1px solid rgba(0, 118, 163, 0.1);
    padding: 6px 14px;
    border-radius: 30px;
    color: #0076a3;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.auth-badge i {
    font-size: 0.9rem;
}

.auth-main-title {
    font-size: 3.4rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.auth-gradient-text {
    background: linear-gradient(135deg, #0076a3, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-description {
    font-size: 1.08rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 36px;
}

.auth-trust-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 10px 18px;
    border-radius: 14px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #334155;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.trust-pill i {
    color: #10b981; /* Premium health accent emerald green */
}

/* --- Right Column: Specialization Cloud Matrix --- */
.auth-matrix-column {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 32px;
    padding: 44px 40px;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.04);
}

.matrix-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 28px;
}

.services-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.service-cloud-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 12px 20px;
    border-radius: 16px;
    font-size: 0.94rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-cloud-tag i {
    color: #0ea5e9;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

/* Interactive tag styling */
.service-cloud-tag:hover {
    background: #ffffff;
    color: #0076a3;
    border-color: #0076a3;
    box-shadow: 0 10px 20px rgba(0, 118, 163, 0.06);
    transform: translateY(-2px);
}

.service-cloud-tag:hover i {
    transform: scale(1.15);
}

/* Authority Metric Footer Box */
.auth-metric-card {
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px dashed #e2e8f0;
    padding-top: 28px;
}

.metric-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0076a3;
    line-height: 1;
}

.metric-lbl {
    font-size: 0.92rem;
    font-weight: 600;
    color: #64748b;
    line-height: 1.5;
}

/* --- Scroll Animation Engines --- */
.auth-reveal-left {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-reveal-right {
    opacity: 0;
    transform: translateY(45px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Adaptability Matrix --- */
@media (max-width: 992px) {
    .authority-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .auth-main-title {
        font-size: 2.6rem;
    }
    .auth-matrix-column {
        padding: 32px 24px;
    }
}
/* Section 6 Ends */



/* ==========================================
   Scroll Reveal Animation
========================================== */

/* Left Reveal */
.auth-reveal-left{
    opacity:0;
    transform:translateX(-80px);
    transition:all 1s cubic-bezier(.17,.67,.28,1.02);
}

/* Right Reveal */
.auth-reveal-right{
    opacity:0;
    transform:translateX(80px);
    transition:all 1s cubic-bezier(.17,.67,.28,1.02);
}

/* Active */
.auth-reveal-left.active,
.auth-reveal-right.active{
    opacity:1;
    transform:translateX(0);
}

.counter-number {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.counter-number .percent {
    font-size: 20px;
    font-weight: 600;
    margin-top: 4px;
}