/* ==========================================
   GERANOIMILOU.GR — 2026 Premium Redesign (Refined)
   ========================================== */

/* --- Design Tokens --- */
:root {
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-navy: #1e293b;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --bg-subtle: #f1f5f9;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --accent-light: #60a5fa;
    --accent-glow: rgba(59, 130, 246, 0.28);
    --accent-soft: rgba(59, 130, 246, 0.08);
    --text-dark: #0f172a;
    --text-body: #475569;
    --text-muted: #94a3b8;
    --text-white: #ffffff;
    --border-light: rgba(15, 23, 42, 0.06);
    --border-medium: rgba(15, 23, 42, 0.1);
    --border-dark: rgba(255, 255, 255, 0.08);
    --glass: rgba(15, 23, 42, 0.7);
    --glass-light: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 24px rgba(15, 23, 42, 0.06), 0 1px 4px rgba(15, 23, 42, 0.03);
    --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.1), 0 4px 12px rgba(15, 23, 42, 0.04);
    --shadow-xl: 0 32px 72px rgba(15, 23, 42, 0.16), 0 8px 24px rgba(15, 23, 42, 0.06);
    --shadow-accent: 0 20px 48px rgba(59, 130, 246, 0.25), 0 4px 12px rgba(59, 130, 246, 0.15);
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;
    --gradient-accent: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg-light);
    color: var(--text-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection {
    background: var(--accent);
    color: var(--text-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition), opacity var(--transition);
}

ul, ol { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; display: block; }
p { margin: 0 0 1em 0; }
p:last-child { margin-bottom: 0; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-subtle);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: var(--radius-full);
    border: 2px solid var(--bg-subtle);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* --- Utility --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* Gradient text accent */
.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: padding var(--transition), background var(--transition), border var(--transition);
}

.site-header.scrolled {
    padding: 12px 0;
    background: var(--glass);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.header-logo img {
    height: 56px;
    transition: height var(--transition);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.scrolled .header-logo img {
    height: 44px;
}

.header-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 36px);
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
    transition: transform var(--transition);
    transform-origin: center;
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.06);
}

.header-nav a.active {
    color: var(--accent-light);
}

.header-nav a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-accent);
    color: var(--text-white);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.88rem;
    transition: transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 16px var(--accent-glow);
    overflow: hidden;
}

.header-phone::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35), transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.7s ease;
}

.header-phone:hover {
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px var(--accent-glow);
}

.header-phone:hover::before {
    transform: translateX(100%);
}

.header-phone i {
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.header-phone span {
    position: relative;
    z-index: 1;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    z-index: 1002;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at top, var(--bg-navy), var(--bg-dark) 60%, var(--bg-darker));
    z-index: 1001;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    color: var(--text-white);
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 12px 32px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(24px);
    letter-spacing: -0.01em;
}

.mobile-nav.open a {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.mobile-nav.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.open a:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.open a:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.open a:nth-child(6) { transition-delay: 0.35s; }

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--accent-light);
    background: rgba(59, 130, 246, 0.08);
}

.mobile-nav .mobile-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-accent);
    color: var(--text-white);
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 24px;
    transition: all var(--transition);
    box-shadow: 0 10px 28px var(--accent-glow);
}

.mobile-nav .mobile-phone:hover {
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px var(--accent-glow);
}

/* ========================================
   HERO (Homepage)
   ======================================== */
.hero {
    min-height: 82vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--bg-dark);
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
    will-change: transform, opacity;
    transition: opacity 1.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    animation: kenBurns 8s ease-in-out forwards;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(59, 130, 246, 0.18), transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(96, 165, 250, 0.12), transparent 50%),
        linear-gradient(135deg,
            rgba(15, 23, 42, 0.78) 0%,
            rgba(30, 41, 59, 0.68) 50%,
            rgba(15, 23, 42, 0.82) 100%);
    z-index: 2;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(2, 6, 23, 0.6));
    z-index: 1;
}

/* subtle grain texture */
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    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-size: 256px;
    mix-blend-mode: overlay;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
    padding: 110px 24px 70px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-full);
    padding: 10px 24px;
    margin-bottom: 32px;
    color: var(--accent-light);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.12);
}

