/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0a0e1a;
    --secondary-bg: #1a1f2e;
    --card-bg: #252a3a;
    --accent-blue: #00d4ff;
    --accent-blue-hover: #00b8e6;
    --text-white: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #00d4ff;
    --text-gray: #b8c5d6;
    --text-muted: #8a94a6;
    --border-color: #2a3142;
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    --gradient-secondary: linear-gradient(135deg, #1a1f2e 0%, #252a3a 100%);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.4);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    scroll-padding-top: 80px; /* Account for fixed navbar */
}

body {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--primary-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    -webkit-overflow-scrolling: touch;
    height: 100%;
    transform: none;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Ensure proper scrolling for anchor links */
section[id] {
    scroll-margin-top: 80px;
    scroll-snap-align: start;
}

/* Additional scroll behavior support */
* {
    scroll-behavior: smooth;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow);
}

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

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--accent-blue);
}

.btn-secondary:hover {
    background: var(--accent-blue);
    color: var(--primary-bg);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-link {
    display: block;
    text-decoration: none;
}

.logo-link:hover .logo {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 12px;
    cursor: pointer;
    user-select: none;
}

.nav-link:hover {
    color: var(--accent-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.05);
}

/* Hamburger animation when active */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.bar:nth-child(1) {
    transform-origin: center;
}

.bar:nth-child(2) {
    transform-origin: center;
}

.bar:nth-child(3) {
    transform-origin: center;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #0a0e1a 100%);
    position: relative;
    overflow: visible;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    opacity: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(10px);
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.2));
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(8px);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin: 15px 0;
    opacity: 0;
    line-height: 1.6;
    max-width: 800px;
    transform: translateY(6px);
}

/* Mobile optimization for hero description */
@media (max-width: 768px) {
    .hero-description {
        transform: translateY(6px); /* Consistent with desktop */
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(8px);
}

.hero-buttons .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.futuristic-background {
    position: relative;
    height: 400px;
    width: 100%;
    overflow: visible;
}

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

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Mobile optimization for glow effects */
@media (max-width: 768px) {
    .hero-glow {
        width: 200px;
        height: 200px;
        filter: blur(30px);
        animation: pulseMobile 6s ease-in-out infinite; /* Slower animation */
    }
    
    /* Prevent layout shifts on mobile */
    .hero-title,
    .hero-subtitle,
    .hero-description,
    .hero-buttons {
        will-change: opacity, transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
    
    /* Reduce animation complexity on mobile */
    .hero-title,
    .hero-subtitle,
    .hero-description,
    .hero-buttons {
        transform-style: flat; /* Disable 3D transforms on mobile */
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes pulseMobile {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1); /* Reduced scale for mobile */
        opacity: 0.5;
    }
}

/* Enhanced animation keyframes */
@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

/* Mobile-optimized animations */
@keyframes titleRevealMobile {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes descriptionRevealMobile {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.8;
    }
}

@keyframes floatMobile {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-15px);
        opacity: 0.8;
    }
}

@keyframes enhancedPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
        filter: blur(40px);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.7;
        filter: blur(30px);
    }
}

@keyframes secondaryPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.4;
    }
}

@keyframes tertiaryPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}



@keyframes backgroundFade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes scrollHint {
    0%, 100% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.05);
    }
}

@keyframes scrollHintFade {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    10% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    90% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
}



/* Enhanced hero effects */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(0, 212, 255, 0.03) 50%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Hero animation states */
.hero-title.animate,
.hero-subtitle.animate,
.hero-buttons.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Simple hero animations with elegant timing */
.hero-title.animate {
    animation: titleReveal 1.2s ease-out forwards;
}

.hero-subtitle.animate {
    animation: subtitleReveal 1.0s ease-out forwards;
}

.hero-buttons.animate {
    animation: buttonsReveal 0.8s ease-out forwards;
}

/* Hero description animation */
.hero-description.animate {
    animation: descriptionReveal 1.1s ease-out forwards;
}

