/* =============================================
   BACKGROUNDS
   ============================================= */
.static-bg {
    background-color: #050505;
    background-image: radial-gradient(circle at 50% 10%, #0f0f0f 0%, #050505 100%);
}

/* =============================================
   GLASSMORPHISM COMPONENTS
   ============================================= */
.glass-nav {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(40px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(50px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8),
                inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.glass-card-soft {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6),
                inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.glass-btn {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15),
                0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25),
                0 15px 30px rgba(0, 0, 0, 0.4);
}

/* =============================================
   UTILITIES
   ============================================= */
.vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.custom-scrollbar::-webkit-scrollbar { width: 4px; }
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.accessible-shadow { text-shadow: 0 4px 20px rgba(0, 0, 0, 1); }

.gradient-text-blue {
    background: linear-gradient(135deg, #0d92fe 0%, #29bbfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =============================================
   KEYFRAME ANIMATIONS
   ============================================= */
@keyframes fadeBlur {
    0%   { opacity: 0; filter: blur(15px); transform: scale(0.95); }
    5%   { opacity: 1; filter: blur(0);    transform: scale(1); }
    10%  { opacity: 1; filter: blur(0);    transform: scale(1); }
    15%  { opacity: 0; filter: blur(15px); transform: scale(0.95); }
    100% { opacity: 0; filter: blur(15px); transform: scale(0.95); }
}

@keyframes glowPulse {
    0%, 100% { filter: blur(1px);   box-shadow: 0 0 10px rgba(13,146,254,.8), 0 0 20px rgba(13,146,254,.6); }
    50%       { filter: blur(1.5px); box-shadow: 0 0 15px rgba(13,146,254,1),  0 0 30px rgba(13,146,254,.8), 0 0 45px rgba(13,146,254,.4); }
}

@keyframes borderGlow {
    0%, 100% { filter: blur(4px); opacity: 1; }
    50%       { filter: blur(6px); opacity: 0.8; }
}

@keyframes btnPulse {
    0%, 100% { transform: scale(1);   box-shadow: 0 0 10px rgba(13,146,254,1), 0 0 20px rgba(13,146,254,.8), 0 0 40px rgba(13,146,254,.4); }
    50%       { transform: scale(1.1); box-shadow: 0 0 15px rgba(13,146,254,1), 0 0 30px rgba(13,146,254,.9), 0 0 60px rgba(13,146,254,.5); }
}

@keyframes btnPulseBlur {
    0%, 100% { transform: scale(1);    filter: blur(1.5px); }
    50%       { transform: scale(1.05); filter: blur(2px); }
}

@keyframes pulse {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50%       { transform: translateY(-50%) scale(1.3); }
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

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

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   CANVAS CONTAINERS
   ============================================= */
#canvas-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

#canvas-container canvas { width: 100%; height: 100%; }

#footer-canvas-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

#footer-canvas-container canvas { width: 100% !important; height: 100% !important; }

/* =============================================
   HERO — NAMETAG ANIMATION
   ============================================= */
.box { position: relative; text-align: left; }

.nametag {
    position: absolute;
    opacity: 0;
    filter: blur(10px);
    transform: scale(0.95);
    transition: none;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    width: 100%;
    box-sizing: border-box;
}

.nametag:nth-child(1)  { animation: fadeBlur 50s infinite 0s; }
.nametag:nth-child(2)  { animation: fadeBlur 50s infinite 5s; }
.nametag:nth-child(3)  { animation: fadeBlur 50s infinite 10s; }
.nametag:nth-child(4)  { animation: fadeBlur 50s infinite 15s; }
.nametag:nth-child(5)  { animation: fadeBlur 50s infinite 20s; }
.nametag:nth-child(6)  { animation: fadeBlur 50s infinite 25s; }
.nametag:nth-child(7)  { animation: fadeBlur 50s infinite 30s; }
.nametag:nth-child(8)  { animation: fadeBlur 50s infinite 35s; }
.nametag:nth-child(9)  { animation: fadeBlur 50s infinite 40s; }
.nametag:nth-child(10) { animation: fadeBlur 50s infinite 45s; }

/* =============================================
   HERO — SCROLL INDICATOR
   ============================================= */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 20;
    opacity: 0.5;
    animation: scrollBounce 2s ease-in-out infinite;
    pointer-events: none;
}

/* =============================================
   MARQUEE STRIP
   ============================================= */
.marquee-container {
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 35s linear infinite;
    width: max-content;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.1rem 3rem;
    white-space: nowrap;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.35);
}

.marquee-dot {
    width: 4px;
    height: 4px;
    background: #0d92fe;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(13, 146, 254, 0.9);
    flex-shrink: 0;
}

/* =============================================
   STATS SECTION
   ============================================= */
.stat-number {
    background: linear-gradient(160deg, #ffffff 30%, rgba(255,255,255,0.5) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-variant-numeric: tabular-nums;
}

.stat-divider {
    width: 1px;
    height: 64px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15), transparent);
    flex-shrink: 0;
}

/* =============================================
   SERVICE ACCORDION
   ============================================= */
.service-accordion { display: flex; flex-direction: column; gap: 1rem; width: 100%; }

.service-item {
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.service-item.collapsed { max-height: 120px; opacity: 0.55; }
.service-item.expanded  { max-height: 1200px; opacity: 1; }

.service-content { transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1); }

.service-item.collapsed .service-content {
    opacity: 0; max-height: 0; overflow: hidden;
    pointer-events: none; margin-top: 0;
}

.service-item.expanded .service-content {
    opacity: 1; max-height: 1000px; overflow: visible;
    pointer-events: auto; margin-top: 1rem;
}

.service-header { transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); }

