/* ================================
   WEBDEVELOPRO - Modern CSS
   Fast & Extravagant
   ================================ */

/* ================================
   CSS Variables
   ================================ */
:root {
    /* Colors - Single brand color with variations */
    --primary: #a4c6e8;
    --primary-dark: #7ba8d4;
    --primary-darker: #5a8fc4;
    --primary-light: #c4ddf2;
    --primary-ultra-light: rgba(164, 198, 232, 0.18);
    
    --secondary: #1a2a3a;
    --secondary-light: #2d4a5e;
    
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --gray-50: rgba(255, 255, 255, 0.45);
    --gray-100: rgba(255, 255, 255, 0.55);
    --gray-200: rgba(164, 198, 232, 0.25);
    --gray-300: rgba(123, 168, 212, 0.35);
    --gray-400: #8FA0AD;
    --gray-500: #6B7F8C;
    --gray-600: #4D5D67;
    --gray-700: #374149;
    --gray-800: #232B30;
    --gray-900: #151A1D;
    --black: #0A0D0F;
    
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;

    /* Liquid Glass — Apple-style tokens */
    --page-bg: #e8edf4;
    --glass-bg: rgba(255, 255, 255, 0.58);
    --glass-bg-strong: rgba(255, 255, 255, 0.78);
    --glass-bg-subtle: rgba(255, 255, 255, 0.32);
    --glass-bg-dark: rgba(21, 26, 29, 0.82);
    --glass-border: rgba(255, 255, 255, 0.72);
    --glass-border-subtle: rgba(255, 255, 255, 0.45);
    --glass-blur: blur(12px) saturate(150%);
    --glass-blur-heavy: blur(20px) saturate(160%);
    --glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.1), 0 2px 8px rgba(31, 38, 135, 0.06);
    --glass-shadow-lg: 0 16px 48px rgba(31, 38, 135, 0.14), 0 4px 16px rgba(31, 38, 135, 0.08);
    --glass-inset: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    --glass-radius: 24px;
    --morph-duration: 500ms;
    --morph-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Sizing */
    --header-height: 80px;
    --container-max: 1280px;
    --container-padding: 24px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(31, 38, 135, 0.06);
    --shadow-md: 0 8px 24px rgba(31, 38, 135, 0.1);
    --shadow-lg: 0 12px 36px rgba(31, 38, 135, 0.12);
    --shadow-xl: 0 16px 48px rgba(31, 38, 135, 0.14);
    --shadow-2xl: 0 24px 64px rgba(31, 38, 135, 0.18);
    --shadow-glow: 0 0 40px rgba(164, 198, 232, 0.35);
    
    /* Transitions */
    --transition-fast: 200ms var(--morph-ease);
    --transition-base: 400ms var(--morph-ease);
    --transition-slow: 600ms var(--morph-ease);
    
    /* Border Radius */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--page-bg);
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    animation: liquidOrb 22s ease-in-out infinite;
    contain: strict;
}

@media (max-width: 1024px) {
    body::before,
    body::after {
        display: none;
    }
}

body::before {
    width: 55vw;
    height: 55vw;
    max-width: 700px;
    max-height: 700px;
    top: -12%;
    right: -8%;
    background: radial-gradient(circle, rgba(164, 198, 232, 0.55) 0%, rgba(147, 197, 253, 0.28) 45%, transparent 70%);
}

body::after {
    width: 45vw;
    height: 45vw;
    max-width: 580px;
    max-height: 580px;
    bottom: 5%;
    left: -12%;
    background: radial-gradient(circle, rgba(196, 221, 242, 0.45) 0%, rgba(123, 168, 212, 0.2) 50%, transparent 72%);
    animation-delay: -11s;
}

@keyframes liquidOrb {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
    33% { transform: translate(3%, 4%) scale(1.06); opacity: 1; }
    66% { transform: translate(-2%, -3%) scale(0.94); opacity: 0.9; }
}

/* Prevent horizontal scroll on all main containers */
#__next,
main,
.page-wrapper {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
    position: relative;
}

.page-wrapper {
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    z-index: 1;
}

/* Performance Optimizations */
img, video {
    content-visibility: auto;
}

.slider-track,
.package-card,
.hero-content,
.animate-fade-up {
    will-change: auto;
}

.slider-track.dragging,
.package-card.transitioning {
    will-change: transform;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

/* Lazy loading support */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded,
img:not([loading="lazy"]) {
    opacity: 1;
}

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

ul {
    list-style: none;
}

/* ================================
   Utility Classes
   ================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: 100px 0;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}

.section-alt {
    background: var(--glass-bg-subtle);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.text-gradient {
    background: linear-gradient(135deg, #5a8fc4 0%, #7ba8d4 35%, #a4c6e8 65%, #c4ddf2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: inherit;
}

/* ================================
   Preloader - Fast
   ================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(196, 221, 242, 0.9) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 70%, rgba(164, 198, 232, 0.85) 0%, transparent 50%),
        linear-gradient(135deg, #c4ddf2 0%, #a4c6e8 50%, #7ba8d4 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s, visibility 0.4s;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
}

.preloader-logo {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
}

.preloader-logo .logo-we {
    color: #a8cfeb;
}

.preloader-logo .logo-b {
    display: inline-block;
    color: #c5e0f5;
    font-weight: 800;
    transform: scaleX(-1);
    text-shadow: 0 0 20px rgba(165, 207, 235, 0.5);
}

.preloader-logo .logo-d {
    color: #c5e0f5;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(165, 207, 235, 0.5);
}

.preloader-logo .logo-evelop {
    color: #a8cfeb;
}

.preloader-logo .logo-ro {
    color: #d0e8f7;
    font-size: 0.55em;
    margin-left: 2px;
    vertical-align: sub;
    font-weight: 600;
}

.logo-we, .logo-evelop {
    color: rgba(255,255,255,0.9);
}

.logo-bd {
    color: var(--primary);
    background: rgba(255,255,255,0.95);
    padding: 0.1em 0.2em;
    border-radius: 8px;
    font-weight: 800;
}

.logo-ro {
    color: rgba(255,255,255,0.7);
    font-size: 0.5em;
    vertical-align: sub;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.3);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.preloader-progress {
    height: 100%;
    background: rgba(255,255,255,0.95);
    border-radius: var(--radius-full);
    animation: preloaderProgress 1s ease forwards;
}

@keyframes preloaderProgress {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes fadeInBg {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

/* ================================
   Header & Navigation
   ================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur-heavy);
    -webkit-backdrop-filter: var(--glass-blur-heavy);
    border-bottom: 1px solid var(--glass-border-subtle);
    box-shadow: var(--glass-shadow), var(--glass-inset);
    z-index: 1000;
    transition: var(--transition-base);
}

.header.scrolled {
    background: var(--glass-bg-strong);
    border-bottom-color: var(--glass-border);
    box-shadow: var(--glass-shadow-lg), var(--glass-inset);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 45px;
    width: auto;
    min-width: 160px;
    object-fit: contain;
}

/* Text-based Logo */
.logo-text {
    display: inline-flex;
    align-items: baseline;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.logo-we {
    color: #7ba8c9;
}

.logo-b {
    display: inline-block;
    color: #7ba8c9;
    font-weight: 800;
    transform: scaleX(-1);
}

.logo-d {
    color: #7ba8c9;
    font-weight: 800;
}

.logo-bd {
    color: #7ba8c9;
    font-weight: 800;
}

.logo-evelop {
    color: #7ba8c9;
}

.logo-ro {
    color: #9dc4db;
    font-size: 0.55em;
    margin-left: 1px;
    vertical-align: sub;
    font-weight: 600;
}

.footer-logo-text {
    filter: brightness(0) invert(1);
    font-size: 1.4rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray-700);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-darker);
    background: var(--glass-bg-subtle);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    border: 1px solid var(--glass-border-subtle);
    box-shadow: var(--glass-inset);
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 6px;
    transition: var(--transition-fast);
}