/* Mobile-optimized hero animations */
@media (max-width: 768px) {
    .hero-title.animate {
        animation: titleRevealMobile 0.8s ease-out forwards;
    }
    
    .hero-subtitle.animate {
        animation: subtitleRevealMobile 0.8s ease-out forwards;
    }
    
    .hero-buttons.animate {
        animation: buttonsRevealMobile 0.8s ease-out forwards;
    }
    
    .hero-description.animate {
        animation: descriptionRevealMobile 0.8s ease-out forwards;
    }
    
    /* Reduce initial transform distances on mobile */
    .hero-title {
        transform: translateY(20px); /* Reduced from 30px */
    }
    
    .hero-subtitle {
        transform: translateY(15px); /* Reduced from 20px */
    }
    
    .hero-description {
        transform: translateY(10px); /* Reduced from 15px + rotateX */
    }
    
    .hero-buttons {
        transform: translateY(15px); /* Reduced from 20px */
    }
}

/* Floating particles animation */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-blue);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

/* Mobile optimization for particles */
@media (max-width: 768px) {
    .particle {
        animation: floatMobile 8s ease-in-out infinite; /* Slower, smoother animation */
    }
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 8s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; animation-duration: 10s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; animation-duration: 7s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; animation-duration: 9s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; animation-duration: 6s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 8s; }
.particle:nth-child(7) { left: 70%; animation-delay: 6s; animation-duration: 7s; }
.particle:nth-child(8) { left: 80%; animation-delay: 7s; animation-duration: 9s; }
.particle:nth-child(9) { left: 90%; animation-delay: 8s; animation-duration: 6s; }

/* Enhanced glow effects */
.hero-glow.animate {
    animation: enhancedPulse 3s ease-in-out infinite;
}

.hero-glow-secondary {
    position: absolute;
    top: 30%;
    left: 20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    z-index: 0;
    animation: secondaryPulse 5s ease-in-out infinite;
}

.hero-glow-tertiary {
    position: absolute;
    top: 70%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(25px);
    z-index: 0;
    animation: tertiaryPulse 7s ease-in-out infinite;
}



/* Enhanced hero section effects */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    animation: backgroundFade 3s ease-out 2s forwards;
}



/* Services Section */
.services {
    padding: 80px 0;
    background: var(--primary-bg);
    overflow: visible;
    position: relative;
    z-index: 1;
    transform: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: visible;
    pointer-events: auto;
    touch-action: pan-y;
    transform: none;
}

.services-container {
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: visible;
    z-index: 1;
    transform: none;
}

/* Ensure services grid fits well in container */
.services-grid {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Card Styles */
.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: auto;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    will-change: transform;
    pointer-events: auto;
}

.service-card:hover {
    transform: translate3d(0, -8px, 0);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-blue);
    z-index: 10;
    pointer-events: auto;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Responsive services grid */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .service-card {
        min-height: 300px;
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        min-height: 300px;
        padding: 1.5rem;
    }
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--primary-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-white);
}

.benefit-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.benefit-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.benefits-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.benefits-cta p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin: 0;
}

/* What You Get Section */
.what-you-get {
    padding: 80px 0;
    background: var(--secondary-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-white);
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.features-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.features-cta p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin: 0;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    text-align: center;
}

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

.cta-description {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #0a0e1a 100%);
    position: relative;
    overflow: visible;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    opacity: 1;
}

.about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(0, 212, 255, 0.03) 50%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* About section canvas for mouse trail */
.about-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.about-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-section {
    margin-bottom: 2.5rem;
}

.about-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent-blue);
    padding-left: 1rem;
}

.about-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
}



.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}



/* Mobile responsiveness for about section */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-subtitle {
        text-align: center;
    }
    
    /* Optimize particles for mobile */
    .about-particle {
        animation: floatMobile 10s ease-in-out infinite;
    }
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--primary-bg);
    overflow: visible;
}

.pricing-grid {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    min-height: auto;
}

.pricing-grid::-webkit-scrollbar {
    height: 8px;
}

.pricing-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.pricing-grid::-webkit-scrollbar-thumb {
    background: var(--accent-blue);
    border-radius: 4px;
}

