/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #121212;
    --fg-light: #f5f5f5;
    --card-bg: #1a1a1a;
    --primary: #e63946;
    --secondary: #00bfa5;
    --border: #333;
    --muted: #999;
    --light-bg: #f5f5f5;
    --light-fg: #1a1a1a;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--fg-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--fg-light);
}

.logo-accent {
    color: var(--primary);
}

.logo-sub {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted);
}

.header-phone {
    display: none;
    flex-direction: column;
    align-items: center;
}

.phone-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.phone-number {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--fg-light);
    text-decoration: none;
    transition: color 0.3s;
}

.phone-number:hover {
    color: var(--primary);
}

/* Phone blur effect for desktop */
@media (min-width: 768px) {
    .phone-blur-light {
        filter: blur(0.5px);
        transition: filter 0.3s ease;
    }
    
    .phone-blur-medium {
        filter: blur(2px);
        transition: filter 0.5s ease;
    }
    
    .phone-blur-strong {
        filter: blur(5px);
        transition: filter 0.7s ease;
    }
    
    .phone-number:hover .phone-blur-light,
    .phone-number:hover .phone-blur-medium,
    .phone-number:hover .phone-blur-strong,
    .contact-value:hover .phone-blur-light,
    .contact-value:hover .phone-blur-medium,
    .contact-value:hover .phone-blur-strong {
        filter: blur(0px);
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-outline {
    display: none;
    padding: 0.625rem 1.5rem;
    border: 1px solid var(--fg-light);
    color: var(--fg-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--fg-light);
    color: var(--bg-dark);
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-light);
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--fg-light);
    left: 0;
}

.menu-icon::before { top: -8px; }
.menu-icon::after { top: 8px; }

.mobile-menu {
    display: none;
    border-top: 1px solid var(--border);
    background: var(--bg-dark);
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--fg-light);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.mobile-phone:hover .phone-blur-light,
.mobile-phone:hover .phone-blur-medium,
.mobile-phone:hover .phone-blur-strong {
    filter: blur(0px) !important;
    transition: filter 0.3s ease;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-nav a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: var(--fg-light);
}

/* Desktop Navigation Menu */
@media (min-width: 769px) {
    .mobile-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        min-width: 250px;
        background: #0a0a0a;
        border: 1px solid var(--border);
        border-radius: 8px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
        z-index: 999;
        margin-top: 0.5rem;
    }
    
    .mobile-menu.active {
        display: block;
        animation: fadeIn 0.2s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .mobile-menu-content {
        padding: 1rem;
    }
    
    .mobile-phone {
        padding: 0.75rem;
        background: #1a1a1a;
        border-radius: 6px;
        margin-bottom: 1rem;
    }
    
    .mobile-nav a {
        padding: 0.75rem;
        border-radius: 6px;
    }
    
    .mobile-nav a:hover {
        background: rgba(230, 57, 70, 0.1);
    }
}