.nav-item:hover .dropdown-toggle::after {
    transform: rotate(-135deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur-heavy);
    -webkit-backdrop-filter: var(--glass-blur-heavy);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow-lg), var(--glass-inset);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-base);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 14px;
    font-size: 0.9rem;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
}

.dropdown-menu li a:hover {
    color: var(--primary-darker);
    background: var(--glass-bg-subtle);
    border: 1px solid var(--glass-border-subtle);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition-fast);
}

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

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

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

/* ================================
   Buttons - Solid Colors (No Gradient)
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(164, 198, 232, 0.95) 0%, rgba(123, 168, 212, 0.9) 100%);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: var(--glass-shadow), var(--glass-inset), 0 0 24px rgba(164, 198, 232, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgba(123, 168, 212, 0.98) 0%, rgba(90, 143, 196, 0.95) 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--glass-shadow-lg), var(--glass-inset), 0 0 32px rgba(164, 198, 232, 0.35);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: var(--primary-darker);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow), var(--glass-inset);
}

.btn-secondary:hover {
    border-color: rgba(164, 198, 232, 0.6);
    background: var(--glass-bg-strong);
    transform: translateY(-2px);
}

.btn-outline {
    background: var(--glass-bg-subtle);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--primary-darker);
    border: 1px solid rgba(164, 198, 232, 0.5);
    box-shadow: var(--glass-inset);
}

.btn-outline:hover {
    background: linear-gradient(135deg, rgba(164, 198, 232, 0.9) 0%, rgba(123, 168, 212, 0.85) 100%);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: var(--glass-bg-subtle);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: var(--glass-inset);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.88);
    color: var(--primary-darker);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: var(--primary-darker);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow), var(--glass-inset);
}

.btn-white:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--glass-shadow-lg), var(--glass-inset);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

.btn-glow {
    box-shadow: var(--shadow-md), 0 0 20px rgba(164, 198, 232, 0.3);
}

.btn-glow:hover {
    box-shadow: var(--shadow-lg), 0 0 30px rgba(164, 198, 232, 0.4);
}

.btn-icon {
    font-size: 1.1em;
}

.btn-arrow {
    transition: var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ================================
   Hero Section - EXTREME ANIMATION
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    padding-bottom: 100px;
    overflow: hidden;
    background: transparent;
    width: 100%;
    max-width: 100vw;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 70%;
    height: 140%;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(164, 198, 232, 0.45) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 60%, rgba(196, 221, 242, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse at center, rgba(147, 197, 253, 0.2) 0%, transparent 65%);
    animation: heroGradient 12s ease-in-out infinite;
}

@keyframes heroGradient {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    50% { transform: translate(-5%, 5%) scale(1.1); opacity: 1; }
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(164, 198, 232, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(164, 198, 232, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.3;
    animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

/* Hero Content - Extreme Entrance */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 60px 0;
}

.hero-content.animate-entrance .hero-badge {
    animation: heroSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
    opacity: 0;
    transform: translateY(60px) rotateX(-15deg);
}

.hero-content.animate-entrance .hero-title {
    animation: heroTitleReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
    opacity: 0;
    transform: translateY(80px);
}

.hero-content.animate-entrance .hero-subtitle {
    animation: heroSlideIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
    opacity: 0;
    transform: translateY(50px);
}

.hero-content.animate-entrance .hero-cta {
    animation: heroSlideIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
    opacity: 0;
    transform: translateY(50px);
}

.hero-content.animate-entrance .hero-stats {
    animation: heroStatsReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
    opacity: 0;
    transform: translateY(60px) scale(0.9);
}

.hero-content.animate-entrance .hero-trust-strip {
    animation: heroSlideIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.75s;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes heroSlideIn {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes heroTitleReveal {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroStatsReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 24px;
    box-shadow: var(--glass-shadow), var(--glass-inset);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 650px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 25px 35px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur-heavy);
    -webkit-backdrop-filter: var(--glass-blur-heavy);
    border-radius: var(--radius-xl);
    box-shadow: var(--glass-shadow-lg), var(--glass-inset);
    border: 1px solid var(--glass-border);
    margin-bottom: 80px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-darker);
    line-height: 1;
}

.stat-plus,
.stat-percent,
.stat-suffix {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 6px;
}

.stat-divider {
    width: 1px;
    height: 45px;
    background: var(--gray-300);
    flex-shrink: 0;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: scrollBounce 2s ease-in-out infinite;
}

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