.pricing-grid::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue-hover, #00b8e6);
}

/* Firefox scrollbar styling */
.pricing-grid {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-blue) rgba(255, 255, 255, 0.1);
}

/* Smooth scrolling behavior */
.pricing-grid {
    scroll-behavior: smooth;
}

/* Add some padding to the container to account for scrollbar */
.pricing-container {
    padding-bottom: 1rem;
}

/* Mobile responsive adjustments for horizontal scrolling */
@media (max-width: 768px) {
    .pricing-grid {
        gap: 1rem;
        padding: 0.2rem 0 1rem 0;
        margin-top: 0.2rem;
        overflow-y: visible;
        /* Add visual scroll hint */
        position: relative;
        /* Enhanced touch scrolling */
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
        min-height: auto;
    }
    
    .pricing-card {
        min-width: 280px; /* Reduced from 350px for mobile */
        padding: 1.5rem;
        padding-bottom: 3rem;
        min-height: auto;
        height: auto;
        overflow: visible;
        box-sizing: border-box;
        /* Enhanced snap behavior */
        scroll-snap-align: center;
        margin-bottom: 1rem;
    }
    
    .pricing-grid::-webkit-scrollbar {
        height: 12px; /* Thicker scrollbar on mobile */
    }
    
    .pricing-grid::-webkit-scrollbar-thumb {
        background: var(--accent-blue);
        border-radius: 6px;
        border: 2px solid var(--card-bg);
    }
    
    /* Mobile scroll indicators - DISABLED to prevent duplicate notifications */
    .pricing-grid::before {
        display: none !important;
    }
    
    .pricing-grid::after {
        content: '';
        position: absolute;
        right: 0;
        top: -8px;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, transparent 0%, var(--accent-blue) 100%);
        opacity: 0.7;
        z-index: 2;
        border-radius: 2px;
    }
    
    /* Enhanced mobile card styling */
    .pricing-card:hover {
        transform: translateY(-4px); /* Reduced hover effect on mobile */
    }
    
    /* Mobile scroll momentum */
    .pricing-grid {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Card pagination indicators */
    .pricing-pagination {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 2rem;
        opacity: 0.8;
        width: 100%;
        position: relative;
        z-index: 1;
    }
    
    .pagination-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
        cursor: pointer;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .pagination-dot.active {
        background: var(--accent-blue);
        transform: scale(1.3);
        border-color: var(--accent-blue);
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
    }
    
    .pagination-dot:hover {
        background: var(--accent-blue);
        opacity: 0.8;
        transform: scale(1.1);
    }
    
    /* Hide pagination on desktop */
    .pricing-pagination {
        display: none;
    }
    
    /* Show pagination only on mobile */
    @media (max-width: 768px) {
        .pricing-pagination {
            display: flex;
            margin-top: 2rem;
            padding: 0 1rem;
        }
        
        /* Ensure pagination is below the scrollable grid */
        .pricing-container {
            padding-bottom: 1rem;
        }
        
        /* Make pricing cards narrower on mobile */
        .pricing-card {
            min-width: 250px;
            max-width: 280px;
            padding: 1.5rem;
            margin: 0 0.5rem;
        }
        
        /* Adjust pricing grid for narrower cards */
        .pricing-grid {
            gap: 1rem;
            padding: 0 1rem;
        }
        
        /* Even narrower cards for very small screens */
        @media (max-width: 480px) {
            .pricing-card {
                min-width: 220px;
                max-width: 250px;
                padding: 1.2rem;
                padding-bottom: 2.5rem;
                margin: 0 0.3rem;
                margin-bottom: 0.8rem;
                overflow: visible;
                box-sizing: border-box;
            }
            
            .pricing-grid {
                gap: 0.8rem;
                padding: 0 0.8rem;
                padding-bottom: 1rem;
                overflow-y: visible;
                box-sizing: border-box;
            }
        }
        
        /* Fix for medium-small screens (480px - 600px) to prevent vertical scrollbar */
        @media (min-width: 481px) and (max-width: 600px) {
            .pricing-card {
                min-width: 240px;
                max-width: 260px;
                padding: 1.3rem;
                padding-bottom: 2.5rem;
                margin: 0 0.4rem;
                margin-bottom: 0.8rem;
                overflow: visible;
                box-sizing: border-box;
            }
            
            .pricing-grid {
                gap: 0.9rem;
                padding: 0 0.9rem;
                padding-bottom: 1rem;
                overflow-y: visible;
                box-sizing: border-box;
            }
        }
        
        /* Mobile scroll notification */
        .mobile-scroll-notification {
            display: none; /* Hidden by default */
            position: absolute;
            left: 50%;
            bottom: 90px;
            transform: translateX(-50%);
            text-align: center;
            color: var(--accent-blue) !important;
            font-size: 1.2rem;
            font-weight: 700;
            padding: 15px 30px;
            background: rgba(0, 0, 0, 0.98);
            border: 4px solid var(--accent-blue);
            border-radius: 35px;
            box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
            text-shadow: 0 0 20px rgba(0, 212, 255, 1);
            z-index: 9999;
            pointer-events: none;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease-in-out;
        }
        
        .mobile-scroll-notification.show {
            opacity: 1;
            transition: opacity 0.5s ease-in-out;
            color: var(--accent-blue) !important;
        }
        
        .mobile-scroll-notification.hidden {
            opacity: 0 !important;
            visibility: hidden !important;
            display: none !important;
            pointer-events: none !important;
        }
        
        @media (max-width: 768px) {
            .mobile-scroll-notification {
                display: block;
                visibility: visible;
                opacity: 1;
                transition: opacity 0.5s ease-in-out;
            }
            
            .pricing-container {
                position: relative;
            }
        }
        
        @media (min-width: 769px) {
            .mobile-scroll-notification {
                display: none !important;
                visibility: hidden !important;
                opacity: 0 !important;
                pointer-events: none !important;
                position: absolute !important;
                left: -9999px !important;
                top: -9999px !important;
                width: 0 !important;
                height: 0 !important;
                overflow: hidden !important;
                clip: rect(0, 0, 0, 0) !important;
            }
        }
    }
}

