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

:root {
    /* Неоновая цветовая схема */
    --primary-neon: #ff00ff;
    --secondary-neon: #00ffff;
    --accent-neon: #ff00a0;
    --purple-neon: #a855f7;
    --blue-neon: #3b82f6;
    
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: #141420;
    --bg-card-hover: #1a1a2e;
    
    --text-primary: #ffffff;
    --text-secondary: #b8b8c8;
    --text-muted: #6b6b7a;
    
    --border-color: #2a2a3a;
    --shadow-neon: 0 0 20px rgba(255, 0, 255, 0.3);
    --shadow-neon-blue: 0 0 20px rgba(0, 255, 255, 0.3);
    
    --font-main: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-width: 320px;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
}

.logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(255, 0, 255, 0.4));
    transition: var(--transition);
}

.logo a:hover .logo-icon {
    filter: drop-shadow(0 0 12px rgba(255, 0, 255, 0.6));
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.logo a:hover .logo-text {
    background: linear-gradient(135deg, var(--secondary-neon), var(--primary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.nav-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
    transition: var(--transition);
}

.nav-list a:hover {
    color: var(--text-primary);
}

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

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 3px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section - Unique Asymmetric Layout */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 100px 0 60px;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
        linear-gradient(225deg, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.2), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15), transparent 50%);
    animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% { 
        transform: scale(1.2) rotate(3deg);
        opacity: 0.8;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.6) 0%, rgba(10, 10, 15, 0.85) 100%);
}

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

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 0, 255, 0.1);
    border-left: 3px solid var(--primary-neon);
    border-radius: 0 12px 12px 0;
    margin-bottom: 0.5rem;
    width: fit-content;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(255, 0, 255, 0.8));
}

.badge-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-neon);
    letter-spacing: 0.5px;
}

.hero-text-content {
    margin: 1rem 0;
}

.hero-title-main {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    text-align: left;
    letter-spacing: -0.02em;
}

.hero-title-accent {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 600;
    background: linear-gradient(135deg, var(--secondary-neon), var(--blue-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-align: left;
    animation: gradient-flow 4s ease infinite;
    background-size: 200% 200%;
}

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

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
    max-width: 90%;
    text-align: left;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.feature-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-neon), var(--accent-neon));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
}

.hero-cta-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
    max-width: 320px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary-neon), var(--accent-neon));
    color: var(--text-primary);
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(255, 0, 255, 0.4);
    transition: var(--transition);
    text-align: center;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 0, 255, 0.6);
}

.btn-hero-secondary {
    background: rgba(0, 255, 255, 0.1);
    color: var(--secondary-neon);
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--secondary-neon);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    transition: var(--transition);
    text-align: center;
}

.btn-hero-secondary:hover {
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
}

.btn-link-hero {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 0;
    transition: var(--transition);
    text-align: left;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
}

.btn-link-hero:hover {
    color: var(--secondary-neon);
    transform: translateX(5px);
}

.hero-note-box {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 10px;
    margin-top: 0.5rem;
    max-width: fit-content;
    backdrop-filter: blur(10px);
}

.note-icon {
    font-size: 1.25rem;
}

.note-text {
    font-size: 0.85rem;
    color: rgba(255, 165, 0, 0.9);
    font-style: italic;
}

/* Hero Right Side - Visual Cards */
.hero-right {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0;
}

.hero-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    overflow: hidden;
}

.hero-card.floating {
    animation: float-card 4s ease-in-out infinite;
    margin-right: 2rem;
}

.hero-card.floating-delayed {
    animation: float-card 4s ease-in-out infinite;
    animation-delay: 1s;
    margin-left: 2rem;
}

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

.card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.3), transparent 70%);
    opacity: 0.5;
    animation: pulse-glow 3s ease-in-out infinite;
}

.card-glow.glow-secondary {
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3), transparent 70%);
}

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

.card-content {
    position: relative;
    z-index: 1;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(255, 0, 255, 0.6));
}

.hero-card:nth-child(2) .card-icon {
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.6));
}

.hero-card h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hero-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 0, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    transition: var(--transition);
}

.stat-item:hover {
    border-color: var(--primary-neon);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: float-shape 8s ease-in-out infinite;
}

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-neon);
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: var(--secondary-neon);
    bottom: 10%;
    right: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--purple-neon);
    top: 60%;
    left: 70%;
    animation-delay: 4s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: var(--blue-neon);
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}


.btn-primary {
    background: linear-gradient(135deg, var(--primary-neon), var(--accent-neon));
    color: var(--text-primary);
    border: none;
}

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

