/* ============================================
   IT-GOV.RO — Premium Design System v2.0
   World-class, ultra-modern, high-conversion
   ============================================ */

/* === Design Tokens === */
:root {
    /* Color System — refined with richer depth */
    --navy-950: #1a2744;
    --navy-900: #1e3050;
    --navy-800: #243a60;
    --navy-700: #2d4a78;
    --navy-600: #3a6098;
    --navy-500: #2a5580;
    --navy-400: #3d7ab8;
    --navy-300: #6ba0d6;
    --navy-200: #a3c5e8;
    --navy-100: #d4e4f4;
    --navy-50: #eef4fa;

    --accent-700: #0052a3;
    --accent-600: #0062c4;
    --accent-500: #0073e6;
    --accent-400: #3399ff;
    --accent-300: #66b3ff;
    --accent-200: #b3d9ff;
    --accent-100: #e6f2ff;
    --accent-50: #f0f7ff;
    --accent-glow: rgba(0, 115, 230, 0.15);

    --emerald-600: #059669;
    --emerald-500: #10b981;
    --emerald-400: #34d399;

    --amber-500: #f59e0b;

    --text-primary: #0c1322;
    --text-secondary: #475569;
    --text-tertiary: #94a3b8;
    --text-inverse: #ffffff;
    --text-inverse-muted: rgba(255, 255, 255, 0.65);
    --text-inverse-subtle: rgba(255, 255, 255, 0.4);

    --surface-0: #ffffff;
    --surface-1: #f9fafb;
    --surface-2: #f3f5f8;
    --surface-3: #e5e9f0;
    --border-light: rgba(226, 232, 240, 0.8);
    --border-default: #cbd5e1;
    --border-hover: rgba(0, 115, 230, 0.25);

    /* Typography — tighter scale */
    --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-py: clamp(80px, 10vw, 140px);
    --container: 1200px;
    --px: clamp(20px, 5vw, 48px);

    /* Radius — more consistent */
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-2xl: 28px;
    --radius-full: 9999px;

    /* Shadows — more refined, layered */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.03), 0 8px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.03), 0 12px 36px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 8px 16px rgba(0, 0, 0, 0.04), 0 20px 56px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 12px 24px rgba(0, 0, 0, 0.06), 0 32px 80px rgba(0, 0, 0, 0.12);
    --shadow-accent: 0 4px 16px rgba(0, 115, 230, 0.15), 0 12px 40px rgba(0, 115, 230, 0.15);
    --shadow-glow: 0 0 40px rgba(0, 115, 230, 0.08);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;
    --duration-slower: 700ms;
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-primary);
    background: var(--surface-0);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

::selection {
    background: var(--accent-200);
    color: var(--navy-900);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration-normal) ease;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--px);
}

/* === Scroll Progress Bar === */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-500), var(--accent-400), var(--emerald-400));
    z-index: 10000;
    transform-origin: left;
    transform: scaleX(0);
    transition: none;
}

/* === Navigation === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

.nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border-bottom: 1px solid transparent;
    opacity: 0;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    padding: 10px 0;
}

.nav.scrolled::before {
    opacity: 1;
    border-bottom-color: rgba(226, 232, 240, 0.6);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0;
    font-family: var(--font-display);
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-right: 10px;
    position: relative;
    flex-shrink: 0;
    background: none;
    border-radius: 0;
}

.nav-logo-mark .logo-img {
    width: 42px;
    height: 42px;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 115, 230, 0.25));
    transition: filter var(--duration-normal) ease, transform var(--duration-normal) var(--ease-out);
    object-fit: contain;
    transform: translateY(2px);
}

.nav-logo:hover .logo-img {
    filter: drop-shadow(0 4px 12px rgba(0, 115, 230, 0.35));
    transform: scale(1.06);
}

.nav-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-inverse);
    letter-spacing: -0.02em;
    transition: color 0.4s ease;
}

.nav.scrolled .nav-logo-text {
    color: var(--text-primary);
}

.nav-logo-dot {
    color: var(--accent-500);
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 4px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-inverse-muted);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all var(--duration-normal) ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-inverse);
    background: rgba(255, 255, 255, 0.1);
}

.nav.scrolled .nav-link {
    color: var(--text-secondary);
}

.nav.scrolled .nav-link:hover,
.nav.scrolled .nav-link.active {
    color: var(--accent-500);
    background: var(--accent-50);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-inverse-muted);
    transition: color var(--duration-normal) ease;
}

.nav-phone:hover {
    color: var(--text-inverse);
}

.nav.scrolled .nav-phone {
    color: var(--text-secondary);
}

.nav.scrolled .nav-phone:hover {
    color: var(--accent-500);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: var(--accent-500);
    color: var(--text-inverse);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: 0 2px 8px rgba(0, 115, 230, 0.25), inset 0 1px 0 rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
}

/* Premium button shine effect */
.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transition: left 0.6s ease;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    background: var(--accent-600);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 115, 230, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
}