/* Container for services and pricing */
.services-container,
.pricing-container {
    width: 100%;
    max-width: 100%;
    position: relative;
    height: auto;
    min-height: auto;
    overflow: visible;
    box-sizing: border-box;
    padding: 0.2rem 0 1rem 0;
}

/* Ensure the grid works properly */
.services-grid,
.pricing-grid {
    width: 100%;
    transform: none;
    pointer-events: auto;
}

/* Scroll arrows removed - using responsive grid layout instead */

/* Pricing section */
.pricing {
    position: relative;
    height: auto;
    min-height: auto;
    overflow: visible;
    box-sizing: border-box;
    padding-bottom: 1rem;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    padding-bottom: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.2s ease;
    border: 1px solid var(--border-color);
    height: auto;
    min-height: auto;
    max-height: none;
    min-width: 350px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    will-change: transform;
    scroll-snap-align: start;
    overflow: visible;
    box-sizing: border-box;
}

.pricing-card:hover {
    transform: translate3d(0, -8px, 0);
    box-shadow: var(--shadow-hover);
    z-index: 10;
}

.pricing-card.featured {
    border: 2px solid var(--accent-blue);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translate3d(0, -8px, 0);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--text-white);
    box-shadow: var(--shadow);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.package-target {
    font-size: 0.9rem;
    color: var(--accent-blue);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.price {
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--accent-blue);
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
}

.payment-info {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    font-style: italic;
}

.total-price {
    font-size: 1rem;
    color: var(--accent-blue);
    font-weight: 600;
    margin-top: 0.25rem;
    padding: 0.4rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    border: 1px solid var(--accent-blue);
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.25rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.3;
}

.pricing-features i {
    color: var(--accent-blue);
    font-size: 0.9rem;
}

