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

:root {
    /* Dark theme with neon accents */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a24;
    --bg-overlay: rgba(0, 0, 0, 0.7);
    
    --accent-primary: #8b5cf6;
    --accent-secondary: #06b6d4;
    --accent-tertiary: #ec4899;
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b7a;
    
    --gradient-1: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    --gradient-2: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    --gradient-hero: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
    
    --border-color: rgba(139, 92, 246, 0.2);
    --shadow-glow: 0 0 30px rgba(139, 92, 246, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
    
    --font-family: 'Space Grotesk', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

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

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

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

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ensure SVGs are responsive */
svg {
    max-width: 100%;
    height: auto;
}

/* Smooth scrolling for all devices */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Improve text readability on small screens */
@media (max-width: 768px) {
    body {
        -webkit-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
}

/* Better focus indicators for accessibility */
*:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Remove default button styles on mobile */
button,
input,
textarea,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

button,
input[type="submit"],
input[type="button"] {
    -webkit-appearance: none;
    border-radius: 50px;
}

/* Improve form elements on mobile */
@media (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Smooth transitions for all interactive elements */
a, button, .btn {
    -webkit-tap-highlight-color: rgba(139, 92, 246, 0.2);
    tap-highlight-color: rgba(139, 92, 246, 0.2);
}

/* Improve button touch targets on mobile */
@media (max-width: 768px) {
    .btn,
    button,
    .nav-link,
    .service-link {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Fix for iOS Safari viewport units */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}

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

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

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

.logo:hover {
    transform: translateY(-2px);
}

.logo:hover .logo-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.6));
}

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

.logo-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

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

.logo:hover .logo-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
}

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

.nav-link: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: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

.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 */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-overlay);
    z-index: 2;
}

.hero-wrapper {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0;
}

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

.hero-right {
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: var(--gradient-1);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
    box-shadow: var(--shadow-glow);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }
    50% { box-shadow: 0 0 40px rgba(139, 92, 246, 0.6); }
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    text-align: left;
    margin: 0;
}

.title-accent {
    display: block;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
    position: relative;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
    opacity: 0.5;
}

.hero-subtitle-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-card);
}

.hero-subtitle-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-1);
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.hero-subtitle-wrapper:hover::before {
    opacity: 0.3;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0 0 2.5rem 0;
    text-align: left;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: -0.75rem;
    width: 1px;
    height: 100%;
    background: var(--border-color);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

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

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

.hero-cta .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    padding: 0.75rem 1.25rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    width: fit-content;
}

.note-icon {
    font-size: 1rem;
    filter: grayscale(0.3);
}

.hero-decorative {
    position: relative;
    z-index: 3;
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.decorative-line {
    flex: 1;
    height: 2px;
    background: var(--gradient-1);
    border-radius: 2px;
    opacity: 0.3;
    margin-right: 2rem;
}

.decorative-dots {
    display: flex;
    gap: 0.75rem;
}

.decorative-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gradient-1);
    opacity: 0.6;
    animation: dot-pulse 2s ease-in-out infinite;
}

.decorative-dots span:nth-child(2) {
    animation-delay: 0.3s;
}

.decorative-dots span:nth-child(3) {
    animation-delay: 0.6s;
}

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

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

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-primary);
    top: -200px;
    right: -200px;
    animation: float 20s infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-secondary);
    bottom: -150px;
    left: -150px;
    animation: float 15s infinite reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--accent-tertiary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 25s infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-30px, 30px) rotate(240deg); }
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
}

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

.btn-secondary:hover {
    background: var(--accent-primary);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About / Features Section */
.about {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
}

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

.about-left {
    position: sticky;
    top: 120px;
}

.about-left .section-label {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.about-left .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.about-left .section-description {
    text-align: left;
    margin: 0 0 2.5rem 0;
    max-width: 100%;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-highlight {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.about-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-1);
}

.highlight-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.highlight-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.highlight-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
    grid-auto-flow: dense;
}

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-card);
    border-color: var(--accent-primary);
}

.feature-card:hover::before {
    opacity: 0.05;
}

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

.feature-card:hover .feature-icon-bg {
    opacity: 0.3;
    transform: scale(1.2);
}