.scroll-indicator {
    width: 24px;
    height: 38px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    position: relative;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 18px; opacity: 0.3; }
}

.hero-scroll span {
    font-size: 0.7rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* ================================
   Section Headers
   ================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-tag {
    display: inline-block;
    padding: 8px 18px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: var(--primary-darker);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid var(--glass-border-subtle);
    box-shadow: var(--glass-inset);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ================================
   Features Grid
   ================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 35px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow), var(--glass-inset);
    transition: var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--glass-shadow-lg), var(--glass-inset);
    border-color: rgba(164, 198, 232, 0.55);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-ultra-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-darker);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
}

.feature-card:hover .feature-icon svg {
    color: var(--white);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.feature-text {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-darker);
}

.feature-link span {
    transition: var(--transition-fast);
}

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

/* ================================
   Slider - Infinite Carousel
   ================================ */
.slider-container {
    position: relative;
    padding: 30px 0;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slider {
    overflow: hidden;
    position: relative;
    touch-action: pan-y pinch-zoom;
    cursor: grab;
    padding: 20px 0;
    -webkit-user-select: none;
    user-select: none;
    width: 100%;
    max-width: 100vw;
}

.slider:active {
    cursor: grabbing;
}

.slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 30px 0;
    align-items: stretch;
    will-change: transform;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow), var(--glass-inset);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    cursor: pointer;
}

.slider-btn:hover {
    background: linear-gradient(135deg, rgba(164, 198, 232, 0.95), rgba(123, 168, 212, 0.9));
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.slider-btn:hover svg {
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-200);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* ================================
   Package Cards
   ================================ */
.package-card {
    flex: 0 0 350px;
    min-width: 320px;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.82);
    border-radius: var(--radius-xl);
    padding: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow), var(--glass-inset);
    transition: transform var(--morph-duration) var(--morph-ease), opacity var(--morph-duration) var(--morph-ease), filter var(--morph-duration) var(--morph-ease), border-color var(--transition-base), box-shadow var(--transition-base);
    position: relative;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.package-card.active {
    border-color: rgba(164, 198, 232, 0.75) !important;
    box-shadow: var(--glass-shadow-lg), var(--glass-inset), 0 0 32px rgba(164, 198, 232, 0.22) !important;
    transform: scale(1) !important;
    opacity: 1 !important;
    filter: blur(0px) !important;
    background: rgba(255, 255, 255, 0.92);
}

.package-card.featured {
    border-color: rgba(164, 198, 232, 0.65);
    background: linear-gradient(180deg, var(--glass-bg-strong) 0%, rgba(164, 198, 232, 0.15) 100%);
}

.package-card:not(.active) {
    cursor: pointer;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.card-badge.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--gray-900);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.card-tagline {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.card-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 20px;
}

.price-from {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-right: 6px;
}

.price-currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-darker);
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.price-period {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.price-ron {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-400);
    font-weight: 500;
    margin-top: 4px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
    padding: 14px;
    background: var(--glass-bg-subtle);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border-subtle);
    border-radius: var(--radius-md);
    box-shadow: var(--glass-inset);
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.option-tag {
    padding: 3px 8px;
    background: var(--primary-ultra-light);
    color: var(--primary-darker);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.75rem;
}

.option-price {
    font-weight: 700;
    color: var(--gray-800);
}

.option-note {
    color: var(--gray-500);
    font-size: 0.8rem;
}

.card-features {
    margin-bottom: 16px;
}

.card-features.compact li {
    padding: 5px 0;
}

.card-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.card-features .check {
    color: var(--success);
    font-weight: bold;
}

.modules-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 14px;
}

.module-tag {
    padding: 3px 8px;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.card-description {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 20px;
    padding-top: 14px;
    border-top: 1px solid var(--gray-100);
}

.card-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ================================
   Lead Capture Form
   ================================ */
.lead-form-section {
    background: transparent;
    padding: 80px 0;
    position: relative;
}

.lead-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur-heavy);
    -webkit-backdrop-filter: var(--glass-blur-heavy);
    padding: 50px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow-lg), var(--glass-inset);
}

.lead-form-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 10px;
}

.lead-form-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 30px;
}

.lead-form-container .cta-buttons {
    flex-direction: column;
    align-items: stretch;
}

.lead-form-container .cta-buttons .btn {
    width: 100%;
    justify-content: center;
}

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

.lead-form .form-group {
    margin-bottom: 16px;
}

.lead-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
    color: var(--gray-400);
}

.lead-form textarea {
    resize: vertical;
    min-height: 100px;
}

.lead-form .btn {
    width: 100%;
    margin-top: 10px;
}

/* Form Spinner Animation */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ================================
   Portfolio Section
   ================================ */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--glass-bg-subtle);
    border: 1px solid var(--glass-border-subtle);
    box-shadow: var(--glass-shadow);
    cursor: pointer;
    transition: var(--transition-base);
}

.portfolio-item:hover {
    transform: scale(1.02);
    box-shadow: var(--glass-shadow-lg), 0 0 40px rgba(164, 198, 232, 0.2);
    border-color: var(--glass-border);
}

.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(180deg, rgba(26, 42, 58, 0.3) 0%, rgba(26, 42, 58, 0.95) 100%);
}

.portfolio-item:hover .portfolio-title,
.portfolio-item:hover .portfolio-description,
.portfolio-item:hover .btn {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: var(--gray-100); /* Placeholder color while loading */
}

/* Lazy background loading */
.portfolio-image.lazy-bg {
    background-image: none;
    transition: opacity 0.3s ease;
}

.portfolio-image.lazy-bg.bg-loaded {
    animation: fadeInBg 0.4s ease forwards;
    background-repeat: no-repeat;
}

.portfolio-image.placeholder-project {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 42, 58, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    transition: all 0.4s ease;
}

.portfolio-category {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(21, 26, 29, 0.42);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.28);
    align-self: flex-start;
    box-shadow: var(--glass-inset);
}

.portfolio-info {
    display: flex;
    flex-direction: column;
}

.portfolio-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.1s;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.portfolio-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.15s;
    line-height: 1.4;
}

.portfolio-overlay .btn {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.2s;
    align-self: flex-start;
}