/* Mobile Menu */
@media (max-width: 768px) {
    .mobile-menu {
        border-top: 1px solid var(--border);
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(230, 57, 70, 0.08), transparent 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

@media (max-width: 1023px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
}

.section-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.label-line {
    width: 4px;
    height: 24px;
    background: var(--primary);
}

.section-label span {
    color: var(--primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.text-accent {
    color: var(--primary);
}

.hero-description {
    color: var(--muted);
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #d62839;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.875rem;
    font-weight: 600;
}

.icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.hero-form-wrapper {
    position: relative;
}

.discount-badge {
    position: absolute;
    top: -1rem;
    right: -0.5rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 20;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

.discount-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    font-weight: 700;
}

.discount-value {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

.form-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
}

.form-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-description {
    color: var(--muted);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.form-group input {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    color: var(--fg-light);
    padding: 0.75rem 0;
    font-size: 0.875rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group input::placeholder {
    color: var(--muted);
}

.btn-submit {
    width: 100%;
    background: var(--fg-light);
    color: var(--bg-dark);
    border: none;
    padding: 1rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #e0e0e0;
}

.form-privacy {
    font-size: 0.625rem;
    color: var(--muted);
    text-align: center;
}

/* Symptoms Section */
.symptoms {
    background: var(--light-bg);
    padding: 4rem 0;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 0.95;
    color: var(--light-fg);
}

.section-description {
    color: rgba(26, 26, 26, 0.6);
    max-width: 500px;
}

.symptoms-grid {
    display: grid;
    gap: 1rem;
}

.symptom-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: box-shadow 0.3s;
}

.symptom-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.symptom-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.symptom-card:hover .symptom-icon {
    background: rgba(230, 57, 70, 0.1);
}

.symptom-icon .icon {
    width: 20px;
    height: 20px;
    color: var(--light-fg);
}

.symptom-card:hover .symptom-icon .icon {
    color: var(--primary);
}

.symptom-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--light-fg);
}

.symptom-description {
    color: rgba(26, 26, 26, 0.6);
    font-size: 0.875rem;
}

.symptom-price {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.symptom-price span {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--light-fg);
}

/* Process Section */
.process {
    background: var(--light-bg);
    padding: 4rem 0;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label-text {
    color: var(--primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
}

.process-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.step-connector {
    display: none;
}

.step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--light-fg);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 900;
}

.step-check {
    background: #22c55e;
}

.step-text {
    text-align: center;
}

.step-title {
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--light-fg);
}

.step-subtitle {
    color: rgba(26, 26, 26, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

/* Pricing Section */
.pricing {
    background: var(--bg-dark);
    padding: 4rem 0;
}

.pricing-grid {
    display: grid;
    gap: 3rem;
}

.pricing-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.included-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.included-title {
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.included-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.included-list p {
    color: var(--muted);
    font-size: 0.875rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--fg-light);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--fg-light);
    padding-bottom: 0.25rem;
    align-self: flex-start;
    margin-top: 1rem;
    transition: all 0.3s;
}

.link-arrow:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.price-table {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.price-table-header {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.price-table-header span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--muted);
}

.price-table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}

.price-table-row:last-child {
    border-bottom: none;
}

.price-table-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.price-table-row span:first-child {
    font-size: 0.875rem;
    color: var(--fg-light);
}

.price-table-row span:last-child {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--fg-light);
    white-space: nowrap;
    margin-left: 1rem;
}

.price-highlight {
    color: var(--primary) !important;
}

/* Reviews Section */
.reviews {
    background: var(--bg-dark);
    padding: 4rem 0;
}

.reviews-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    align-self: flex-start;
}

.rating-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.125rem;
}

.rating-score {
    display: flex;
    flex-direction: column;
}

.rating-number {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.rating-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--fg-light);
}

.rating-max {
    color: var(--muted);
    font-size: 0.875rem;
}

.rating-stars {
    display: flex;
    gap: 0.125rem;
}

.star {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.rating-count {
    border-left: 1px solid var(--border);
    padding-left: 1rem;
    margin-left: 0.5rem;
    display: flex;
    flex-direction: column;
}

.rating-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}

.rating-total {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--fg-light);
}

.reviews-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.review-info {
    flex: 1;
}

.review-name {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--fg-light);
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-stars {
    display: flex;
    gap: 0.125rem;
}

.review-stars .star {
    width: 14px;
    height: 14px;
    color: #444;
}

.review-stars .star-filled {
    color: var(--primary);
}

.review-date {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}

.review-text {
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: var(--bg-dark);
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-phone {
    background: rgba(230, 57, 70, 0.15);
}

.contact-icon-messenger {
    background: rgba(34, 197, 94, 0.15);
}

.contact-icon .icon {
    width: 20px;
    height: 20px;
}

.contact-icon-phone .icon {
    color: var(--primary);
}

.contact-icon-messenger .icon {
    color: #22c55e;
}

.contact-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    font-weight: 600;
    display: block;
}

.contact-value {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--fg-light);
    text-decoration: none;
    transition: color 0.3s;
}

a.contact-value:hover {
    color: var(--primary);
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}

.contact-card-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-card-header .icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--fg-light);
    line-height: 1.2;
}

.contact-card p {
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding: 3rem 0;
}

/* Floating Call Button (Mobile Only) */
.floating-call-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-btn 2s infinite;
}

.floating-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(230, 57, 70, 0.6);
}

.floating-call-btn .icon {
    width: 28px;
    height: 28px;
    color: white;
}

@keyframes pulse-btn {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(230, 57, 70, 0.7), 0 0 0 10px rgba(230, 57, 70, 0.1);
    }
}

/* Show floating button only on mobile */
@media (max-width: 768px) {
    .floating-call-btn {
        display: flex;
    }
}

/* Top Notification Banner */
.top-notification {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
    z-index: 9999;
    transition: top 0.5s ease;
    min-width: 300px;
    max-width: 90vw;
}

.top-notification.show {
    top: 0;
}

.top-notification-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.top-notification-content .icon {
    width: 24px;
    height: 24px;
    color: white;
    flex-shrink: 0;
}

.top-notification-content span {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .top-notification {
        min-width: auto;
        padding: 0.875rem 1.5rem;
    }
    
    .top-notification-content span {
        font-size: 0.875rem;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-company {
    grid-column: span 2;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--fg-light);
    margin-bottom: 1rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: var(--muted);
    font-size: 0.75rem;
}

.footer-column h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--fg-light);
    margin-bottom: 1rem;
}

