/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #c0392b;
    --primary-dark: #a93226;
    --primary-light: #e74c3c;
    --accent: #e8a0a0;
    --accent-light: #fdf2f2;
    --warm: #f39c12;
    --warm-light: #fef9ec;
    --green: #27ae60;
    --green-light: #eafaf1;
    --blue: #2980b9;
    --blue-light: #eaf4fb;
    --purple: #8e44ad;
    --purple-light: #f5eef8;
    --text: #2c3e50;
    --text-muted: #7f8c8d;
    --text-light: #95a5a6;
    --border: #e8e8e8;
    --bg: #fafafa;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }

/* ===== TOPBAR ===== */
.topbar {
    background: var(--primary);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.topbar-contacts { display: flex; align-items: center; gap: 12px; }
.topbar-phone, .topbar-email {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    opacity: 0.95;
}
.topbar-phone:hover, .topbar-email:hover { opacity: 1; color: #fff; }
.topbar-sep { opacity: 0.5; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-hours { opacity: 0.85; }
.btn-top {
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.4);
    transition: var(--transition);
}
.btn-top:hover { background: rgba(255,255,255,0.35); color: #fff; }

/* ===== HEADER ===== */
.header {
    background: #fff;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 20px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--primary);
    line-height: 1;
}
.logo-desc {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Nav */
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-item { position: relative; }
.nav-item > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}
.nav-item > a:hover,
.nav-item.active > a {
    color: var(--primary);
    background: var(--accent-light);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 240px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: var(--transition);
    border: 1px solid var(--border);
    z-index: 100;
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text);
    transition: var(--transition);
}
.dropdown li a:hover { background: var(--accent-light); color: var(--primary); }

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(192,57,43,0.35); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-light { background: #fff; color: var(--primary); border-color: #fff; }
.btn-light:hover { background: var(--accent-light); border-color: var(--accent-light); color: var(--primary-dark); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-outline-light:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 8px 20px; font-size: 13px; }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #3d1f1f 50%, #c0392b 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    min-height: 520px;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
}
.hero h1 {
    font-size: clamp(28px, 4vw, 48px);
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero h1 span { color: var(--accent); }
.hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.hero-stat-item { }
.hero-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    display: block;
}
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.7); }

/* ===== SECTIONS ===== */
section { padding: 70px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(22px, 3vw, 34px);
    margin-bottom: 16px;
}
.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
}