/* Portfolio Tabs */
.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.portfolio-tab {
    padding: 12px 28px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    box-shadow: var(--glass-inset);
    transition: var(--transition-base);
}

.portfolio-tab:hover {
    border-color: rgba(164, 198, 232, 0.6);
    color: var(--primary-darker);
    transform: translateY(-1px);
}

.portfolio-tab.active {
    background: linear-gradient(135deg, rgba(164, 198, 232, 0.92) 0%, rgba(123, 168, 212, 0.88) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
    box-shadow: var(--glass-shadow), var(--glass-inset);
}

.portfolio-category-section {
    display: none;
}

.portfolio-category-section.active {
    display: block;
}

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-tabs {
        gap: 8px;
    }
    
    .portfolio-tab {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-tab {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    /* Show overlay content by default on mobile */
    .portfolio-overlay {
        background: linear-gradient(180deg, rgba(26, 42, 58, 0.2) 0%, rgba(26, 42, 58, 0.9) 100%);
    }
    
    .portfolio-title {
        opacity: 1;
        transform: translateY(0);
        font-size: 1.1rem;
    }
    
    .portfolio-description {
        opacity: 1;
        transform: translateY(0);
        font-size: 0.8rem;
    }
    
    .portfolio-overlay .btn {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   CTA Section
   ================================ */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(164, 198, 232, 0.75) 0%, rgba(123, 168, 212, 0.65) 50%, rgba(90, 143, 196, 0.55) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 100%;
    max-width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(196, 221, 242, 0.2) 0%, transparent 45%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-title .text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #e8f2fa 50%, #c4ddf2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* ================================
   Blog Section
   ================================ */
.blog-content {
    padding: 80px 0;
}

.blog-category {
    margin-bottom: 80px;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.category-desc {
    color: var(--gray-600);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.blog-card {
    background: rgba(255, 255, 255, 0.82);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow), var(--glass-inset);
    overflow: hidden;
    transition: var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--glass-shadow-lg), var(--glass-inset);
    border-color: rgba(164, 198, 232, 0.55);
}

.blog-card-image {
    height: 180px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.blog-category-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--gray-800);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.blog-card-content {
    padding: 24px;
}

.blog-card-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-content h3 a:hover {
    color: var(--primary);
}

.blog-card-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Blog Article Page */
.blog-article {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
}

.article-header {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.article-category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.article-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 40px 0 20px;
}

.article-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 30px 0 16px;
}

.article-content p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 24px;
}

.article-content li {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 12px;
}

.article-content strong {
    color: var(--gray-900);
}

.article-cta {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur-heavy);
    -webkit-backdrop-filter: var(--glass-blur-heavy);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--glass-shadow-lg), var(--glass-inset);
    padding: 40px;
    text-align: center;
    margin-top: 50px;
}

.article-cta h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.article-cta p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .article-title {
        font-size: 1.6rem;
    }
}

/* ================================
   Footer
   ================================ */
.footer {
    background: var(--glass-bg-dark);
    backdrop-filter: var(--glass-blur-heavy);
    -webkit-backdrop-filter: var(--glass-blur-heavy);
    color: var(--white);
    padding: 70px 0 25px;
    overflow-x: hidden;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 50px;
    width: auto;
    min-width: 160px;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-300);
    font-size: 0.95rem;
}

.contact-link:hover {
    color: var(--primary);
}

.contact-icon {
    font-size: 1rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

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

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.copyright {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ================================
   Floating CTA
   ================================ */
.floating-cta {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.floating-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    min-width: 160px;
    height: 52px;
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: var(--glass-shadow-lg), var(--glass-inset);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    transition: var(--transition-base);
    text-decoration: none;
}

.floating-btn.floating-phone {
    background: linear-gradient(135deg, rgba(164, 198, 232, 0.92) 0%, rgba(123, 168, 212, 0.88) 100%);
}

.floating-btn.floating-phone:hover {
    background: linear-gradient(135deg, rgba(123, 168, 212, 0.98) 0%, rgba(90, 143, 196, 0.95) 100%);
    transform: scale(1.05);
}

.floating-btn.floating-whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.92) 0%, rgba(31, 184, 85, 0.88) 100%);
}

.floating-btn.floating-whatsapp:hover {
    background: #1fb855;
    transform: scale(1.05);
}

.floating-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.floating-btn.floating-phone .floating-icon {
    animation: phoneBounce 1s ease-in-out infinite;
}

.floating-btn.floating-whatsapp .floating-icon {
    animation: none;
}

.floating-btn.floating-whatsapp .floating-icon svg {
    width: 24px;
    height: 24px;
}

.floating-text {
    white-space: nowrap;
}

