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

:root {
    --background: #0a0a0f;
    --foreground: #ffffff;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --purple-400: #c084fc;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --cyan-400: #22d3ee;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background: linear-gradient(to bottom right, #020617, #000000, #0f172a);
    color: var(--foreground);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Animated Background */
.animated-background {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.1), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s;
}

#header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .nav-content {
        height: auto;
        min-height: 80px;
        padding: 0.5rem 0;
    }
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s;
}

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

.logo {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-svg {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
}

.logo-rect {
    animation: logoFadeIn 1s ease-in-out forwards;
}

.logo-tick {
    animation: logoTickDraw 1.5s 0.5s ease-in-out forwards;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

@keyframes logoFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes logoTickDraw {
    to {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

/* Navigation Links */
.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
    cursor: pointer;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.nav-link:hover {
    color: white;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--blue-500), var(--purple-600));
    transition: width 0.3s;
}

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

/* Services Dropdown */
.services-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-icon {
    transition: transform 0.3s;
}

.services-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0.5rem;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    pointer-events: none;
    z-index: 1000;
}

.services-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Add gap to prevent accidental closing when moving mouse */
.services-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 0.5rem;
    pointer-events: none;
}

/* Keep dropdown open when hovering over content */
.dropdown-content:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 600px;
}

.dropdown-item {
    display: block;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
    border: none;
    text-align: left;
    width: 100%;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-item-image {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.dropdown-item-image img {
    width: 100%;
    height: 128px;
    object-fit: cover;
    transition: transform 0.3s;
}

.dropdown-item:hover .dropdown-item-image img {
    transform: scale(1.1);
}

.dropdown-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.dropdown-item-title {
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
    transition: color 0.3s;
}

.dropdown-item:hover .dropdown-item-title {
    color: var(--blue-400);
}

.dropdown-item-desc {
    font-size: 0.875rem;
    color: var(--gray-400);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Contact Button */
.contact-btn {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(to right, var(--blue-600), var(--purple-600));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
    white-space: nowrap;
    min-height: 44px;
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    .contact-btn {
        display: flex;
    }
}

.contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.35);
}

@media (hover: none) {
    .contact-btn:hover {
        transform: none;
    }
}

.contact-btn:active {
    transform: scale(0.95);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 44px;
    min-height: 44px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (hover: none) {
    .mobile-menu-btn:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}

.mobile-menu-btn .close-icon {
    display: none;
}

.mobile-menu-btn.active .menu-icon {
    display: none;
}

.mobile-menu-btn.active .close-icon {
    display: block;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 1rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    color: #d1d5db;
    text-decoration: none;
    font-size: 1.125rem;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.mobile-link:hover {
    color: white;
}

.contact-btn.mobile {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-orbs {
    position: absolute;
    inset: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.orb-1 {
    top: 80px;
    left: 80px;
    width: 288px;
    height: 288px;
    background: linear-gradient(to right, rgba(37, 99, 235, 0.2), rgba(147, 51, 234, 0.2));
    animation: orb-pulse 10s ease-in-out infinite;
}

.orb-2 {
    bottom: 80px;
    right: 80px;
    width: 384px;
    height: 384px;
    background: linear-gradient(to right, rgba(34, 211, 238, 0.2), rgba(37, 99, 235, 0.2));
    animation: orb-pulse 12s ease-in-out infinite;
}

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

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

.hero-content {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, rgba(37, 99, 235, 0.2), rgba(147, 51, 234, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 9999px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    margin-bottom: 2rem;
    animation: fade-slide-in 0.5s ease-out;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-badge span {
    color: #93c5fd;
    font-weight: 500;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
    animation: fade-slide-in 0.5s 0.1s ease-out both;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
}

.gradient-text {
    background: linear-gradient(to right, var(--blue-400), var(--purple-400), var(--cyan-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 3rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
    animation: fade-slide-in 0.5s 0.2s ease-out both;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 5rem;
    animation: fade-slide-in 0.5s 0.3s ease-out both;
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .hero-cta-buttons {
        flex-direction: row;
        align-items: center;
        padding: 0;
        gap: 1.5rem;
    }
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(to right, var(--blue-600), var(--purple-600));
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
    white-space: nowrap;
    min-width: fit-content;
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
}

@media (min-width: 640px) {
    .cta-primary {
        width: auto;
        padding: 1rem 2rem;
    }
}

@media (max-width: 639px) {
    .cta-primary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
}

.cta-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.35);
}

@media (hover: none) {
    .cta-primary:hover {
        transform: none;
    }
}

.cta-primary:active {
    transform: scale(0.95);
}

.cta-primary svg {
    transition: transform 0.3s;
    flex-shrink: 0;
}

.cta-primary:hover svg {
    transform: translateX(4px);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    white-space: nowrap;
    min-width: fit-content;
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
}

@media (min-width: 640px) {
    .cta-secondary {
        width: auto;
        padding: 1rem 2rem;
    }
}

@media (max-width: 639px) {
    .cta-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

@media (hover: none) {
    .cta-secondary:hover {
        transform: none;
    }
}

.cta-secondary:active {
    transform: scale(0.95);
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 48rem;
    margin: 0 auto;
    animation: fade-slide-in 0.5s 0.4s ease-out both;
}

@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-400);
}

@keyframes fade-slide-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: fade-in 1s 1s both;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    animation: mouse-bounce 2s ease-in-out infinite;
}

@keyframes mouse-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.scroll-wheel {
    width: 4px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    margin-top: 8px;
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(37, 99, 235, 0.2), transparent, rgba(147, 51, 234, 0.2));
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    max-width: 48rem;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.big-stat-card {
    position: relative;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.big-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 1rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.big-stat-card:hover::before {
    border-color: rgba(59, 130, 246, 0.5);
}

.big-stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(37, 99, 235, 0.2), rgba(147, 51, 234, 0.2));
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
    filter: blur(40px);
}

.big-stat-card:hover::after {
    opacity: 1;
}

.big-stat-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.big-stat-card > * {
    position: relative;
    z-index: 1;
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(to right, var(--blue-500), var(--purple-600));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s;
}

.big-stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-icon svg {
    color: white;
}

.big-stat-card .stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.big-stat-card:hover .stat-number {
    color: #93c5fd;
}

.stat-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-desc {
    color: var(--gray-400);
    transition: color 0.3s;
}

.big-stat-card:hover .stat-desc {
    color: var(--gray-300);
}

.stats-cta {
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(37, 99, 235, 0.05), transparent);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, rgba(37, 99, 235, 0.2), rgba(147, 51, 234, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 9999px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    margin-bottom: 1.5rem;
}

.section-badge svg {
    color: #93c5fd;
}

.section-badge,
.section-badge span {
    color: #93c5fd;
    font-size: 0.875rem;
    font-weight: 500;
}

.services-container {
    display: grid;
    gap: 4rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .services-container {
        gap: 5rem;
    }
}

/* Service Card */
.service-card {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .service-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

.service-card.reverse .service-content {
    order: 2;
}

.service-card.reverse .service-image {
    order: 1;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-category {
    display: inline-flex;
    padding: 0.5rem 1rem;
    background: linear-gradient(to right, rgba(37, 99, 235, 0.2), rgba(147, 51, 234, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 9999px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #93c5fd;
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .service-title {
        font-size: 3rem;
    }
}

.service-description {
    font-size: 1.125rem;
    color: var(--gray-300);
    line-height: 1.75;
}

.service-features,
.service-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-features h4,
.service-benefits h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-item,
.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s;
}

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

.feature-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(to right, var(--blue-500), var(--purple-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 12px;
    height: 12px;
    color: white;
}

.feature-item span {
    color: var(--gray-300);
    transition: color 0.3s;
}

.feature-item:hover span {
    color: white;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-item {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.benefit-dot {
    width: 8px;
    height: 8px;
    background: var(--cyan-400);
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--gray-300);
}

/* Service Image */
.service-image {
    position: relative;
}

.service-image-container {
    position: relative;
}

.image-glow {
    position: absolute;
    inset: -16px;
    background: linear-gradient(to right, rgba(37, 99, 235, 0.2), rgba(147, 51, 234, 0.2));
    border-radius: 1.5rem;
    filter: blur(32px);
    opacity: 0.75;
    transition: opacity 0.3s;
}

.service-image-container:hover .image-glow {
    opacity: 1;
}

.image-wrapper {
    position: relative;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 1rem;
    padding: 0.5rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.image-wrapper img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 0.75rem;
}

@media (min-width: 1024px) {
    .image-wrapper img {
        height: 384px;
    }
}

.image-overlay {
    position: absolute;
    inset: 8px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    border-radius: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-image-container:hover .image-overlay {
    opacity: 1;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
}

.float-1 {
    top: -16px;
    right: -16px;
    width: 32px;
    height: 32px;
    background: linear-gradient(to right, var(--cyan-400), var(--blue-500));
    animation: float-1 3s ease-in-out infinite;
}

.float-2 {
    bottom: -8px;
    left: -8px;
    width: 24px;
    height: 24px;
    background: linear-gradient(to right, var(--purple-400), #ec4899);
    animation: float-2 4s 1s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

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

/* Technology Section */
.tech-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.tech-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #020617, rgba(30, 58, 138, 0.2), #0f172a);
}

.tech-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.tech-orb {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
    filter: blur(60px);
}

.tech-orb-1 {
    top: 25%;
    left: 25%;
    width: 384px;
    height: 384px;
    background: rgba(59, 130, 246, 0.2);
    animation: tech-pulse 3s ease-in-out infinite;
}

.tech-orb-2 {
    top: 33%;
    right: 25%;
    width: 384px;
    height: 384px;
    background: rgba(147, 51, 234, 0.2);
    animation: tech-pulse 3s 1s ease-in-out infinite;
}

.tech-orb-3 {
    bottom: 25%;
    left: 50%;
    width: 384px;
    height: 384px;
    background: rgba(34, 211, 238, 0.2);
    animation: tech-pulse 3s 2s ease-in-out infinite;
}

@keyframes tech-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tech-card {
    position: relative;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    transition: all 0.3s;
}

.tech-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.tech-card-glow {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.tech-card:hover .tech-card-glow {
    opacity: 0.1;
}

.tech-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.tech-card:hover .tech-icon {
    transform: scale(1.1);
}

.tech-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.tech-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.tech-card:hover .tech-card-title {
    background: linear-gradient(to right, var(--blue-400), var(--purple-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-card-desc {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.375rem;
    color: var(--gray-300);
    transition: all 0.2s;
}

.tech-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.tech-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .tech-highlights {
        grid-template-columns: repeat(3, 1fr);
    }
}

.highlight-card {
    position: relative;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.highlight-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.highlight-icon {
    margin-bottom: 0.75rem;
}

.highlight-icon.text-blue-400 {
    color: var(--blue-400);
}

.highlight-icon.text-purple-400 {
    color: var(--purple-400);
}

.highlight-icon.text-cyan-400 {
    color: var(--cyan-400);
}

.highlight-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.highlight-card p {
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    position: relative;
}

.cta-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-text {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
    line-height: 1.75;
}

/* Footer */
.footer {
    position: relative;
    background: linear-gradient(to bottom, #020617, #000000);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(37, 99, 235, 0.1), transparent, rgba(147, 51, 234, 0.1));
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 4rem;
    padding-bottom: 3rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.footer-col h3,
.footer-col h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--gray-400);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-400);
    transition: color 0.3s;
}

.contact-item:hover {
    color: white;
}

.contact-item svg {
    flex-shrink: 0;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.footer-links a:hover {
    color: white;
}

.footer-admin-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color 0.3s;
    text-align: left;
    margin-bottom: 1.5rem;
    width: 100%;
}

.footer-admin-link:hover {
    color: var(--blue-400);
}

.admin-hint {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-left: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.footer-admin-link:hover .admin-hint {
    opacity: 1;
}

.footer-newsletter-text {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: white;
    transition: all 0.3s;
}

.newsletter-input::placeholder {
    color: var(--gray-400);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--blue-500);
}

.newsletter-btn {
    background: linear-gradient(to right, var(--blue-600), var(--purple-600));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    min-height: 44px;
    font-size: 0.9375rem;
}

.newsletter-btn:hover {
    transform: scale(1.05);
}

@media (hover: none) {
    .newsletter-btn:hover {
        transform: none;
    }
}

.social-links h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px) scale(1.1);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: var(--gray-400);
}

.policy-links {
    display: flex;
    gap: 1.5rem;
}

.policy-links button {
    color: var(--gray-400);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
    font-family: inherit;
}

.policy-links button:hover {
    color: white;
}

/* Dialogs */
.dialog-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.dialog-overlay.active {
    display: flex;
    animation: fade-in 0.3s ease-out;
}

.dialog-content {
    position: relative;
    background: linear-gradient(to bottom right, #1e293b, #000000);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slide-up 0.3s ease-out;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-dialog {
    max-width: 600px;
    padding: 2rem;
}

.policy-dialog {
    max-width: 800px;
    padding: 2rem;
}

.dialog-bg-orb {
    position: absolute;
    top: 0;
    right: 0;
    width: 256px;
    height: 256px;
    background: linear-gradient(to right, rgba(37, 99, 235, 0.2), rgba(147, 51, 234, 0.2));
    border-radius: 50%;
    filter: blur(60px);
    animation: orb-pulse 4s ease-in-out infinite;
}

.dialog-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.dialog-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.dialog-header {
    position: relative;
    z-index: 10;
    margin-bottom: 1.5rem;
}

.dialog-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dialog-header p {
    color: var(--gray-400);
}

/* Contact Form */
.contact-form {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #e5e7eb;
}

.required {
    color: #f87171;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

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

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

.form-group textarea {
    resize: none;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    justify-content: center;
}

/* Policy Content */
.policy-content {
    color: white;
}

.policy-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.policy-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--blue-400);
}

.policy-content p {
    color: var(--gray-300);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.policy-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    color: var(--gray-300);
    line-height: 1.75;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast {
    background: linear-gradient(to right, #1e293b, #000000);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 300px;
    animation: toast-slide-in 0.3s ease-out;
}

@keyframes toast-slide-in {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast.success {
    border-left: 4px solid #10b981;
}

.toast.error {
    border-left: 4px solid #ef4444;
}

.toast-icon {
    flex-shrink: 0;
}

.toast-icon svg {
    width: 20px;
    height: 20px;
}

.toast.success .toast-icon {
    color: #10b981;
}

.toast.error .toast-icon {
    color: #ef4444;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.toast-desc {
    font-size: 0.875rem;
    color: var(--gray-400);
}