.footer-column nav {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-column a {
    color: var(--muted);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--fg-light);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
}

.footer-bottom p {
    color: var(--muted);
    font-size: 0.75rem;
    text-align: center;
}

/* Responsive Design */
@media (min-width: 640px) {
    .btn-outline {
        display: inline-flex;
    }
}

@media (min-width: 768px) {
    .header-phone {
        display: flex;
    }
    
    .symptoms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-direction: row;
        justify-content: center;
    }
    
    .step-connector {
        display: block;
        position: absolute;
        top: 32px;
        left: calc(50% + 2rem);
        width: calc(100%);
        height: 1px;
        background: rgba(26, 26, 26, 0.15);
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-company {
        grid-column: span 1;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .symptoms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
    
    .reviews-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}


/* Reviews Page */
.reviews-page {
    background: var(--bg-dark);
    padding: 4rem 0;
    min-height: 100vh;
}

.reviews-page-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.reviews-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 150px;
}

.stat-card-highlight {
    border-color: var(--primary);
    background: rgba(230, 57, 70, 0.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--fg-light);
    line-height: 1;
}

.stat-card-highlight .stat-number {
    color: var(--primary);
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    font-weight: 600;
}

.reviews-page-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.review-card-full {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s;
}

.review-card-full:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.1);
}

.review-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.review-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.review-tag-location {
    background: rgba(0, 191, 165, 0.1);
    border-color: var(--secondary);
    color: var(--secondary);
}

.reviews-page-footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
}

.reviews-page-footer p {
    color: var(--muted);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .reviews-page-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
    
    .reviews-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reviews-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Policy Page */
.policy-page {
    background: var(--bg-dark);
    padding: 4rem 0;
    min-height: 100vh;
}

.policy-content {
    max-width: 900px;
    margin: 2rem auto 0;
}

.policy-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-left: 4px solid var(--primary);
    border-radius: 4px;
}

.policy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.policy-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fg-light);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
}

.policy-section p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-section p strong {
    color: var(--fg-light);
    font-weight: 600;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.policy-section ul li {
    color: var(--muted);
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.policy-section ul li:before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.policy-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(230, 57, 70, 0.05);
    border: 1px solid var(--primary);
    border-radius: 8px;
    text-align: center;
}

.policy-footer p {
    color: var(--fg-light);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.policy-footer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .policy-section {
        padding: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.25rem;
    }
}


/* Corporate Page */
.corporate-page {
    background: var(--bg-dark);
    padding: 4rem 0;
}

.corporate-header {
    text-align: center;
    margin-bottom: 4rem;
}

.corporate-subtitle {
    color: var(--muted);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 2rem auto 0;
    line-height: 1.8;
}

.corporate-section-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--fg-light);
    text-align: center;
    margin-bottom: 3rem;
}

.corporate-benefits {
    margin-bottom: 5rem;
}

.benefits-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon .icon {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fg-light);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--muted);
    line-height: 1.6;
}

.corporate-services {
    margin-bottom: 5rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    display: flex;
    gap: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.service-item:hover {
    border-color: var(--primary);
}

.service-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fg-light);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-content ul {
    list-style: none;
    padding: 0;
}

.service-content ul li {
    color: var(--muted);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.service-content ul li:before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.corporate-pricing {
    margin-bottom: 5rem;
}

.pricing-cards {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.2);
}

.pricing-card-featured {
    border-color: var(--primary);
    border-width: 2px;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fg-light);
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
}

.price-period {
    font-size: 1rem;
    color: var(--muted);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    color: var(--muted);
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li:before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pricing-btn {
    display: block;
    text-align: center;
    background: var(--primary);
    color: white;
    padding: 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background 0.3s;
}

.pricing-btn:hover {
    background: #d62839;
}

.corporate-clients {
    margin-bottom: 5rem;
}

.clients-description {
    text-align: center;
    color: var(--muted);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.clients-types {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.client-type {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.client-type:hover {
    border-color: var(--primary);
}

.client-type h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--fg-light);
    margin-bottom: 0.5rem;
}

.client-type p {
    color: var(--muted);
    font-size: 0.875rem;
}

.corporate-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #d62839 100%);
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-light {
    display: inline-flex;
    padding: 1rem 2rem;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
}

@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-number {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
}


/* Zones Page */
.zones-page {
    background: var(--bg-dark);
    padding: 4rem 0;
    min-height: 100vh;
}

.zones-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 2rem auto 4rem;
    line-height: 1.8;
}

.zones-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.zone-category {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}

.zone-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fg-light);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
}