@keyframes phoneBounce {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

/* ================================
   Animations — see liquid-glass-animations.css
   ================================ */

/* ================================
   Page Hero (Subpages)
   ================================ */
.page-hero {
    position: relative;
    padding: 150px 0 80px;
    overflow: hidden;
    background: transparent;
    width: 100%;
    max-width: 100%;
}

.page-hero-small {
    padding: 140px 0 60px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 600px;
}

/* ================================
   Packages Grid (Column Layout)
   ================================ */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.packages-grid .package-card {
    flex: none;
    min-width: auto;
}

/* ================================
   Product Pages
   ================================ */
.product-hero {
    padding: 140px 0 60px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(164, 198, 232, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.product-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.product-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: var(--primary-darker);
    border: 1px solid var(--glass-border-subtle);
    border-radius: var(--radius-full);
    box-shadow: var(--glass-inset);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.product-tagline {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.product-price-hero {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 30px;
}

.product-price-hero .price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.product-price-hero .price-value {
    font-size: 4rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.product-price-hero .price-period {
    font-size: 1.2rem;
    color: var(--gray-500);
    font-weight: 500;
}

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

.product-cta-group .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Product Content */
.product-content {
    padding: 80px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
    position: relative;
}

.product-description {
    max-width: 100%;
}

.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.content-section .lead-text {
    font-size: 1.15rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 20px;
}

.content-section p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-section p strong {
    color: var(--gray-800);
}

/* Consultant Highlight Section */
.consultant-highlight {
    background: linear-gradient(135deg, var(--primary-ultra-light) 0%, #f0f7fc 100%);
    border-radius: var(--radius-xl);
    padding: 40px;
    border-left: 4px solid var(--primary);
}

.consultant-box {
    margin-top: 20px;
}

.consultant-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-item strong {
    color: var(--primary-darker);
    display: block;
    margin-bottom: 6px;
}

.consultant-note {
    text-align: center;
    font-size: 1.1rem;
    color: var(--primary-darker);
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

@media (max-width: 768px) {
    .consultant-benefits {
        grid-template-columns: 1fr;
    }
    
    .consultant-highlight {
        padding: 24px;
    }
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: var(--transition-fast);
}

.feature-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Ideal For */
.ideal-for {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ideal-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

.ideal-item .checkmark {
    color: #10B981;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 24px;
    margin-top: 30px;
}

.stat-box {
    flex: 1;
    text-align: center;
    padding: 24px;
    background: var(--primary-ultra-light);
    border-radius: var(--radius-lg);
}

.stat-box .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-darker);
    margin-bottom: 4px;
}

.stat-box .stat-label {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* Pricing Options */
.pricing-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.pricing-option {
    background: var(--primary-ultra-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-option:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.pricing-option h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--gray-800);
}

.pricing-option .option-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-darker);
    margin-bottom: 8px;
}

.pricing-option p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

@media (max-width: 768px) {
    .pricing-options {
        grid-template-columns: 1fr;
    }
}

/* Product Sidebar */
.product-sidebar {
    position: relative;
    align-self: start;
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-100);
    padding: 30px;
    box-shadow: var(--shadow-lg);
}

.sidebar-card.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.sidebar-price {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 24px;
}

.sidebar-price .price-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 8px;
    display: block;
}

.sidebar-price .price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.sidebar-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.sidebar-price .value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.sidebar-price .period {
    font-size: 1rem;
    color: var(--gray-500);
}

.sidebar-price .price-note {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 8px;
}

.sidebar-features {
    margin-bottom: 24px;
}

.sidebar-features h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.sidebar-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-features li {
    padding: 10px 0;
    color: var(--gray-700);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-50);
}

.sidebar-features li:last-child {
    border-bottom: none;
}

.sidebar-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.sidebar-guarantee {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #f0fdf4;
    border-radius: var(--radius-md);
    border: 1px solid #bbf7d0;
}

.sidebar-guarantee .guarantee-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.sidebar-guarantee p {
    font-size: 0.85rem;
    color: var(--gray-700);
    line-height: 1.5;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: var(--primary);
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    max-width: 100vw;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

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

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--gray-100);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

/* Responsive Product Pages */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sidebar-card.sticky {
        position: relative;
        top: 0;
    }
    
    .product-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding: 120px 0 50px;
    }
    
    .product-price-hero .price-value {
        font-size: 3rem;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* ================================
   Package Detail Pages
   ================================ */
.package-detail {
    scroll-margin-top: 100px;
}

.package-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.package-grid.reverse {
    direction: rtl;
}

.package-grid.reverse > * {
    direction: ltr;
}

.package-label {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-ultra-light);
    color: var(--primary-darker);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.package-label.recommended {
    background: var(--primary);
    color: var(--white);
}

.package-label.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--gray-900);
}

.package-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.package-tagline {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.package-price-block {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 20px;
    padding: 18px 22px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
}

.package-price-block .price-currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-darker);
}

.package-price-block .price-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.package-price-block .price-info {
    font-size: 1rem;
    color: var(--gray-500);
    margin-left: 6px;
}

.package-description {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 14px;
}

.package-description.highlight {
    padding: 14px 18px;
    background: var(--primary-ultra-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.pricing-note {
    padding: 14px 18px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 20px;
    border: 1px solid var(--gray-100);
}

.implementation-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--primary-ultra-light);
    border-radius: var(--radius-md);
    margin-bottom: 18px;
}

.implementation-note .note-icon {
    font-size: 1.4rem;
}

.implementation-note strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.implementation-note p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

.package-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

/* Features List */
.features-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 20px;
}

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

.features-list.compact {
    gap: 10px;
}

.features-list.compact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list.compact li span:last-child {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.features-list .feature-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: bold;
}

.features-list .feature-content strong {
    display: block;
    font-size: 1rem;
    color: var(--gray-800);
    margin-bottom: 3px;
}

.features-list .feature-content p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin: 0;
}

/* Payment Options Large */
.payment-options-large {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.payment-option-card {
    padding: 14px 18px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    position: relative;
}

.payment-option-card.active {
    border-color: var(--primary);
    background: var(--primary-ultra-light);
}

.payment-option-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.payment-option-card .option-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.payment-option-card .currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-darker);
}

.payment-option-card .amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gray-900);
}

.payment-option-card p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 3px;
}

.payment-option-card .option-badge {
    position: absolute;
    top: -8px;
    right: 14px;
    padding: 3px 10px;
    background: var(--success);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

/* Modules Grid */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.module-item {
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    text-align: center;
}

.module-item .module-badge {
    display: inline-block;
    padding: 3px 10px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    margin-bottom: 6px;
}

.module-item p {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin: 0;
}

/* ================================
   Comparison Table
   ================================ */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 0 -20px;
    padding: 0 20px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-table th,
.comparison-table td {
    padding: 14px 18px;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
}

.comparison-table th {
    background: var(--gray-50);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gray-800);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table .table-price {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-darker);
    margin-top: 3px;
}

.comparison-table .highlighted {
    background: var(--primary-ultra-light);
}

.comparison-table th.highlighted {
    background: var(--primary);
    color: var(--white);
}

.comparison-table th.highlighted .table-price {
    color: rgba(255,255,255,0.9);
}

.comparison-table .check {
    color: var(--success);
    font-size: 1rem;
    font-weight: bold;
}

.comparison-table .cross {
    color: var(--gray-300);
    font-size: 1rem;
}

.comparison-table .cta-row td {
    padding: 20px 18px;
    border-bottom: none;
}

