@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@500;600;700&family=Inter:wght@300;400;500;600;700&family=Nunito:wght@500;600;700&family=Outfit:wght@400;500;600;700;800&family=Poppins:wght@500;600;700&family=Quicksand:wght@500;600;700&display=swap');

:root {
    /* Color Palette - Vibrant Logo Theme */
    --brand-blue: #0066FF;
    --brand-green: #00CC66;
    --brand-wordmark: linear-gradient(90deg, #0066FF 0%, #00B8A0 48%, #00CC66 100%);
    --bg-main: #f8fafc;
    --bg-secondary: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #ffffff;
    --accent-glow: rgba(0, 98, 204, 0.3);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.5);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-logo: 'Comfortaa', 'Quicksand', 'Nunito', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
    background: #ffffff; /* White header requested by user */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    height: 80px; /* Slim header */
}

.navbar.scrolled {
    padding: 10px 5%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    height: 100%;
}

.logo img {
    height: 54px; /* Proportionally aligned with header */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    z-index: 1001;
}

.logo:hover img {
    transform: scale(1.04);
}

.logo-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.logo-title {
    font-family: var(--font-logo);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.02em;
    text-transform: lowercase;
    background: var(--brand-wordmark);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.brand-blue {
    color: var(--brand-blue);
}

.brand-green {
    color: var(--brand-green);
}

.logo-tagline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin-top: 4px;
}

.logo-tagline .tagline-text {
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 400;
    color: #334155;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.logo-tagline .tagline-line {
    display: inline-block;
    flex: 1;
    height: 1.5px;
    border-radius: 2px;
}

.logo-tagline .line-blue {
    background-color: var(--brand-blue);
}

.logo-tagline .line-green {
    background-color: var(--brand-green);
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a:not(.btn-primary) {
    color: var(--text-primary); /* Dark text for white header */
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 2px;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--brand-blue) !important;
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

/* Buttons */
.btn-primary {
    background: var(--brand-green);
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(89, 167, 33, 0.4);
}

/* Make Admin Login button much smaller and simpler in the header */
.nav-links .btn-primary {
    background: transparent;
    color: var(--text-primary) !important;
    padding: 4px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    box-shadow: none;
}

.nav-links .btn-primary:hover {
    background: var(--brand-blue);
    color: #ffffff !important;
    border-color: var(--brand-blue);
    transform: none;
    box-shadow: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--brand-blue);
    box-shadow: 0 6px 20px rgba(0, 98, 204, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--brand-blue);
    padding: 10px 24px;
    border: 2px solid var(--brand-blue);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--brand-blue);
    color: #fff;
    box-shadow: 0 5px 15px var(--accent-glow);
}

.btn-glow {
    display: inline-block;
    background: #fff;
    color: var(--brand-blue);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-glow:hover {
    transform: scale(1.05);
    background: var(--brand-green);
    color: #fff;
}

/* Hero Section & Slider */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: var(--brand-blue);
}