/* PLENUS.si link styling */
.pricing-features a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.pricing-features a:hover {
    color: var(--accent-blue-hover, #00b8e6);
    border-bottom-color: var(--accent-blue);
    transform: translateY(-1px);
}

.pricing-features a:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
    border-radius: 4px;
}

.package-includes,
.optional-addons,
.package-benefits {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--accent-blue);
}

.package-includes strong,
.optional-addons strong,
.package-benefits strong {
    color: var(--accent-blue);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
}

.package-includes ul,
.optional-addons ul,
.package-benefits ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.package-includes li,
.optional-addons li,
.package-benefits li {
    color: var(--text-gray);
    font-size: 0.8rem;
    padding: 0.15rem 0;
    position: relative;
    padding-left: 1rem;
    line-height: 1.2;
}

.package-includes li::before,
.optional-addons li::before,
.package-benefits li::before {
    content: '•';
    color: var(--accent-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Remove bullets and center text for optional-addons and package-benefits */
.optional-addons li,
.package-benefits li {
    text-align: center;
    padding-left: 0;
}

.optional-addons li::before,
.package-benefits li::before {
    display: none;
}

.pricing-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--secondary-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-white);
}

.contact-item h4 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-gray);
}

.contact-item a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 2px 4px;
    border-radius: 4px;
}

.contact-item a:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

.contact-item a:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

/* Enhanced contact item styling */
.contact-item:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.contact-item:hover i {
    background: var(--gradient-primary);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.contact-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced dropdown styling - consolidated and robust */
.form-group select {
    /* Remove default browser styling */
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    -ms-appearance: none !important;
    
    /* Custom background with gradient and arrow */
    background-image: 
        linear-gradient(135deg, var(--secondary-bg) 0%, rgba(0, 212, 255, 0.05) 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300d4ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: 
        center,
        right 1rem center !important;
    background-size: 
        100% 100%,
        16px 16px !important;
    
    /* Layout and positioning */
    padding-right: 3rem !important;
    cursor: pointer !important;
    position: relative !important;
    
    /* Ensure our styles take precedence */
    border-radius: 8px !important;
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
    
    /* Smooth transitions */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.form-group select:hover {
    background-position: 100% 100%;
    border-color: var(--accent-blue) !important;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1) !important;
    transform: translateY(-1px) !important;
}

.form-group select:focus {
    background-position: 100% 100%;
    border-color: var(--accent-blue) !important;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1), 0 0 20px rgba(0, 212, 255, 0.2) !important;
    transform: translateY(-1px) !important;
    outline: none !important;
}

/* Dropdown options styling */
.form-group select option {
    background: var(--card-bg);
    color: var(--text-white);
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    margin: 2px 0;
    transition: all 0.3s ease;
}

.form-group select option:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateX(5px);
}

.form-group select option:checked {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #00b8e6 100%);
    color: white;
    font-weight: 600;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
}

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

/* Checkbox styling */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 0.75rem;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(0, 212, 255, 0.05);
    line-height: 1.4;
}

.checkbox-label:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--accent-blue);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label .checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--accent-blue);
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    background: transparent;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.1);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--accent-blue);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.3);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.checkbox-label input[type="checkbox"]:required + .checkmark {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}

.checkbox-label input[type="checkbox"].validated:required:invalid + .checkmark {
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.3);
    animation: checkboxPulse 2s ease-in-out infinite;
}

@keyframes checkboxPulse {
    0%, 100% { 
        box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.3);
    }
    50% { 
        box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    }
}

.checkbox-label a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    white-space: normal;
}

.checkbox-label .checkbox-text {
    display: inline;
    white-space: normal;
    line-height: 1.4;
    flex: 1;
}

.checkbox-label a:hover {
    color: var(--accent-blue-hover, #00b8e6);
    text-decoration: none;
    border-bottom-color: var(--accent-blue);
    transform: translateY(-1px);
}

/* Honeypot field - hidden from users */
.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* reCAPTCHA disclaimer */
.recaptcha-disclaimer {
    font-size: 0.55rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1.75rem;
    line-height: 1.3;
    opacity: 0.6;
    font-style: normal;
}

.recaptcha-disclaimer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.1s ease;
    font-weight: 400;
    border-bottom: 1px solid transparent;
}