.nav-cta svg {
    transition: transform var(--duration-normal) var(--ease-out);
}

.nav-cta:hover svg {
    transform: translateX(2px);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text-inverse);
    transition: all 0.3s var(--ease-out);
    border-radius: 2px;
}

.nav.scrolled .nav-hamburger span {
    background: var(--text-primary);
}

.nav-hamburger.active span {
    background: var(--text-inverse) !important;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out);
}

.mobile-menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 50% at 80% 20%, rgba(0, 115, 230, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    text-align: center;
    width: 100%;
    padding: 0 var(--px);
    position: relative;
    z-index: 1;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-link {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(28px, 6vw, 44px);
    font-weight: 600;
    color: var(--text-inverse);
    padding: 12px 0;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s var(--ease-out);
    letter-spacing: -0.02em;
    position: relative;
}

.mobile-menu-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-400);
    transform: translateX(-50%);
    transition: width 0.3s var(--ease-out);
}

.mobile-menu-link:hover::after,
.mobile-menu-link.active::after {
    width: 40px;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    color: var(--accent-400);
}

.mobile-menu.active .mobile-menu-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.active .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-link:nth-child(4) { transition-delay: 0.25s; }

.mobile-menu-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s var(--ease-out) 0.3s;
}

.mobile-menu.active .mobile-menu-footer {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-footer a,
.mobile-menu-footer p {
    display: block;
    font-size: 15px;
    color: var(--text-inverse-muted);
    padding: 4px 0;
    line-height: 1.6;
}

.mobile-menu-footer a:hover {
    color: var(--accent-400);
}

/* === Hero === */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy-900);
    padding: 140px 0 100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(51, 153, 255, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 50%, rgba(51, 153, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 30% 30% at 20% 80%, rgba(52, 211, 153, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 50%, var(--navy-800) 100%);
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 0%, transparent 70%);
}

/* Noise texture overlay for premium depth */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px 128px;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
    will-change: transform;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 115, 230, 0.3), transparent 70%);
    top: -10%;
    right: -5%;
    animation-delay: -5s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent 70%);
    bottom: 10%;
    left: -5%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(20px, -30px); }
    50% { transform: translate(-10px, 20px); }
    75% { transform: translate(15px, 10px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-300);
    margin-bottom: 28px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--emerald-400);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(52, 211, 153, 0.5);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px rgba(52, 211, 153, 0.5); }
    50% { opacity: 0.5; transform: scale(0.8); box-shadow: 0 0 16px rgba(52, 211, 153, 0.3); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 6.5vw, 68px);
    font-weight: 800;
    line-height: 1.05;
    color: var(--text-inverse);
    letter-spacing: -0.035em;
    margin-bottom: 24px;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--accent-400) 0%, var(--accent-300) 40%, var(--emerald-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 400;
    color: var(--text-inverse-muted);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.hero-proof {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-proof-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 12px;
}

.hero-proof-items {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
}

.hero-proof-sep {
    color: rgba(255, 255, 255, 0.12);
}

/* === Buttons — Premium with shine, depth, and spring animations === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    transition: all var(--duration-normal) var(--ease-out);
    cursor: pointer;
    border: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn svg {
    transition: transform var(--duration-normal) var(--ease-out);
    flex-shrink: 0;
}

.btn:hover svg {
    transform: translateX(3px);
}

.btn:active {
    transform: scale(0.97) !important;
}

.btn-primary {
    background: var(--accent-500);
    color: var(--text-inverse);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 115, 230, 0.25), inset 0 1px 0 rgba(255,255,255,0.12);
}

/* Shine sweep on primary buttons */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--accent-600);
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 8px 28px rgba(0, 115, 230, 0.35), inset 0 1px 0 rgba(255,255,255,0.12);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.07);
    color: var(--text-inverse);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-inverse);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.32);
}