.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.slider-bg.active-slide {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 98, 204, 0.7) 0%, rgba(89, 167, 33, 0.7) 100%);
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Hover effect */
    background: linear-gradient(135deg, rgba(0, 98, 204, 0.4) 0%, rgba(89, 167, 33, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero:hover .hero-overlay::after {
    opacity: 1;
}

/* Add a cool sweeping arrow-like curve to the hero bottom */
.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 150px;
    background: var(--bg-main);
    transform: skewY(-3deg);
    z-index: 3;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 60px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    display: none;
    animation: fadeUp 0.8s ease forwards;
}

.hero-content.active-content {
    display: block;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: color 0.5s ease, text-shadow 0.5s ease;
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    transition: color 0.5s ease;
}

.hero:hover h1 {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero:hover p {
    color: rgba(255, 255, 255, 0.95);
}

.slider-controls {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 4;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active-dot {
    background: #fff;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* About Section */
.about {
    padding: 60px 5%;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0fa 100%); /* Blue theme */
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    opacity: 0;
    transform: translateX(-50px);
}

.about-container.animate-on-scroll .about-content {
    animation: slideRight 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.about-title {
    font-size: 3rem;
    color: var(--brand-blue);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--brand-green);
    border-radius: 2px;
}

.about-container.animate-on-scroll .about-title::after {
    animation: expandLineLeft 0.8s ease 0.6s forwards;
}

.about-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* About Image with Floating Effect */
.about-image-wrapper {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
}

.about-container.animate-on-scroll .about-image-wrapper {
    animation: slideLeft 1s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards;
}

.about-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    animation: floatImage 6s ease-in-out infinite;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    filter: blur(40px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(0, 98, 204, 0.2);
    top: -50px;
    left: -50px;
    animation: floatShape 8s ease-in-out infinite alternate;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: rgba(89, 167, 33, 0.2);
    bottom: -30px;
    right: -30px;
    animation: floatShape 10s ease-in-out infinite alternate-reverse;
}

@keyframes slideRight {
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideLeft {
    to { transform: translateX(0); opacity: 1; }
}

@keyframes expandLineLeft {
    to { width: 80px; }
}

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

@keyframes floatShape {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 30px) scale(1.1); }
}

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

/* Responsive Overrides */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Services Section */
.services {
    padding: 70px 5% 60px;
    background: linear-gradient(135deg, #f2fbf4 0%, #e6f6eb 100%); /* Green theme */
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--brand-blue) !important;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* Service Cards */
.service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
    animation: floatCard 6s ease-in-out infinite;
}

.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 1.5s; }
.service-card:nth-child(3) { animation-delay: 3s; }
.service-card:nth-child(4) { animation-delay: 4.5s; }

.service-card:hover {
    animation-play-state: paused;
    transform: translateY(-20px) scale(1.02) !important;
    box-shadow: 0 25px 50px rgba(0, 98, 204, 0.15);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
}

.service-card.active {
    border-color: rgba(100, 150, 255, 0.3);
    box-shadow: 0 0 20px rgba(100, 150, 255, 0.1);
}

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

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

.badge-active {
    background: #00e676; /* Much brighter green */
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.6);
    font-weight: 800;
}

.badge-upcoming {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

.card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    flex-grow: 1;
}

.upcoming .card-content {
    opacity: 0.7;
}

/* How It Works Section */
.how-it-works {
    padding: 70px 5%;
    background: linear-gradient(135deg, #f2fbf4 0%, #e6f6eb 100%); /* Green theme */
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.step.animate-on-scroll {
    animation: slideUp 0.8s ease forwards;
}

.step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    color: var(--brand-blue);
    background: transparent;
    transition: transform 0.3s ease, color 0.3s ease;
}

.step:hover .step-icon {
    transform: translateY(-10px) scale(1.05);
    color: var(--brand-green);
}

.step h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 700;
}

/* Connecting Arrows (Desktop) */
@media (min-width: 900px) {
    .step:not(:last-child)::after {
        content: '→';
        position: absolute;
        top: 50px;
        right: -30px;
        font-size: 2.5rem;
        color: var(--brand-blue);
        opacity: 0.4;
        font-weight: 300;
        z-index: 1;
    }
}

/* Connecting Arrows (Mobile) */
@media (max-width: 899px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    
    .step:not(:last-child)::after {
        content: '↓';
        position: absolute;
        bottom: -45px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 2.5rem;
        color: var(--brand-blue);
        opacity: 0.4;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 5%;
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}

.choose-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.choose-image-wrapper {
    flex: 1;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
}

.choose-image-wrapper.animate-on-scroll {
    animation: slideLeft 1s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards;
}

.choose-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    animation: floatImage 7s ease-in-out infinite alternate;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: rgba(89, 167, 33, 0.15); /* Greenish */
    bottom: -30px;
    right: -30px;
    animation: floatShape 9s ease-in-out infinite alternate-reverse;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: rgba(0, 98, 204, 0.15); /* Blueish */
    top: -20px;
    right: 50px;
    animation: floatShape 6s ease-in-out infinite alternate;
}

.choose-content {
    flex: 1;
    opacity: 0;
    transform: translateX(50px);
}

.choose-content.animate-on-scroll {
    animation: slideRight 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.4s ease;
    animation: floatFeature 5s ease-in-out infinite;
}

/* Stagger animations for floating grid items */
.feature-card:nth-child(even) { animation-delay: 1s; }
.feature-card:nth-child(3n) { animation-delay: 2s; }
.feature-card:nth-child(5n) { animation-delay: 1.5s; }