.btn-submit {
    background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
    color: var(--text-primary);
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    box-shadow: var(--shadow-neon);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 0, 255, 0.6);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* About Section - Unique Asymmetric Layout */
.about {
    background: var(--bg-darker);
}

.features-layout-unique {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card-large {
    grid-row: span 2;
    background: var(--bg-card);
    border-radius: 25px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.feature-card-large:hover {
    transform: translateY(-5px);
    border-color: var(--primary-neon);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.3);
}

.feature-card-medium {
    background: var(--bg-card);
    border-radius: 25px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.feature-card-medium:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-neon);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.3);
}

.feature-card-medium.highlight {
    border-color: var(--purple-neon);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
}

.feature-card-medium.highlight:hover {
    border-color: var(--purple-neon);
    box-shadow: 0 10px 50px rgba(168, 85, 247, 0.6);
    transform: translateY(-8px) scale(1.02);
}

.feature-card-wide {
    grid-column: span 2;
    background: var(--bg-card);
    border-radius: 25px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.feature-card-wide:hover {
    transform: translateY(-5px);
    border-color: var(--primary-neon);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.3);
}

.feature-cards-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-image-wrapper {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.feature-image-wrapper.small {
    height: 200px;
}

.feature-image-wrapper.wide {
    height: 100%;
    min-height: 300px;
}

.feature-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.feature-card-large:hover .feature-image-wrapper img,
.feature-card-medium:hover .feature-image-wrapper img,
.feature-card-wide:hover .feature-image-wrapper img {
    transform: scale(1.1);
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.8) 100%);
    pointer-events: none;
}

.feature-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-card-wide .feature-content {
    padding: 3rem;
    justify-content: center;
}

.feature-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.feature-card-large .feature-number {
    font-size: 6rem;
}

.feature-card-wide .feature-number {
    font-size: 5rem;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.feature-card-large .feature-content h3 {
    font-size: 2rem;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.feature-card-large .feature-content p {
    font-size: 1.1rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.service-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-neon);
    box-shadow: var(--shadow-neon-blue);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.7;
}

.service-link {
    color: var(--secondary-neon);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    align-self: flex-start;
}

.service-link:hover {
    color: var(--primary-neon);
    transform: translateX(5px);
}

/* Reviews Section */
.reviews {
    background: var(--bg-darker);
}

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

.review-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--purple-neon);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-neon);
    background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-weight: 700;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.review-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.review-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--primary-neon);
    box-shadow: var(--shadow-neon);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 0, 255, 0.3));
}

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

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

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

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

.form-group label {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-neon);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--secondary-neon);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

#captcha-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-neon);
    letter-spacing: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    user-select: none;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(255, 0, 255, 0.4));
    transition: var(--transition);
}

.footer-logo:hover .footer-logo-icon {
    filter: drop-shadow(0 0 12px rgba(255, 0, 255, 0.6));
    transform: scale(1.05);
}

.footer-logo-text {
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.footer-column h3,
.footer-column h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-list li img {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    opacity: 0.9;
    filter: drop-shadow(0 0 4px rgba(255, 0, 255, 0.3));
    transition: var(--transition);
}

.footer-contact-list li:hover img {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(255, 0, 255, 0.5));
}

.footer-contact-list li span {
    color: var(--text-secondary);
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.footer-social a:hover {
    border-color: var(--primary-neon);
    box-shadow: var(--shadow-neon);
}

.footer-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1rem;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    z-index: 10000;
    display: none;
    animation: slideUp 0.5s ease-out;
}

.cookie-popup.show {
    display: block;
}

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

.cookie-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-text h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cookie-text a {
    color: var(--secondary-neon);
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-buttons .btn {
    flex: 1;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
}

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

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    width: 100%;
    animation: slideDown 0.3s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--bg-dark);
    color: var(--text-primary);
}

.modal-body {
    padding: 2rem;
}