/* ================================
   Benefits Grid
   ================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    text-align: center;
    transition: var(--transition-base);
}

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

.benefit-card .benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ================================
   Contact Page
   ================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.contact-text {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 28px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 35px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow), var(--glass-inset);
    transition: var(--transition-base);
}

.contact-method:hover {
    background: var(--glass-bg-strong);
    border-color: rgba(164, 198, 232, 0.55);
    transform: translateX(6px);
    box-shadow: var(--glass-shadow-lg), var(--glass-inset);
}

.contact-method .method-icon {
    font-size: 1.8rem;
}

.contact-method h3 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 3px;
}

.contact-method .method-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.contact-method .method-note {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.contact-cta {
    padding: 24px;
    background: linear-gradient(135deg, rgba(164, 198, 232, 0.85) 0%, rgba(123, 168, 212, 0.75) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-xl);
    box-shadow: var(--glass-shadow), var(--glass-inset);
    text-align: center;
}

.contact-cta .cta-text {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 14px;
}

.contact-cta .btn {
    background: var(--glass-bg-strong);
    color: var(--primary-darker);
}

.contact-form-container {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur-heavy);
    -webkit-backdrop-filter: var(--glass-blur-heavy);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow-lg), var(--glass-inset);
}

.form-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 28px;
}

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

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea,
.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--gray-800);
    background: var(--glass-bg-subtle);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border-subtle);
    border-radius: var(--radius-md);
    box-shadow: var(--glass-inset);
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: rgba(164, 198, 232, 0.65);
    background: var(--glass-bg-strong);
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.lead-form input::placeholder,
.lead-form textarea::placeholder {
    color: var(--gray-400);
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.checkbox-label input {
    width: auto;
    margin-top: 2px;
}

.checkbox-label a {
    color: var(--primary-darker);
    text-decoration: underline;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ================================
   FAQ Section
   ================================ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item {
    padding: 28px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow), var(--glass-inset);
    transition: var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--glass-shadow-lg), var(--glass-inset);
    border-color: rgba(164, 198, 232, 0.55);
    transform: translateY(-2px);
}

.faq-question {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ================================
   Responsive
   ================================ */
@media (max-width: 1024px) {
    .package-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .package-grid.reverse {
        direction: ltr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .modules-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 65px;
        --container-padding: 16px;
    }
    
    .logo-img {
        height: 36px;
        min-width: 120px;
    }
    
    .footer-logo {
        height: 32px;
        min-width: 110px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .footer-logo-text {
        font-size: 1.1rem;
    }
    
    /* Preloader Mobile */
    .preloader-logo {
        font-size: 1.5rem;
    }
    
    .preloader-bar {
        width: 150px;
    }
    
    /* Hero Mobile - Better fit */
    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 30px);
        padding-bottom: 40px;
    }
    
    .hero-content {
        padding: 30px 0;
        text-align: center;
    }
    
    .hero-badge {
        margin: 0 auto 20px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        text-align: center;
        margin: 0 auto 25px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        margin: 0 auto;
        justify-content: center;
        padding: 20px;
        gap: 20px;
    }
    
    .stat-divider {
        width: 1px;
        height: 40px;
        background: var(--gray-300);
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    /* Slider Mobile - Centered focused card */
    .slider-container {
        padding: 20px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .slider {
        padding: 15px 0;
        width: 100%;
        overflow: hidden;
    }
    
    .slider-track {
        padding: 20px 0;
        gap: 20px;
    }
    
    /* Slider cards on mobile - centered */
    .slider .package-card {
        flex: 0 0 calc(100vw - 60px);
        min-width: calc(100vw - 60px);
        max-width: calc(100vw - 60px);
        padding: 25px 20px;
    }
    
    .slider .slider-track {
        gap: 30px;
    }
    
    /* Blur non-active cards on mobile slider */
    .slider .package-card:not(.active) {
        opacity: 0.15 !important;
        filter: blur(8px) !important;
        pointer-events: none;
    }
    
    .slider .package-card.active {
        opacity: 1 !important;
        filter: blur(0) !important;
        transform: scale(1) !important;
    }
    
    /* Package pages - NO blur, stacked layout */
    .packages-grid .package-card {
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
        pointer-events: auto !important;
        flex: none;
        width: 100%;
        max-width: 100%;
    }
    
    .slider-controls {
        margin-top: 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    /* Section centering */
    .section-header {
        text-align: center;
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--glass-bg-strong);
        backdrop-filter: var(--glass-blur-heavy);
        -webkit-backdrop-filter: var(--glass-blur-heavy);
        border-top: 1px solid var(--glass-border-subtle);
        flex-direction: column;
        align-items: stretch;
        padding: 25px;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-100%);
        transition: var(--transition-base);
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    
    .nav-item {
        border-bottom: 1px solid var(--glass-border-subtle);
    }
    
    .nav-link {
        padding: 14px 0;
        font-size: 1rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 10px 20px;
        display: none;
    }
    
    .nav-item.dropdown-active .dropdown-menu {
        display: block;
    }
    
    .nav-actions .btn {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
        gap: 24px;
    }
    
    .packages-grid .package-card {
        flex: none;
        min-width: auto;
        max-width: 100%;
        width: 100%;
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
        pointer-events: auto !important;
        margin: 0 auto;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .floating-cta {
        bottom: 18px;
        right: 18px;
        gap: 10px;
    }
    
    .floating-text {
        display: none;
    }
    
    .floating-btn {
        width: 56px;
        height: 56px;
        min-width: 56px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }
    
    .floating-icon {
        font-size: 1.5rem;
    }
    
    .floating-btn.floating-whatsapp .floating-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .page-hero {
        padding: 120px 0 50px;
    }
    
    .page-title {
        font-size: 1.7rem;
    }
    
    .package-name {
        font-size: 1.8rem;
    }
    
    .package-price-block .price-value {
        font-size: 2.4rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 24px;
    }
    
    .lead-form-container {
        padding: 30px;
    }
    
    .lead-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-stats {
        gap: 15px;
        padding: 16px;
    }
    
    .stat-divider {
        width: 1px;
        height: 35px;
        background: var(--gray-300);
    }
    
    .slider .package-card {
        flex: 0 0 calc(100vw - 32px);
        min-width: calc(100vw - 32px);
        max-width: calc(100vw - 32px);
        padding: 20px 16px;
    }
    
    .slider .slider-track {
        gap: 16px;
    }
    
    .slider-container {
        padding: 20px 0;
    }
    
    .packages-grid .package-card {
        flex: none;
        min-width: auto;
        max-width: 100%;
        width: 100%;
        padding: 20px 16px;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    .card-tagline {
        font-size: 0.85rem;
    }
    
    .card-features li {
        font-size: 0.85rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .logo-img {
        height: 32px;
        min-width: 100px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .footer-logo-text {
        font-size: 1rem;
    }
    
    .preloader-logo {
        font-size: 1.3rem;
    }
    
    .lead-form-container {
        padding: 20px 16px;
    }
}

/* ================================
   Legal Pages (Privacy & Terms)
   ================================ */
.legal-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--primary-ultra-light) 100%);
}

.legal-content {
    padding: 60px 0 100px;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
}

.legal-section h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 24px 0 12px;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section ul li {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray-700);
    margin-bottom: 8px;
    position: relative;
}

.legal-section ul li::marker {
    color: var(--primary-dark);
}

.legal-section a {
    color: var(--primary-dark);
    text-decoration: underline;
    transition: color 0.2s;
}

.legal-section a:hover {
    color: var(--primary-darker);
}

.legal-section blockquote {
    background: var(--gray-50);
    border-left: 4px solid var(--primary);
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
}

.legal-section blockquote p {
    margin-bottom: 8px;
    font-style: italic;
}

.legal-section blockquote cite {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-style: normal;
}

.legal-section hr {
    border: none;
    height: 1px;
    background: var(--gray-200);
    margin: 48px 0;
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 140px 0 60px;
    }
    
    .legal-content {
        padding: 40px 0 80px;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
    }
}