.hero-label i {
    font-size: 1rem;
}

.hero h1 {
    font-size: clamp(2.6rem, 7vw, 5.4rem);
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 24px;
    line-height: 1.05;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.hero h1 .accent {
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 40%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.hero-desc {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, 0.78);
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.75;
}

.hero-desc strong {
    color: var(--accent-light);
    font-weight: 600;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}

.hero-stat {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 28px 36px;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
    min-width: 160px;
    overflow: hidden;
}

.hero-stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}

.hero-stat:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 165, 250, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.hero-stat:hover::before {
    opacity: 1;
}

.hero-stat-number {
    position: relative;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-stat-label {
    position: relative;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    font-weight: 500;
}

/* Hero Buttons */
.hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-accent);
    color: var(--text-white);
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.3px;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 8px 24px var(--accent-glow);
    overflow: hidden;
    isolation: isolate;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35), transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.7s ease;
    z-index: 1;
}

.btn-primary > * {
    position: relative;
    z-index: 2;
}

.btn-primary:hover {
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 16px 36px var(--accent-glow);
}

.btn-primary:hover::before {
    transform: translateX(120%);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-white);
    padding: 14px 34px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.3px;
    transition: all var(--transition);
}

.btn-secondary:hover {
    border-color: var(--accent-light);
    background: rgba(59, 130, 246, 0.12);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: float 3s ease-in-out infinite;
    font-weight: 500;
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -24px;
    left: 0;
    width: 100%;
    height: 24px;
    background: linear-gradient(to bottom, var(--accent-light), transparent);
    animation: scrollDot 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scrollDot {
    0% { top: -24px; }
    100% { top: 48px; }
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   PAGE HERO (Subpages)
   ======================================== */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    overflow: hidden;
    text-align: center;
    padding: 120px 0 70px;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(59, 130, 246, 0.18), transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(96, 165, 250, 0.12), transparent 50%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.75), rgba(30, 41, 59, 0.7) 60%, rgba(15, 23, 42, 0.85));
    z-index: 2;
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--bg-light));
    z-index: 2;
    pointer-events: none;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.8s ease-in-out;
}

.page-hero-bg.active {
    opacity: 0.55;
    animation: kenBurnsSlow 9s ease-in-out forwards;
}

@keyframes kenBurnsSlow {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.page-hero .container {
    position: relative;
    z-index: 3;
}

.page-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-full);
    padding: 8px 22px;
    color: var(--accent-light);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: -0.015em;
    margin-bottom: 14px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.page-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 620px;
    margin: 0 auto;
}

/* ========================================
   SECTION LAYOUT
   ======================================== */
.section {
    padding: 110px 0;
    position: relative;
}

.section-dark {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.section-dark::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.06), transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.section-dark .container {
    position: relative;
    z-index: 1;
}

.section-alt {
    background: var(--bg-card);
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-header .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 6px 16px;
    background: var(--accent-soft);
    border-radius: var(--radius-full);
}

.section-dark .section-header .section-label {
    color: var(--accent-light);
    background: rgba(59, 130, 246, 0.12);
}

.section-header h2 {
    font-size: clamp(1.9rem, 3.8vw, 2.7rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-dark .section-header h2 {
    color: var(--text-white);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.06rem;
    line-height: 1.7;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.55);
}

/* ========================================
   FLEET SECTION (Crane Cards)
   ======================================== */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.crane-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    isolation: isolate;
}

.crane-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: var(--gradient-accent);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
    z-index: 1;
}

.crane-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.crane-card-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: var(--bg-subtle);
}

.crane-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(15, 23, 42, 0.15));
    z-index: 1;
    pointer-events: none;
}

.crane-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.crane-card:hover .crane-card-image img {
    transform: scale(1.08);
}

.crane-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-accent);
    color: var(--text-white);
    font-weight: 700;
    font-size: 0.7rem;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 12px var(--accent-glow);
}

.crane-card-body {
    padding: 30px 28px 28px;
}

.crane-card-body h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.015em;
}

.crane-card-subtitle {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 22px;
    line-height: 1.6;
}

.crane-specs-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.crane-specs-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px dashed var(--border-medium);
    color: var(--text-body);
    font-size: 0.9rem;
}