.recaptcha-disclaimer a:hover {
    color: var(--accent-blue);
    border-bottom-color: var(--accent-blue);
    opacity: 0.8;
}

.recaptcha-disclaimer a:focus {
    outline: 1px solid var(--accent-blue);
    outline-offset: 1px;
    border-radius: 2px;
}



/* Prepayment Pricing */
.prepayment-price {
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--accent-blue);
    border-radius: 8px;
}

.prepayment-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.prepayment-effective {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
}



/* Mobile contact styling */
@media (max-width: 768px) {
    .contact-item a {
        font-size: 0.9rem;
    }
}

/* Payment Toggle Switch */
.payment-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.toggle-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: var(--text-white);
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--accent-blue);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Monthly payment styles (default) */
.pricing-card.monthly .price .amount {
    color: var(--accent-blue);
    display: inline;
}

.pricing-card.monthly .price .period {
    display: inline;
}

.pricing-card.monthly .total-price {
    color: var(--text-muted);
    background: rgba(128, 128, 128, 0.1);
    border-color: var(--border-color);
}

.pricing-card.monthly .effective-monthly {
    display: none;
}

/* Prepayment styles - show when toggle is unchecked */
.pricing-card:not(.monthly) .effective-monthly {
    display: block;
}

.effective-monthly {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.25rem;
    font-style: italic;
    opacity: 0.8;
}

/* Hide reCAPTCHA badge */
.grecaptcha-badge {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Footer */
.footer {
    background: var(--primary-bg);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo .logo {
    height: 50px;
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo .logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.footer-logo p {
    color: var(--text-gray);
    max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-blue);
    color: var(--text-white);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Mobile footer centering */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-logo p {
        margin: 0 auto;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .footer-social {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show {
    opacity: 1;
    backdrop-filter: blur(15px);
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background: var(--card-bg);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 1px solid var(--border-color);
    transform: translateY(-30px) scale(0.95);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal.show h2 {
    animation: titleSlideIn 0.6s ease forwards;
    animation-delay: 0.05s;
    opacity: 0;
    transform: translateY(-20px);
}

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

/* Enhanced Modal Close Button - Unified Design */
.close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
    font-size: 1.5rem;
    font-weight: 300;
    z-index: 15;
    background: none;
    border: none;
    padding: 0;
}

.close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.close:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.3);
}

.close:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

.modal h2 {
    margin-bottom: 1.5rem;
    color: var(--text-white);
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-bg);
        width: 100%;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow);
        padding: 2rem 0;
        transform: translateX(100%);
    }

    .nav-menu.active {
        right: 0;
        transform: translateX(0);
    }

    /* Enhanced mobile menu styling */
    .nav-menu {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-left: 1px solid rgba(0, 212, 255, 0.2);
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
    }

    .nav-menu .nav-link {
        padding: 1rem 2rem;
        margin: 0.5rem 1rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .nav-menu .nav-link:hover {
        transform: translateX(-5px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-grid {
        gap: 1rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .services-grid {
        gap: 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }

    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue-hover);
}

/* Privacy Policy Modal Specific Styles */
.privacy-policy-content {
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
}

.privacy-policy-content h2 {
    color: var(--accent-blue);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 1rem;
    font-weight: 600;
}

.privacy-policy-body {
    line-height: 1.7;
    color: var(--text-light);
}

.company-info-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 184, 230, 0.05) 100%);
    border: 2px solid var(--accent-blue);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.1);
}

.company-info-section h3 {
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.company-info-section p {
    margin: 0;
    line-height: 1.8;
    color: var(--text-white);
    font-size: 1.1rem;
}

.company-info-section strong {
    color: var(--accent-blue);
    font-weight: 600;
}

.policy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h3 {
    color: var(--text-white);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-left: 4px solid var(--accent-blue);
    padding-left: 1rem;
}

.policy-section p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    font-size: 1rem;
}

