/* ============================================================
   WHIEDA — полный style.css
   Палитра из easyspot.ru/products/akt-far.php
   ============================================================ */

:root {
    --primary: #0d6b5c;
    --primary-dark: #094f44;
    --primary-light: #14b8a6;
    --accent: #b8924a;
    --accent-light: #d4a85f;
    --text: #1a1a1a;
    --text-light: #555;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --border: #e0e0e0;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 12px 35px rgba(0,0,0,0.12);
    --radius: 12px;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-gold: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ========== HEADER ========== */
header {
    background: var(--bg);
    box-shadow: var(--shadow);
    position: sticky; top: 0; z-index: 100;
}
.nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 0;
}
.logo {
    font-size: 28px; font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}
.menu {
    display: flex; gap: 28px; list-style: none; align-items: center;
}
.menu > li { position: relative; }
.menu > li > a {
    text-decoration: none; color: var(--text);
    font-weight: 600; font-size: 15px;
    transition: color 0.3s;
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 0;
}
.menu > li > a:hover,
.menu > li > a.active,
.menu > li.active > a { color: var(--primary); }

.menu > li > a i { font-size: 10px; opacity: 0.6; transition: transform 0.3s; }
.menu > li:hover > a i { transform: rotate(180deg); }

/* Выпадающее меню */
.dropdown {
    position: absolute; top: 100%; left: -16px;
    min-width: 300px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    padding: 12px;
    list-style: none;
    opacity: 0; visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 1000;
    border: 1px solid var(--border);
    max-height: 420px; overflow-y: auto;
}
.has-dropdown:hover .dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li { margin: 0; }
.dropdown a {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--text); text-decoration: none;
    font-size: 14px; font-weight: 500;
    transition: all 0.2s;
}
.dropdown a:hover { background: var(--bg-light); color: var(--primary); }
.dd-emoji { font-size: 18px; width: 24px; text-align: center; flex-shrink: 0; }

/* Кнопки */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: white; text-decoration: none;
    border-radius: var(--radius);
    font-weight: 700; transition: all 0.3s;
    border: none; cursor: pointer;
    box-shadow: 0 4px 15px rgba(13,107,92,0.3);
    font-size: 15px; font-family: inherit;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(13,107,92,0.4); }
.btn-gold { background: var(--gradient-gold); box-shadow: 0 4px 15px rgba(184,146,74,0.3); }
.btn-gold:hover { box-shadow: 0 8px 25px rgba(184,146,74,0.4); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); box-shadow: none; }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }

/* ========== HERO ========== */
.hero {
    background: linear-gradient(135deg, #f0fdfa 0%, #e8f3f0 50%, #ffffff 100%);
    padding: 100px 0;
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute;
    top: -30%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(13,107,92,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-grid {
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 60px; align-items: center;
    position: relative; z-index: 1;
}
.hero-badge {
    display: inline-block; padding: 8px 20px;
    background: var(--gradient-gold); color: white;
    border-radius: 100px; font-size: 14px; font-weight: 700;
    margin-bottom: 24px; box-shadow: 0 4px 15px rgba(184,146,74,0.3);
}
.hero h1 {
    font-size: 52px; line-height: 1.1; font-weight: 800;
    margin-bottom: 24px; letter-spacing: -0.5px;
}
.hero h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p { font-size: 19px; color: var(--text-light); margin-bottom: 32px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
    background: var(--gradient-primary);
    border-radius: 24px; min-height: 450px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    box-shadow: 0 20px 60px rgba(13,107,92,0.3);
}
.hero-visual::before {
    content: ''; position: absolute;
    top: -50%; right: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-icon {
    font-size: 180px; color: white;
    position: relative; z-index: 1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Hero: картинка прибора */
.hero-visual img.hero-image {
    width: 100%; height: 100%;
    min-height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    position: relative; z-index: 1;
}

/* ========== SECTIONS ========== */
section { padding: 90px 0; }
.section-tag {
    color: var(--accent); font-weight: 700; font-size: 14px;
    text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 16px; display: inline-block;
    padding: 6px 16px; background: rgba(184,146,74,0.1);
    border-radius: 100px;
}
.section-title {
    font-size: 42px; font-weight: 800;
    margin-bottom: 20px; line-height: 1.2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle {
    font-size: 18px; color: var(--text-light);
    line-height: 1.7; max-width: 700px;
}
.section-header {
    text-align: center; max-width: 800px;
    margin: 0 auto 60px;
}
.section-header .section-subtitle { margin: 0 auto; }

/* ========== WHAT IS ========== */
.what-is { background: var(--bg); }
.what-is-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.what-is-content h3 { font-size: 28px; margin-bottom: 20px; color: var(--primary); }
.what-is-content p {
    color: var(--text-light); font-size: 17px;
    line-height: 1.8; margin-bottom: 16px;
}
.what-is-quote {
    background: var(--bg-light); padding: 28px;
    border-left: 4px solid var(--accent);
    border-radius: var(--radius); margin-top: 24px;
    font-style: italic; color: var(--text);
}
.what-is-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.level-card {
    background: white; padding: 28px;
    border-radius: var(--radius); box-shadow: var(--shadow);
    transition: all 0.3s; border: 2px solid transparent;
}
.level-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}
.level-card .icon { font-size: 42px; margin-bottom: 12px; }
.level-card h4 { font-size: 18px; margin-bottom: 8px; color: var(--primary); }
.level-card p { font-size: 14px; color: var(--text-light); }

/* ========== HOW IT WORKS ========== */
.how-works { background: var(--bg-light); }
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.work-card {
    background: white; padding: 32px;
    border-radius: var(--radius); box-shadow: var(--shadow);
    transition: all 0.3s;
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.work-card .number {
    width: 60px; height: 60px;
    background: var(--gradient-primary); color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(13,107,92,0.3);
}
.work-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--text); }
.work-card p { color: var(--text-light); line-height: 1.7; font-size: 15px; }

/* ========== INDICATIONS ========== */
.indications { background: var(--bg); }
.indications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.indication-card {
    background: linear-gradient(135deg, #f7fbfa 0%, #ffffff 100%);
    padding: 28px; border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    transition: all 0.3s;
}
.indication-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--accent);
}
.indication-card .icon { font-size: 36px; margin-bottom: 12px; }
.indication-card h4 { font-size: 18px; margin-bottom: 8px; color: var(--primary); }
.indication-card p { color: var(--text-light); font-size: 14px; line-height: 1.6; }

/* ========== RESULTS ========== */
.results {
    background: linear-gradient(135deg, #0a2540 0%, #1e3a5f 100%);
    color: white; position: relative; overflow: hidden;
}
.results::before {
    content: ''; position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(184,146,74,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.results .section-title {
    -webkit-text-fill-color: white;
    background: none; color: white;
}
.results .section-subtitle { color: rgba(255,255,255,0.85); }
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px; position: relative; z-index: 1;
}
.result-card {
    background: rgba(255,255,255,0.05);
    padding: 32px; border-radius: var(--radius);
    border: 2px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}
.result-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent);
    transform: translateY(-5px);
}
.result-tag {
    display: inline-block; padding: 6px 14px;
    background: var(--gradient-gold); color: white;
    border-radius: 100px; font-size: 12px; font-weight: 700;
    margin-bottom: 16px; letter-spacing: 0.5px;
}
.result-card h4 { font-size: 20px; margin-bottom: 14px; color: white; line-height: 1.3; }
.result-card p { color: rgba(255,255,255,0.85); line-height: 1.7; font-size: 15px; }
.result-author {
    margin-top: 20px; padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px; color: var(--accent-light); font-weight: 600;
}

/* ========== COMBINATION ========== */
.combination { background: var(--bg-light); }
.combo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.combo-card {
    background: white; padding: 32px;
    border-radius: var(--radius); text-align: center;
    box-shadow: var(--shadow); transition: all 0.3s;
}
.combo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.combo-card .icon { font-size: 48px; margin-bottom: 16px; }
.combo-card h4 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
.combo-card p { color: var(--text-light); font-size: 14px; line-height: 1.6; }

/* ========== PROTOCOL ========== */
.protocol { background: var(--bg); }
.protocol-wrap {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 50px; align-items: start;
}
.protocol-box {
    background: var(--bg-light); padding: 36px;
    border-radius: var(--radius);
    border-top: 4px solid var(--primary);
}
.protocol-box h3 { font-size: 24px; margin-bottom: 20px; color: var(--primary); }
.protocol-box ul { list-style: none; }
.protocol-box li {
    padding: 12px 0 12px 32px; position: relative;
    font-size: 15px; color: var(--text); line-height: 1.6;
    border-bottom: 1px solid var(--border);
}
.protocol-box li:last-child { border-bottom: none; }
.protocol-box li::before {
    content: '✓'; position: absolute; left: 0; top: 12px;
    width: 22px; height: 22px;
    background: var(--gradient-primary); color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 12px;
}

/* ========== CONTRAINDICATIONS ========== */
.contra { background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%); }
.contra-wrap {
    background: white; padding: 40px;
    border-radius: var(--radius);
    border-left: 5px solid #e53e3e;
    box-shadow: var(--shadow);
    max-width: 800px; margin: 0 auto;
}
.contra-wrap h3 { font-size: 24px; color: #e53e3e; margin-bottom: 20px; }
.contra-wrap ul { list-style: none; }
.contra-wrap li {
    padding: 12px 0 12px 32px; position: relative;
    font-size: 16px; color: var(--text);
}
.contra-wrap li::before {
    content: '⚠'; position: absolute; left: 0;
    color: #e53e3e; font-weight: 700; font-size: 18px;
}

/* ========== SPECIAL OFFER ========== */
.special {
    background: var(--gradient-gold);
    padding: 80px 0; color: white; text-align: center;
}
.special h2 { font-size: 40px; font-weight: 800; margin-bottom: 20px; color: white; }
.special p {
    font-size: 18px; margin-bottom: 32px; opacity: 0.95;
    max-width: 700px; margin-left: auto; margin-right: auto;
}
.special-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; max-width: 900px; margin: 40px auto;
}
.special-item {
    background: rgba(255,255,255,0.15);
    padding: 28px; border-radius: var(--radius);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}
.special-item .num { font-size: 36px; font-weight: 800; color: white; margin-bottom: 8px; }
.special-item .label { font-size: 15px; color: rgba(255,255,255,0.95); }

/* ========== CTA FORM ========== */
.cta { background: var(--bg-light); }
.form-wrapper {
    max-width: 600px; margin: 0 auto;
    background: white; padding: 48px;
    border-radius: 20px; box-shadow: var(--shadow-hover);
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-weight: 600;
    margin-bottom: 8px; font-size: 14px; color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 16px; font-family: inherit;
    transition: all 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13,107,92,0.1);
}
.form-wrapper .btn { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }
.form-note {
    font-size: 13px; color: var(--text-light);
    text-align: center; margin-top: 16px;
}
.form-disclaimer-box {
    text-align: center; margin-top: 30px;
    padding: 24px; background: white;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    max-width: 600px; margin-left: auto; margin-right: auto;
}
.form-disclaimer-box p { font-size: 14px; color: var(--text-light); margin: 0; }

/* ========== FOOTER ========== */
footer {
    background: #0f172a; color: #94a3b8;
    padding: 40px 0; text-align: center; font-size: 14px;
}
footer p { margin-bottom: 8px; }
.footer-disclaimer {
    font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 10px;
}

/* ========== HERO STATS (главная) ========== */
.hero-stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; margin-top: 40px; padding-top: 32px;
    border-top: 1px solid var(--border);
}
.stat strong {
    display: block; font-size: 32px; font-weight: 800;
    color: var(--primary); line-height: 1; margin-bottom: 6px;
}
.stat span {
    font-size: 12px; color: var(--text-light);
    text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600;
}