.btn-outline {
    background: transparent;
    color: var(--accent-500);
    border: 1.5px solid var(--accent-500);
}

.btn-outline:hover {
    background: var(--accent-50);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 15px;
}

.btn-full {
    width: 100%;
}

.btn-primary-dark {
    background: var(--text-inverse);
    color: var(--navy-900);
}

.btn-primary-dark:hover {
    background: var(--surface-2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* === Stats Section — Floating glass cards === */
.stats {
    position: relative;
    z-index: 10;
    margin-top: -48px;
    padding-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
}

.stat-card {
    background: var(--surface-0);
    padding: 40px 28px;
    text-align: center;
    transition: all var(--duration-normal) ease;
    position: relative;
}

.stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-50) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-card > * {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1;
    letter-spacing: -0.04em;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 700;
    color: var(--accent-500);
}

.stat-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 10px;
}

.stat-desc {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-tertiary);
    margin-top: 2px;
}

/* === Section Styles — Refined spacing and typography === */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-500);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--accent-500);
    border-radius: 1px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.12;
    color: var(--text-primary);
    letter-spacing: -0.035em;
    margin-bottom: 16px;
}

.section-title-light {
    color: var(--text-inverse);
}

.section-subtitle {
    font-size: clamp(15px, 1.5vw, 17px);
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 520px;
}

.section-header {
    margin-bottom: 60px;
}

.section-header-center {
    text-align: center;
}

.section-header-center .section-subtitle {
    margin: 0 auto;
}

.section-header-center .section-label::before {
    display: none;
}

/* === Services Section — Premium cards with depth === */
.services {
    padding: var(--section-py) 0;
    background: var(--surface-1);
    position: relative;
}

/* Subtle top divider */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 48px 44px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all var(--duration-slow) var(--ease-out);
    text-decoration: none;
    min-height: 420px;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-2xl);
    transition: opacity var(--duration-slow) ease;
    opacity: 0;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2xl);
}

.service-card-dark {
    background: var(--navy-900);
    color: var(--text-inverse);
}

.service-card-dark::before {
    background: linear-gradient(135deg, rgba(0, 115, 230, 0.12) 0%, transparent 60%);
}

.service-card-accent {
    background: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-700) 100%);
    color: var(--text-inverse);
}

.service-card-accent::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--duration-normal) ease;
}

.service-card:hover .service-card-icon {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.service-card-num {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}

.service-card-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.service-card-desc {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.service-card-tags span {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--duration-normal) ease;
}

.service-card:hover .service-card-tags span {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.1);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-inverse);
    transition: gap var(--duration-normal) var(--ease-out);
}

.service-card:hover .service-card-link {
    gap: 14px;
}

/* === About Section === */
.about {
    padding: var(--section-py) 0;
    background: var(--surface-0);
}

.about-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(48px, 6vw, 80px);
    align-items: start;
}

.about-lead {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-text {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    padding: 4px 0;
    transition: all var(--duration-normal) ease;
}

.about-feature:hover {
    transform: translateX(4px);
}

.about-feature-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-50);
    border-radius: var(--radius-sm);
    color: var(--accent-500);
    flex-shrink: 0;
    transition: all var(--duration-normal) ease;
}