.policy-section ul {
    margin: 1.2rem 0;
    padding-left: 1.8rem;
}

.policy-section li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
}

.policy-section li::before {
    content: '•';
    color: var(--accent-blue);
    position: absolute;
    left: -1.2rem;
    font-weight: bold;
    font-size: 1.2rem;
}

.policy-section strong {
    color: var(--text-white);
    font-weight: 600;
}

/* Privacy Policy Modal Scrollbar */
.privacy-policy-content::-webkit-scrollbar {
    width: 10px;
}

.privacy-policy-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin: 4px;
}

.privacy-policy-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #00b8e6 100%);
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.privacy-policy-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--accent-blue-hover) 0%, #00a3cc 100%);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}



/* Mobile Modal Close Button */
@media (max-width: 768px) {
    .close {
        top: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }
}

/* Mobile Privacy Policy Modal */
@media (max-width: 768px) {
    .privacy-policy-content {
        max-width: 95%;
        max-height: 90vh;
        padding: 1.5rem;
        margin: 2% auto;
    }
    
    .privacy-policy-content h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .company-info-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .company-info-section h3 {
        font-size: 1.2rem;
    }
    
    .company-info-section p {
        font-size: 1rem;
    }
    
    .policy-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    

    
    .policy-section h3 {
        font-size: 1.1rem;
    }
    
    .policy-section ul {
        padding-left: 1.5rem;
    }
    

}

/* Form tooltips enhancement */
.form-group input[title]:hover::after,
.form-group textarea[title]:hover::after,
.form-group select[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-blue);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.form-group input[title]:hover::after,
.form-group textarea[title]:hover::after,
.form-group select[title]:hover::after {
    opacity: 1;
}

/* Enhanced form styling */
.form-group {
    position: relative;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

/* Form validation states - only show after user interaction */
.form-group input.validated:required:invalid,
.form-group textarea.validated:required:invalid,
.form-group select.validated:required:invalid {
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.form-group input.validated:required:valid,
.form-group textarea.validated:required:valid,
.form-group select.validated:required:valid {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}

/* Required field indicator */
.form-group input:required::placeholder,
.form-group textarea:required::placeholder,
.form-group select:required::placeholder {
    color: var(--text-muted);
}

.form-group input.validated:required:invalid::placeholder,
.form-group textarea.validated:required:invalid::placeholder,
.form-group select.validated:required:invalid::placeholder {
    color: #ff6b35;
    opacity: 0.7;
}

/* Notification System */
.notification {
    position: fixed;
    top: 60px;
    right: 30px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, #00b8e6 100%);
    color: white;
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.4), 0 0 30px rgba(0, 212, 255, 0.2);
    z-index: 3000;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 450px;
    border: 2px solid var(--accent-blue);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

/* Progress bar for auto-close */
.notification::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    width: 100%;
    z-index: 1;
}

.notification .progress-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 1));
    width: 100%;
    z-index: 2;
    transform-origin: right;
    transform: scaleX(1);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notification-message {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
}

.notification-close {
    position: relative;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.notification-close::before,
.notification-close::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background: var(--text-muted);
    transition: all 0.3s ease;
    border-radius: 1px;
}

.notification-close::before {
    transform: rotate(45deg);
}

.notification-close::after {
    transform: rotate(-45deg);
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.notification-close:hover::before,
.notification-close:hover::after {
    background: var(--text-white);
    width: 14px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.notification-close:active {
    transform: scale(0.95);
}

/* Notification types */
.notification-success {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #00b8e6 100%);
    border: 2px solid var(--accent-blue);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.4), 0 0 30px rgba(0, 212, 255, 0.2);
}

.notification-success .notification-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.notification-error {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: 2px solid #ff6b35;
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4), 0 0 30px rgba(255, 107, 53, 0.2);
}

.notification-error .notification-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.notification-info {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #00b8e6 100%);
    border: 2px solid var(--accent-blue);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.4), 0 0 30px rgba(0, 212, 255, 0.2);
}