.crane-specs-list li:last-child {
    border-bottom: none;
}

.crane-specs-list .spec-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient-accent);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.crane-specs-list strong {
    color: var(--text-dark);
    font-weight: 700;
}

.crane-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.92rem;
    margin-top: 22px;
    transition: all var(--transition);
}

.crane-card-link:hover {
    color: var(--accent-hover);
    gap: 14px;
}

.crane-card-link i {
    transition: transform var(--transition);
}

.crane-card-link:hover i {
    transform: translateX(4px);
}

/* ========================================
   FEATURES (Why Choose Us)
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    position: relative;
    text-align: center;
    padding: 52px 32px;
    border-radius: var(--radius-lg);
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    overflow: hidden;
    isolation: isolate;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
    border-radius: 0 0 4px 4px;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: -50% -50% auto auto;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-soft), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: -1;
}

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

.feature-card:hover::before {
    transform: scaleX(1);
}

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

.feature-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-md);
    margin: 0 auto 24px;
    color: var(--accent);
    font-size: 1.7rem;
    transition: all var(--transition);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px dashed rgba(59, 130, 246, 0.18);
    border-radius: calc(var(--radius-md) + 6px);
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-accent);
    color: var(--text-white);
    border-color: transparent;
    transform: rotate(-6deg) scale(1.05);
    box-shadow: 0 12px 28px var(--accent-glow);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* ========================================
   SERVICES GRID
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 44px 28px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-soft), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, 0.15);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border-radius: var(--radius-md);
    margin: 0 auto 20px;
    color: var(--accent);
    font-size: 1.5rem;
    transition: all var(--transition);
}

.service-card:hover .service-card-icon {
    background: var(--gradient-accent);
    color: var(--text-white);
    transform: scale(1.08);
    box-shadow: 0 8px 20px var(--accent-glow);
}

.service-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ========================================
   FEATURED SERVICES
   ======================================== */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.featured-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: transform var(--transition), box-shadow var(--transition);
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.featured-card-image {
    height: 240px;
    overflow: hidden;
    position: relative;
    background: var(--bg-subtle);
}

.featured-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(15, 23, 42, 0.25));
    pointer-events: none;
}

.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.featured-card:hover .featured-card-image img {
    transform: scale(1.08);
}

.featured-card-body {
    padding: 32px 30px;
}

.featured-card-body h3 {
    font-size: 1.32rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.015em;
}

.featured-card-body p {
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-body);
    font-size: 0.9rem;
}

.check-list .check {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    color: var(--text-white);
    border-radius: 50%;
    font-size: 0.72rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px var(--accent-glow);
}

/* ========================================
   SPEC CARDS (Crane Detail Pages)
   ======================================== */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.spec-card {
    position: relative;
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-navy));
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 38px 20px 32px;
    text-align: center;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    overflow: hidden;
    isolation: isolate;
}

.spec-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(59, 130, 246, 0.14), transparent 55%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
    z-index: -1;
}

.spec-card::after {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: var(--gradient-accent);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.spec-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(59, 130, 246, 0.2);
}

.spec-card:hover::before,
.spec-card:hover::after {
    opacity: 1;
}

.spec-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    margin: 0 auto 18px;
    color: var(--accent-light);
    font-size: 1.4rem;
    transition: all var(--transition);
}

.spec-card:hover .spec-card-icon {
    background: var(--gradient-accent);
    color: var(--text-white);
    border-color: transparent;
    transform: scale(1.08);
}

.spec-card-value {
    font-family: var(--font-heading);
    font-size: 2.7rem;
    font-weight: 900;
    background: linear-gradient(135deg, #93c5fd, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1;
    letter-spacing: -0.02em;
}

.spec-card-unit {
    font-size: 0.82rem;
    color: var(--accent-light);
    font-weight: 600;
    margin-top: 6px;
    letter-spacing: 1.5px;
}

.spec-card-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 14px;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.spec-description {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 44px 48px;
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--accent);
    position: relative;
    box-shadow: var(--shadow-md);
}

.spec-description::before {
    content: '';
    position: absolute;
    top: 24px;
    right: 24px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--accent-soft), transparent 70%);
    pointer-events: none;
}