.feature-card:hover {
    transform: translateY(-5px) scale(1.05) !important;
    animation-play-state: paused;
    box-shadow: 0 15px 30px rgba(0, 98, 204, 0.1);
    border-color: rgba(0, 98, 204, 0.1);
}

.feature-icon {
    width: 35px;
    height: 35px;
    background: rgba(89, 167, 33, 0.1);
    color: var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-card span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.05rem;
}

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

@media (max-width: 900px) {
    .choose-container {
        flex-direction: column;
    }
}
@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: #050505;
    padding: 60px 5% 30px;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.footer-col .footer-logo {
    margin-bottom: 20px;
}
.footer-col .footer-logo .onenest-mark-on-dark .onenest-mark-tagline-text,
.footer .onenest-mark-tagline-text {
    color: #cbd5e1;
}

.footer-col p {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--brand-green);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero-content {
        padding: 30px;
        margin: 20px;
    }
}

/* Secondary Buttons */
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(90deg, var(--brand-blue), #00d2ff); /* Attractive gradient */
    color: #fff !important;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 98, 204, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: auto;
    text-align: center;
}

.btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 98, 204, 0.6);
    background: linear-gradient(90deg, #00d2ff, var(--brand-blue));
}

/* App Section */
.app-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0fa 100%); /* Blue theme matching About */
    position: relative;
    overflow: hidden;
}

.app-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    gap: 60px;
}

.app-content {
    flex: 1;
    opacity: 0;
    transform: translateX(-50px);
}

.app-content.animate-on-scroll {
    animation: slideRight 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.app-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    background: #000;
    color: #fff;
    padding: 10px 25px;
    border-radius: 12px;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: not-allowed;
    opacity: 0.8;
}

.app-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.app-btn-icon {
    display: flex;
    align-items: center;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
}

.app-btn-text .small {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-green);
    font-weight: 700;
}

.app-btn-text .big {
    font-size: 1.2rem;
    font-weight: 600;
}

.app-image-wrapper {
    flex: 1;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    display: flex;
    justify-content: center;
}

.app-image-wrapper.animate-on-scroll {
    animation: slideLeft 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Custom CSS Phone Mockup */
.css-phone {
    width: 280px;
    height: 580px;
    background: #000;
    border-radius: 40px;
    border: 10px solid #222;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2), inset 0 0 0 2px #333;
    position: relative;
    overflow: hidden;
    z-index: 2;
    animation: floatImage 8s ease-in-out infinite;
}

.css-phone-notch {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 25px;
    background: #222;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

.css-phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e6f0fa 0%, #e6f6eb 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-align: center;
    position: relative;
}

.phone-loader {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0,0,0,0.1);
    border-top: 3px solid var(--brand-blue);
    border-radius: 50%;
    margin-top: 30px;
    margin-bottom: 10px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 900px) {
    .app-container {
        flex-direction: column;
        text-align: center;
    }
    .app-content .section-header {
        text-align: center !important;
    }
    .app-buttons {
        justify-content: center;
    }
    .css-phone {
        margin-top: 40px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 5%;
    background: #fdfdfd;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
}

.faq-container.animate-on-scroll {
    animation: slideUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    overflow: hidden;
    transition: all 0.3s ease;
    animation: floatFeature 5s ease-in-out infinite;
}

.faq-item:nth-child(even) { animation-delay: 1s; }
.faq-item:nth-child(3n) { animation-delay: 2s; }
.faq-item:nth-child(5n) { animation-delay: 1.5s; }

.faq-item:hover {
    animation-play-state: paused;
}

.faq-item[open] {
    border-color: rgba(0, 98, 204, 0.2);
    box-shadow: 0 10px 25px rgba(0, 98, 204, 0.05);
    animation: none; /* Stop floating when open so reading is easier */
    transform: translateY(0) !important;
}

.faq-item summary {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none; /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--brand-blue);
    transition: transform 0.3s ease;
}