/* ================================
   Liquid Glass — Global Component Overrides
   ================================ */
.benefit-item,
.feature-item,
.sidebar-card,
.payment-option-card,
.comparison-table-wrapper,
.legal-content,
.info-card,
.process-step,
.testimonial-card,
.pricing-highlight {
    background: var(--glass-bg) !important;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border) !important;
    box-shadow: var(--glass-shadow), var(--glass-inset) !important;
}

.benefit-item,
.feature-item,
.sidebar-card,
.payment-option-card,
.info-card,
.process-step,
.testimonial-card {
    border-radius: var(--radius-xl) !important;
}

.feature-item:hover,
.benefit-item:hover,
.payment-option-card.active {
    background: var(--glass-bg-strong) !important;
    border-color: rgba(164, 198, 232, 0.55) !important;
    box-shadow: var(--glass-shadow-lg), var(--glass-inset) !important;
}

.payment-option-card.active {
    background: linear-gradient(180deg, var(--glass-bg-strong) 0%, rgba(164, 198, 232, 0.12) 100%) !important;
}

.blog-category-tag {
    background: var(--glass-bg-strong) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-inset);
}

.stat-divider {
    background: var(--glass-border-subtle);
}

.module-tag {
    background: var(--glass-bg-subtle);
    border: 1px solid var(--glass-border-subtle);
}

.hero-grid {
    background-image:
        linear-gradient(rgba(164, 198, 232, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(164, 198, 232, 0.06) 1px, transparent 1px);
}

.hero-gradient,
.page-hero-bg .hero-gradient {
    opacity: 1;
}

.card-description {
    border-top-color: var(--glass-border-subtle);
}

/* ================================
   Liquid Glass — Performance-Optimized Motion
   Heavy effects: desktop + hover only
   ================================ */

/* ── Lite mode (mobile / low-power) ── */
html.perf-lite body::before,
html.perf-lite body::after,
html.perf-lite .liquid-blob,
html.perf-lite .particle-glass {
    display: none !important;
}

html.perf-lite .package-card,
html.perf-lite .feature-card,
html.perf-lite .blog-card,
html.perf-lite .faq-item,
html.perf-lite .lead-form-container,
html.perf-lite .contact-form-container,
html.perf-lite .hero-stats,
html.perf-lite .hero-badge,
html.perf-lite .dropdown-menu,
html.perf-lite .nav-menu {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

@media (max-width: 768px) {
    body::before,
    body::after {
        display: none;
    }

    .package-card,
    .feature-card,
    .blog-card,
    .faq-item,
    .lead-form-container,
    .contact-form-container,
    .hero-stats,
    .hero-badge,
    .dropdown-menu.active,
    .nav-menu {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

@media (prefers-reduced-motion: no-preference) {

    /* ── Text gradient (GPU-friendly) ── */
    .text-gradient {
        background-size: 200% auto;
        animation: liquidGradientShift 10s ease-in-out infinite;
    }

    @keyframes liquidGradientShift {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
    }

    /* ── Scroll reveal — NO blur (perf) ── */
    .animate-stagger {
        opacity: 0;
        transform: translateY(28px);
        transition:
            opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
            transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
        transition-delay: calc(var(--stagger-index, 0) * 60ms);
    }

    .animate-stagger.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .animate-fade-up {
        opacity: 0;
        transform: translateY(24px);
        transition:
            opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
            transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .delay-1 { transition-delay: 0.08s; }
    .delay-2 { transition-delay: 0.14s; }
    .delay-3 { transition-delay: 0.2s; }
    .delay-4 { transition-delay: 0.26s; }
    .delay-5 { transition-delay: 0.32s; }

    .section-header.animate-reveal {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .section-header.animate-reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* ── Card hover — transform only ── */
    .portfolio-item,
    .feature-card,
    .package-card,
    .blog-card {
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    }

    .portfolio-item:hover { transform: scale(1.02) translateY(-2px); }
    .feature-card:hover,
    .blog-card:hover { transform: translateY(-6px); }

    /* ── Floating CTA ── */
    .floating-cta.visible .floating-btn {
        animation: floatingEntrance 0.45s cubic-bezier(0.16, 1, 0.3, 1) backwards;
    }

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

    /* ── Header scroll ── */
    .header.scrolled {
        backdrop-filter: blur(32px) saturate(180%);
        -webkit-backdrop-filter: blur(32px) saturate(180%);
    }
}

/* ── Desktop-only premium effects ── */
@media (prefers-reduced-motion: no-preference) and (hover: hover) and (min-width: 1024px) {

    .liquid-blob {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        contain: strict;
        filter: blur(32px);
        opacity: 0.7;
    }

    .liquid-blob-1 {
        width: min(360px, 40vw);
        height: min(360px, 40vw);
        top: 10%;
        right: 8%;
        background: radial-gradient(circle, rgba(164, 198, 232, 0.45) 0%, transparent 70%);
        animation: blobFloat1 20s ease-in-out infinite;
    }

    .liquid-blob-2 {
        width: min(280px, 32vw);
        height: min(280px, 32vw);
        bottom: 15%;
        left: 0;
        background: radial-gradient(circle, rgba(196, 221, 242, 0.35) 0%, transparent 70%);
        animation: blobFloat2 24s ease-in-out infinite;
        animation-delay: -8s;
    }

    @keyframes blobFloat1 {
        0%, 100% { transform: translate(0, 0); }
        50% { transform: translate(-3%, 4%); }
    }

    @keyframes blobFloat2 {
        0%, 100% { transform: translate(0, 0); }
        50% { transform: translate(4%, -3%); }
    }

    .particle-glass {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        box-shadow: 0 0 12px rgba(164, 198, 232, 0.25);
        animation: particleDrift var(--float-duration, 12s) ease-in-out infinite;
        animation-delay: var(--float-delay, 0s);
    }

    @keyframes particleDrift {
        0%, 100% { transform: translateY(0); opacity: 0.4; }
        50% { transform: translateY(-18px); opacity: 0.7; }
    }

    .btn-primary::before,
    .btn-glow::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.3) 50%, transparent 60%);
        transform: translateX(-120%);
        animation: btnShimmer 5s ease-in-out infinite;
        pointer-events: none;
        z-index: 0;
    }

    .btn-primary > *,
    .btn-glow > * { position: relative; z-index: 1; }

    @keyframes btnShimmer {
        0%, 75%, 100% { transform: translateX(-120%); }
        90% { transform: translateX(120%); }
    }

    .glass-spotlight::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: radial-gradient(
            400px circle at var(--spot-x, 50%) var(--spot-y, 50%),
            rgba(255, 255, 255, 0.2) 0%,
            transparent 60%
        );
        opacity: 0;
        transition: opacity 0.35s ease;
        pointer-events: none;
        z-index: 2;
    }

    .glass-spotlight:hover::after { opacity: 1; }

    .magnetic-btn {
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hero-badge,
    .hero-stats {
        animation: gentleFloat 8s ease-in-out infinite;
    }

    @keyframes gentleFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-4px); }
    }

    .hero-content.animate-entrance .hero-badge,
    .hero-content.animate-entrance .hero-stats {
        animation: none;
    }

    .hero-content.visible-float .hero-badge {
        animation: heroSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards, gentleFloat 8s ease-in-out 0.7s infinite;
    }

    .hero-content.visible-float .hero-stats {
        animation: heroStatsReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards, gentleFloat 8s ease-in-out 0.9s infinite;
    }
}