.service-item.collapsed .service-header h3 { font-size: clamp(2rem, 4vw, 3rem); }
.service-item.expanded  .service-header h3 { font-size: clamp(3rem, 7vw, 5rem); }

.service-toggle-btn {
    position: relative;
    width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
}

@media (min-width: 768px) {
    .service-toggle-btn { width: 80px; height: 80px; }
}

.service-icon-custom {
    position: relative;
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
}

@media (min-width: 768px) {
    .service-icon-custom { width: 30px; height: 30px; }
}

.service-icon-custom::before,
.service-icon-custom::after {
    content: '';
    position: absolute;
    background: white;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon-custom::before { width: 100%; height: 3px; left: 0; }
.service-icon-custom::after  { width: 3px; height: 100%; top: 0; opacity: 1; transform: scaleY(1); }

.service-item.expanded  .service-icon-custom::after { opacity: 0; transform: scaleY(0); }
.service-item.collapsed .service-icon-custom::after { opacity: 1; transform: scaleY(1); }

/* =============================================
   FOOTER
   ============================================= */
footer { position: relative; overflow: hidden; min-height: 600px; }

/* =============================================
   BUTTONS — ICON WITH GLOW
   ============================================= */
.glass-btn-with-icon {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    position: relative;
}

.glass-btn-with-icon::before,
.glass-btn-with-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, #0d92fe, #29bbfa);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    filter: blur(4px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.glass-btn-with-icon:hover::before,
.glass-btn-with-glow:hover::before {
    opacity: 1;
    animation: borderGlow 2s ease-in-out infinite;
}

.glass-btn-with-icon:hover {
    border-color: #0d92fe;
    box-shadow: inset 0 1px 1px rgba(255,255,255,.25),
                0 15px 30px rgba(0,0,0,.4),
                0 0 20px rgba(13,146,254,.4),
                0 0 40px rgba(13,146,254,.2);
}

.glass-btn-with-icon .btn-icon-circle {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-btn-with-icon .btn-icon-circle .material-symbols-outlined {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
}

.glass-btn-with-icon:hover .btn-icon-circle {
    background: #0d92fe;
    border: 2px solid #0d92fe;
    box-shadow: 0 0 10px rgba(13,146,254,1), 0 0 25px rgba(13,146,254,.8), 0 0 45px rgba(13,146,254,.5);
    animation: btnPulse 2s ease-in-out infinite;
}

.glass-btn-with-icon:hover .btn-icon-circle .material-symbols-outlined {
    color: white;
    filter: blur(0) !important;
}

.btn-icon-circle { position: relative; isolation: isolate; }

.glass-btn-with-icon:hover .btn-icon-circle::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: #0d92fe;
    filter: blur(1.5px);
    z-index: -1;
    animation: btnPulseBlur 2s ease-in-out infinite;
}

/* BUTTONS — GLOW ONLY */
.glass-btn-with-glow {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    position: relative;
}

.glass-btn-with-glow:hover {
    border-color: #0d92fe;
    background: rgba(13, 146, 254, 0.1);
    box-shadow: inset 0 1px 1px rgba(255,255,255,.25),
                0 15px 30px rgba(0,0,0,.4),
                0 0 20px rgba(13,146,254,.4),
                0 0 40px rgba(13,146,254,.2);
}

/* =============================================
   FORM FIELDS
   ============================================= */
.form-field { position: relative; margin-bottom: 4rem; }

.form-field input,
.form-field textarea {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem 0 1rem 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: white;
    font-weight: 900;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-field input:focus,
.form-field textarea:focus { outline: none; border-bottom-color: transparent; }

.form-field textarea { resize: none; overflow: hidden; }

.form-field label {
    position: absolute;
    left: 0; top: 2.5rem;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 900;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    transform-origin: left top;
}

.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label {
    top: 0; font-size: 9px; color: #0d92fe; letter-spacing: 0.4em;
}

.form-field-line {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 1px;
    background: rgba(255, 255, 255, 0.1);
    overflow: visible;
    display: flex; align-items: center;
}

.form-field-progress {
    position: relative;
    height: 100%; width: 0%;
    transition: width 2.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; align-items: center;
}

.form-field-progress::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; right: 0; height: 4px;
    transform: translateY(-50%);
    background: linear-gradient(to right, rgba(13,146,254,0) 0%, rgba(13,146,254,.3) 30%, rgba(13,146,254,.6) 60%, rgba(13,146,254,1) 100%);
    filter: blur(2px); z-index: 1;
}

.form-field-progress::after {
    content: '';
    position: absolute;
    top: 50%; left: 0; right: 0; height: 8px;
    transform: translateY(-50%);
    background: linear-gradient(to right, rgba(13,146,254,0) 0%, rgba(13,146,254,.1) 50%, rgba(13,146,254,.5) 90%, rgba(13,146,254,.7) 100%);
    filter: blur(6px); z-index: 0;
}

.form-field-circle {
    position: absolute;
    right: -10px; top: 50%;
    transform: translateY(-50%);
    width: 20px; height: 20px;
    background: #0d92fe;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px rgba(13,146,254,1), 0 0 25px rgba(13,146,254,.8), 0 0 45px rgba(13,146,254,.4);
    filter: blur(1.5px);
    z-index: 10;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-field input:focus ~ .form-field-line .form-field-progress .form-field-circle,
.form-field textarea:focus ~ .form-field-line .form-field-progress .form-field-circle {
    opacity: 1; animation: pulse 2s ease-in-out infinite;
}

.form-field input:not(:placeholder-shown) ~ .form-field-line .form-field-progress .form-field-circle,
.form-field textarea:not(:placeholder-shown) ~ .form-field-line .form-field-progress .form-field-circle { opacity: 1; }

.form-field input:not(:placeholder-shown) ~ .form-field-line .form-field-progress,
.form-field textarea:not(:placeholder-shown) ~ .form-field-line .form-field-progress { width: 100%; }

.form-field input:placeholder-shown ~ .form-field-line .form-field-progress,
.form-field textarea:placeholder-shown ~ .form-field-line .form-field-progress { width: 0%; }

.form-field input:placeholder-shown:not(:focus) ~ .form-field-line .form-field-progress .form-field-circle,
.form-field textarea:placeholder-shown:not(:focus) ~ .form-field-line .form-field-progress .form-field-circle { opacity: 0; }

/* =============================================
   NAVIGATION
   ============================================= */
nav a[href^="#"] { position: relative; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }

nav a[href^="#"]::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0%; height: 2px;
    background: #0d92fe;
    box-shadow: 0 0 10px rgba(13,146,254,.8), 0 0 20px rgba(13,146,254,.6);
    filter: blur(1px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a[href^="#"].nav-active { color: white !important; }
nav a[href^="#"].nav-active::after { width: 100%; animation: glowPulse 2s ease-in-out infinite; }

/* =============================================
   HAMBURGER & MOBILE MENU
   ============================================= */
.hamburger-btn { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; }

.hamburger-line {
    width: 24px; height: 2px;
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.hamburger-btn.active .hamburger-line:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.hamburger-btn.active .hamburger-line:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger-btn.active .hamburger-line:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-menu {
    visibility: hidden; opacity: 0;
    transition: visibility 0s 0.5s, opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    pointer-events: auto; visibility: visible; opacity: 1;
    transition: visibility 0s 0s, opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay {
    position: absolute; inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active .mobile-menu-overlay { opacity: 1; }

.mobile-menu-content {
    position: absolute;
    top: 0; right: 0;
    width: 320px; max-width: 85vw; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.03) 100%);
    backdrop-filter: blur(50px);
    border-left: 1px solid rgba(255,255,255,.18);
    box-shadow: -10px 0 50px rgba(0,0,0,.8), inset 0 0 0 1px rgba(255,255,255,.05);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column;
}

.mobile-menu.active .mobile-menu-content { transform: translateX(0); }

.mobile-menu-link { position: relative; display: block; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }

.mobile-menu-link::before {
    content: '';
    position: absolute;
    left: -24px; top: 50%;
    transform: translateY(-50%);
    width: 0; height: 2px;
    background: #0d92fe;
    box-shadow: 0 0 10px rgba(13,146,254,.8), 0 0 20px rgba(13,146,254,.6);
    filter: blur(1px);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-link:hover::before, .mobile-menu-link.nav-active::before { width: 16px; }
.mobile-menu-link:hover, .mobile-menu-link.nav-active { transform: translateX(8px); }
.mobile-menu-link.nav-active .mobile-link-number { color: #0d92fe; }

.close-btn { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.close-btn:hover { transform: rotate(90deg); }

/* =============================================
   SOCIAL LINKS
   ============================================= */
.social-link-glass {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(255,255,255,.1) 0%, rgba(255,255,255,.05) 100%);
    backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 9999px;
    color: white;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px 0 rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.08);
    position: relative; overflow: hidden;
}

.social-link-glass::before {
    content: '';
    position: absolute; inset: -2px;
    border-radius: inherit; padding: 2px;
    background: linear-gradient(135deg, #0d92fe, #29bbfa);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; filter: blur(4px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.social-link-glass:hover::before { opacity: 1; animation: borderGlow 2s ease-in-out infinite; }

.social-link-glass:hover {
    background: rgba(13, 146, 254, 0.15);
    border-color: rgba(13,146,254,.5);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px 0 rgba(0,0,0,.8), inset 0 0 0 1px rgba(255,255,255,.12), 0 0 30px rgba(13,146,254,.3);
}

.social-link-glass svg { transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.social-link-glass:hover svg { transform: scale(1.1) rotate(5deg); filter: drop-shadow(0 0 8px rgba(13,146,254,.8)); }

/* =============================================
   SVG ICON GLOW
   ============================================= */
.svg-icon {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 0 rgba(13,146,254,0));
}

.group:hover .svg-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(13,146,254,.8))
            drop-shadow(0 0 16px rgba(13,146,254,.6))
            drop-shadow(0 0 24px rgba(13,146,254,.4));
}

/* =============================================
   SERVICE CARDS — BENTO GRID
   ============================================= */
.svc-card {
    position: relative;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-card:hover {
    transform: translateY(-5px);
    border-color: rgba(13, 146, 254, 0.45) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7),
                0 0 40px rgba(13, 146, 254, 0.12),
                inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

/* Watermark number */
.svc-num {
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
    font-size: clamp(6rem, 14vw, 10rem);
    font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.05em;
}

.svc-card:hover .svc-num {
    color: rgba(13, 146, 254, 0.08);
}

/* Category tag pill */
.svc-tag {
    display: inline-flex;
    align-items: center;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    padding: 6px 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.svc-card:hover .svc-tag {
    border-color: rgba(13, 146, 254, 0.45);
    color: rgba(13, 146, 254, 0.9);
    background: rgba(13, 146, 254, 0.06);
}

/* Icon box */
.svc-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.svc-card:hover .svc-icon-box {
    background: rgba(13, 146, 254, 0.1);
    border-color: rgba(13, 146, 254, 0.3);
}

.svc-card:hover .svc-icon-box .material-symbols-outlined {
    color: rgba(13, 146, 254, 0.9) !important;
}

/* Feature pills */
.svc-pill {
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 9999px;
    padding: 5px 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.svc-card:hover .svc-pill {
    background: rgba(13, 146, 254, 0.07);
    border-color: rgba(13, 146, 254, 0.2);
    color: rgba(255, 255, 255, 0.65);
}

/* CTA button */
.svc-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px 10px 18px;
    border-radius: 9999px;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4em;
}

/* Radial glow overlay on hover */
.svc-glow-overlay {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse at 20% 90%, rgba(13, 146, 254, 0.08) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.svc-card:hover .svc-glow-overlay {
    opacity: 1;
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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