.faq-item[open] summary {
    color: var(--brand-blue);
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 25px 20px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 100px 5%;
    background: #ffffff;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: #fdfdfd;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.contact-card.animate-on-scroll {
    animation: slideUp 0.8s ease forwards;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 98, 204, 0.08);
    border-color: rgba(0, 98, 204, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.phone-icon { background: rgba(0, 98, 204, 0.1); color: var(--brand-blue); }
.whatsapp-icon { background: rgba(37, 211, 102, 0.1); color: #25D366; }
.email-icon { background: rgba(234, 67, 53, 0.1); color: #EA4335; }
.location-icon { background: rgba(89, 167, 33, 0.1); color: var(--brand-green); }

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card:hover .phone-icon { background: var(--brand-blue); color: #fff; box-shadow: 0 10px 20px rgba(0, 98, 204, 0.3); }
.contact-card:hover .whatsapp-icon { background: #25D366; color: #fff; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); }
.contact-card:hover .email-icon { background: #EA4335; color: #fff; box-shadow: 0 10px 20px rgba(234, 67, 53, 0.3); }
.contact-card:hover .location-icon { background: var(--brand-green); color: #fff; box-shadow: 0 10px 20px rgba(89, 167, 33, 0.3); }

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

/* Public site polish */
.kicker {
    display: inline-block;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--brand-blue);
    margin-bottom: 10px;
}

.navbar {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.navbar::after {
    display: none;
}

.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .1);
    height: 72px;
}

.navbar .nav-links {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.nav-indicator {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .1);
    pointer-events: none;
    opacity: 0;
    transition: transform .28s cubic-bezier(.2, .8, .2, 1), width .28s cubic-bezier(.2, .8, .2, 1), height .28s ease, opacity .2s ease;
    z-index: 0;
}

.navbar .nav-links a {
    position: relative;
    z-index: 1;
    color: #334155 !important;
    text-decoration: none;
    font-weight: 600;
    font-size: .92rem;
    letter-spacing: .01em;
    padding: 9px 16px;
    border-radius: 999px;
    transition: color .2s ease;
}

.navbar .nav-links a::after {
    display: none !important;
}

.navbar .nav-links a:not(.nav-cta):hover,
.navbar .nav-links a:not(.nav-cta).is-active {
    color: var(--brand-blue) !important;
}

.navbar .nav-links a.nav-cta {
    margin-left: 4px;
    color: #fff !important;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
    box-shadow: 0 8px 16px rgba(0, 102, 255, .22);
    font-weight: 800;
}

.navbar .nav-links a.nav-cta:hover {
    color: #fff !important;
    filter: brightness(1.06);
}

.nav-toggle {
    border-color: #dbe7f3;
    background: linear-gradient(180deg, #fff, #f8fbff);
    box-shadow: 0 6px 14px rgba(15, 23, 42, .08);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #0f172a;
    border-radius: 2px;
    transition: .2s ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links .btn-primary {
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
    color: #fff !important;
    border: 0;
    padding: 9px 18px;
    font-size: .85rem;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(0, 102, 255, .22);
}

.nav-links .btn-primary:hover {
    background: linear-gradient(90deg, var(--brand-green), var(--brand-blue));
    color: #fff !important;
}

.btn-primary {
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
    box-shadow: 0 10px 22px rgba(0, 102, 255, .22);
    text-decoration: none;
}

.btn-primary:hover {
    background: linear-gradient(90deg, var(--brand-green), var(--brand-blue));
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(0, 40, 90, .55) 0%, rgba(0, 102, 255, .42) 48%, rgba(0, 180, 110, .38) 100%);
}

.hero:hover .hero-overlay::after {
    opacity: 0;
}

.hero::after {
    bottom: -1px;
    height: 72px;
    background: linear-gradient(180deg, transparent, var(--bg-main));
    transform: none;
}

.hero-content {
    max-width: 760px;
    padding: 42px 48px;
    border-radius: 28px;
    background: rgba(8, 18, 40, .28);
    border: 1px solid rgba(255, 255, 255, .18);
}

.hero-kicker {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.6rem;
    letter-spacing: -.04em;
}

.hero p {
    font-size: 1.15rem;
    max-width: 34rem;
    margin: 0 auto 8px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 18px;
}

.btn-glow {
    margin-top: 0;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
    color: #fff;
    box-shadow: 0 14px 28px rgba(0, 102, 255, .28);
}

.btn-glow:hover {
    background: #fff;
    color: var(--brand-blue);
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 15px 28px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .08);
}

.btn-ghost:hover {
    background: #fff;
    color: var(--brand-blue);
}

.slider-controls {
    bottom: 36px;
}

.dot {
    width: 8px;
    height: 8px;
}

.dot.active-dot {
    width: 28px;
    border-radius: 999px;
    transform: none;
}

.stats-bar {
    position: relative;
    z-index: 4;
    margin: -42px 5% 0;
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
}

.stat {
    text-align: center;
    padding: 8px 10px;
}

.stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--brand-blue);
    letter-spacing: -.02em;
}

.stat span {
    color: var(--text-secondary);
    font-size: .85rem;
}

.about,
.services,
.how-it-works,
.app-section {
    background: #f7fafc;
}

.why-choose-us,
.faq-section,
.contact-section {
    background: #fff;
}

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

.section-header h2 {
    letter-spacing: -.03em;
}

.service-card {
    animation: none;
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, .06);
}

.service-card:hover {
    transform: translateY(-8px) !important;
}

.card-image {
    height: 200px;
}

.card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, .28));
}