@media (prefers-reduced-motion: reduce) {
    .animate-stagger,
    .animate-fade-up,
    .section-header.animate-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ================================
   Premium Polish — Soft UI Evolution
   Subtle refinements, same brand identity
   ================================ */

/* ── Typography rhythm ── */
.hero-title {
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.hero-subtitle {
    letter-spacing: 0.01em;
    text-wrap: pretty;
}

.section-title {
    letter-spacing: -0.025em;
    text-wrap: balance;
}

.section-tag {
    letter-spacing: 0.08em;
}

/* ── Hero depth accent ── */
.hero-content {
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(164, 198, 232, 0.22) 0%, transparent 68%);
    pointer-events: none;
    z-index: -1;
}

.hero-stats {
    position: relative;
    overflow: hidden;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Trust strip (inspired by Magic MCP trust hero) ── */
.hero-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
    max-width: 720px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--glass-border-subtle);
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(31, 38, 135, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.trust-pill svg {
    width: 14px;
    height: 14px;
    color: var(--primary-darker);
    flex-shrink: 0;
}

.trust-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(164, 198, 232, 0.45);
    box-shadow: 0 6px 16px rgba(31, 38, 135, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.trust-pill-accent {
    color: var(--primary-darker);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(232, 242, 250, 0.85) 100%);
}

/* ── Card icon ring ── */
.card-icon {
    box-shadow:
        0 4px 14px rgba(123, 168, 212, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* ── Featured package accent ── */
.package-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-darker), var(--primary-light));
    opacity: 0.85;
}

/* ── Softer card shadows (Soft UI Evolution) ── */
.package-card,
.feature-card,
.blog-card,
.portfolio-item {
    box-shadow:
        0 2px 4px rgba(31, 38, 135, 0.04),
        0 8px 24px rgba(31, 38, 135, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

/* ── Section header polish ── */
.section-header {
    position: relative;
}

.section-header::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    margin: 20px auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.55;
}

/* ── Nav active indicator ── */
.nav-link.active {
    position: relative;
}

.nav-link.active::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 18px;
    right: 18px;
    height: 2px;
    border-radius: 1px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-darker));
    opacity: 0.7;
}

/* ── Lead form premium frame ── */
.lead-form-container {
    position: relative;
}

.lead-form-container::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(164, 198, 232, 0.5), rgba(255, 255, 255, 0.3), rgba(164, 198, 232, 0.35));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.65;
}

/* ── CTA inner glow ── */
.cta-section .cta-content {
    position: relative;
}

.cta-section .cta-content::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 120px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Focus states (WCAG) ── */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--primary-darker);
    outline-offset: 3px;
}

/* ── Stat numbers polish ── */
.stat-number {
    font-variant-numeric: tabular-nums;
}

/* ── Portfolio overlay refinement ── */
.portfolio-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(21, 26, 29, 0.35) 55%, rgba(21, 26, 29, 0.82) 100%);
}

@media (max-width: 768px) {
    .hero-trust-strip {
        gap: 8px;
    }

    .trust-pill {
        font-size: 0.75rem;
        padding: 7px 12px;
    }

    .hero-content::before {
        display: none;
    }
}

/* ================================
   Print Styles
   ================================ */
@media print {
    .header,
    .floating-cta,
    .hero-scroll,
    .slider-controls {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    .section {
        padding: 40px 0;
    }
}