.zone-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.zone-link {
    display: block;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--fg-light);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.875rem;
}

.zone-link:hover {
    background: rgba(230, 57, 70, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .zone-links {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}


/* City Confirmation Modal */
.city-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
    overflow: hidden;
}

.city-modal {
    background: rgba(18, 18, 18, 0.95);
    border: 1px solid rgba(230, 57, 70, 0.3);
    border-radius: 12px;
    max-width: 380px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.05);
    max-height: auto;
    overflow: visible;
    transition: all 0.3s ease;
}

/* Полноэкранный режим для поиска */
.city-modal.search-mode {
    max-width: 800px;
    max-height: 85vh;
    overflow: visible;
    background: rgba(18, 18, 18, 0.98);
}

.city-modal.search-mode .city-modal-body {
    padding: 2rem;
    min-height: 500px;
}

.city-modal-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.city-modal-header h3 {
    margin: 0;
    color: var(--fg-light);
    font-size: 1rem;
    flex: 1;
}

.city-modal-body {
    padding: 1.25rem;
}

.city-modal-question {
    color: var(--muted);
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
}

.city-modal-current {
    color: var(--fg-light);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.city-modal-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0;
}

.city-modal-actions .btn-primary {
    flex: 1;
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.city-modal-actions .btn-primary:hover {
    background: #d62839;
    border-color: #d62839;
}

.city-modal-actions .btn-outline {
    flex: 1;
    background: transparent;
    color: var(--fg-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.city-modal-actions .btn-outline:hover {
    background: rgba(230, 57, 70, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.city-modal-search {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.city-modal-back-btn {
    background: rgba(230, 57, 70, 0.1);
    border: 2px solid var(--primary);
    color: var(--primary);
    cursor: pointer;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 50px;
    font-weight: bold;
}

.city-modal-back-btn:hover {
    background: var(--primary);
    color: white;
}

.city-search-input-wrapper {
    position: relative;
    padding: 0;
}

.city-search-input {
    width: 100%;
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--fg-light);
    font-size: 1.125rem;
    transition: border-color 0.3s;
}

.city-search-input:focus {
    outline: none;
    border-color: var(--accent);
}

.city-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-top: 0.5rem;
    max-height: 450px;
    overflow-y: auto;
    z-index: 10;
    display: none;
}

.city-result-item {
    padding: 0.75rem;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid var(--border);
}

.city-result-item:last-child {
    border-bottom: none;
}

.city-result-item:hover {
    background: rgba(230, 57, 70, 0.1);
}

.city-result-item.no-results {
    cursor: default;
    color: var(--muted);
}

.city-result-item.no-results:hover {
    background: transparent;
}

.city-result-name {
    color: var(--fg-light);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.city-result-region {
    color: var(--muted);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .city-modal-overlay {
        padding: 0 0.5rem;
        align-items: center;
    }
    
    .city-modal {
        max-width: 100%;
        width: 100%;
        margin: 0;
        max-height: auto;
        height: auto;
        overflow: visible;
        border-radius: 12px;
        border: 1px solid rgba(230, 57, 70, 0.3);
    }
    
    /* Полноэкранный режим для поиска на мобилке */
    .city-modal.search-mode {
        max-width: 100vw;
        width: 100vw;
        max-height: 100vh;
        height: 100vh;
        overflow-y: auto;
        border-radius: 0;
        align-items: flex-start;
        position: fixed;
        top: 0;
        left: 0;
    }
    
    .city-modal-header {
        padding: 1rem;
    }
    
    .city-modal-back-btn {
        min-width: 45px;
        padding: 0.5rem 0.75rem;
        font-size: 1.5rem;
    }
    
    .city-modal-body {
        padding: 1rem;
    }
    
    .city-modal.search-mode .city-modal-body {
        min-height: calc(100vh - 80px);
    }
    
    .city-modal-actions {
        flex-direction: column !important;
        gap: 0.75rem !important;
        margin-bottom: 1rem !important;
    }
    
    .city-modal-actions .btn-primary,
    .city-modal-actions .btn-outline {
        width: 100% !important;
        flex: none !important;
        display: block !important;
        padding: 1rem !important;
    }
    
    .city-modal-actions .btn-outline {
        border: 2px solid rgba(255, 255, 255, 0.5) !important;
        background: rgba(255, 255, 255, 0.05) !important;
    }
    
    .city-search-input {
        font-size: 1.125rem !important;
        padding: 1rem !important;
    }
    
    .city-search-results {
        max-height: calc(100vh - 250px) !important;
        overflow-y: auto !important;
    }
    
    .city-result-item {
        padding: 1rem !important;
    }
}