.badge-active {
    background: var(--brand-green);
    box-shadow: 0 8px 16px rgba(0, 204, 102, .28);
}

.badge-upcoming {
    background: rgba(15, 23, 42, .55);
    color: #fff;
    border: 0;
}

.how-it-works .step p {
    color: var(--text-secondary);
    font-size: .95rem;
    margin-top: 8px;
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(180deg, #fff, #f1f7ff);
    border: 1px solid #dbeafe;
    color: var(--brand-blue);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    box-shadow: 0 10px 20px rgba(0, 102, 255, .08);
}

.step:not(:last-child)::after {
    top: 34px;
}

.feature-card {
    animation: none;
    border-radius: 16px;
    border: 1px solid #eef2f7;
}

.feature-card:hover {
    transform: translateY(-3px) !important;
}

.faq-item {
    animation: none;
    border-radius: 16px;
}

.contact-card {
    border-radius: 22px;
    background: #f8fbff;
}

.contact-card a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--brand-blue);
}

.footer {
    background: #07101f;
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, var(--brand-blue), var(--brand-green)) 1;
}

@media (max-width: 900px) {
    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: inline-flex;
        z-index: 1002;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 12px;
        right: 12px;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        background: rgba(255,255,255,.96);
        border: 1px solid #e8eef5;
        border-radius: 22px;
        padding: 12px;
        box-shadow: 0 22px 50px rgba(15, 23, 42, .16);
    }
    .nav-links.is-open {
        display: flex;
        animation: popIn .28s ease;
    }
    .nav-indicator {
        display: none;
    }
    .nav-links a {
        width: 100%;
        padding: 13px 16px;
        border-radius: 14px;
        text-align: left;
    }
    .nav-links a.is-active,
    .nav-links a:hover {
        background: #f1f7ff;
    }
    .nav-cta {
        margin: 4px 0 0;
        text-align: center !important;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-content {
        padding: 28px 22px;
        margin: 90px 16px 20px;
    }
    .stats-bar {
        margin-top: -18px;
    }
}

.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 420px;
    height: 420px;
    margin: -210px 0 0 -210px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
    background: radial-gradient(circle, rgba(0, 102, 255, .16), rgba(0, 204, 102, .08) 42%, transparent 68%);
    mix-blend-mode: screen;
    transform: translate(-50vw, -50vh);
    transition: transform .08s linear;
}

.hero-orbs {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-orbs span {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    opacity: .55;
    animation: orbFloat 12s ease-in-out infinite;
}

.hero-orbs span:nth-child(1) {
    width: 280px;
    height: 280px;
    left: -60px;
    top: 18%;
    background: radial-gradient(circle, rgba(0, 102, 255, .45), transparent 70%);
}

.hero-orbs span:nth-child(2) {
    width: 220px;
    height: 220px;
    right: 6%;
    top: 12%;
    background: radial-gradient(circle, rgba(0, 204, 102, .4), transparent 70%);
    animation-delay: -4s;
}

.hero-orbs span:nth-child(3) {
    width: 180px;
    height: 180px;
    right: 22%;
    bottom: 16%;
    background: radial-gradient(circle, rgba(0, 184, 160, .38), transparent 70%);
    animation-delay: -7s;
}

.hero-sparkles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-sparkles i {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, .9);
    animation: sparkle 5s ease-in-out infinite;
    opacity: 0;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(24px, -30px) scale(1.12); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(.4); }
    40% { opacity: .9; transform: scale(1); }
    70% { opacity: .2; }
}

