/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0f172a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-size: 16px;
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
}

/* Container and layout utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

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

.justify-between {
    justify-content: space-between;
}

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

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
    transform: translateZ(0);
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

/* Spacing utilities */
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-16 { padding-top: 4rem; }

.pb-4 { padding-bottom: 1rem; }

.pl-8 { padding-left: 2rem; }

.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }

.ml-0 { margin-left: 0; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }

.mr-2 { margin-right: 0.5rem; }

.-mt-1 { margin-top: -0.25rem; }

.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-8 > * + * { margin-left: 2rem; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* Sizing utilities */
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-40 { width: 10rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.w-80 { width: 20rem; }
.w-96 { width: 24rem; }
.w-full { width: 100%; }

.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-74 { height: 4.625rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-full { height: 100%; }

.max-w-md { max-width: 28rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }

.min-h-screen { min-height: 100vh; }

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }

.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.tracking-wide { letter-spacing: 0.025em; }
.tracking-widest { letter-spacing: 0.1em; }

.uppercase { text-transform: uppercase; }

/* Colors */
.text-white { color: #ffffff; }
.text-red-300 { color: #fca5a5; }
.text-red-400 { color: #f87171; }
.text-red-500 { color: #ef4444; }
.text-blue-400 { color: #60a5fa; }
.text-purple-400 { color: #c084fc; }
.text-green-400 { color: #4ade80; }
.text-slate-100 { color: #f1f5f9; }
.text-slate-200 { color: #e2e8f0; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }

.bg-red-300 { background-color: rgb(252, 165, 165) }
.bg-red-400 { background-color: rgb(248, 113, 113); }
.bg-red-500 { background-color: #ef4444; }
.bg-red-600 { background-color: #dc2626; }
.bg-slate-700 { background-color: #334155; }
.bg-slate-800 { background-color: #1e293b; }
.bg-slate-900 { background-color: #0f172a; }

/* Background utilities */
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-red-500 { --tw-gradient-from: #ef4444; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); }
.to-red-600 { --tw-gradient-to: #dc2626; }
.to-red-700 { --tw-gradient-to: #b91c1c; }
.from-red-600 { --tw-gradient-from: #dc2626; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); }
.to-purple-600 { --tw-gradient-to: #9333ea; }
.to-purple-700 { --tw-gradient-to: #7c3aed; }
.from-purple-600 { --tw-gradient-from: #9333ea; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 51, 234, 0)); }
.from-white { --tw-gradient-from: #ffffff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); }
.via-red-400 { --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); }
.to-red-500 { --tw-gradient-to: #ef4444; }
.to-purple-400 { --tw-gradient-to: #c084fc; }
.from-slate-800 { --tw-gradient-from: #1e293b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 41, 59, 0)); }
.to-slate-900 { --tw-gradient-to: #0f172a; }
.from-slate-700 { --tw-gradient-from: #334155; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 65, 85, 0)); }
.to-slate-800 { --tw-gradient-to: #1e293b; }
.from-blue-500 { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); }
.to-cyan-600 { --tw-gradient-to: #0891b2; }
.from-purple-500 { --tw-gradient-from: #a855f7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); }
.to-pink-600 { --tw-gradient-to: #db2777; }
.from-cyan-500 { --tw-gradient-from: #06b6d4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 182, 212, 0)); }
.to-green-600 { --tw-gradient-to: #16a34a; }

/* Border utilities */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }

.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }

.border-slate-600 { border-color: #475569; }
.border-slate-700 { border-color: #334155; }
.border-slate-800 { border-color: #1e293b; }
.border-red-500 { border-color: #ef4444; }

.border-red-500\/30 { border-color: rgb(239 68 68 / 0.3); }
.border-red-400\/20 { border-color: rgb(248 113 113 / 0.2); }
.border-red-300\/10 { border-color: rgb(252 165 165 / 0.1); }

.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* Shadow utilities */
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

/* Opacity utilities */
.opacity-10 { opacity: 0.1; }
.opacity-15 { opacity: 0.15; }
.opacity-20 { opacity: 0.2; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-75 { opacity: 0.75; }
.opacity-80 { opacity: 0.8; }
.opacity-85 { opacity: 0.85; }
.opacity-90 { opacity: 0.9; }

/* Transform utilities */
.transform { transform: translateZ(0); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }
.rotate-12 { transform: rotate(12deg); }
.translate-x-1 { transform: translateX(0.25rem); }
.translate-x-2 { transform: translateX(0.5rem); }
.-translate-x-1 { transform: translateX(-0.25rem); }
.-translate-y-1 { transform: translateY(-0.25rem); }
.translate-y-1 { transform: translateY(0.25rem); }

/* Transition utilities */
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }
.transition-opacity { transition: opacity 0.3s ease; }

.duration-300 { transition-duration: 300ms; }
.duration-1000 { transition-duration: 1000ms; }

.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }

/* Backdrop utilities */
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }

/* Z-index utilities */
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Overflow utilities */
.overflow-hidden { overflow: hidden; }
.resize-none { resize: none; }

/* Pointer events */
.pointer-events-none { pointer-events: none; }

/* Cursor */
.cursor-pointer { cursor: pointer; }

/* Background clip */
.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Inset utilities */
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-2 { top: 0.5rem; right: 0.5rem; bottom: 0.5rem; left: 0.5rem; }
.inset-4 { top: 1rem; right: 1rem; bottom: 1rem; left: 1rem; }
.inset-8 { top: 2rem; right: 2rem; bottom: 2rem; left: 2rem; }

.top-0 { top: 0; }
.top-1 { top: 0.25rem; }
.top-10 { top: 2.5rem; }
.top-20 { top: 5rem; }
.top-1\/2 { top: 50%; }
.top-1\/3 { top: 33.333333%; }
.top-1\/4 { top: 25%; }
.top-1\/6 { top: 16.666667%; }
.top-2\/3 { top: 66.666667%; }
.top-3\/4 { top: 75%; }

.right-0 { right: 0; }
.right-1 { right: 0.25rem; }
.right-5 { right: 1.25rem; }
.right-10 { right: 2.5rem; }
.right-20 { right: 5rem; }
.right-32 { right: 8rem; }
.right-1\/3 { right: 33.333333%; }
.right-1\/4 { right: 25%; }

.bottom-0 { bottom: 0; }
.bottom-1 { bottom: 0.25rem; }
.bottom-10 { bottom: 2.5rem; }
.bottom-20 { bottom: 5rem; }
.bottom-32 { bottom: 8rem; }

.left-0 { left: 0; }
.left-1 { left: 0.25rem; }
.left-5 { left: 1.25rem; }
.left-10 { left: 2.5rem; }
.left-20 { left: 5rem; }
.left-40 { left: 10rem; }
.left-1\/2 { left: 50%; }
.left-1\/3 { left: 33.333333%; }
.left-1\/4 { left: 25%; }
.left-3\/4 { left: 75%; }

.-top-2 { top: -0.5rem; }
.-right-2 { right: -0.5rem; }
.-right-4 { right: -1rem; }
.-bottom-2 { bottom: -0.5rem; }
.-left-2 { left: -0.5rem; }

/* Custom animations */
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-spin-slow {
    animation: spin-slow 20s linear infinite;
}

@keyframes moveDot {
    0% { transform: translate(0, 0); }
    25% { transform: translate(150px, -80px); }
    50% { transform: translate(-100px, 120px); }
    75% { transform: translate(80px, -150px); }
    100% { transform: translate(0, 0); }
}

@keyframes moveDotSlow {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(120px, -90px) scale(1.5); }
    66% { transform: translate(-80px, 140px) scale(0.8); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes moveCircle {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(60px, -30px) rotate(90deg); }
    50% { transform: translate(30px, -60px) rotate(180deg); }
    75% { transform: translate(-30px, -30px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes circleRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

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

@keyframes float-delayed {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

@keyframes pulse-slow {
    0%, 100% { opacity: 0.05; }
    50% { opacity: 0.1; }
}

@keyframes progress-100 {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes progress-95 {
    0% { width: 0%; }
    100% { width: 95%; }
}

@keyframes progress-90 {
    0% { width: 0%; }
    100% { width: 90%; }
}

@keyframes progress-85 {
    0% { width: 0%; }
    100% { width: 85%; }
}

@keyframes progress-80 {
    0% { width: 0%; }
    100% { width: 80%; }
}

@keyframes progress-50 {
    0% { width: 0%; }
    100% { width: 50%; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(239, 68, 68, 0.3); }
    50% { box-shadow: 0 0 40px rgba(239, 68, 68, 0.6); }
}

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

@keyframes move-ray {
    0% { transform: translateX(-100px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100px); opacity: 0; }
}

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

/* Animation classes */
.animate-move-dot { animation: moveDot 8s ease-in-out infinite; }
.animate-move-dot-slow { animation: moveDotSlow 12s ease-in-out infinite; }
.animate-move-circle { animation: moveCircle 15s ease-in-out infinite; }
.animate-circle-rotate { animation: circleRotate 10s ease-in-out infinite; }
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-delayed { animation: float-delayed 8s ease-in-out infinite; }
.animate-pulse-slow { animation: pulse-slow 4s ease-in-out infinite; }
.animate-progress-100 { animation: progress-100 2s ease-out forwards; }
.animate-progress-95 { animation: progress-95 2s ease-out forwards; }
.animate-progress-90 { animation: progress-90 2s ease-out 0.2s forwards; }
.animate-progress-85 { animation: progress-85 2s ease-out 0.4s forwards; }
.animate-progress-80 { animation: progress-80 2s ease-out 0.6s forwards; }
.animate-progress-50 { animation: progress-50 2s ease-out 0.6s forwards; }
.animate-grid-move { animation: gridMove 20s linear infinite; }
.animate-glow { animation: glow 3s ease-in-out infinite; }
.animate-bounce-gentle { animation: bounce-gentle 3s ease-in-out infinite; }
.animate-move-ray { animation: move-ray 8s ease-in-out infinite; }
.animate-gradient { animation: gradient 4s ease infinite; }

/* Background size */
.bg-400\% { background-size: 400% 400%; }

/* Header styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid #1e293b;
}

.header-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    position: relative;
    width: 3rem;
    height: 3rem;
    background-color: #ef4444;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.logo-pattern-dot {
    position: absolute;
}

.logo-pattern-dot-1 {
    background-color: rgb(255 255 255 / 0.2);
    border-radius: 9999px;
    width: 0.5rem;
    height: 0.5rem;
    top: 0.25rem;
    right: 0.25rem;
}

.logo-pattern-dot-2 {
    background-color: rgb(255 255 255 / 0.3);
    border-radius: 9999px;
    width: 0.5rem;
    height: 0.5rem;
    bottom: 0.25rem;
    left: 0.25rem;
}

.logo-text {
    color: white;
    font-weight: 900;
    font-size: 1.125rem;
    letter-spacing: -0.025em;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.logo-info {
    display: none;
}

.logo-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.logo-title {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: -0.25rem;
}

.nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f87171;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.lang-btn {
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    line-height: 1.25rem;
}

.lang-btn.active {
    background-color: #ef4444;
    color: white;
}

.lang-btn:not(.active) {
    color: #94a3b8;
}

.lang-btn:not(.active):hover {
    color: #f87171;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 0;
}

.social-link {
    color: #94a3b8;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #f87171;
}

.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    border-radius: 0.375rem;
    color: #94a3b8;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: #f87171;
}

.mobile-menu {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid #1e293b;
}

.mobile-menu-content {
    padding: 1rem;
    gap: 1rem;
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #f87171;
}

.mobile-lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #1e293b;
}

.mobile-lang-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.mobile-lang-btn.active {
    background-color: #ef4444;
    color: white;
}

.mobile-lang-btn:not(.active) {
    background: none;
    color: #94a3b8;
}

.mobile-lang-btn:not(.active):hover {
    color: #f87171;
}

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

.hero-bg {
    position: absolute;
    top: 2.5rem;
    right: 1.25rem;
    opacity: 0.4;
    width: 16rem;
    height: 16rem;
}

.hero .circle {
    border-style: solid;
}

.hero-bg-2 {
    position: absolute;
    bottom: 2.5rem;
    left: 1.25rem;
    opacity: 0.3;
    width: 12rem;
    height: 12rem;
}

.hero-bg-3 {
    position: absolute;
    top: 50%;
    right: 33.333333%;
    opacity: 0.2;
    width: 8rem;
    height: 8rem;
}

.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-orb-1 {
    position: absolute;
    top: 5rem;
    left: 5rem;
    width: 24rem;
    height: 24rem;
    background: linear-gradient(to right, rgba(239, 68, 68, 0.2), rgba(168, 85, 247, 0.2));
    border-radius: 9999px;
    filter: blur(48px);
    animation: pulse-slow 4s ease-in-out infinite;
}

.hero-orb-2 {
    position: absolute;
    bottom: 5rem;
    right: 5rem;
    width: 20rem;
    height: 20rem;
    background: linear-gradient(to right, rgba(59, 130, 246, 0.15), rgba(239, 68, 68, 0.15));
    border-radius: 9999px;
    filter: blur(48px);
    animation: pulse-slow 4s ease-in-out infinite;
    animation-delay: 2s;
}

.hero-orb-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16rem;
    height: 16rem;
    background: linear-gradient(to right, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 9999px;
    filter: blur(48px);
    animation: pulse-slow 4s ease-in-out infinite;
    animation-delay: 4s;
}

.hero-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-inner {
    max-width: 56rem;
    margin: 0 auto;
}

.hero-photo {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.hero-photo-container {
    position: relative;
}

.hero-photo-bg-1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: pulse-slow 4s ease-in-out infinite;
    opacity: 0.6;
}

.hero-photo-bg-1 > div {
    width: 10rem;
    height: 10rem;
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 9999px;
}

.hero-photo-bg-2 {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    animation: pulse-slow 4s ease-in-out infinite;
    animation-delay: 1s;
    opacity: 0.4;
}

.hero-photo-bg-2 > div {
    width: 9rem;
    height: 9rem;
    border: 1px solid rgba(248, 113, 113, 0.25);
    border-radius: 9999px;
}

.hero-photo-bg-3 {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    animation: pulse-slow 4s ease-in-out infinite;
    animation-delay: 2s;
    opacity: 0.2;
}

.hero-photo-bg-3 > div {
    width: 8rem;
    height: 8rem;
    border: 1px solid rgba(196, 132, 252, 0.2);
    border-radius: 9999px;
}

.hero-photo-main {
    position: relative;
    width: 10rem;
    height: 10rem;
    margin: 0 auto;
}

.hero-photo-img {
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    overflow: hidden;
    background: linear-gradient(to bottom right, #334155, #1e293b);
    border: 4px solid rgba(239, 68, 68, 0.5);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 20px rgba(239, 68, 68, 0.2);
    animation: glow 3s ease-in-out infinite;
}

.hero-photo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-floating-1 {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #ef4444;
    border: 2px solid rgba(239, 68, 68, 0.5);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-gentle 3s ease-in-out infinite;
}

.hero-floating-2 {
    position: absolute;
    bottom: -0.5rem;
    left: -0.5rem;
    width: 2rem;
    height: 2rem;
    background-color: #ef4444;
    border: 2px solid rgba(239, 68, 68, 0.5);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.hero-floating-3 {
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.5);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-gentle 3s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-title {
    margin-bottom: 3rem;
}

.hero-title-main {
    font-size: 3.75rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #f87171, #ef4444);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 4s ease infinite;
    background-size: 400% 400%;
    line-height: 1.25;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero-title-prefix {
    font-size: 1.25rem;
    color: #f87171;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
    -webkit-text-fill-color: #f87171;
}

.hero-title-prefix s {
    text-decoration: line-through;
}

.hero-subtitle-container {
    position: relative;
    display: inline-block;
}

.hero-subtitle-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(239, 68, 68, 0.2), rgba(168, 85, 247, 0.2));
    filter: blur(12px);
    border-radius: 0.5rem;
}

.hero-subtitle {
    position: relative;
    font-size: 1.5rem;
    color: #e2e8f0;
    font-weight: 300;
    letter-spacing: 0.025em;
    padding: 0.75rem 1.5rem;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    border: 1px solid rgba(51, 65, 85, 0.5);
}

.hero-description {
    position: relative;
    margin-bottom: 4rem;
}

.hero-description-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, transparent, rgba(239, 68, 68, 0.1), transparent);
    filter: blur(4px);
}

.hero-description-text {
    position: relative;
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.625;
    font-weight: 300;
}

.hero-description-text strong {
    color: #f1f5f9;
    font-weight: 700;
}

.hero-cta {
    margin-bottom: 5rem;
}

.hero-cta-container {
    position: relative;
    display: inline-block;
}

.hero-cta-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #ef4444, #9333ea);
    border-radius: 0.75rem;
    filter: blur(12px);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.hero-cta-container:hover .hero-cta-glow {
    opacity: 0.75;
}

.hero-cta-btn {
    display: block;
    position: relative;
    background: linear-gradient(to right, #ef4444, #9333ea);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 20px rgba(239, 68, 68, 0.25);
    overflow: hidden;
}

.hero-cta-btn:hover {
    background: linear-gradient(to right, #dc2626, #7c3aed);
    transform: scale(1.05);
}

.hero-cta-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
}

.hero-cta-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-left: 0.75rem;
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover .hero-cta-icon {
    transform: translateX(0.5rem);
}

.hero-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #9333ea, #ef4444);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-cta-btn:hover .hero-cta-overlay {
    opacity: 1;
}

.hero-cta-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-12deg) translateX(-200%);
    transition: transform 1s ease;
}

.hero-cta-btn:hover .hero-cta-shine {
    transform: skewX(-12deg) translateX(200%);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

.hero-stat {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(to bottom right, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.5));
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 1rem;
    border: 1px solid rgba(51, 65, 85, 0.5);
    transition: all 0.3s ease;
    transform: scale(1);
}

.hero-stat:hover {
    transform: scale(1.05);
}

.hero-stat:nth-child(1) {
    border-color: rgba(239, 68, 68, 0.5);
}

.hero-stat:nth-child(1):hover {
    border-color: rgba(239, 68, 68, 0.5);
}

.hero-stat:nth-child(1) .hero-stat-bg {
    background: linear-gradient(to right, rgba(239, 68, 68, 0.2), transparent);
    border-radius: 0.5rem;
    filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-stat:nth-child(1):hover .hero-stat-bg {
    opacity: 1;
}

.hero-stat:nth-child(2) {
    border-color: rgba(168, 85, 247, 0.5);
}

.hero-stat:nth-child(2):hover {
    border-color: rgba(168, 85, 247, 0.5);
}

.hero-stat:nth-child(2) .hero-stat-bg {
    background: linear-gradient(to right, rgba(168, 85, 247, 0.2), transparent);
    border-radius: 0.5rem;
    filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-stat:nth-child(2):hover .hero-stat-bg {
    opacity: 1;
}

.hero-stat:nth-child(3) {
    border-color: rgba(59, 130, 246, 0.5);
}

.hero-stat:nth-child(3):hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.hero-stat:nth-child(3) .hero-stat-bg {
    background: linear-gradient(to right, rgba(59, 130, 246, 0.2), transparent);
    border-radius: 0.5rem;
    filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-stat:nth-child(3):hover .hero-stat-bg {
    opacity: 1;
}

.hero-stat-container {
    position: relative;
}

.hero-stat-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-stat-number {
    position: relative;
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.hero-stat:nth-child(1) .hero-stat-number {
    color: #f87171;
}

.hero-stat:nth-child(1):hover .hero-stat-number {
    color: #fca5a5;
}

.hero-stat:nth-child(2) .hero-stat-number {
    color: #c084fc;
}

.hero-stat:nth-child(2):hover .hero-stat-number {
    color: #d8b4fe;
}

.hero-stat:nth-child(3) .hero-stat-number {
    color: #60a5fa;
}

.hero-stat:nth-child(3):hover .hero-stat-number {
    color: #93c5fd;
}

.hero-stat-label {
    color: #cbd5e1;
    font-weight: 500;
}

/* About section */
.about {
    padding: 5rem 0;
    position: relative;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.about-bg-circle-1 {
    position: absolute;
    top: 2.5rem;
    right: 5rem;
    opacity: 0.2;
    width: 16rem;
    height: 16rem;
}

.about-bg-circle-2 {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    opacity: 0.15;
    width: 12rem;
    height: 12rem;
}

.about-bg-orb-1 {
    position: absolute;
    top: 5rem;
    left: 5rem;
    width: 16rem;
    height: 16rem;
    background: linear-gradient(to right, rgba(239, 68, 68, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 9999px;
    filter: blur(48px);
    animation: pulse-slow 4s ease-in-out infinite;
}

.about-bg-orb-2 {
    position: absolute;
    bottom: 5rem;
    right: 5rem;
    width: 20rem;
    height: 20rem;
    background: linear-gradient(to right, rgba(59, 130, 246, 0.1), rgba(239, 68, 68, 0.1));
    border-radius: 9999px;
    filter: blur(48px);
    animation: pulse-slow 4s ease-in-out infinite;
    animation-delay: 2s;
}

.about-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-badge-container {
    text-align: center;
}

.about-badge {
    display: inline-block;
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-text {
    position: relative;
    z-index: 10;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(to right, #ffffff, #f87171, #c084fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 4s ease infinite;
    background-size: 400% 400%;
    line-height: 1.25;
}

.about-description {
    color: #cbd5e1;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.625;
    font-weight: 300;
}

.about-description strong {
    color: #f1f5f9;
    font-weight: 700;
}

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

.about-skill {
    margin-bottom: 1.5rem;
}

.about-skill-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.about-skill-name {
    color: #e2e8f0;
    font-weight: 500;
}

.about-skill-percent {
    color: #f87171;
    font-size: 0.875rem;
    font-weight: 600;
}

.about-skill-bar {
    height: 0.5rem;
    background-color: #334155;
    border-radius: 9999px;
    overflow: hidden;
}

.about-skill-progress {
    height: 100%;
    background: linear-gradient(to right, #ef4444, #9333ea);
    border-radius: 9999px;
    transition: all 1s ease-out;
    width: 0;
}

.about-cta {
    margin-top: 2.5rem;
}

.about-cta-btn {
    display: inline-block;
    background: linear-gradient(to right, #ef4444, #9333ea);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.about-cta-btn:hover {
    background: linear-gradient(to right, #dc2626, #7c3aed);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.25);
}

.about-cta-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
}

.about-cta-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.about-cta-btn:hover .about-cta-icon {
    transform: translateX(0.25rem);
}

.about-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #9333ea, #ef4444);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-cta-btn:hover .about-cta-overlay {
    opacity: 1;
}

.about-visual {
    position: relative;
    z-index: 10;
}

.about-card-container {
    position: relative;
}

.about-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(239, 68, 68, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 1.5rem;
    filter: blur(12px);
}

.about-card {
    position: relative;
    background: linear-gradient(to bottom right, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.8));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(51, 65, 85, 0.5);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.about-card-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(to bottom right, rgba(51, 65, 85, 0.5), rgba(30, 41, 59, 0.5));
    border-radius: 1rem;
    border: 1px solid rgba(71, 85, 105, 0.3);
    transition: all 0.3s ease;
    transform: scale(1);
}

.about-card-item:hover {
    border-color: rgba(239, 68, 68, 0.5);
    transform: scale(1.05);
}

.about-card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.about-card-item:hover .about-card-icon {
    transform: rotate(12deg);
}

.about-card-item:nth-child(1) .about-card-icon {
    background: linear-gradient(to bottom right, #ef4444, #9333ea);
}

.about-card-item:nth-child(2) .about-card-icon {
    background: linear-gradient(to bottom right, #9333ea, #3b82f6);
}

.about-card-item:nth-child(3) .about-card-icon {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.about-card-item:nth-child(4) .about-card-icon {
    background: linear-gradient(to bottom right, #06b6d4, #16a34a);
}

.about-card-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.about-card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 0.25rem;
}

.about-card-subtitle {
    font-size: 0.75rem;
    color: #94a3b8;
}

.about-card-stats {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(71, 85, 105, 0.3);
}

.about-card-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    text-align: center;
}

.about-card-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.about-card-stats-grid > div:nth-child(1) .about-card-stat-number {
    color: #f87171;
}

.about-card-stats-grid > div:nth-child(2) .about-card-stat-number {
    color: #c084fc;
}

.about-card-stats-grid > div:nth-child(3) .about-card-stat-number {
    color: #60a5fa;
}

.about-card-stat-label {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* Services section */
.services {
    padding: 5rem 0;
    background: rgba(30, 41, 59, 0.3);
}

.services-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-badge {
    display: inline-block;
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.services-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(to bottom right, #1e293b, #0f172a);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(239, 68, 68, 0.5);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background-color 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(239, 68, 68, 0.2);
}

.service-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #ef4444;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-description {
    color: #94a3b8;
}

/* Reviews section */
.reviews {
    padding: 5rem 0;
    background: rgba(30, 41, 59, 0.3);
    position: relative;
}

.reviews-bg {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    opacity: 0.1;
    width: 12rem;
    height: 12rem;
}

.reviews-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reviews-badge {
    display: inline-block;
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.reviews-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

.review-card {
    background: linear-gradient(to bottom right, #1e293b, #0f172a);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #334155;
    transition-duration: 300ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
    border-color: rgb(239 68 68 / 0.5);
}

.review-header {
    position: relative;
    z-index: 10;
}

.review-avatar {
    margin-bottom: 1rem;
    height: 2rem!important;
    width: 2rem!important;
    color: rgb(239 68 68);
    opacity: 0.5;
}

.review-info {
    padding-top: 1rem;
    border-top: 1px rgb(51 65 85) solid;
}

.review-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.review-company {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.review-company a {
    color: inherit;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-star {
    width: 1rem!important;
    height: 1rem!important;
    color: rgb(239 68 68);
    fill: rgb(239 68 68)!important;
}

.review-text {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.625;
    font-style: italic;
}

/* Contact section */
.contact {
    padding: 5rem 0;
    position: relative;
}

.contact-bg {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    opacity: 0.1;
    width: 12rem;
    height: 12rem;
}

.contact-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-badge {
    display: inline-block;
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.contact-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-title strong {
    color: #f87171;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 3rem;
}

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

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

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

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

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

.contact-item:nth-child(1) .contact-icon {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.contact-item:nth-child(2) .contact-icon {
    background: linear-gradient(to bottom right, #16a34a, #059669);
}

.contact-item:nth-child(3) .contact-icon {
    background: linear-gradient(to bottom right, #9333ea, #db2777);
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.contact-details {
    flex: 1;
}

.contact-label {
    color: #94a3b8;
    font-size: 0.875rem;
}

.contact-value {
    font-size: 1.125rem;
    font-weight: 600;
}

.contact-value a {
    text-decoration: underline;
    color: inherit;
}

.contact-business {
    border-top: 1px solid #334155;
    padding-top: 1.5rem;
}

.contact-business-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-business-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #94a3b8;
}

.contact-business-info a {
    text-decoration: underline;
    color: inherit;
}

.contact-availability {
    margin-top: 2rem;
}

.contact-availability-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-availability-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #94a3b8;
}

.contact-availability-info .mt-3 {
    margin-top: 0.75rem;
    font-size: 0.875rem;
}

.contact-form-container {
    overflow: hidden;
    background: linear-gradient(to bottom right, #1e293b, #0f172a);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #334155;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #334155;
    border: 1px solid #475569;
    border-radius: 0.5rem;
    color: white;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: #94a3b8;
}

.form-input:focus {
    outline: none;
    border-color: transparent;
    box-shadow: 0 0 0 2px #ef4444;
}

.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #334155;
    border: 1px solid #475569;
    border-radius: 0.5rem;
    color: white;
    resize: none;
    transition: all 0.3s ease;
}

.form-textarea::placeholder {
    color: #94a3b8;
}

.form-textarea:focus {
    outline: none;
    border-color: transparent;
    box-shadow: 0 0 0 2px #ef4444;
}

.hcaptcha-container {
    border: 1px solid #475569;
    border-radius: 0.5rem;
    overflow: hidden;
    width: 300px;
    height: 74px;
}

.hcaptcha-container:focus-within {
    box-shadow: 0 0 0 2px #ef4444;
    border-color: transparent;
}

.hcaptcha-container iframe {
    position: relative;
    top: -1px;
    left: -1px;
}

.gdpr-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.gdpr-checkbox {
    margin-top: 0.25rem;
    width: 1rem;
    height: 1rem;
    color: #ef4444;
    background-color: #334155;
    border: 1px solid #475569;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.gdpr-checkbox:focus {
    outline: none;
    box-shadow: 0 0 0 2px #ef4444;
}

.gdpr-label {
    font-size: 0.875rem;
    color: #cbd5e1;
    line-height: 1.625;
}

.form-note {
    font-weight: 700;
}

.submit-message {
    text-align: center;
}

.submit-message.success {
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.submit-message.error {
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(to right, #ef4444, #dc2626);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: linear-gradient(to right, #dc2626, #b91c1c);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.submit-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Footer */
.footer {
    padding: 2rem 0;
    border-top: 1px solid #1e293b;
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.footer-text {
    color: #94a3b8;
}

.footer-text a {
    text-decoration: underline;
    color: inherit;
}

/* Background pattern */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.bg-pattern-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            linear-gradient(90deg, rgba(239, 68, 68, 0.1) 1px, transparent 1px),
            linear-gradient(rgba(239, 68, 68, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.bg-pattern-circle {
    position: absolute;
    opacity: 0.1;
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: 9999px;
    animation: moveCircle 15s ease-in-out infinite;
    transform: translateZ(0);
}

.bg-pattern-circle-1 {
    top: 5rem;
    left: 5rem;
    width: 8rem;
    height: 8rem;
}

.bg-pattern-circle-2 {
    bottom: 5rem;
    right: 5rem;
    width: 6rem;
    height: 6rem;
    border-width: 1px;
    border-color: rgba(248, 113, 113, 0.3);
    animation: circleRotate 10s ease-in-out infinite;
}

.bg-pattern-circle-3 {
    top: 50%;
    left: 25%;
    width: 4rem;
    height: 4rem;
    border-width: 1px;
    border-color: rgba(252, 165, 165, 0.25);
    animation-delay: 5s;
}

.bg-pattern-dot {
    position: absolute;
    background-color: #ef4444;
    border-radius: 9999px;
    opacity: 0.1;
}

.bg-pattern-dot-1 {
    top: 5rem;
    left: 5rem;
    width: 1rem;
    height: 1rem;
    opacity: 0.2;
    animation: moveDot 8s ease-in-out infinite;
}

.bg-pattern-dot-2 {
    top: 10rem;
    right: 8rem;
    width: 1.25rem;
    height: 1.25rem;
    background-color: #f87171;
    opacity: 0.1;
    animation: moveDotSlow 12s ease-in-out infinite;
    animation-delay: 2s;
}

.bg-pattern-dot-3 {
    bottom: 8rem;
    left: 10rem;
    width: 0.75rem;
    height: 0.75rem;
    background-color: #dc2626;
    opacity: 0.3;
    animation: moveDot 8s ease-in-out infinite;
    animation-delay: 4s;
}

.bg-pattern-dot-4 {
    bottom: 5rem;
    right: 5rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #fca5a5;
    opacity: 0.25;
    animation: moveDotSlow 12s ease-in-out infinite;
    animation-delay: 1s;
}

.bg-pattern-dot-5 {
    top: 50%;
    left: 2.5rem;
    width: 1rem;
    height: 1rem;
    opacity: 0.15;
    animation: moveDot 8s ease-in-out infinite;
    animation-delay: 3s;
}

.bg-pattern-dot-6 {
    top: 33.333333%;
    right: 2.5rem;
    width: 0.75rem;
    height: 0.75rem;
    background-color: #f87171;
    opacity: 0.15;
    animation: moveDotSlow 12s ease-in-out infinite;
    animation-delay: 5s;
}

.bg-pattern-dot-7 {
    top: 75%;
    left: 33.333333%;
    width: 1.25rem;
    height: 1.25rem;
    opacity: 0.1;
    animation: moveDot 8s ease-in-out infinite;
}

.bg-pattern-dot-8 {
    top: 25%;
    right: 33.333333%;
    width: 1rem;
    height: 1rem;
    background-color: #fca5a5;
    opacity: 0.2;
    animation: moveDotSlow 12s ease-in-out infinite;
    animation-delay: 3.5s;
}

.bg-pattern-dot-9 {
    top: 2.5rem;
    left: 50%;
    width: 0.75rem;
    height: 0.75rem;
    background-color: #f87171;
    opacity: 0.4;
    animation: moveDot 8s ease-in-out infinite;
    animation-delay: 1.5s;
}

.bg-pattern-dot-10 {
    bottom: 2.5rem;
    left: 25%;
    width: 1rem;
    height: 1rem;
    opacity: 0.45;
    animation: moveDotSlow 12s ease-in-out infinite;
    animation-delay: 4.5s;
}

.bg-pattern-dot-11 {
    top: 66.666667%;
    right: 25%;
    width: 1.25rem;
    height: 1.25rem;
    background-color: #fca5a5;
    opacity: 0.15;
    animation: moveDot 8s ease-in-out infinite;
    animation-delay: 2.5s;
}

.bg-pattern-dot-12 {
    top: 16.666667%;
    left: 75%;
    width: 0.75rem;
    height: 0.75rem;
    background-color: #dc2626;
    opacity: 0.2;
    animation: moveDotSlow 12s ease-in-out infinite;
    animation-delay: 0.5s;
}

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

::-webkit-scrollbar-track {
    background: #1e293b;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

/* Selection styling */
::selection {
    background: rgba(239, 68, 68, 0.3);
    color: white;
}

/* Focus styles */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
}

/* Lucide icons */
.lucide {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lucide-sm {
    width: 16px;
    height: 16px;
}

.lucide-lg {
    width: 32px;
    height: 32px;
}

.lucide-xl {
    width: 48px;
    height: 48px;
}

/* Responsive design */
@media (max-width: 640px) {
    html {
        font-size: 14px;
    }

    .hero-title-main {
        font-size: 2.25rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-title-prefix {
        font-size: 1rem;
    }

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

    .about-title {
        font-size: 2.25rem;
    }

    .about-card-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .about-card-stats-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .contact-info-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav {
        display: none;
    }

    .logo-info {
        display: none;
    }
}

@media (min-width: 640px) {
    .logo-info {
        display: block;
    }
}

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

    .nav {
        display: flex;
    }

    .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reviews-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-title-main {
        font-size: 6rem;
    }

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

    .contact-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .about-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-title {
        font-size: 3.75rem;
    }

    .contact-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-info-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

@media (min-width: 1920px) {
    html {
        font-size: 18px;
    }
}

.h-captcha {
    overflow: hidden;
    width: 300px;
    height: 74px;
    border-radius: 5px;
}

.h-captcha iframe {
    position: relative;
    top: -1px;
    left: -1px;
}

.bg-white\/20 { background-color: rgba(255,255,255,.2); }
.w-1 { width: 0.25rem }
.h-1 { height: 0.25rem }
.bg-white\/30 { background-color: rgba(255,255,255,.3); }
.left-1\/2 { left: 50% }
.right-1\/4 { right: 25% }
.top-1\/3 { top: 33% }
.to-transparent { opacity: 0 }
.opacity-0 { opacity: 0 }
.group-hover\:opacity\-100:hover { opacity: 1 }
.underline { text-decoration: underline }