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

:root {
    /* KRAUS Brand Colors - Red/Black/Silver */
    --primary: #DC0000;
    --primary-dark: #B80000;
    --primary-light: #FF3333;
    --secondary: #4A4A4A;
    --dark: #0F0F0F;
    --dark-secondary: #1A1A1A;
    --silver: #C0C0C0;
    --silver-light: #E8E8E8;
    --background: #ffffff;
    --foreground: #0F0F0F;
    --muted: #F5F5F5;
    --muted-foreground: #6B7280;
    --border: #E5E5E5;
    --radius: 0.5rem;
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.15), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.2), 0 8px 10px -6px rgb(0 0 0 / 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--foreground);
    line-height: 1.6;
    background: var(--background);
}

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

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #DC0000 0%, #B80000 100%);
    color: white;
    padding: 0.5rem 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: opacity 0.2s;
}

.phone-link:hover {
    opacity: 0.9;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.lang-switcher:hover {
    background: rgba(255,255,255,0.3);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--dark);
    z-index: 100;
}

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

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

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #DC0000 0%, #B80000 100%);
    border: 2px solid var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    letter-spacing: 0.05em;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s;
    position: relative;
}

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

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: var(--radius);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.btn-primary {
    background: linear-gradient(135deg, #DC0000 0%, #B80000 100%);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(220, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(220, 0, 0, 0.4);
    background: linear-gradient(135deg, #E80000 0%, #C80000 100%);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: white;
    border-color: var(--dark);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.btn-full {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--dark);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 1rem;
    z-index: 99;
}

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

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background 0.2s;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.mobile-menu a:hover {
    background: var(--primary);
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 50%, #2A2A2A 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(220, 0, 0, 0.1) 0%, transparent 50%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 0, 0, 0.2);
    color: #FF6B6B;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(220, 0, 0, 0.3);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(220, 0, 0, 0.7); }
    50% { opacity: 0.5; box-shadow: 0 0 0 10px rgba(220, 0, 0, 0); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.gradient-text {
    background: linear-gradient(135deg, #DC0000 0%, #FF3333 50%, #FF6666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--silver);
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-icon {
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--silver);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    min-height: 400px;
}

.card-float {
    position: absolute;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    border: 1px solid rgba(220, 0, 0, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
}

.card-1 {
    top: 0;
    right: 2rem;
    width: 280px;
    transform: rotate(2deg);
}

.card-2 {
    bottom: 3rem;
    left: 2rem;
    width: 260px;
    transform: rotate(-1deg);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon.quality {
    background: linear-gradient(135deg, #DC0000 0%, #B80000 100%);
    color: white;
}

.card-icon.warranty {
    background: linear-gradient(135deg, #4A4A4A 0%, #2A2A2A 100%);
    color: white;
    border: 1px solid var(--silver);
}

.card-label {
    font-size: 0.875rem;
    color: var(--silver);
}

.card-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
}

.card-progress {
    margin-top: 1rem;
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, #DC0000 0%, #FF3333 100%);
    border-radius: 9999px;
}

.card-note {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--silver);
}

.badge-float {
    position: absolute;
    top: -0.5rem;
    right: 0;
    background: linear-gradient(135deg, #DC0000 0%, #B80000 100%);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    text-align: center;
    animation: bounce 2s infinite;
    border: 2px solid rgba(255,255,255,0.2);
}

.badge-float span {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
}

.badge-float small {
    font-size: 0.625rem;
    opacity: 0.9;
}

/* Hero Logo Showcase */
.logo-showcase {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
}

.hero-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(220, 0, 0, 0.4));
}

.logo-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(220, 0, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: glow-pulse 3s infinite;
}

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

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

/* Trust Badges Section */
.trust-badges {
    padding: 2.5rem 0;
    background: var(--dark);
    border-bottom: 3px solid var(--primary);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(220, 0, 0, 0.2);
    transition: all 0.3s;
}

.trust-item:hover {
    background: rgba(220, 0, 0, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

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

.trust-content {
    display: flex;
    flex-direction: column;
}

.trust-title {
    font-weight: 700;
    color: white;
    font-size: 0.9375rem;
}

.trust-desc {
    font-size: 0.8125rem;
    color: var(--silver);
}

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

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

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #DC0000 0%, #B80000 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

/* Services */
.services {
    background: white;
}

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

.service-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

/* Service Badges */
.service-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-end;
}

.badge {
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-fire {
    background: var(--dark);
    color: white;
    border: 1px solid var(--primary);
}

.badge-discount {
    background: var(--primary);
    color: white;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

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

.service-icon.pink {
    background: linear-gradient(135deg, #DC0000 0%, #B80000 100%);
    color: white;
}

.service-icon.purple {
    background: linear-gradient(135deg, #4A4A4A 0%, #2A2A2A 100%);
    color: white;
    border: 1px solid var(--silver);
}

.service-icon.blue {
    background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
    color: white;
    border: 1px solid var(--primary);
}

.service-icon.orange {
    background: linear-gradient(135deg, #DC0000 0%, #8B0000 100%);
    color: white;
}

.service-icon.green {
    background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
    color: white;
    border: 1px solid var(--silver);
}

.service-icon.gray {
    background: linear-gradient(135deg, #666 0%, #444 100%);
    color: white;
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.service-card p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Service Meta */
.service-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

.meta-item svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

/* Service Clients */
.service-clients {
    font-size: 0.8125rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Service Footer */
.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 2px solid var(--border);
}

.service-price {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.service-price strong {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 800;
}

/* How It Works */
.how-it-works {
    background: var(--dark);
    color: white;
}

.how-it-works .section-title {
    color: white;
}

.how-it-works .section-subtitle {
    color: var(--silver);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.step-card {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    border: 1px solid rgba(220, 0, 0, 0.2);
}

.step-card:hover {
    transform: translateY(-6px);
    background: rgba(220, 0, 0, 0.1);
    border-color: var(--primary);
    box-shadow: 0 10px 30px -10px rgba(220, 0, 0, 0.3);
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #DC0000 0%, #B80000 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    border: 2px solid var(--dark);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.step-card p {
    font-size: 0.875rem;
    color: var(--silver);
}

/* Why Choose Us */
.why-us {
    background: linear-gradient(135deg, #F5F5F5 0%, #EBEBEB 100%);
    border-top: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.why-us-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid var(--border);
    position: relative;
    overflow: hidden;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #DC0000 0%, #B80000 100%);
}

.why-us-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.why-us-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #DC0000 0%, #B80000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.why-us-label {
    font-size: 0.9375rem;
    color: var(--secondary);
    font-weight: 600;
}

/* Before/After Slider */
.before-after {
    background: var(--dark);
    color: white;
}

.before-after .section-title {
    color: white;
}

.before-after .section-subtitle {
    color: var(--silver);
}

.slider-container {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    cursor: ew-resize;
    border: 2px solid rgba(220, 0, 0, 0.3);
}

.slider-before,
.slider-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-before img,
.slider-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-after {
    width: 50%;
    overflow: hidden;
}

.slider-label {
    position: absolute;
    bottom: 1rem;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 700;
    border: 1px solid var(--primary);
}

.slider-before .slider-label {
    left: 1rem;
}

.slider-after .slider-label {
    right: 1rem;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--primary);
    transform: translateX(-50%);
    cursor: ew-resize;
}

.handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #DC0000 0%, #B80000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    color: white;
    border: 2px solid white;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ba-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 2px solid rgba(220, 0, 0, 0.2);
}

.ba-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.ba-card:hover img {
    transform: scale(1.05);
}

.ba-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.ba-overlay span {
    color: white;
    font-weight: 700;
}

/* YouTube Section */
.youtube-section {
    background: white;
}

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

.video-card {
    background: var(--dark);
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.video-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card h3 {
    padding: 1.25rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

/* Instagram Section */
.instagram-section {
    background: linear-gradient(135deg, #F5F5F5 0%, #EBEBEB 100%);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.instagram-item:hover {
    border-color: var(--primary);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(220, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay svg {
    color: white;
}

/* Reviews Section */
.reviews-section {
    background: white;
}

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

.review-card {
    background: var(--muted);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.review-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

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

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #DC0000 0%, #B80000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.review-meta {
    flex: 1;
}

.review-name {
    font-weight: 700;
    color: var(--dark);
}

.review-date {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    color: #DC0000;
    margin-bottom: 0.75rem;
}

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

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

/* Prices Section */
.prices {
    background: var(--dark);
    color: white;
}

.prices .section-title {
    color: white;
}

.prices .section-subtitle {
    color: var(--silver);
    background: rgba(220, 0, 0, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    display: inline-block;
    border: 1px solid rgba(220, 0, 0, 0.3);
}

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

.price-category {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid rgba(220, 0, 0, 0.2);
    transition: all 0.3s;
}

.price-category:hover {
    border-color: var(--primary);
    background: rgba(255,255,255,0.08);
}

.price-category h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
    color: white;
}

.price-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    border-radius: var(--radius);
    transition: background 0.2s;
    color: white;
}

.price-item:hover {
    background: rgba(220, 0, 0, 0.1);
}

.price-item span:first-child {
    color: var(--silver-light);
}

.price-item .price {
    font-weight: 700;
    color: white;
}

.price-item .price del {
    color: var(--silver);
    font-weight: 400;
    margin-right: 0.5rem;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper {
    background: var(--muted);
    border-radius: var(--radius);
    padding: 2rem;
    border: 2px solid var(--border);
}

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

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

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.2s;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(220, 0, 0, 0.1);
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

.form-success.active {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #DC0000 0%, #B80000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.form-success p {
    color: var(--muted-foreground);
}

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

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--muted);
    border-radius: var(--radius);
    border: 2px solid var(--border);
    transition: all 0.3s;
}

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

.info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #DC0000 0%, #B80000 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    font-weight: 600;
}

.info-value {
    font-weight: 700;
    color: var(--dark);
}

.messengers {
    padding: 1.25rem;
    background: var(--muted);
    border-radius: var(--radius);
    border: 2px solid var(--border);
}

.messengers-label {
    display: block;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

.messengers-list {
    display: flex;
    gap: 0.75rem;
}

.messenger {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.messenger:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.messenger.viber {
    background: linear-gradient(135deg, #8f5db7 0%, #6B3F99 100%);
}

.messenger.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
}

.messenger.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #1DA851 100%);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: var(--radius);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 3px solid var(--primary);
}

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

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

.modal-body {
    padding: 2rem;
}

.modal-service h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark);
    padding-right: 3rem;
}

.modal-section {
    margin-bottom: 1.5rem;
}

.modal-section h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
    text-transform: uppercase;
}

.modal-section p {
    color: var(--secondary);
    line-height: 1.6;
}

.modal-section ul {
    list-style: none;
    padding: 0;
}

.modal-section ul li {
    padding: 0.375rem 0;
    color: var(--secondary);
}

.modal-section ul li::before {
    content: '✓ ';
    color: var(--primary);
    font-weight: 700;
}

.modal-problem {
    background: rgba(220, 0, 0, 0.05);
    padding: 1rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.modal-solution {
    background: rgba(0, 0, 0, 0.03);
    padding: 1rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--dark);
}

.modal-result {
    background: rgba(220, 0, 0, 0.05);
    padding: 1rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.modal-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: var(--dark);
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.modal-info-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.modal-info-label {
    font-size: 0.75rem;
    color: var(--silver);
    margin-bottom: 0.25rem;
}

.modal-info-value {
    font-weight: 700;
    color: white;
}

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

.modal-price {
    font-size: 1rem;
    color: var(--muted-foreground);
}

.modal-price strong {
    font-size: 1.75rem;
    color: var(--primary);
    font-weight: 800;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--silver);
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-name {
    color: white;
}

.footer-brand .logo-subtitle {
    color: var(--primary);
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--silver);
}

.footer-links h4,
.footer-contacts h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

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

.footer-links a,
.footer-contacts a {
    color: var(--silver);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(220, 0, 0, 0.3);
    font-size: 0.875rem;
    color: var(--silver);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        display: none;
    }

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

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

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

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

@media (max-width: 768px) {
    .nav,
    .header .btn-primary {
        display: none;
    }

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

    .hero {
        padding: 3rem 0;
    }

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

    .stat-value {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

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

    .services-grid,
    .steps-grid,
    .why-us-grid,
    .before-after-grid,
    .video-grid,
    .prices-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .comparison-slider {
        height: 250px;
    }

    .modal-info {
        grid-template-columns: 1fr;
    }

    .modal-footer {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