/* ===== HELP DIRECTIONS ===== */
.help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.help-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.help-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.help-card-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    position: relative;
    overflow: hidden;
}
.help-card-img.red { background: linear-gradient(135deg, #fdf2f2, #fce4e4); }
.help-card-img.orange { background: linear-gradient(135deg, #fef9ec, #fde8c8); }
.help-card-img.blue { background: linear-gradient(135deg, #eaf4fb, #d4e9f7); }
.help-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.help-card-body h3 { font-size: 18px; margin-bottom: 12px; }
.help-card-body p { color: var(--text-muted); font-size: 14px; line-height: 1.7; flex: 1; margin-bottom: 20px; }
.help-card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.help-card-link:hover { gap: 10px; }

/* ===== HOW WE HELP ===== */
.howhelp { background: var(--accent-light); }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.step-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.step-num {
    width: 52px;
    height: 52px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.step-card h3 { font-size: 16px; margin-bottom: 10px; }
.step-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.service-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.service-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
}
.service-icon.red { background: var(--accent-light); }
.service-icon.green { background: var(--green-light); }
.service-icon.blue { background: var(--blue-light); }
.service-icon.warm { background: var(--warm-light); }
.service-icon.purple { background: var(--purple-light); }
.service-info h4 { font-size: 15px; margin-bottom: 5px; }
.service-info p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ===== ABOUT SECTION ===== */
.about-section { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text .section-label { text-align: left; display: block; }
.about-text h2 { text-align: left; margin-bottom: 20px; font-size: clamp(22px, 3vw, 32px); }
.about-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.about-values { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.about-value {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 15px;
}
.about-value-icon {
    width: 36px;
    height: 36px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.about-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.about-stat-card {
    background: var(--accent-light);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
}
.about-stat-card:nth-child(2) { background: var(--warm-light); }
.about-stat-card:nth-child(3) { background: var(--green-light); }
.about-stat-card:nth-child(4) { background: var(--blue-light); }
.about-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}
.about-stat-card:nth-child(2) .about-stat-num { color: var(--warm); }
.about-stat-card:nth-child(3) .about-stat-num { color: var(--green); }
.about-stat-card:nth-child(4) .about-stat-num { color: var(--blue); }
.about-stat-label { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

/* ===== SPECIALISTS ===== */
.specialists-section { background: var(--bg); }
.specialists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.specialist-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}
.specialist-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.specialist-avatar {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    background: linear-gradient(135deg, var(--accent-light), #fce4e4);
}
.specialist-info { padding: 20px; }
.specialist-name { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.specialist-role { font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.specialist-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ===== NEWS ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.news-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}
.news-img.c1 { background: linear-gradient(135deg, #fdf2f2, #fce4e4); }
.news-img.c2 { background: linear-gradient(135deg, #eaf4fb, #d4e9f7); }
.news-img.c3 { background: linear-gradient(135deg, #eafaf1, #d4f0e4); }
.news-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-date { font-size: 12px; color: var(--text-light); margin-bottom: 10px; display: flex; align-items: center; gap: 5px; }
.news-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
}
.news-tag.red { background: var(--accent-light); color: var(--primary); }
.news-tag.blue { background: var(--blue-light); color: var(--blue); }
.news-tag.green { background: var(--green-light); color: var(--green); }
.news-body h3 { font-size: 16px; margin-bottom: 10px; line-height: 1.4; }
.news-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.news-more { font-size: 13px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 5px; }
.news-more:hover { gap: 9px; }

/* ===== CTA BLOCK ===== */
.cta-block {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 60px 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-text h2 { color: #fff; font-size: clamp(20px, 3vw, 28px); margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,0.8); font-size: 16px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
    background: #1a1a2e;
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-logo { display: flex; flex-direction: column; margin-bottom: 16px; }
.footer-logo-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}
.footer-logo-desc { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; }
.footer-about p { font-size: 13px; line-height: 1.7; margin-bottom: 20px; color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: 10px; }
.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.social-link:hover { background: var(--primary); color: #fff; }
.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-contacts li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}
.footer-contacts svg { flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
.footer-contacts a { color: rgba(255,255,255,0.7); }
.footer-contacts a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #3d1f1f 100%);
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: #fff; font-size: clamp(24px, 3.5vw, 40px); margin-bottom: 12px; position: relative; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 16px; max-width: 600px; margin: 0 auto; position: relative; }
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    position: relative;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: 0.4; }

/* ===== CONTENT PAGE ===== */
.content-section { background: #fff; }
.content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 50px; align-items: start; }
.content-sidebar { position: sticky; top: 90px; }
.sidebar-box {
    background: var(--accent-light);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
}
.sidebar-box h3 { font-size: 16px; margin-bottom: 16px; }
.sidebar-nav li { margin-bottom: 6px; }
.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text);
    transition: var(--transition);
}
.sidebar-nav a:hover, .sidebar-nav a.active {
    background: var(--primary);
    color: #fff;
}
.sidebar-contact-box {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    color: #fff;
}
.sidebar-contact-box h3 { font-size: 16px; margin-bottom: 8px; color: #fff; }
.sidebar-contact-box p { font-size: 13px; opacity: 0.8; margin-bottom: 20px; }
.sidebar-phone {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 16px;
}

/* ===== CONTENT STYLES ===== */
.content-main h2 { font-size: 24px; margin: 32px 0 16px; color: var(--text); }
.content-main h2:first-child { margin-top: 0; }
.content-main p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.content-main ul { margin-bottom: 20px; }
.content-main ul li {
    display: flex;
    gap: 10px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 10px;
    font-size: 15px;
}
.content-main ul li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 9px;
}
.highlight-box {
    background: var(--accent-light);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 20px 24px;
    margin: 24px 0;
}
.highlight-box p { color: var(--text); font-weight: 500; margin: 0; }
.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}
.info-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--border);
}
.info-card-icon { font-size: 28px; margin-bottom: 10px; }
.info-card h4 { font-size: 15px; margin-bottom: 6px; }
.info-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* ===== FORM ===== */
.form-section { background: var(--bg); }
.form-wrap {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}
.form-label span { color: var(--primary); }
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    background: #fff;
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(192,57,43,0.1); }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}
.form-check input[type="checkbox"] { margin-top: 3px; width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--primary); }
.form-check-label { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.form-check-label a { color: var(--primary); }
.form-submit { margin-top: 10px; }
.form-note { font-size: 12px; color: var(--text-light); margin-top: 12px; }

/* ===== ALERTS ===== */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 14px;
}
.alert-success { background: var(--green-light); color: #1e8449; border: 1px solid #a9dfbf; }
.alert-error { background: var(--accent-light); color: var(--primary-dark); border: 1px solid var(--accent); }

/* ===== CONTACTS ===== */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-block { }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.contact-card-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}
.contact-card-info h4 { font-size: 15px; margin-bottom: 4px; }
.contact-card-info p { font-size: 14px; color: var(--text-muted); margin: 0; }
.contact-card-info a { color: var(--primary); font-weight: 600; }
.map-block {
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}
.map-placeholder {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}
.map-placeholder svg { opacity: 0.4; }

/* ===== ABOUT PAGE ===== */
.mission-section { background: #fff; }
.mission-text { max-width: 800px; margin: 0 auto; text-align: center; }
.mission-text p { font-size: 17px; color: var(--text-muted); line-height: 1.9; margin-bottom: 20px; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}
.value-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border-top: 4px solid var(--primary);
    transition: var(--transition);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value-icon { font-size: 40px; margin-bottom: 16px; }
.value-card h3 { font-size: 17px; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.bg-light { background: var(--bg); }
.bg-white { background: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .help-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .specialists-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    section { padding: 50px 0; }
    .topbar-right { display: none; }
    .burger { display: flex; }
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: var(--shadow-lg);
        padding: 16px 20px 24px;
        display: none;
        z-index: 999;
    }
    .nav.open { display: block; }
    .nav-list { flex-direction: column; gap: 4px; }
    .nav-item > a { padding: 12px 8px; }
    .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--bg); border-radius: var(--radius-sm); padding: 4px 0; }
    .has-dropdown:hover .dropdown { display: block; }
    .help-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-visual { display: none; }
    .specialists-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .content-grid { grid-template-columns: 1fr; }
    .content-sidebar { position: static; }
    .form-wrap { padding: 32px 20px; }
    .form-grid { grid-template-columns: 1fr; }
    .contacts-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .info-cards { grid-template-columns: 1fr; }
    .hero { padding: 50px 0; min-height: auto; }
    .hero-stats { gap: 20px; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .steps-grid { grid-template-columns: 1fr; }
    .specialists-grid { grid-template-columns: 1fr; }
    .topbar-contacts { flex-wrap: wrap; gap: 6px; }
    .topbar-sep { display: none; }
    .about-stat-card { padding: 20px 14px; }
    .about-stat-num { font-size: 28px; }
}