/* ========== ABOUT GRID (главная) ========== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

/* ========== PRODUCTS GRID (главная) ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}
.product-card {
    position: relative;
    background: white; padding: 36px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s;
    display: flex; flex-direction: column;
    border: 2px solid transparent;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}
.product-badge {
    position: absolute; top: 20px; right: 20px;
    background: var(--gradient-gold); color: white;
    font-size: 12px; font-weight: 700;
    padding: 5px 14px; border-radius: 100px;
    text-transform: uppercase; letter-spacing: 0.06em;
}
.product-emoji { font-size: 48px; margin-bottom: 20px; }
.product-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--text); }
.product-card p {
    font-size: 15px; color: var(--text-light);
    margin-bottom: 20px; flex: 1; line-height: 1.7;
}
.product-price {
    font-size: 18px; font-weight: 700;
    color: var(--primary); margin-bottom: 20px;
}
.product-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ========== CAREER LADDER ========== */
.career-ladder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.career-step {
    text-align: center; padding: 32px 24px;
    background: white; border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
}
.career-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}
.career-level {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--gradient-primary); color: white;
    font-weight: 800; font-size: 20px;
    margin-bottom: 16px;
    box-shadow: 0 8px 20px rgba(13,107,92,0.3);
}
.career-step h4 { font-size: 16px; margin-bottom: 8px; color: var(--text); }
.career-income {
    display: block; font-size: 16px; font-weight: 700;
    color: var(--primary); margin-bottom: 6px;
}
.career-req { font-size: 13px; color: var(--text-light); }