.feature-icon-wrapper {
    position: relative;
    width: fit-content;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-icon {
    font-size: 3rem;
    position: relative;
    z-index: 2;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.feature-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
    filter: blur(20px);
    z-index: 1;
}

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

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    flex: 1;
}

.feature-link {
    margin-top: 1.5rem;
    color: var(--accent-secondary);
    font-weight: 600;
    font-size: 0.875rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-link {
    opacity: 1;
    transform: translateX(0);
}

.feature-card-large {
    grid-row: span 2;
    padding: 2.5rem;
}

.feature-card-large .feature-icon {
    font-size: 4rem;
}

.feature-card-large .feature-icon-bg {
    width: 120px;
    height: 120px;
}

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

.feature-card-wide {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
}

.feature-card-wide .feature-icon-wrapper {
    margin-bottom: 0;
    flex-shrink: 0;
}

.feature-card-wide .feature-icon {
    font-size: 3.5rem;
}

.feature-card-wide h3 {
    margin-bottom: 0.75rem;
}

.feature-card-wide p {
    margin: 0;
}

/* Services Section */
.services {
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
}

.services-header-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}

.services-header-left .section-label {
    display: inline-block;
    margin-bottom: 1rem;
}

.services-header-left .section-title {
    text-align: left;
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
}

.services-header-right {
    display: flex;
    align-items: center;
}

.services-header-right .section-description {
    text-align: left;
    margin: 0;
    max-width: 100%;
    font-size: 1.125rem;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
    grid-auto-flow: dense;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

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

.service-card:hover::before {
    opacity: 0.05;
}

.service-card-small {
    padding: 2rem;
    position: relative;
}

.service-card-small::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 0 0 0 100%;
    opacity: 0;
    transition: var(--transition);
}

.service-card-small:hover::after {
    opacity: 1;
}

.service-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
    position: relative;
    z-index: 1;
}

.service-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3.5rem;
    opacity: 0.15;
    transition: var(--transition);
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.service-card-small:hover .service-icon {
    opacity: 0.3;
    transform: scale(1.1) rotate(5deg);
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.service-card-small .service-content {
    padding: 0;
}

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

.service-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex: 1;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.service-link {
    color: var(--accent-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    width: fit-content;
}

.service-link::after {
    content: '→';
    transition: var(--transition);
}

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

.service-link:hover::after {
    transform: translateX(3px);
}

.service-card-large {
    grid-column: span 2;
    grid-row: span 1;
    padding: 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 300px;
}

.service-image-large {
    position: relative;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-image-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-2);
    opacity: 0.5;
    transition: var(--transition);
}

.service-card-large:hover .service-image-gradient {
    opacity: 0.7;
}

.service-image-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.3;
}

.service-placeholder-large {
    font-size: 8rem;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    animation: float-icon 6s ease-in-out infinite;
}

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

.service-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(6, 182, 212, 0.2);
    border: 1px solid var(--accent-secondary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--accent-tertiary);
}

.review-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--accent-primary);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    transition: var(--transition);
    background: var(--gradient-1);
    position: relative;
}

.author-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
    border-color: var(--accent-secondary);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.author-avatar:hover img {
    transform: scale(1.1);
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-location {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

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

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-secondary);
    transition: var(--transition);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.contact-item:hover .contact-icon {
    color: var(--accent-primary);
    transform: scale(1.1);
}

.contact-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-value {
    color: var(--text-primary);
    font-weight: 600;
}

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

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

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

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

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

.error-message {
    display: block;
    color: var(--accent-tertiary);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 20px;
}

.form-success {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid var(--accent-secondary);
    border-radius: 10px;
    color: var(--accent-secondary);
    text-align: center;
}

/* Captcha */
.captcha-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.captcha-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

#captcha-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
}

.captcha-refresh {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    flex-shrink: 0;
}

.captcha-refresh:hover {
    color: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: rotate(180deg);
    background: rgba(139, 92, 246, 0.1);
}

.captcha-refresh svg {
    width: 20px;
    height: 20px;
}

#captcha {
    width: 100%;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.1em;
}

#captcha:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

#captcha::placeholder {
    color: var(--text-muted);
    letter-spacing: normal;
    font-weight: normal;
}

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

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

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
    line-height: 1.8;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

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

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

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

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

.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;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    z-index: 2000;
    transform: translateY(150%);
    transition: var(--transition);
}

