/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #070e17;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(74, 222, 128, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 65%, rgba(255, 213, 74, 0.06) 0%, transparent 45%),
        linear-gradient(160deg, #060c14 0%, #0c1a29 35%, #122838 70%, #060c14 100%);
    background-attachment: fixed;
    color: #f1f5f9;
    line-height: 1.7;
    overflow-x: hidden;
    padding: 0;
    min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding-left: 1.4rem; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #060c14; }
::-webkit-scrollbar-thumb { background: #34d399; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #10b981; }

:root {
    --green: #4ade80;
    --green-dark: #16a34a;
    --green-glow: rgba(74, 222, 128, 0.35);
    --gold: #ffd54a;
    --gold-dark: #f59e0b;
    --gold-glow: rgba(255, 213, 74, 0.3);
    --card-bg: rgba(15, 25, 38, 0.75);
    --card-border: rgba(74, 222, 128, 0.15);
    --radius: 20px;
    --nav-offset: 80px;
    --max-width: 1200px;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px 50px;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 28px;
    background: rgba(7, 14, 23, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.logo img {
    height: 42px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.3);
}
.logo-text {
    font-size: 16px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 30%, var(--green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}
.btn-header {
    padding: 10px 22px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    transition: all 0.25s ease;
    font-family: inherit;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.btn-play {
    background: linear-gradient(135deg, #34d399 0%, #16a34a 100%);
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.35);
}
.btn-demo-header {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

/* ===== HERO ===== */
.hero {
    padding-top: calc(var(--nav-offset) + 30px);
    padding-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.hero-content {
    flex: 1.2;
    text-align: left;
}
.badge-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(74, 222, 128, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}
.hero-content h1 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 60%, var(--green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}
.hero-content p {
    font-size: clamp(14px, 1.1vw, 16px);
    color: #cbd5e1;
    margin-bottom: 26px;
    max-width: 640px;
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.hero-btn {
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.hero-btn:hover {
    transform: translateY(-3px);
}
.hero-btn-play {
    background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}
.hero-btn-play:hover {
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.6);
}
.hero-btn-demo {
    background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.35);
}
.hero-btn-demo:hover {
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image img {
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(74, 222, 128, 0.15);
    border: 1px solid var(--card-border);
}

.rating-block {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    width: fit-content;
}
.stars { display: flex; gap: 4px; font-size: 24px; cursor: pointer; }
.stars span { transition: color 0.2s; color: rgba(255,255,255,0.2); user-select: none; }
.stars span.active, .stars span.hover { color: #ffd54a; text-shadow: 0 0 10px rgba(255, 213, 74, 0.5); }
.rating-text { font-size: 13px; color: #94a3b8; font-weight: 500; }
.rating-aggregate { font-size: 13px; color: var(--green); font-weight: 700; }

/* ===== TABLE OF CONTENTS ===== */
.toc {
    background: var(--card-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 20px 0 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 17px;
    color: var(--gold);
}
.toc-toggle { font-size: 18px; transition: transform 0.3s; user-select: none; }
.toc ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 0;
    margin-top: 16px;
    overflow: hidden;
    max-height: 500px;
    transition: max-height 0.4s ease, margin-top 0.3s ease;
}
.toc.collapsed ul { max-height: 0; margin-top: 0; }
.toc.collapsed .toc-toggle { transform: rotate(180deg); }
.toc ul li a {
    font-size: 13px;
    font-weight: 600;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.04);
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: inline-block;
    transition: all 0.2s;
}
.toc ul li a:hover {
    color: #fff;
    background: rgba(74, 222, 128, 0.15);
    border-color: var(--green);
}

/* ===== CARDS & SECTIONS ===== */
.card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 32px;
    margin: 30px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}
.card h2 {
    font-size: clamp(22px, 2.2vw, 28px);
    margin-bottom: 18px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.3;
}
.card h3 {
    font-size: clamp(16px, 1.4vw, 20px);
    margin: 24px 0 12px;
    color: var(--green);
    font-weight: 600;
}
.card p {
    font-size: 15px;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 16px;
}
.card p:last-child { margin-bottom: 0; }
.card ul, .card ol {
    margin-bottom: 16px;
    color: #e2e8f0;
}
.card li { margin-bottom: 8px; line-height: 1.7; font-size: 15px; }

.btn-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 12px;
    background: linear-gradient(135deg, #22c55e, #15803d);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
    margin-top: 10px;
}
.btn-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5);
}

.note-text {
    font-size: 13px !important;
    color: #94a3b8 !important;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 16px;
    border-radius: 10px;
    border-left: 3px solid #64748b;
    margin-top: 16px;
}

/* ===== VIDEO BLOCK ===== */
.video-block {
    background: var(--card-bg);
    backdrop-filter: blur(14px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 24px;
    margin: 35px 0;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.video-block video {
    width: 100%;
    max-width: 720px;
    border-radius: 16px;
    margin: 0 auto 12px;
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.video-block .note {
    font-size: 13px;
    color: #94a3b8;
    letter-spacing: 0.3px;
}

/* ===== TABLES ===== */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin: 18px 0;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.summary-table, .block-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: left;
}
.summary-table th, .block-table th {
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold);
    padding: 14px 16px;
    font-weight: 700;
    border-bottom: 2px solid rgba(255, 255, 255, 0.12);
    white-space: nowrap;
}
.summary-table td, .block-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
}
.summary-table tr:nth-child(even), .block-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}
.block-table tr.highlight td {
    color: var(--green);
    font-weight: 700;
    background: rgba(74, 222, 128, 0.06);
}

/* ===== WORKFLOW BOX ===== */
.workflow-box {
    background: rgba(74, 222, 128, 0.06);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 14px;
    padding: 18px 20px;
    margin: 20px 0;
}
.workflow-box strong { color: var(--green); display: block; margin-bottom: 8px; font-size: 14px; }
.workflow-steps {
    font-size: 13px;
    color: #f1f5f9;
    line-height: 2;
}
.workflow-steps span {
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    margin: 2px 0;
    font-weight: 600;
}

/* ===== INFO ALERT ===== */
.info-alert {
    background: rgba(255, 213, 74, 0.08);
    border-left: 4px solid var(--gold);
    border-radius: 12px;
    padding: 16px 20px;
    margin: 18px 0;
}
.info-alert strong { color: var(--gold); font-size: 15px; display: block; margin-bottom: 4px; }
.info-alert p { margin: 0; font-size: 14px; color: #cbd5e1; }

/* ===== PICKAXES GRID ===== */
.pickaxes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin: 20px 0;
}
.pickaxe-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: transform 0.25s ease;
}
.pickaxe-card:hover { transform: translateY(-4px); }
.pickaxe-icon { font-size: 36px; margin-bottom: 10px; }
.pickaxe-card h3 { margin: 0 0 8px 0; font-size: 17px; }
.hp-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}
.pickaxe-card.wooden .hp-badge { background: rgba(217, 119, 6, 0.2); color: #f59e0b; border: 1px solid #f59e0b; }
.pickaxe-card.stone .hp-badge { background: rgba(148, 163, 184, 0.2); color: #cbd5e1; border: 1px solid #94a3b8; }
.pickaxe-card.iron .hp-badge { background: rgba(56, 189, 248, 0.2); color: #38bdf8; border: 1px solid #38bdf8; }
.pickaxe-card.diamond .hp-badge { background: rgba(168, 85, 247, 0.2); color: #c084fc; border: 1px solid #c084fc; }

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin: 20px 0;
}
.feature-item {
    background: rgba(255,255,255,0.03);
    padding: 22px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--card-border);
    transition: transform 0.2s ease;
}
.feature-item:hover { transform: translateY(-3px); }
.feature-item .icon { font-size: 38px; display: block; margin-bottom: 12px; }
.feature-item h4 { font-size: 16px; color: var(--green); margin-bottom: 8px; font-weight: 700; }
.feature-item p { font-size: 13px; color: #94a3b8; line-height: 1.6; margin: 0; }

/* ===== STATS GRID ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin: 30px 0;
}
.stat-item {
    background: var(--card-bg);
    backdrop-filter: blur(14px);
    padding: 24px 16px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid var(--card-border);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.stat-item .number {
    font-size: clamp(26px, 2.8vw, 34px);
    color: var(--green);
    margin-bottom: 6px;
    font-weight: 800;
}
.stat-item .label {
    font-size: 12px;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ===== PROS & CONS ===== */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 16px;
}
.pros-box {
    background: rgba(74, 222, 128, 0.05);
    padding: 24px;
    border-radius: 16px;
    border-left: 4px solid #4ade80;
    border-top: 1px solid rgba(74, 222, 128, 0.15);
}
.cons-box {
    background: rgba(248, 113, 113, 0.05);
    padding: 24px;
    border-radius: 16px;
    border-left: 4px solid #f87171;
    border-top: 1px solid rgba(248, 113, 113, 0.15);
}
.pros-box h4 { color: #4ade80; font-size: 18px; margin-bottom: 14px; font-weight: 700; }
.cons-box h4 { color: #f87171; font-size: 18px; margin-bottom: 14px; font-weight: 700; }
.pros-box ul, .cons-box ul { list-style: none; padding: 0; margin: 0; }
.pros-box li, .cons-box li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 14px;
    color: #cbd5e1;
}
.pros-box li:last-child, .cons-box li:last-child { border-bottom: none; }

/* ===== STEPS LIST ===== */
.steps-list {
    padding-left: 20px;
}
.steps-list li {
    margin-bottom: 12px;
    line-height: 1.8;
}

/* ===== CAROUSEL ===== */
.phone-carousel {
    background: #0d1520;
    border-radius: 40px;
    padding: 16px 12px 12px;
    max-width: 320px;
    margin: 30px auto;
    box-shadow: 0 25px 60px rgba(0,0,0,0.8), 0 0 30px rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(255,255,255,0.1);
}
.phone-screen {
    background: #000;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 9/16;
}
.phone-screen .slides { display: flex; transition: transform 0.4s ease; height: 100%; }
.phone-screen .slide {
    min-width: 100%;
    height: 100%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}
.phone-screen .slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-controls { display: flex; justify-content: center; gap: 14px; margin-top: 14px; }
.carousel-controls button {
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-controls button:hover { background: rgba(74, 222, 128, 0.3); }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 10px; }
.carousel-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: 0.2s;
    cursor: pointer;
}
.carousel-dots span.active { background: var(--green); width: 24px; border-radius: 10px; }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); padding: 18px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: clamp(15px, 1.1vw, 17px);
    font-weight: 600;
    color: #fff;
    gap: 12px;
}
.faq-question:hover { color: var(--green); }
.faq-question .toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--green);
    transition: transform 0.2s;
    user-select: none;
    flex-shrink: 0;
}
.faq-answer {
    margin-top: 12px;
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.8;
    display: none;
}
.faq-answer.open { display: block; }

/* ===== CONCLUSION & CTA ===== */
.conclusion-card {
    text-align: center;
}
.cta-box {
    margin-top: 24px;
    background: rgba(74, 222, 128, 0.05);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 18px;
    padding: 24px;
}
.age-restriction {
    font-size: 20px;
    font-weight: 800;
    color: #f87171;
    margin-bottom: 8px;
}

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-box {
    position: relative;
    width: min(94vw, 850px);
    height: 88vh;
    max-height: 720px;
    background: #000;
    border-radius: 20px;
    border: 1px solid rgba(74, 222, 128, 0.3);
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0,0,0,0.9);
}
.modal-box iframe { width: 100%; height: 100%; border: none; }
.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 1.4rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    transition: 0.2s;
}
.modal-close:hover { background: #f87171; border-color: #f87171; }

/* ===== FOOTER ===== */
.footer {
    background: rgba(5, 10, 16, 0.95);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 60px;
}
.footer .brand { font-size: 18px; color: var(--green); margin-bottom: 12px; font-weight: 700; letter-spacing: 0.5px; }
.footer .license { font-size: 12px; color: #94a3b8; margin: 6px 0; line-height: 1.7; }
.footer .license-verify {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 700;
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.4);
    border-radius: 20px;
    text-decoration: none;
    transition: 0.2s;
}
.footer .license-verify:hover {
    background: rgba(74, 222, 128, 0.2);
    color: #fff;
}
.footer .email { margin: 10px 0; font-size: 14px; }
.footer .email a { color: #4ade80; font-weight: 600; text-decoration: none; }
.footer .email a:hover { text-decoration: underline; }
.footer .trustpilot { margin: 10px 0 16px; font-size: 14px; }
.footer .trustpilot a {
    color: #00b67a;
    text-decoration: none;
    font-weight: 700;
}
.footer .trustpilot a:hover { text-decoration: underline; }
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    margin: 20px 0;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-nav a {
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    transition: 0.2s;
}
.footer-nav a:hover, .footer-nav a.active { color: var(--green); }
.footer .copy { font-size: 12px; color: #64748b; margin-top: 12px; }
.footer .disclaimer {
    font-size: 11px;
    color: #64748b;
    max-width: 760px;
    margin: 12px auto 0;
    line-height: 1.7;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 860px) {
    header { padding: 10px 16px; }
    .logo img { height: 36px; }
    .logo-text { font-size: 14px; }
    .btn-header { padding: 8px 14px; font-size: 11px; }
    .pros-cons { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    :root { --nav-offset: 70px; }
    header { padding: 10px 14px; }
    .hero {
        flex-direction: column;
        padding-top: calc(var(--nav-offset) + 20px);
        text-align: center;
        gap: 25px;
    }
    .hero-content { text-align: center; }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .rating-block { margin: 0 auto; }
    .hero-image { width: 100%; max-width: 440px; margin: 0 auto; }
    .card { padding: 22px 18px; margin: 20px 0; }
    .toc ul { flex-direction: column; gap: 8px; align-items: stretch; }
    .toc ul li a { text-align: center; }
    .video-block { padding: 16px; }
}
@media (max-width: 480px) {
    .logo-text { font-size: 12px; }
    .btn-header { padding: 7px 10px; font-size: 10px; }
    .hero-content h1 { font-size: 24px; }
    .hero-btn { width: 100%; max-width: 300px; padding: 14px 20px; font-size: 13px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .pickaxes-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .phone-carousel { max-width: 260px; }
}