/* ========== PAGE HEADER (внутренние страницы) ========== */
.page-header {
    background: linear-gradient(135deg, #f0fdfa 0%, #e8f3f0 50%, #ffffff 100%);
    padding: 80px 0 60px; position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute;
    top: -30%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(13,107,92,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 {
    font-size: 46px; font-weight: 800;
    line-height: 1.15; margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.page-header h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-header p {
    font-size: 18px; color: var(--text-light);
    max-width: 700px; line-height: 1.7;
}
.back-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--primary); text-decoration: none;
    font-size: 14px; font-weight: 600;
    margin-bottom: 24px;
    padding: 8px 16px; background: white;
    border-radius: 100px; box-shadow: var(--shadow);
    transition: all 0.3s;
}
.back-link:hover { transform: translateX(-4px); box-shadow: var(--shadow-hover); }

/* ========== REVIEWS ========== */
.review-card {
    background: white; padding: 32px;
    border-radius: var(--radius); box-shadow: var(--shadow);
    margin-bottom: 24px;
    border: 2px solid transparent;
    transition: all 0.3s;
}
.review-card:hover { border-color: var(--primary); box-shadow: var(--shadow-hover); }
.review-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.review-avatar {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--gradient-primary); color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 20px; flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(13,107,92,0.3);
}
.review-header strong { display: block; font-size: 16px; color: var(--text); }
.review-header span { font-size: 14px; color: var(--text-light); }
.review-body p {
    font-size: 15px; color: var(--text-light);
    margin-bottom: 14px; line-height: 1.75;
}
.review-link {
    color: var(--primary); font-weight: 600;
    font-size: 14px; text-decoration: none;
}
.review-link:hover { text-decoration: underline; }

/* ========== VIDEO EMBED ========== */
.video-section { background: var(--bg); }
.video-embed {
    position: relative;
    width: 100%; max-width: 960px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    background: #000;
}
.video-embed iframe {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; border: 0;
}

/* ========== DISCLAIMER ========== */
.disclaimer-section {
    padding: 40px 0; background: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.disclaimer-text {
    font-size: 14px; color: var(--text-light);
    text-align: center; max-width: 760px; margin: 0 auto;
    padding: 20px 24px; background: white;
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
    line-height: 1.7;
}

/* ========== NAV TOGGLE (mobile) ========== */
.nav-toggle {
    display: none; background: none; border: none;
    flex-direction: column; gap: 5px; cursor: pointer; padding: 8px;
}
.nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--primary); border-radius: 2px; transition: 0.3s;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .nav-toggle { display: flex; }
    .menu {
        display: none;
        flex-direction: column; gap: 4px;
        align-items: stretch;
        position: absolute; top: 100%; left: 0; right: 0;
        background: white; padding: 20px;
        box-shadow: var(--shadow-hover);
        z-index: 999;
    }
    .menu.open { display: flex; }
    .menu > li { width: 100%; }
    .menu > li > a {
        padding: 14px 12px;
        justify-content: space-between;
    }
    .dropdown {
        position: static;
        opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: none;
        padding: 0 0 0 16px;
        max-height: none; min-width: 0;
    }
    .dropdown a { padding: 10px 12px; font-size: 13px; }

    .hero-grid, .what-is-grid, .protocol-wrap {
        grid-template-columns: 1fr; gap: 40px;
    }
    .hero h1 { font-size: 38px; }
    .page-header h1 { font-size: 36px; }
    .section-title { font-size: 32px; }
    .special-grid { grid-template-columns: 1fr; }
    .form-wrapper { padding: 32px 24px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat strong { font-size: 26px; }
}

@media (max-width: 640px) {
    .hero h1 { font-size: 30px; }
    .hero-icon { font-size: 120px; }
    section { padding: 60px 0; }
    .what-is-visual { grid-template-columns: 1fr; }
    .page-header { padding: 60px 0 40px; }
    .page-header h1 { font-size: 28px; }
}
 /* ========== CONTACTS ========== */
.section { padding: 90px 0; background: var(--bg); }

.section-label {
    display: inline-block;
    color: var(--accent); font-weight: 700; font-size: 13px;
    text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 16px;
    padding: 6px 18px;
    background: var(--accent-soft);
    border: 1px solid rgba(184,146,74,0.25);
    border-radius: 100px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.contact-card {
    background: white;
    padding: 32px 28px;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(13,107,92,0.08);
    border: 1.5px solid var(--border);
    transition: all 0.3s;
    text-align: center;
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(13,107,92,0.15);
    border-color: var(--primary);
}
.contact-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}
.contact-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary);
}
.contact-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}
.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.contact-card a:hover {
    text-decoration: underline;
}
/* ========== FAQ ACCORDION ========== */
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }
.faq-item summary { position: relative; transition: color 0.2s; }
.faq-item summary:hover { color: var(--primary-dark); }
.faq-item[open] summary { color: var(--primary-dark); margin-bottom: 8px; }
.faq-item[open] summary span { transform: rotate(45deg); }
.faq-item summary span { transition: transform 0.3s; display: inline-block; }
.faq-item {
    border-left: 3px solid transparent;
    transition: all 0.3s;
}
.faq-item[open] {
    border-left-color: var(--accent);
}