.about-feature:hover .about-feature-icon {
    background: var(--accent-100);
    transform: scale(1.08);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.value-card {
    padding: 28px;
    background: var(--surface-1);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--accent-500);
    border-radius: 0 2px 2px 0;
    transition: height var(--duration-slow) var(--ease-out);
}

.value-card:hover::before {
    height: 100%;
}

.value-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.value-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-50);
    color: var(--accent-500);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    transition: all var(--duration-normal) ease;
}

.value-card:hover .value-card-icon {
    background: var(--accent-100);
    transform: scale(1.05);
}

.value-card h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.value-card p {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* === Partners Section — Premium glass treatment === */
.partners {
    padding: var(--section-py) 0;
    background: var(--surface-1);
    position: relative;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 16px;
    background: var(--surface-0);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all var(--duration-normal) var(--ease-out);
    min-height: 120px;
    text-decoration: none;
    cursor: pointer;
}

.partner-item:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    background: var(--accent-50);
}

.partner-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: grayscale(40%);
    opacity: 0.85;
    transition: all var(--duration-normal) ease;
}

.partner-item:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.partner-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    letter-spacing: 0.01em;
    line-height: 1.3;
    transition: color var(--duration-normal) ease;
}

.partner-item:hover .partner-name {
    color: var(--accent-600);
}

/* === CTA Section — Dramatic with gradient mesh === */
.cta {
    padding: var(--section-py) 0;
    background: var(--surface-0);
}

.cta-card {
    position: relative;
    background: var(--navy-900);
    border-radius: var(--radius-2xl);
    padding: clamp(52px, 7vw, 88px);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

/* Gradient mesh bg for CTA */
.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 40% 50% at 10% 90%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 30% 40% at 90% 10%, rgba(0, 115, 230, 0.12) 0%, transparent 50%);
}

/* Noise texture on CTA */
.cta-card::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px 128px;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--text-inverse);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-inverse-muted);
    line-height: 1.75;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.cta-note {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
}

.cta-decoration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 115, 230, 0.18), transparent 60%);
    top: 50%;
    right: -15%;
    transform: translateY(-50%);
    filter: blur(80px);
    animation: float 25s ease-in-out infinite;
}

/* === Footer — Refined with subtle gradient === */
.footer {
    background: linear-gradient(180deg, var(--navy-950) 0%, #111d30 100%);
    color: var(--text-inverse-muted);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
    gap: 48px;
    padding: 76px 0 52px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-family: var(--font-display);
    margin-bottom: 16px;
}

.footer-logo .nav-logo-mark {
    width: 36px;
    height: 36px;
    margin-right: 8px;
}

.footer-logo .nav-logo-mark .logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.footer-logo .nav-logo-text {
    font-size: 16px;
    color: var(--text-inverse);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-inverse-muted);
    max-width: 320px;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.45);
    transition: all var(--duration-normal) var(--ease-out);
}

.footer-social a:hover {
    background: var(--accent-500);
    border-color: var(--accent-500);
    color: var(--text-inverse);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-inverse);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-col a,
.footer-col span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--text-inverse-muted);
    transition: all var(--duration-normal) ease;
    line-height: 1.5;
}

.footer-col a:hover {
    color: var(--accent-400);
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    transition: color var(--duration-normal) ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-400);
}

/* === WhatsApp Float — Enhanced with pulse === */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: all var(--duration-normal) var(--ease-out);
    animation: whatsapp-attention 3s ease-in-out infinite 5s;
}

@keyframes whatsapp-attention {
    0%, 90%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
    95% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
    animation: none;
}

/* === Back to Top Button === */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 96px;
    z-index: 900;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-0);
    color: var(--text-secondary);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--duration-normal) var(--ease-out);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-50);
    color: var(--accent-500);
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

/* === Animations — Refined with stagger support === */
.reveal-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

section[id] {
    scroll-margin-top: 80px;
}