.spec-description h4 {
    font-size: 1.28rem;
    font-weight: 800;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.015em;
}

.spec-description h4 i {
    color: var(--accent);
    background: var(--accent-soft);
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
}

.spec-description p {
    color: var(--text-body);
    line-height: 1.85;
    font-size: 1rem;
}

.spec-description strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 2;
    mix-blend-mode: overlay;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.7), transparent 55%);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 2;
}

.gallery-item:hover::before,
.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.9s var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .gallery-zoom {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--transition), transform var(--transition);
    z-index: 3;
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: translateY(0);
}

.gallery-cta {
    text-align: center;
    margin-top: 56px;
}

/* ========================================
   SHOWCASE (Homepage)
   ======================================== */
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.showcase-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
    isolation: isolate;
}

.showcase-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.3) 45%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

.showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 64px rgba(0, 0, 0, 0.45);
}

.showcase-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.9s var(--ease-out);
}

.showcase-item:hover img {
    transform: scale(1.06);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 32px;
    z-index: 3;
}

.showcase-overlay h4 {
    color: var(--text-white);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.015em;
}

.showcase-overlay p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
}

/* ========================================
   CTA
   ======================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-navy) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -25%;
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    opacity: 0.35;
    border-radius: 50%;
    filter: blur(20px);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -15%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.2), transparent 70%);
    opacity: 0.25;
    border-radius: 50%;
    filter: blur(20px);
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}

.cta-inner h2 {
    color: var(--text-white);
    font-size: clamp(1.9rem, 3.2vw, 2.7rem);
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.08rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--bg-darker);
    padding: 80px 0 32px;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.85fr 1fr;
    gap: 44px;
    position: relative;
    z-index: 1;
}

.footer-brand img {
    height: 52px;
    margin-bottom: 18px;
    opacity: 0.85;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.45);
}

.site-footer h4 {
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 10px;
}

.site-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-links li i {
    color: var(--accent-light);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition);
}

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

.footer-people {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 18px;
}

.footer-person {
    font-size: 0.85rem;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), background var(--transition);
}

.footer-person:hover {
    border-color: rgba(59, 130, 246, 0.25);
    background: rgba(59, 130, 246, 0.06);
}

.footer-person strong {
    color: rgba(255, 255, 255, 0.82);
    display: block;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.footer-person a {
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color var(--transition);
}

.footer-person a:hover {
    color: var(--accent);
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-hour-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid var(--accent);
    border-radius: var(--radius-xs);
}

.footer-hour-row span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-hour-row strong {
    color: var(--text-white);
    font-size: 0.98rem;
    font-weight: 700;
}

.footer-map {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.footer-map iframe {
    display: block;
    width: 100%;
    height: 180px;
    filter: grayscale(0.2) contrast(1.05);
    transition: filter var(--transition);
}

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

.footer-bottom {
    margin-top: 54px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom strong {
    color: rgba(255, 255, 255, 0.55);
}

/* ========================================
   FLOATING PHONE BUTTON
   ======================================== */
.floating-phone {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    color: var(--text-white);
    border-radius: 50%;
    font-size: 1.45rem;
    box-shadow: 0 10px 32px var(--accent-glow);
    transition: transform var(--transition), box-shadow var(--transition);
    animation: pulse-ring 2.4s ease-in-out infinite;
}

.floating-phone::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--gradient-accent);
    opacity: 0.4;
    animation: pulse-outer 2.4s ease-out infinite;
    z-index: -1;
}

.floating-phone:hover {
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 16px 44px rgba(59, 130, 246, 0.5);
    color: var(--text-white);
}

@keyframes pulse-ring {
    0%, 100% { box-shadow: 0 10px 32px var(--accent-glow), 0 0 0 0 rgba(59, 130, 246, 0.35); }
    50% { box-shadow: 0 10px 32px var(--accent-glow), 0 0 0 14px rgba(59, 130, 246, 0); }
}

@keyframes pulse-outer {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s var(--ease-out),
                transform 0.8s var(--ease-out);
}

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

/* stagger children */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out),
                transform 0.7s var(--ease-out);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.35s; }

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

/* ========================================
   COUNTER ANIMATION
   ======================================== */
.counter[data-target] {
    font-variant-numeric: tabular-nums;
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