.cookie-popup.show {
    transform: translateY(0);
}

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

.cookie-content a {
    color: var(--accent-primary);
    text-decoration: none;
}

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

.btn-accept,
.btn-decline {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-family: var(--font-family);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-accept {
    background: var(--gradient-1);
    color: var(--text-primary);
}

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

.btn-accept:hover,
.btn-decline:hover {
    transform: translateY(-2px);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--bg-card);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: var(--bg-secondary);
    transform: rotate(90deg);
}

.modal-body {
    padding: 3rem 2rem 2rem;
}

.modal-body h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

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

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

.modal-body .policy-intro {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-body .policy-date {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

.modal-body ul,
.modal-body ol {
    margin: 1rem 0 1rem 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.modal-body ul li,
.modal-body ol li {
    margin-bottom: 0.75rem;
}

.modal-body ul {
    list-style-type: disc;
}

.modal-body ol {
    list-style-type: decimal;
}

.modal-body h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
}

.modal-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Responsive Design - Mobile First */

/* Tablet Landscape and Smaller */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero-wrapper {
        gap: 3rem;
    }

    .about-wrapper {
        gap: 3rem;
    }

    .features-grid {
        gap: 1.25rem;
    }

    .services-grid {
        gap: 1.25rem;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

        .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid var(--border-color);
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

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

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 1.125rem;
        padding: 0.75rem 0;
        display: block;
    }

    .burger-menu {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 1.5rem 0;
    }

    .hero-left {
        text-align: center;
        align-items: center;
    }

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

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

    .title-accent::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

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

    .hero-cta .btn {
        max-width: 100%;
    }

    .hero-note {
        margin: 0 auto;
        text-align: center;
    }

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

    .hero-decorative {
        margin-top: 3rem;
        padding: 0 1rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-left {
        position: static;
        text-align: center;
    }

    .about-left .section-title,
    .about-left .section-description {
        text-align: center;
    }

    .about-highlight {
        flex-direction: column;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .feature-card-large {
        grid-row: span 1;
    }

    .feature-card-wide {
        grid-column: span 2;
    }

    .services-header-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .services-header-left .section-title {
        text-align: center;
    }

    .services-header-right .section-description {
        text-align: center;
        margin: 0 auto;
    }

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

    .service-card-large {
        grid-column: span 2;
    }

    .contacts-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .contact-item {
        justify-content: center;
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .service-image-large {
        min-height: 250px;
    }
}

/* Mobile Landscape and Tablet Portrait */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card-wide {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card-large {
        grid-column: span 1;
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .service-image-large {
        min-height: 200px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header {
        padding: 0.875rem 0;
    }

    .header-content {
        gap: 1rem;
    }

    .logo-text {
        font-size: 1.125rem;
    }

    .hero {
        padding: 90px 0 50px;
    }

    .hero-wrapper {
        gap: 2.5rem;
        padding: 1rem 0;
    }

    .hero-badge {
        padding: 0.5rem 1.5rem;
        font-size: 0.8125rem;
        margin: 0 auto;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
        line-height: 1.2;
    }

    .hero-subtitle-wrapper {
        padding: 2rem;
    }

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

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding-top: 1.5rem;
    }

    .stat-item {
        padding: 1rem 0;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .hero-cta {
        gap: 0.875rem;
        width: 100%;
    }

    .hero-note {
        font-size: 0.8125rem;
        padding: 0.625rem 1rem;
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .hero-decorative {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2.5rem;
        padding: 0;
    }

    .decorative-line {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

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

    .hero-shapes .shape {
        display: none;
    }

    .btn {
        width: 100%;
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
    }

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-label {
        font-size: 0.8125rem;
        padding: 0.4rem 0.875rem;
    }

    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 0.875rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .about-wrapper {
        gap: 2.5rem;
    }

    .about-highlight {
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .highlight-icon {
        font-size: 2rem;
    }

    .highlight-title {
        font-size: 1rem;
    }

    .highlight-text {
        font-size: 0.8125rem;
    }

    .features-grid {
        gap: 1.25rem;
    }

    .feature-card {
        padding: 1.75rem;
    }

    .feature-card-large {
        padding: 2rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-icon-bg {
        width: 60px;
        height: 60px;
    }

    .feature-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.875rem;
    }

    .feature-card p {
        font-size: 0.9375rem;
    }

    .services-header-wrapper {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .services-grid {
        gap: 1.25rem;
    }

    .service-card {
        padding: 1.75rem;
    }

    .service-number {
        font-size: 2.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
        top: 1.5rem;
        right: 1.5rem;
    }

    .service-content h3 {
        font-size: 1.25rem;
    }

    .service-content p {
        font-size: 0.9375rem;
    }

    .service-placeholder-large {
        font-size: 5rem;
    }

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

    .review-card {
        padding: 2rem;
    }

    .review-stars {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }

    .review-text {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .author-avatar {
        width: 45px;
        height: 45px;
    }

    .contacts-wrapper {
        gap: 2.5rem;
    }

    .contact-items {
        margin-top: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 1.5rem;
        gap: 0.75rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-form {
        padding: 2rem;
    }

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

    .contact-form input,
    .contact-form textarea {
        padding: 0.875rem;
        font-size: 0.9375rem;
    }

    .captcha-question {
        padding: 0.875rem;
        flex-wrap: wrap;
    }

    #captcha-text {
        font-size: 0.9375rem;
    }

    .captcha-refresh {
        padding: 0.4rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

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

    .footer-title {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.875rem;
    }

    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
        padding: 1.25rem;
    }

    .cookie-content p {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-accept,
    .btn-decline {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }

    .modal-content {
        margin: 10px;
        max-height: 95vh;
    }

    .modal-body {
        padding: 2rem 1.5rem 1.5rem;
    }

    .modal-body h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .modal-body h3 {
        font-size: 1.25rem;
        margin-top: 1.5rem;
        margin-bottom: 0.875rem;
    }

    .modal-body p {
        font-size: 0.9375rem;
    }

    .modal-body .policy-intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.25rem;
    }

    .modal-body h4 {
        font-size: 1.125rem;
        margin-top: 1.25rem;
        margin-bottom: 0.625rem;
    }

    .modal-body ul,
    .modal-body ol {
        margin-left: 1.5rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header {
        padding: 0.75rem 0;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .hero {
        padding: 80px 0 40px;
    }

    .hero-wrapper {
        gap: 2rem;
    }

    .hero-badge {
        padding: 0.5rem 1.25rem;
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
    }

    .hero-subtitle-wrapper {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        gap: 1rem;
        padding-top: 1.25rem;
    }

    .stat-number {
        font-size: 1.375rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-note {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
        width: 100%;
    }

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

    section {
        padding: 50px 0;
    }

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

    .section-label {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .section-description {
        font-size: 0.9375rem;
    }

    .about-wrapper {
        gap: 2rem;
    }

    .about-highlight {
        padding: 1.25rem;
        border-radius: 16px;
        gap: 1rem;
    }

    .highlight-icon {
        font-size: 1.75rem;
    }

    .highlight-title {
        font-size: 0.9375rem;
    }

    .highlight-text {
        font-size: 0.75rem;
    }

    .feature-card,
    .service-card,
    .review-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .feature-card-large {
        padding: 1.75rem;
    }

    .feature-icon {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .feature-icon-bg {
        width: 50px;
        height: 50px;
    }

    .feature-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .feature-card p {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .feature-card-large .feature-icon {
        font-size: 3rem;
    }

    .feature-card-large .feature-icon-bg {
        width: 80px;
        height: 80px;
    }

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

    .services-header-wrapper {
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .service-number {
        font-size: 2rem;
        margin-bottom: 0.875rem;
    }

    .service-icon {
        font-size: 2rem;
        top: 1.25rem;
        right: 1.25rem;
    }

    .service-content h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .service-content p {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .service-card-large {
        border-radius: 20px;
        overflow: hidden;
    }

    .service-image-large {
        min-height: 180px;
    }

    .service-placeholder-large {
        font-size: 4rem;
    }

    .service-badge {
        font-size: 0.6875rem;
        padding: 0.3rem 0.875rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-stars {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .review-text {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
        line-height: 1.7;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
    }

    .author-name {
        font-size: 0.9375rem;
    }

    .author-location {
        font-size: 0.8125rem;
    }

    .contacts-wrapper {
        gap: 2rem;
    }

    .contact-items {
        margin-top: 1.25rem;
    }

    .contact-item {
        margin-bottom: 1.25rem;
        gap: 0.625rem;
    }

    .contact-icon {
        width: 36px;
        height: 36px;
    }

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

    .contact-label {
        font-size: 0.8125rem;
    }

    .contact-value {
        font-size: 0.9375rem;
    }

    .contact-form {
        padding: 1.5rem;
        border-radius: 16px;
    }

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

    .contact-form input,
    .contact-form textarea {
        padding: 0.75rem;
        font-size: 0.875rem;
        border-radius: 8px;
    }

    .contact-form textarea {
        min-height: 100px;
    }

    .error-message {
        font-size: 0.8125rem;
        margin-top: 0.375rem;
    }

    .captcha-container {
        gap: 0.625rem;
    }

    .captcha-question {
        padding: 0.75rem;
        border-radius: 8px;
    }

    #captcha-text {
        font-size: 0.875rem;
    }

    .captcha-refresh {
        padding: 0.375rem;
    }

    .captcha-refresh svg {
        width: 18px;
        height: 18px;
    }

    #captcha {
        padding: 0.75rem;
        font-size: 0.875rem;
        border-radius: 8px;
    }

    .form-success {
        padding: 0.875rem;
        font-size: 0.875rem;
        border-radius: 8px;
    }

    .footer {
        padding: 2.5rem 0 1.25rem;
    }

    .footer-grid {
        gap: 1.75rem;
        margin-bottom: 1.75rem;
    }

    .footer-title {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }

    .footer-links li {
        margin-bottom: 0.625rem;
        font-size: 0.875rem;
    }

    .footer-brand p {
        font-size: 0.875rem;
        margin-top: 0.875rem;
    }

    .footer-bottom {
        padding-top: 1.25rem;
        font-size: 0.8125rem;
    }

    .cookie-popup {
        left: 8px;
        right: 8px;
        bottom: 8px;
        padding: 1rem;
        border-radius: 16px;
    }

    .cookie-content p {
        font-size: 0.8125rem;
        margin-bottom: 0.875rem;
    }

    .cookie-buttons {
        gap: 0.625rem;
    }

    .btn-accept,
    .btn-decline {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }

    .modal-content {
        margin: 8px;
        border-radius: 16px;
    }

    .modal-body {
        padding: 1.75rem 1.25rem 1.25rem;
    }

    .modal-close {
        width: 36px;
        height: 36px;
        font-size: 1.75rem;
        top: 0.75rem;
        right: 0.75rem;
    }

    .modal-body h2 {
        font-size: 1.375rem;
        margin-bottom: 1rem;
    }

    .modal-body h3 {
        font-size: 1.125rem;
        margin-top: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .modal-body p {
        font-size: 0.875rem;
    }

    .modal-body .policy-intro {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
        padding-bottom: 1rem;
    }

    .modal-body .policy-date {
        font-size: 0.8125rem;
        margin-top: 2rem;
        padding-top: 1.25rem;
    }

    .modal-body h4 {
        font-size: 1rem;
        margin-top: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .modal-body ul,
    .modal-body ol {
        margin-left: 1.25rem;
        font-size: 0.875rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

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

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

    .feature-card,
    .service-card,
    .review-card,
    .contact-form {
        padding: 1.25rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Landscape Orientation Adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-wrapper {
        padding: 0.5rem 0;
    }

    .modal-content {
        max-height: 90vh;
    }
}

/* Large Screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-wrapper {
        gap: 5rem;
    }

    .section-title {
        font-size: clamp(2.5rem, 4vw, 3.5rem);
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-link,
    .btn,
    .service-link,
    .footer-links a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .burger-menu {
        min-width: 44px;
        min-height: 44px;
        padding: 8px;
    }

    .contact-form input,
    .contact-form textarea,
    #captcha {
        min-height: 44px;
    }

    .feature-card:hover,
    .service-card:hover,
    .review-card:hover {
        transform: none;
    }

    .feature-card:active,
    .service-card:active,
    .review-card:active {
        transform: scale(0.98);
    }
}

/* Print Styles */
@media print {
    .header,
    .burger-menu,
    .cookie-popup,
    .modal,
    .hero-shapes,
    .hero-decorative {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero,
    section {
        page-break-inside: avoid;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-icon,
    .contact-icon svg,
    .captcha-refresh svg {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