.modal-body h3 {
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Responsive Design - Mobile First */

/* Large Desktops (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-grid {
        max-width: 1600px;
    }
}

/* Desktops (1200px - 1399px) */
@media (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
}

/* Tablets Landscape (1024px - 1199px) */
@media (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-grid {
        gap: 3rem;
    }
}

/* Tablets (900px - 1023px) */
@media (max-width: 1023px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-card);
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-left {
        order: 1;
    }
    
    .hero-right {
        order: 2;
    }
    
    .hero-card.floating,
    .hero-card.floating-delayed {
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-layout-unique {
        grid-template-columns: 1fr;
    }
    
    .feature-card-large {
        grid-row: span 1;
    }
    
    .feature-card-wide {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .feature-image-wrapper.wide {
        height: 300px;
        min-height: 300px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets Portrait (768px - 899px) */
@media (max-width: 899px) {
    section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .hero-grid {
        gap: 2.5rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .hero-cta-vertical {
        max-width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Landscape (600px - 767px) */
@media (max-width: 767px) {
    section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .header {
        padding: 0.75rem 0;
    }
    
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-grid {
        gap: 2rem;
        padding: 0 20px;
    }
    
    .hero-title-main {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }
    
    .hero-title-accent {
        font-size: clamp(1.25rem, 3vw, 2rem);
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .stat-item {
        padding: 1rem 0.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .features-layout-unique {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2rem;
    }
    
    .feature-card-large {
        grid-row: span 1;
    }
    
    .feature-card-wide {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .feature-image-wrapper.wide {
        height: 250px;
        min-height: 250px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .service-card {
        min-width: auto;
    }
    
    .contact-wrapper {
        gap: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-popup {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
    }
    
    .cookie-buttons {
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .cookie-buttons .btn {
        flex: 1;
    }
}

/* Mobile Portrait (480px - 599px) */
@media (max-width: 599px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 0.75rem 0;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .hero-grid {
        gap: 2rem;
        padding: 0 15px;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .badge-icon {
        font-size: 1rem;
    }
    
    .hero-title-main {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .hero-title-accent {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin: 1rem 0 1.5rem;
    }
    
    .hero-features {
        gap: 0.5rem;
        margin: 1rem 0;
    }
    
    .hero-feature-item {
        font-size: 0.85rem;
    }
    
    .feature-check {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .hero-cta-vertical {
        max-width: 100%;
        gap: 0.75rem;
        margin: 1.5rem 0;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-card {
        padding: 1.5rem;
    }
    
    .hero-card h3 {
        font-size: 1.1rem;
    }
    
    .hero-card p {
        font-size: 0.85rem;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        gap: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin-top: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem 0.5rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-image-wrapper {
        height: 200px;
    }
    
    .feature-image-wrapper.small {
        height: 150px;
    }
    
    .feature-image-wrapper.wide {
        height: 200px;
        min-height: 200px;
    }
    
    .feature-content {
        padding: 1.5rem;
    }
    
    .feature-number {
        font-size: 3rem;
    }
    
    .feature-card-large .feature-number {
        font-size: 4rem;
    }
    
    .feature-card-wide .feature-number {
        font-size: 3.5rem;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
    }
    
    .feature-card-large .feature-content h3 {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-avatar {
        width: 50px;
        height: 50px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 1.25rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-contact-list {
        align-items: center;
        justify-content: center;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .modal-content {
        margin: 10px;
        max-height: 90vh;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.25rem;
    }
}

/* Small Mobile (360px - 479px) */
@media (max-width: 479px) {
    .container {
        padding: 0 12px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .logo-text {
        font-size: 0.95rem;
    }
    
    .hero {
        padding: 70px 0 30px;
    }
    
    .hero-grid {
        gap: 1.5rem;
        padding: 0 12px;
    }
    
    .hero-title-main {
        font-size: 1.75rem;
    }
    
    .hero-title-accent {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-feature-item {
        font-size: 0.8rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .hero-card {
        padding: 1.25rem;
    }
    
    .stat-item {
        padding: 0.75rem 0.25rem;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .feature-content {
        padding: 1.25rem;
    }
    
    .feature-number {
        font-size: 2.5rem;
    }
    
    .feature-card-large .feature-number {
        font-size: 3.5rem;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .service-content {
        padding: 1.25rem;
    }
    
    .service-content h3 {
        font-size: 1.1rem;
    }
    
    .review-card {
        padding: 1.25rem;
    }
    
    .contact-form {
        padding: 1.25rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .btn-submit {
        padding: 1rem;
        font-size: 1rem;
    }
}

/* Extra Small Mobile (up to 359px) */
@media (max-width: 359px) {
    .container {
        padding: 0 10px;
    }
    
    .logo-text {
        font-size: 0.85rem;
    }
    
    .hero-title-main {
        font-size: 1.5rem;
    }
    
    .hero-title-accent {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        gap: 0.25rem;
    }
    
    .stat-item {
        padding: 0.75rem 0.15rem;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
}

/* Prevent text and image overflow */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

* {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Ensure all interactive elements are accessible on mobile */
button,
a,
input,
textarea,
select {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Prevent horizontal scroll */
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-neon);
}