.notification-info .notification-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile optimization */
@media (max-width: 768px) {
    .notification {
        top: 40px;
        right: 20px;
        left: 20px;
        max-width: none;
        transform: translateY(-100%);
        padding: 1.5rem 2rem;
    }
    
    .notification.show {
        transform: translateY(0);
    }
    
    .notification-content {
        gap: 1rem;
    }
    
    .notification-message {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .notification-close {
        width: 24px;
        height: 24px;
    }
    
    .notification-close::before,
    .notification-close::after {
        width: 12px;
        height: 2px;
    }
    
    .notification-close:hover::before,
    .notification-close:hover::after {
        width: 14px;
    }
    
    /* Mobile animation optimizations */
    .service-card,
    .pricing-card,
    .contact-item,
    .stat,
    .benefit-item,
    .feature-item,
    .section-title,
    .section-subtitle,
    .section-description {
        /* Ensure smooth animations on mobile */
        will-change: opacity, transform;
        /* Reduce initial transform distance for mobile */
        transform: translateY(20px) !important;
        /* Faster transitions on mobile */
        transition: opacity 0.4s ease, transform 0.4s ease !important;
    }
    
    /* Optimize section titles for mobile */
    .section-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Notification entrance animation */
@keyframes notificationSlideIn {
    0% {
        transform: translateX(100%);
        opacity: 0;
        scale: 0.95;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
        scale: 1;
    }
}

@keyframes notificationSlideOut {
    0% {
        transform: translateX(0);
        opacity: 1;
        scale: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
        scale: 0.95;
    }
}

.notification.entering {
    animation: notificationSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.notification.exiting {
    animation: notificationSlideOut 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Force hide mobile scroll notification on desktop - highest priority */
@media (min-width: 769px) {
    #mobileScrollNotification,
    .mobile-scroll-notification {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        clip: rect(0, 0, 0, 0) !important;
        pointer-events: none !important;
        z-index: -9999 !important;
    }
}

/* Ensure mobile scroll notification is always visible on mobile with highest z-index */
@media (max-width: 768px) {
    #mobileScrollNotification,
    .mobile-scroll-notification {
        z-index: 99999 !important;
        position: absolute !important;
        pointer-events: none !important;
    }
}

/* Ebook CTA Banner Styles */
.ebook-cta-banner {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-hover) 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.ebook-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.ebook-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.ebook-cta-text h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ebook-cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.ebook-cta-button {
    flex-shrink: 0;
}

.btn-ebook {
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent-blue);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-shadow: none;
}

.btn-ebook:hover {
    background: #ffffff;
    color: var(--accent-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-ebook i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Ebook Modal Styles */
#ebookModal .modal-content {
    max-width: 500px;
    width: 90%;
}

#ebookModal h2 {
    color: var(--text-white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

#ebookModal .modal-description {
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

#ebookModal .form-group {
    margin-bottom: 1.5rem;
}

#ebookModal input[type="email"] {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

#ebookModal input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

#ebookModal input[type="email"]::placeholder {
    color: var(--text-muted);
}

#ebookModal .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

#ebookModal .checkbox-text {
    color: var(--text-gray);
}

#ebookModal .checkbox-text a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

#ebookModal .checkbox-text a:hover {
    color: var(--accent-blue-hover);
    text-decoration: underline;
}

#ebookModal .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

#ebookModal .recaptcha-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
}

#ebookModal .recaptcha-disclaimer a {
    color: var(--accent-blue);
    text-decoration: none;
}

#ebookModal .recaptcha-disclaimer a:hover {
    text-decoration: underline;
}

/* Mobile Responsive Styles for Ebook CTA */
@media (max-width: 768px) {
    .ebook-cta-banner {
        padding: 1.5rem 0;
    }
    
    .ebook-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .ebook-cta-text h3 {
        font-size: 1.5rem;
    }
    
    .ebook-cta-text p {
        font-size: 1rem;
    }
    
    .btn-ebook {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    #ebookModal .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    #ebookModal h2 {
        font-size: 1.5rem;
    }
    
    #ebookModal .modal-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}