.slider-bg {
    transform: translateY(var(--parallax, 0));
    will-change: transform, opacity;
}

.slider-bg.active-slide {
    animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
    from { transform: translateY(var(--parallax, 0)) scale(1); }
    to { transform: translateY(var(--parallax, 0)) scale(1.1); }
}

.hero-overlay {
    background: linear-gradient(125deg, rgba(0, 32, 80, .62), rgba(0, 102, 255, .38), rgba(0, 204, 102, .34));
    background-size: 180% 180%;
    animation: overlayShift 14s ease infinite;
}

@keyframes overlayShift {
    0%, 100% { background-position: 0% 40%; }
    50% { background-position: 100% 60%; }
}

.hero-content.active-content {
    animation: popIn .7s cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes popIn {
    from { opacity: 0; transform: translateY(28px) scale(.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.btn-glow,
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-glow::after,
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.45), transparent 80%);
    transform: translateX(-130%);
}

.btn-glow:hover::after,
.btn-primary:hover::after {
    animation: shine .75s ease;
}

@keyframes shine {
    to { transform: translateX(130%); }
}

.stats-inner {
    animation: liftIn .8s ease both;
}

.stat {
    position: relative;
    overflow: hidden;
}

.stat::after {
    content: '';
    position: absolute;
    inset: auto 18% 6px;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.stats-bar.is-visible .stat::after {
    transform: scaleX(1);
}

.service-card,
.contact-card,
.feature-card {
    position: relative;
    overflow: hidden;
    transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    transform-style: preserve-3d;
    transition: transform .18s ease, box-shadow .25s ease;
}

.service-card:hover,
.contact-card:hover {
    box-shadow: 0 28px 50px rgba(0, 102, 255, .18) !important;
}

.service-card::before,
.contact-card::before,
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(420px circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255,255,255,.28), transparent 42%);
    opacity: 0;
    transition: opacity .2s ease;
    z-index: 3;
}

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

.card-image {
    overflow: hidden;
    transition: transform .5s ease;
}

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

.badge-active {
    animation: pulseGlow 2.2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 8px 16px rgba(0, 204, 102, .28); }
    50% { box-shadow: 0 0 22px rgba(0, 204, 102, .7); }
}

.step {
    transition: transform .3s ease;
}

.step.is-visible .step-icon {
    animation: bounceIn .7s cubic-bezier(.2, .9, .2, 1) both;
}

.step:hover {
    transform: translateY(-8px);
}

.step:hover .step-icon {
    color: #fff;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
    border-color: transparent;
    box-shadow: 0 16px 28px rgba(0, 102, 255, .28);
}

@keyframes bounceIn {
    from { transform: scale(.6); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.feature-card:hover {
    border-color: rgba(0, 102, 255, .25);
    box-shadow: 0 16px 30px rgba(0, 102, 255, .12);
}

.feature-icon {
    transition: transform .3s ease, background .3s ease, color .3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(-8deg) scale(1.12);
    background: var(--brand-blue);
    color: #fff;
}

.faq-item {
    transition: transform .25s ease, box-shadow .25s ease;
}

.faq-item:hover {
    transform: translateX(6px);
}

.contact-card:hover .contact-icon {
    animation: wiggle .45s ease;
}

@keyframes wiggle {
    25% { transform: rotate(-8deg) scale(1.08); }
    50% { transform: rotate(8deg) scale(1.12); }
    75% { transform: rotate(-4deg) scale(1.08); }
}

.css-phone {
    animation: phoneFloat 5s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-16px) rotate(2deg); }
}

.section-header.is-visible h2 {
    animation: popIn .7s ease both;
}

@media (prefers-reduced-motion: reduce) {
    .cursor-glow,
    .hero-orbs,
    .hero-sparkles { display: none; }
    .slider-bg.active-slide,
    .hero-overlay,
    .css-phone,
    .badge-active,
    .btn-glow::after { animation: none !important; }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0066FF; /* Matching brand blue */
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
}

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

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
    background: #005ce6;
}

.scroll-to-top svg {
    width: 22px;
    height: 22px;
}