/* Stagger children animation */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children.revealed > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children.revealed > *:nth-child(8) { transition-delay: 0.4s; }
.stagger-children.revealed > *:nth-child(9) { transition-delay: 0.45s; }
.stagger-children.revealed > *:nth-child(10) { transition-delay: 0.5s; }
.stagger-children.revealed > *:nth-child(11) { transition-delay: 0.55s; }
.stagger-children.revealed > *:nth-child(12) { transition-delay: 0.6s; }
.stagger-children.revealed > *:nth-child(13) { transition-delay: 0.65s; }

.stagger-children.revealed > * {
    opacity: 1;
    transform: translateY(0);
}

/* === Page Header (for subpages) — Enhanced depth === */
.page-header {
    background: var(--navy-900);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 30% 50%, rgba(0, 115, 230, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 30% 30% at 70% 20%, rgba(16, 185, 129, 0.04) 0%, transparent 40%);
}

/* Grid pattern on subpage headers */
.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 50% 60% at 50% 50%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 50% 60% at 50% 50%, black 0%, transparent 70%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    color: var(--text-inverse);
    letter-spacing: -0.035em;
    margin-bottom: 16px;
    line-height: 1.1;
}

.page-header-desc {
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 400;
    color: var(--text-inverse-muted);
    line-height: 1.75;
    max-width: 560px;
}

.page-header-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.page-header-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.page-header-stat {
    text-align: left;
}

.page-header-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--text-inverse);
    line-height: 1;
    letter-spacing: -0.03em;
}

.page-header-stat-num .stat-suffix {
    font-size: 18px;
}

.page-header-stat-label {
    font-size: 13px;
    color: var(--text-inverse-muted);
    margin-top: 6px;
}

/* === Feature Grid (for subpages) — Premium cards === */
.feature-section {
    padding: var(--section-py) 0;
    position: relative;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 36px 28px;
    background: var(--surface-0);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

/* Left accent bar on hover */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--accent-500);
    border-radius: 0 2px 2px 0;
    transition: height var(--duration-slow) var(--ease-out);
}

.feature-card:hover::after {
    height: 100%;
}

.feature-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-50);
    color: var(--accent-500);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: all var(--duration-normal) ease;
}

.feature-card:hover .feature-card-icon {
    background: var(--accent-100);
    transform: scale(1.08);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === MICE Interactive Section — Smoother transitions === */
.mice-section {
    padding: var(--section-py) 0;
    background: var(--surface-0);
}

.mice-tabs {
    display: flex;
    gap: 4px;
    background: var(--surface-2);
    border-radius: var(--radius-full);
    padding: 4px;
    width: fit-content;
    margin: 0 auto 48px;
    position: relative;
}

.mice-tab {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration-normal) ease;
    border: 2px solid transparent;
    background: none;
    font-family: var(--font-body);
    position: relative;
    z-index: 1;
}

.mice-tab.active {
    background: var(--surface-0);
    color: var(--accent-500);
    box-shadow: var(--shadow-sm);
    border-color: var(--accent-500);
}

.mice-tab:hover:not(.active) {
    color: var(--text-primary);
    background: var(--surface-1);
    border-color: var(--surface-3, #d0d5dd);
}

.mice-tab-letter {
    display: block;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.mice-tab-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.6;
    margin-top: 4px;
}

.mice-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.mice-content-text h3 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}

.mice-content-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
}

.mice-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mice-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all var(--duration-normal) ease;
}

.mice-feature-item:hover {
    transform: translateX(4px);
    color: var(--accent-600);
}

.mice-feature-item svg {
    color: var(--accent-500);
    flex-shrink: 0;
}

.mice-content-visual {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--surface-1) 0%, var(--surface-2) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.mice-stat-big {
    text-align: center;
}

.mice-stat-big-num {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 800;
    color: var(--accent-500);
    line-height: 1;
    letter-spacing: -0.04em;
}

.mice-stat-big-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* === Process Section — Connected visual flow === */
.process-section {
    padding: var(--section-py) 0;
    background: var(--surface-1);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: process;
}

