/* ============================================
   RESET & BASE
   ============================================ */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Montserrat',sans-serif; background:#fff; color:#1a1a2e; line-height:1.6; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }
a { text-decoration:none; color:inherit; }
.container { max-width:1200px; margin:0 auto; padding:0 20px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 40px;
    font-weight:600;
    font-size:16px;
    border-radius:8px;
    border:none;
    cursor:pointer;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.3s ease, background 0.3s ease;
    text-align:center;
    font-family:'Montserrat',sans-serif;
    gap:10px;
}
.btn:hover { transform:scale(1.05) translateY(-2px); }

.btn-primary {
    background:linear-gradient(135deg,#ff5722,#ff8a3c);
    color:#fff !important;
    box-shadow:0 4px 20px rgba(255,87,34,0.35);
}
.btn-primary:hover { box-shadow:0 8px 35px rgba(255,87,34,0.5); }

.btn-outline {
    background:transparent;
    color:#1a1a2e;
    border:2px solid #e0e0e0;
}
.btn-outline:hover { border-color:#ff5722; background:rgba(255,87,34,0.06); color:#ff5722; }

.btn-telegram {
    background:linear-gradient(135deg,#0088cc,#2aabee);
    color:#fff !important;
    box-shadow:0 4px 20px rgba(0,136,204,0.35);
    padding:14px 28px;
    font-size:14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}
.btn-telegram:hover { box-shadow:0 8px 35px rgba(0,136,204,0.5); transform:scale(1.05) translateY(-2px); }
.btn-telegram .icon { display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }
.btn-telegram .icon svg { width:18px; height:18px; fill:#fff; display:block; }

/* ============================================
   HEADER
   ============================================ */
.header {
    padding:14px 0;
    border-bottom:1px solid #f0f0f0;
    position:sticky;
    top:0;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(10px);
    z-index:100;
}
.header .container { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; }
.logo { font-weight:800; font-size:20px; letter-spacing:-0.5px; color:#1a1a2e; }
.logo span { color:#ff5722; }
.nav { display:flex; gap:20px; align-items:center; flex-wrap:wrap; }
.nav a { font-weight:500; font-size:14px; color:rgba(26,26,46,0.6); transition:color 0.3s; }
.nav a:hover { color:#ff5722; }
.nav .btn { padding:8px 18px; font-size:12px; color:#fff !important; }

/* ============================================
   BURGER
   ============================================ */
.burger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:transparent; border:none; padding:5px; }
.burger span { display:block; width:26px; height:3px; background:#1a1a2e; border-radius:3px; transition:0.3s; }
.burger.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.burger.active span:nth-child(2) { opacity:0; }
.burger.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }
.nav-mobile { display:none; flex-direction:column; align-items:center; gap:12px; padding:15px 0; background:#fff; border-top:1px solid #f0f0f0; width:100%; }
.nav-mobile.open { display:flex; }
.nav-mobile .btn { color:#fff !important; }

/* ============================================
   HERO (премиум)
   ============================================ */
.hero {
    padding: 70px 0 90px;
    background: linear-gradient(165deg, #fafafa 0%, #f5f3f0 100%);
    position: relative;
    overflow: hidden;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-bg-circle {
    position: absolute;
    top: -15%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,87,34,0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-badge-wrapper { margin-bottom: 14px; }
.hero-badge {
    display: inline-block;
    background: rgba(255,87,34,0.08);
    padding: 4px 18px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 500;
    color: #ff5722;
    border: 1px solid rgba(255,87,34,0.12);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 12px;
    color: #1a1a2e;
    letter-spacing: -0.5px;
}
.hero-content h1 span { color: #ff5722; position: relative; }
.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,87,34,0.15);
    border-radius: 2px;
}

.hero-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff5722, rgba(255,87,34,0.2));
    border-radius: 3px;
    margin: 8px 0 18px;
}

.hero-description {
    font-size: 17px;
    color: rgba(26,26,46,0.55);
    max-width: 480px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-buttons .btn {
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}
.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.hero-buttons .btn-telegram {
    background: linear-gradient(135deg, #0088cc, #2aabee);
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(0,136,204,0.25);
}
.hero-buttons .btn-telegram:hover {
    box-shadow: 0 8px 30px rgba(0,136,204,0.35);
}
.hero-buttons .btn-primary {
    background: #ff5722;
    box-shadow: 0 4px 15px rgba(255,87,34,0.25);
}
.hero-buttons .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(255,87,34,0.35);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 35px;
    flex-wrap: wrap;
    align-items: center;
}
.hero-stats .stat {
    display: flex;
    flex-direction: column;
}
.hero-stats .stat .number {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1;
    letter-spacing: -0.5px;
}
.hero-stats .stat .label {
    font-size: 13px;
    color: rgba(26,26,46,0.4);
    margin-top: 4px;
    letter-spacing: 0.3px;
    font-weight: 400;
}
.hero-stats .stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(0,0,0,0.06);
}

.hero-image { width: 100%; display: flex; justify-content: center; align-items: center; }
.hero-image-wrapper { position: relative; max-width: 480px; width: 100%; }
.hero-image-border {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
    border: 2px solid rgba(255,255,255,0.8);
    background: #fff;
    padding: 6px;
}
.hero-image-border img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    object-fit: cover;
}
.hero-image-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-image-badge span { color: #ff5722; }

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section-title { font-size:36px; font-weight:700; text-align:center; margin-bottom:15px; color:#1a1a2e; }
.section-title span { color:#ff5722; }
.section-subtitle { text-align:center; color:rgba(26,26,46,0.5); font-size:17px; max-width:700px; margin:0 auto 45px; }

/* ============================================
   ABOUT
   ============================================ */
.about { padding:70px 0; background:#fff; }
.about-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:25px; margin-top:30px; }
.about-item { background:#f5f5f5; border-radius:14px; padding:22px 18px; text-align:center; border:1px solid #e8e8e8; }
.about-item .number { font-size:34px; font-weight:700; color:#1a1a2e; }
.about-item .label { font-size:14px; color:rgba(26,26,46,0.5); margin-top:5px; }
.about-cards { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:25px; margin-top:35px; }
.about-card { background:#f5f5f5; border-radius:14px; padding:28px; text-align:center; border:1px solid #e8e8e8; transition:0.3s; }
.about-card:hover { transform:translateY(-4px); border-color:#ff5722; box-shadow:0 8px 30px rgba(255,87,34,0.08); }
.about-card .title { font-size:19px; font-weight:600; margin-bottom:10px; color:#1a1a2e; }
.about-card p { font-size:14px; color:rgba(26,26,46,0.6); }

/* ============================================
   REASONS
   ============================================ */
.reasons { padding:70px 0; background:#fff; }
.reasons-grid { display:grid; grid-template-columns:1fr 1fr; gap:25px; max-width:800px; margin:0 auto; }
.reason-item { display:flex; align-items:center; gap:14px; background:#f5f5f5; border-radius:14px; padding:18px 20px; border:1px solid #e8e8e8; }
.reason-item .icon { font-size:28px; flex-shrink:0; }
.reason-item .text { font-size:15px; font-weight:500; color:#1a1a2e; }
.reason-item .text strong { color:#ff5722; }
.reasons .bonus { text-align:center; margin-top:35px; font-size:18px; color:#ff5722; font-weight:600; }
.reasons .bonus span { display:block; font-weight:400; color:rgba(26,26,46,0.5); font-size:14px; margin-top:5px; }

/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: 70px 0;
    background: #f5f0eb;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.pricing-card {
    background: #fff;
    padding: 35px 30px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: 0.3s;
    text-align: center;
}
.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,87,34,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.pricing-card.popular {
    border-color: #ff5722;
    background: #fff;
    box-shadow: 0 8px 30px rgba(255,87,34,0.08);
}
.pricing-card.popular .badge {
    display: inline-block;
    background: #ff5722;
    color: #fff;
    padding: 2px 14px;
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.pricing-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 4px; color: #1a1a2e; }
.pricing-card .subtitle { font-size: 13px; color: rgba(0,0,0,0.3); }
.pricing-card .price { font-size: 36px; font-weight: 700; color: #1a1a2e; margin: 12px 0; letter-spacing: -0.5px; }
.pricing-card .price span { font-size: 16px; font-weight: 400; color: rgba(0,0,0,0.25); }
.pricing-card ul { list-style: none; padding: 0; margin: 15px 0 25px; text-align: left; }
.pricing-card ul li { padding: 6px 0; font-size: 13px; color: rgba(0,0,0,0.5); display: flex; align-items: center; gap: 8px; }
.pricing-card ul li::before { content: "—"; color: #ff5722; }
.pricing-card .btn { width: 100%; }

/* ============================================
   AUDIT
   ============================================ */
.audit { padding:70px 0; background:#fff; }
.audit-wrapper { display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center; }
.audit-left h2 { font-size:30px; font-weight:700; margin-bottom:18px; color:#1a1a2e; }
.audit-left h2 span { color:#ff5722; }
.audit-left p { font-size:16px; color:rgba(26,26,46,0.6); margin-bottom:25px; }
.audit-left ul { list-style:none; }
.audit-left ul li { display:flex; align-items:center; gap:10px; padding:7px 0; font-size:16px; color:rgba(26,26,46,0.8); }
.audit-left ul li::before { content:"✓"; color:#ff5722; font-weight:700; font-size:20px; }
.audit-right { background:#f5f5f5; border-radius:14px; padding:35px; border:1px solid #e8e8e8; }
.audit-right h3 { font-size:22px; font-weight:700; margin-bottom:10px; color:#1a1a2e; }
.audit-right p { color:rgba(26,26,46,0.6); margin-bottom:18px; }
.audit-right .form-group { margin-bottom:14px; }
.audit-right .form-group label { display:block; font-weight:600; margin-bottom:5px; font-size:14px; color:rgba(26,26,46,0.7); }
.audit-right .form-group input { width:100%; padding:12px 16px; border-radius:8px; border:1px solid #e0e0e0; background:#fff; color:#1a1a2e; font-size:14px; font-family:'Montserrat',sans-serif; transition:border 0.3s; }
.audit-right .form-group input:focus { outline:none; border-color:#ff5722; }
.audit-right .form-group .checkbox { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:rgba(26,26,46,0.6); }
.audit-right .form-group .checkbox input { width:18px; height:18px; margin-top:2px; flex-shrink:0; }
.audit-right .form-group .checkbox a { color:#ff5722; text-decoration:underline; }
.audit-right .btn { width:100%; padding:14px; font-size:16px; }

/* ============================================
   MYTHS
   ============================================ */
.myths { padding:70px 0; background:#f8f8f8; }
.myths-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:25px; }
.myth-item { background:#fff; border-radius:14px; padding:28px 18px; text-align:center; border:1px solid #e8e8e8; }
.myth-item .icon { font-size:38px; margin-bottom:14px; }
.myth-item h4 { font-size:18px; margin-bottom:10px; color:#1a1a2e; }
.myth-item p { font-size:14px; color:rgba(26,26,46,0.6); }
.myths .cta-block { background:linear-gradient(135deg,#f5f5f5,#fff); border-radius:14px; padding:35px; text-align:center; border:1px solid #e8e8e8; margin-top:35px; }
.myths .cta-block h3 { font-size:26px; margin-bottom:14px; color:#1a1a2e; }
.myths .cta-block p { font-size:16px; margin-bottom:18px; color:rgba(26,26,46,0.6); }
.myths .cta-block .btn-telegram { background:linear-gradient(135deg,#0088cc,#2aabee); color:#fff !important; padding:14px 28px; font-size:14px; }

/* ============================================
   STEPS 6
   ============================================ */
.steps-6 { padding:70px 0; background:#fff; }
.steps-6-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:25px; }
.step-6 { background:#f5f5f5; border-radius:14px; padding:22px; display:flex; align-items:flex-start; gap:14px; border:1px solid #e8e8e8; transition:0.3s; }
.step-6:hover { transform:translateY(-4px); border-color:#ff5722; box-shadow:0 8px 30px rgba(255,87,34,0.08); }
.step-6 .num { background:linear-gradient(135deg,#ff5722,#ff8a3c); color:#fff; width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:17px; flex-shrink:0; }
.step-6 .info h4 { font-size:17px; margin-bottom:4px; color:#1a1a2e; }
.step-6 .info p { font-size:14px; color:rgba(26,26,46,0.6); }

/* ============================================
   CERTIFICATES
   ============================================ */
.certificates { padding:70px 0; background:#f8f8f8; }
.certificates-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:25px; max-width:900px; margin:0 auto; }
.cert-card { background:#fff; border-radius:14px; padding:18px; border:1px solid #e8e8e8; text-align:center; transition:0.3s; }
.cert-card:hover { transform:translateY(-4px); border-color:#ff5722; box-shadow:0 8px 30px rgba(255,87,34,0.08); }
.cert-card .cert-image { width:100%; aspect-ratio:1/1.414; background:#f0f0f0; border-radius:8px; display:flex; align-items:center; justify-content:center; overflow:hidden; margin-bottom:12px; }
.cert-card .cert-image img { width:100%; height:100%; object-fit:contain; }
.cert-card .cert-title { font-weight:600; font-size:15px; color:#1a1a2e; }

/* ============================================
   RESULTS
   ============================================ */
.results { padding:70px 0; background:#f8f8f8; }
.results-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:25px; }
.result-card { background:#fff; border-radius:14px; padding:24px; border:1px solid #e8e8e8; transition:0.3s; }
.result-card:hover { transform:translateY(-4px); border-color:#ff5722; box-shadow:0 8px 30px rgba(255,87,34,0.08); }
.result-card .title { font-weight:700; font-size:18px; margin-bottom:14px; text-transform:uppercase; color:#1a1a2e; }
.result-card .stats { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.result-card .stats .item { background:#f5f5f5; padding:10px; border-radius:8px; text-align:center; }
.result-card .stats .item .value { font-weight:700; font-size:19px; color:#1a1a2e; }
.result-card .stats .item .label { font-size:12px; color:rgba(26,26,46,0.5); }
.result-card .budget { margin-top:14px; text-align:center; font-size:14px; color:rgba(26,26,46,0.5); }
.result-card .budget .amount { font-weight:700; font-size:22px; color:#1a1a2e; }
.result-card.hidden-case { display:none; }
.result-card.hidden-case.visible { display:block; }
.results .btn-wrap { text-align:center; margin-top:35px; }
.results .btn-wrap .btn { display:inline-flex; align-items:center; gap:10px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { padding:70px 0; background:#fff; }
.testimonial-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:25px; margin-top:30px; }
.testimonial-card { background:#f5f5f5; border-radius:14px; padding:28px; border:1px solid #e8e8e8; }
.testimonial-card .header { display:flex; align-items:center; gap:14px; margin-bottom:14px; }
.testimonial-card .header .avatar { width:48px; height:48px; border-radius:50%; background:linear-gradient(135deg,#ff5722,#ff8a3c); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:18px; }
.testimonial-card .header .name { font-weight:600; color:#1a1a2e; }
.testimonial-card .header .date { font-size:12px; color:rgba(26,26,46,0.4); }
.testimonial-card .text { font-size:14px; color:rgba(26,26,46,0.8); line-height:1.6; }

/* ============================================
   QUOTE
   ============================================ */
.quote-section { padding:70px 0; background:#f8f8f8; }
.quote-wrapper { max-width:700px; margin:0 auto; background:#fff; padding:45px 38px; border-radius:30px; border:1px solid #e8e8e8; }
.quote-wrapper h2 { text-align:center; font-size:30px; margin-bottom:14px; color:#1a1a2e; }
.quote-wrapper .form-group { margin-bottom:18px; }
.quote-wrapper .form-group label { display:block; font-weight:600; margin-bottom:5px; font-size:14px; color:rgba(26,26,46,0.7); }
.quote-wrapper .form-group input { width:100%; padding:14px 18px; border-radius:12px; border:1px solid #e0e0e0; background:#fafafa; color:#1a1a2e; font-size:15px; font-family:'Montserrat',sans-serif; transition:border 0.3s; }
.quote-wrapper .form-group input:focus { outline:none; border-color:#ff5722; }
.quote-wrapper .form-group .checkbox { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:rgba(26,26,46,0.6); }
.quote-wrapper .form-group .checkbox input { width:18px; height:18px; margin-top:2px; flex-shrink:0; }
.quote-wrapper .form-group .checkbox a { color:#ff5722; text-decoration:underline; }
.quote-wrapper .btn { width:100%; padding:17px; font-size:17px; }

/* ============================================
   FOOTER
   ============================================ */
.footer { padding:35px 0 18px; background:#fafafa; border-top:1px solid #e8e8e8; }
.footer .container { display:grid; grid-template-columns:2fr 1fr 1fr; gap:25px; }
.footer a { color:rgba(26,26,46,0.5); transition:color 0.3s; }
.footer a:hover { color:#ff5722; }
.footer .logo { font-size:19px; margin-bottom:8px; color:#1a1a2e; }
.footer .col h4 { font-weight:600; margin-bottom:14px; color:#1a1a2e; }
.footer .col ul { list-style:none; }
.footer .col ul li { margin-bottom:7px; }
.footer .bottom { border-top:1px solid #e8e8e8; padding-top:18px; margin-top:25px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; font-size:12px; color:rgba(26,26,46,0.3); }

/* ============================================
   SCROLL TOP
   ============================================ */
.scroll-top {
    position:fixed;
    bottom:30px;
    right:30px;
    width:50px;
    height:50px;
    background:linear-gradient(135deg,#ff5722,#ff8a3c);
    color:#fff;
    border:none;
    border-radius:50%;
    cursor:pointer;
    font-size:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 20px rgba(255,87,34,0.35);
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity:0;
    transform:translateY(20px);
    pointer-events:none;
    z-index:999;
}
.scroll-top.visible { opacity:1; transform:translateY(0); pointer-events:auto; }
.scroll-top:hover { transform:scale(1.1) translateY(-3px); box-shadow:0 8px 35px rgba(255,87,34,0.5); }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up { opacity:0; transform:translateY(30px); transition:opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }

/* ============================================
   MOBILE ADAPTATION (iPhone 15+)
   ============================================ */
@media (max-width: 1024px) {
    .hero .container { gap:30px; }
    .hero-content h1 { font-size:38px; }
    .hero-stats .stat .number { font-size:34px; }
    .certificates-grid { gap:20px; }
    .steps-6-grid { gap:20px; }
}

@media (max-width: 820px) {
    .hero .container { grid-template-columns:1fr; text-align:center; gap:30px; }
    .hero-divider { margin-left:auto; margin-right:auto; }
    .hero-description { max-width:100%; margin-left:auto; margin-right:auto; }
    .hero-buttons { justify-content:center; }
    .hero-stats { justify-content:center; }
    .hero-image-wrapper { max-width:400px; margin:0 auto; }
    .hero-bg-circle { display:none; }
    .hero-stats .stat .number { font-size:34px; }
    .hero-image { max-width:100%; height:auto; }
    .certificates-grid { grid-template-columns:repeat(2,1fr); gap:18px; }
    .steps-6-grid { grid-template-columns:1fr 1fr; }
    .audit-wrapper { grid-template-columns:1fr; gap:35px; }
    .footer .container { grid-template-columns:1fr 1fr; gap:25px; }
    .reasons-grid { grid-template-columns:1fr; }
    .section-title { font-size:30px; }
}

@media (max-width: 640px) {
    .container { padding:0 16px; }
    .header { padding:12px 0; }
    .logo { font-size:18px; }
    .nav { display:none; }
    .burger { display:flex; }
    .nav-mobile { display:none; flex-direction:column; align-items:center; gap:12px; padding:15px 0; background:#fff; border-top:1px solid #f0f0f0; width:100%; }
    .nav-mobile.open { display:flex; }

    .hero { padding:40px 0 50px; }
    .hero-content h1 { font-size:28px; }
    .hero-description { font-size:15px; }
    .hero-stats .stat .number { font-size:28px; }
    .hero-stats { gap:16px; }
    .hero-stats .stat-divider { height:25px; }
    .hero-image-wrapper { max-width:320px; }
    .hero-image-badge { font-size:11px; padding:4px 12px; bottom:-6px; right:-6px; }
    .hero-buttons .btn { font-size:13px; padding:12px 24px; }

    .section-title { font-size:24px; }
    .section-subtitle { font-size:14px; margin-bottom:28px; }

    .about { padding:40px 0; }
    .about-grid { grid-template-columns:1fr 1fr; gap:12px; }
    .about-item { padding:14px 10px; }
    .about-item .number { font-size:24px; }
    .about-item .label { font-size:11px; }
    .about-cards { grid-template-columns:1fr; gap:14px; }
    .about-card { padding:18px; }

    .reasons { padding:40px 0; }
    .reasons-grid { gap:12px; }
    .reason-item { padding:14px 16px; flex-wrap:nowrap; }
    .reason-item .icon { font-size:22px; min-width:32px; }
    .reason-item .text { font-size:13px; line-height:1.3; }
    .reasons .bonus { font-size:16px; margin-top:25px; }

    .pricing { padding:40px 0; }
    .pricing-grid { grid-template-columns:1fr; gap:14px; }
    .pricing-card { padding:25px 20px; }

    .certificates { padding:40px 0; }
    .certificates-grid { grid-template-columns:1fr 1fr; gap:14px; max-width:100%; }
    .cert-card .cert-image { aspect-ratio:1/1.414; height:auto; }
    .cert-card .cert-title { font-size:13px; }

    .steps-6 { padding:40px 0; }
    .steps-6-grid { grid-template-columns:1fr; gap:14px; }
    .step-6 { padding:16px; }
    .step-6 .num { width:32px; height:32px; font-size:14px; }
    .step-6 .info h4 { font-size:16px; }
    .step-6 .info p { font-size:13px; }

    .results { padding:40px 0; }
    .results-grid { grid-template-columns:1fr; gap:18px; }
    .result-card { padding:18px; }
    .result-card .stats .item .value { font-size:17px; }

    .myths { padding:40px 0; }
    .myths-grid { grid-template-columns:1fr; gap:14px; }
    .myth-item { padding:18px 14px; }
    .myths .cta-block { padding:22px 18px; margin-top:25px; }
    .myths .cta-block h3 { font-size:20px; }

    .audit { padding:40px 0; }
    .audit-left h2 { font-size:22px; }
    .audit-left p { font-size:14px; }
    .audit-right { padding:18px; }
    .audit-right h3 { font-size:20px; }
    .audit-right .form-group input { font-size:13px; padding:10px 14px; }

    .testimonials { padding:40px 0; }
    .testimonial-grid { grid-template-columns:1fr; gap:14px; }
    .testimonial-card { padding:18px; }

    .quote-section { padding:40px 0; }
    .quote-wrapper { padding:20px 16px; }
    .quote-wrapper h2 { font-size:22px; }
    .quote-wrapper .form-group input { font-size:14px; padding:12px 14px; }
    .quote-wrapper .btn { padding:14px; font-size:16px; }

    .footer { padding:25px 0 12px; }
    .footer .container { grid-template-columns:1fr; text-align:center; gap:18px; }
    .footer .bottom { flex-direction:column; align-items:center; text-align:center; gap:6px; }

    .btn { padding:12px 24px; font-size:13px; }
    .btn-telegram { padding:12px 24px; font-size:13px; }
    .btn-primary, .btn-outline { font-size:13px; }
    .nav .btn { padding:6px 14px; font-size:11px; }

    .scroll-top { width:44px; height:44px; font-size:20px; bottom:20px; right:20px; }
    .hero-buttons .btn { min-width:130px; font-size:12px; padding:10px 16px; }
}

@media (max-width: 420px) {
    .container { padding:0 12px; }
    .hero-content h1 { font-size:22px; }
    .hero-image { height:auto; }
    .hero-stats .stat .number { font-size:22px; }
    .hero-stats { gap:12px; }
    .hero-stats .stat-divider { height:20px; }
    .section-title { font-size:20px; }
    .hero-buttons .btn { min-width:110px; font-size:11px; padding:8px 14px; }

    .about-grid { grid-template-columns:1fr 1fr; gap:8px; }
    .about-item .number { font-size:20px; }
    .about-item .label { font-size:10px; }
    .certificates-grid { grid-template-columns:1fr 1fr; gap:10px; }

    .pricing { padding:30px 0; }
    .pricing-grid { gap:10px; }
    .pricing-card { padding:20px 16px; }

    .reasons-grid { gap:8px; }
    .reason-item { padding:12px 14px; gap:10px; }
    .reason-item .icon { font-size:20px; min-width:28px; }
    .reason-item .text { font-size:12px; }
    .reasons .bonus { font-size:14px; margin-top:20px; }
    .reasons .bonus span { font-size:12px; }

    .btn { padding:10px 18px; font-size:12px; }
    .btn-telegram { padding:10px 18px; font-size:12px; }
    .nav .btn { padding:4px 10px; font-size:10px; }

    .scroll-top { width:38px; height:38px; font-size:18px; bottom:14px; right:14px; }
    .quote-wrapper .btn { font-size:14px; padding:12px; }
}