.process-card {
    position: relative;
    padding: 36px 24px;
    counter-increment: process;
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) var(--ease-out);
}

.process-card:hover {
    background: var(--surface-0);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.process-card::before {
    content: '0' counter(process);
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(180deg, var(--accent-200) 0%, var(--accent-50) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
    display: block;
    transition: all var(--duration-normal) ease;
}

.process-card:hover::before {
    background: linear-gradient(180deg, var(--accent-500) 0%, var(--accent-300) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Connecting line between process steps */
.process-card::after {
    content: '';
    position: absolute;
    top: 32px;
    right: -12px;
    width: 24px;
    height: 2px;
    background: var(--accent-200);
    border-radius: 1px;
}

.process-card:last-child::after {
    display: none;
}

.process-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.process-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === Certifications — Pill badges === */
.cert-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--surface-0);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all var(--duration-normal) var(--ease-out);
}

.cert-item:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
    background: var(--accent-50);
}

.cert-item svg {
    color: var(--accent-500);
}

/* === Contact Page — Premium form and info === */
.contact-section {
    padding: var(--section-py) 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(48px, 6vw, 80px);
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--surface-1);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all var(--duration-normal) var(--ease-out);
}

.contact-info-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-50);
    color: var(--accent-500);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    transition: all var(--duration-normal) ease;
}

.contact-info-card:hover .contact-info-icon {
    background: var(--accent-100);
    transform: scale(1.05);
}

.contact-info-card h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.contact-info-card a,
.contact-info-card span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
}

.contact-info-card a:hover {
    color: var(--accent-500);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    height: 220px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(0.85) contrast(1.05);
    transition: filter 0.5s var(--ease-out);
}

.contact-map:hover iframe {
    filter: grayscale(0) contrast(1);
}

/* === Form — Premium with refined focus states === */
.contact-form {
    background: var(--surface-0);
    padding: 48px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xl);
    position: relative;
}

/* Subtle glow on form */
.contact-form::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--accent-100), transparent 40%, transparent 60%, var(--accent-50));
    z-index: -1;
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
}

.contact-form:focus-within::before {
    opacity: 1;
}

.form-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.form-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-group label .required {
    color: #ef4444;
    margin-left: 2px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--surface-0);
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 400;
    transition: all var(--duration-normal) ease;
    outline: none;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: var(--border-default);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-500);
    box-shadow: 0 0 0 3px var(--accent-glow);
    background: var(--surface-0);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-tertiary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .nav-links, .nav-right {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-card::after {
        display: none;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .mice-content {
        grid-template-columns: 1fr;
    }
    .page-header-stats {
        gap: 32px;
    }
}

@media (max-width: 640px) {
    :root {
        --section-py: clamp(60px, 10vw, 100px);
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stat-card {
        padding: 28px 16px;
    }
    .feature-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        padding: 36px 28px;
        min-height: auto;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-brand {
        grid-column: auto;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        text-align: center;
        justify-content: center;
    }
    .cta-card {
        padding: clamp(36px, 6vw, 52px);
    }
    .cta-actions {
        flex-direction: column;
    }
    .contact-form {
        padding: 28px 20px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .page-header-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    .page-header-stat {
        flex: 0 0 calc(50% - 12px);
    }
    .mice-tabs {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .mice-tab {
        padding: 12px 20px;
        font-size: 13px;
        white-space: nowrap;
        flex: 1;
        text-align: center;
    }
    .mice-tab-letter {
        font-size: 16px;
    }
    .mice-tab-label {
        font-size: 9px;
    }
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .back-to-top {
        right: auto;
        left: 28px;
    }
}

/* === Utility: Smooth focus for accessibility === */
:focus-visible {
    outline: 2px solid var(--accent-500);
    outline-offset: 2px;
    border-radius: var(--radius-xs);
}

/* === Print styles === */
@media print {
    .nav, .mobile-menu, .whatsapp-float, .back-to-top, .scroll-progress {
        display: none !important;
    }
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    body {
        color: #000;
    }
}
