@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-v25-latin-regular.woff2') format('woff2'),
         url('../fonts/montserrat-v25-latin-regular.woff') format('woff'),
         url('../fonts/montserrat-v25-latin-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
         url('../fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --default-font: "Montserrat", system-ui, -apple-system, sans-serif;
    --heading-font: "Montserrat", sans-serif;
    --nav-font: "Montserrat", sans-serif;
    --bg-dark: #0a2e1a;
    --bg-light: #f5f6f8;
    --accent: rgba(0, 124, 70, 1);
    --accent-light: rgba(21, 214, 0, 0.15);
    --text: #444;
    --text-light: rgba(255,255,255,0.85);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--default-font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg-light);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
strong { font-weight: 600; }

h1, h2, h3, h4 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* HEADER */
.header {
    background: var(--bg-dark);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 38px;
    width: auto;
}

.logo h1 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

/* NAV */
.navmenu ul {
    display: flex;
    align-items: center;
}

.nav-close-li {
    display: none;
}

.navmenu li a {
    display: block;
    padding: 8px 15px;
    font-family: var(--nav-font);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    transition: 0.2s;
}

.navmenu li a:hover,
.navmenu li a.active {
    color: #fff;
    background: var(--accent);
    border-radius: 3px;
}

/* DROPDOWN */
.navmenu .has-dropdown {
    position: relative;
}

.navmenu .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--bg-dark);
    border-radius: 0 0 6px 6px;
    padding: 6px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 100;
}

.navmenu .has-dropdown:hover .dropdown {
    display: block;
}

.navmenu .dropdown li a {
    padding: 8px 18px;
    font-size: 13px;
    white-space: nowrap;
    border-radius: 0;
}

.mobile-nav-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

/* HERO */
.hero {
    background: var(--bg-dark);
    padding: 25px 0 35px;
}

.hero h1 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0 0 12px 0;
}

.hero p:last-child {
    margin-bottom: 0;
}

.hero strong {
    color: #fff;
}

/* TEXT COLLAPSE */
.text-collapse {
    position: relative;
}

.text-collapse.collapsed .text-content {
    max-height: 72px;
    overflow: hidden;
}

.text-collapse.collapsed .text-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(transparent, var(--bg-dark));
}

.text-collapse .text-content {
    position: relative;
}

.show-more-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 0;
    background: none;
    border: none;
    color: rgba(21, 214, 0, 0.95);
    font-family: var(--default-font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.show-more-btn:hover {
    color: #fff;
}

/* AUTHOR */
.author-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 18px;
}

.author-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-img img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255,255,255,0.1);
}

.author-img .verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 22px;
    height: 22px;
}

.author-info p {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.author-info span {
    font-weight: 500;
}

.author-name a {
    color: rgba(21, 214, 0, 0.95);
    font-weight: 600;
    text-decoration: underline;
}

.author-name a:hover {
    color: #fff;
}

.author-date time {
    color: rgba(255,255,255,0.9);
}

/* TOPLIST */
.toplist {
    padding: 35px 0 10px;
}

.toplist h2 {
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.toplist-items {
    display: flex;
    flex-direction: column;
    counter-reset: toplist-counter;
    gap: 12px;
}

.toplist-item {
    position: relative;
}

.toplist-inner {
    position: relative;
    display: grid;
    align-items: start;
    padding: 16px;
    background: transparent;
    grid-template-columns: 180px 1fr 1fr 200px;
    grid-template-rows: auto;
    grid-template-areas: "logo main features cta";
    gap: 20px;
}

.toplist-inner::before {
    content: "";
    counter-increment: toplist-counter;
}

.toplist-logo {
    grid-area: logo;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.toplist-logo::before {
    font-family: var(--nav-font);
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
    line-height: 20px;
    position: absolute;
    z-index: 1;
    top: -10px;
    left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    content: counter(toplist-counter);
    color: #fff;
    border-radius: 16px;
    background: #e50123;
}

.toplist-logo img {
    width: 180px;
    height: 90px;
    border-radius: 0;
    object-fit: contain;
    background: transparent;
    border: none;
}

.toplist-brand {
    font-family: var(--nav-font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
}

.toplist-main {
    grid-area: main;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.toplist-title {
    font-family: var(--nav-font);
    font-size: 24px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.toplist-features {
    grid-area: features;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toplist-features li {
    font-family: var(--default-font);
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    padding-left: 28px;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23e8f5e9'/%3E%3Cpath d='M14.5 7L8.5 13L5.5 10' stroke='%23007c46' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left top 4px;
    background-size: 18px 18px;
}

.toplist-rating {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.rating-score {
    font-family: var(--nav-font);
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.rating-stars .star {
    width: 20px;
    height: 20px;
}

.rating-stars .star.filled {
    fill: #4caf50;
}

.rating-stars .star.empty {
    fill: none;
    stroke: #ccc;
    stroke-width: 1.5;
}

.toplist-cta {
    grid-area: cta;
    align-self: start;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 56px;
    padding: 0 30px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #000;
    background: linear-gradient(to bottom, #ffeb3b 0%, #f6da09 50%, #e6c908 100%);
    border-radius: 10px;
    transition: background 0.2s ease;
    text-decoration: underline;
    box-shadow:
        0 5px 0 #b59b00,
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.toplist-cta img {
    width: 20px;
    height: 20px;
}

.toplist-cta:hover {
    background: linear-gradient(to bottom, #fff176 0%, #ffeb3b 50%, #f6da09 100%);
    text-decoration: none;
}

/* COMPARISON TABLE */
.comparison-table {
    padding: 5px 0;
}

.comparison-table h2 {
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.comparison-table h3 {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.table-intro {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 20px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--default-font);
    margin-bottom: 15px;
}

.comparison-table th {
    padding: 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #2c3e50;
    text-align: left;
    border-top: 1px solid #dee2e6;
    border-bottom: 3px solid #2c3e50;
    vertical-align: top;
}

.comparison-table td {
    padding: 12px;
    font-size: 16px;
    color: var(--text);
    border-top: 1px solid #e8ecef;
    vertical-align: top;
    transition: background 0.2s ease;
}

.comparison-table tbody tr:hover td {
    background: #f8f9fa;
}

/* CONTENT SECTION - unified style for all content blocks */
.content-section {
    padding: 5px 0;
}

.content-section h1 {
    font-family: var(--heading-font);
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin: 25px 0 12px 0;
    letter-spacing: -0.02em;
}

.content-section h2 {
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.content-section h3 {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin: 20px 0 10px 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.content-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 16px;
}

.content-section ul.check-list {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 16px;
}

.content-section ul.check-list li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 4px;
}

.content-section .section-intro {
    margin-bottom: 20px;
}

/* CONTACT FORM */
.contact-form {
    margin: 24px 0 30px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    flex: 1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--default-font);
    font-size: 15px;
    color: var(--text);
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group select {
    padding-right: 36px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23444' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    font-family: var(--default-font);
    font-size: 15px;
    font-weight: 600;
    color: #111;
    background: linear-gradient(180deg, #f6da09 0%, #e5c800 100%);
    border: none;
    border-radius: 6px;
    padding: 12px 30px;
    cursor: pointer;
    box-shadow: 0 4px 0 #b59b00, inset 0 1px 0 rgba(255,255,255,0.4);
    transition: background 0.2s;
}

.form-submit:hover {
    background: linear-gradient(180deg, #ffe94a 0%, #f6da09 100%);
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 15px;
}

.table-wrap table,
.content-section table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--default-font);
}

.content-section th {
    padding: 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #2c3e50;
    text-align: left;
    border-top: 1px solid #dee2e6;
    border-bottom: 3px solid #2c3e50;
    vertical-align: top;
}

.content-section td {
    padding: 12px;
    font-size: 16px;
    color: var(--text);
    border-top: 1px solid #e8ecef;
    vertical-align: top;
    transition: background 0.2s ease;
}

.content-section tbody tr:hover td {
    background: #f8f9fa;
}

/* CHECKLIST */
.checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.checklist.pros-list li {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    padding-left: 28px;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23e8f5e9'/%3E%3Cpath d='M14.5 7L8.5 13L5.5 10' stroke='%23007c46' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left top 3px;
    background-size: 18px 18px;
}

.checklist.cons-list li {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    padding-left: 28px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 4L4 12M4 4l8 8' stroke='%23d32f2f' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left top 4px;
    background-size: 16px 16px;
}

/* HELP LINKS */
.help-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
    padding-left: 20px;
    list-style: disc;
}

.help-links li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
}

.help-links li a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
}

.help-links li a:hover {
    color: #111;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 12px;
}

.faq-question h3 {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin: 0;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    transition: transform 0.25s ease;
    color: #555;
}

.faq-question:focus {
    outline: none;
}

.faq-question::-moz-focus-inner {
    border: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 16px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
}

/* REVIEWS SECTION (legacy) */
.reviews-section {
    padding: 5px 0;
}

.reviews-section h2 {
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.reviews-intro {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 20px;
}

.review-item {
    margin-bottom: 20px;
}

.review-item h3 {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin: 0 0 20px 0;
}

.review-logo {
    max-width: 962px;
    margin: 0 auto 30px;
    border-radius: 15px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .15);
    text-align: center;
    overflow: hidden;
    width: fit-content;
}

.review-logo img {
    display: block;
    max-width: 100%;
    height: auto;
}

.review-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 16px;
}

.review-content p:last-of-type {
    margin-bottom: 24px;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.pros h4,
.cons h4 {
    font-family: var(--heading-font);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.pros h4 {
    color: #007c46;
}

.cons h4 {
    color: #d32f2f;
}

.pros ul,
.cons ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pros li {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    padding-left: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5 4L6 11.5L2.5 8' stroke='%23007c46' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left top 3px;
    background-size: 16px 16px;
}

.cons li {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    padding-left: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 4L4 12M4 4l8 8' stroke='%23d32f2f' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left top 3px;
    background-size: 16px 16px;
}

/* FOOTER */
.footer {
    background: var(--bg-dark);
    padding: 20px 0;
    text-align: center;
}

.footer p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* MOBILE NAV OVERLAY */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}

.nav-overlay.show {
    display: block;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: rgba(255,255,255,0.1);
        border: none;
        border-radius: 8px;
        cursor: pointer;
        z-index: 1001;
        transition: 0.2s;
    }

    .mobile-nav-toggle:hover {
        background: rgba(255,255,255,0.18);
    }

    .mobile-nav-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        background: #fff;
        position: relative;
        transition: 0.3s;
    }

    .mobile-nav-toggle span::before,
    .mobile-nav-toggle span::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 2px;
        background: #fff;
        left: 0;
        transition: 0.3s;
    }

    .mobile-nav-toggle span::before { top: -6px; }
    .mobile-nav-toggle span::after { top: 6px; }

    .mobile-nav-toggle.active span {
        background: transparent;
    }

    .mobile-nav-toggle.active span::before {
        top: 0;
        transform: rotate(45deg);
    }

    .mobile-nav-toggle.active span::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .navmenu ul {
        position: fixed;
        top: 0;
        right: -280px;
        width: 260px;
        height: 100%;
        flex-direction: column;
        background: var(--bg-dark);
        padding: 15px 20px;
        z-index: 999;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: none;
    }

    .navmenu ul.show {
        right: 0;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    }

    .nav-close-li {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 10px;
        border: none !important;
    }

    .nav-close {
        width: 38px;
        height: 38px;
        background: rgba(255,255,255,0.1);
        border: none;
        border-radius: 8px;
        color: #fff;
        font-size: 28px;
        line-height: 1;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.2s;
    }

    .nav-close:hover {
        background: rgba(255,255,255,0.18);
    }

    .navmenu li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .navmenu li a {
        padding: 12px 0;
        font-size: 15px;
    }

    .navmenu li a:hover,
    .navmenu li a.active {
        background: none;
        color: rgba(21, 214, 0, 0.95);
    }

    .navmenu .dropdown {
        position: static;
        display: none;
        min-width: 0;
        background: transparent;
        box-shadow: none;
        padding: 0 0 0 16px;
    }

    .navmenu .has-dropdown.open .dropdown {
        display: block;
    }

    .navmenu .dropdown li {
        border-bottom: none;
    }

    .navmenu .dropdown li a {
        padding: 10px 0;
        font-size: 14px;
        color: rgba(255,255,255,0.7);
    }

    .navmenu .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .navmenu .dropdown-toggle .dropdown-arrow {
        transition: transform 0.2s;
    }

    .navmenu .has-dropdown.open .dropdown-toggle .dropdown-arrow {
        transform: rotate(180deg);
    }

    .header { position: relative; }
}

@media (max-width: 600px) {
    .logo img {
        height: 30px;
    }

    .hero h1 { font-size: 26px; }
    .hero { padding: 20px 0 25px; }

    .author-box {
        gap: 10px;
        padding: 8px 12px;
    }

    .author-img img {
        width: 46px;
        height: 46px;
    }

    .author-img .verified-badge {
        width: 18px;
        height: 18px;
    }

    .author-info p {
        font-size: 12px;
    }

    .content-section,
    .comparison-table,
    .reviews-section {
        padding: 5px 0;
    }

    .content-section h2,
    .comparison-table h2,
    .reviews-section h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .content-section h3,
    .comparison-table h3,
    .review-item h3 {
        font-size: 18px;
        margin: 14px 0 8px 0;
    }

    .content-section p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .table-intro,
    .reviews-intro,
    .content-section .section-intro {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .content-section th,
    .comparison-table th,
    .content-section td,
    .comparison-table td {
        padding: 8px 6px;
        font-size: 13px;
        white-space: nowrap;
    }

    .comparison-table table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .review-item {
        margin-bottom: 15px;
    }

    .review-logo {
        margin-bottom: 20px;
        border-radius: 10px;
    }

    .review-logo img {
        max-width: 100%;
    }

    .review-content p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .review-content p:last-of-type {
        margin-bottom: 16px;
    }

    .pros-cons {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pros h4,
    .cons h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .pros li,
    .cons li {
        font-size: 14px;
        padding-left: 22px;
        background-size: 14px 14px;
        background-position: left top 2px;
    }

    .checklist.pros-list li,
    .checklist.cons-list li {
        font-size: 14px;
        padding-left: 22px;
        background-size: 14px 14px;
        background-position: left top 2px;
    }

    .help-links li {
        font-size: 14px;
    }

    .faq-question h3 {
        font-size: 18px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}

/* TOPLIST RESPONSIVE */
@media (max-width: 991px) {
    .toplist-inner {
        grid-template-columns: 145px 1fr;
        grid-template-rows: auto auto auto auto;
        grid-template-areas:
            "logo main"
            "brand main"
            "cta cta"
            "features features";
        gap: 4px 18px;
        padding: 18px 16px;
    }

    .toplist-logo {
        align-self: start;
        gap: 4px;
    }

    .toplist-logo::before {
        top: -8px;
        left: -8px;
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    .toplist-logo img {
        width: 140px;
        height: 70px;
    }

    .toplist-brand {
        grid-area: brand;
        align-self: start;
        text-align: center;
    }

    .toplist-title {
        font-size: 18px;
    }

    .toplist-features {
        margin-top: 8px;
    }

    .toplist-features li {
        font-size: 13px;
        padding-left: 22px;
        background-size: 15px 15px;
        background-position: left top 2px;
    }

    .rating-score {
        font-size: 17px;
    }

    .rating-stars .star {
        width: 16px;
        height: 16px;
    }

    .toplist-cta {
        align-self: start;
        width: 100%;
        height: 52px;
        margin-top: 8px;
        box-shadow:
            0 4px 0 #b59b00,
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }

    .review-item h3 {
        font-size: 18px;
    }

    .review-logo {
        margin-bottom: 25px;
    }
}

@media (max-width: 600px) {
    .toplist {
        padding: 25px 0 10px;
    }

    .toplist-items {
        gap: 10px;
    }

    .toplist-inner {
        grid-template-columns: 145px 1fr;
        padding: 16px 14px;
        gap: 4px 14px;
    }

    .toplist-logo img {
        width: 140px;
        height: 70px;
    }

    .toplist-brand {
        font-size: 10px;
    }

    .toplist-title {
        font-size: 16px;
    }

    .toplist-features li {
        font-size: 12px;
        padding-left: 20px;
        background-size: 14px 14px;
        background-position: left top 1px;
    }

    .rating-score {
        font-size: 15px;
    }

    .rating-stars .star {
        width: 14px;
        height: 14px;
    }

    .toplist-cta {
        height: 48px;
        font-size: 14px;
        gap: 6px;
        box-shadow:
            0 3px 0 #b59b00,
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }

    .toplist-cta img {
        width: 16px;
        height: 16px;
    }
}

/* AUTHOR PAGE */
.author-profile {
    padding: 40px 0;
}

.author-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.author-avatar-wrap {
    position: relative;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.author-avatar-wrap::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    border: 2px dashed var(--accent);
    animation: author-spin 12s linear infinite;
}

@keyframes author-spin {
    to { transform: rotate(360deg); }
}

.author-avatar-wrap img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.author-header h1 {
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.02em;
    margin: 0;
}

.author-details {
    background: transparent;
    border-radius: 10px;
    padding: 28px 30px;
    border: 1px solid #333;
}

.author-details h2 {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.02em;
    margin: 0 0 14px 0;
}

.author-details p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    margin: 0 0 6px 0;
}

.author-bio-label {
    margin-top: 14px !important;
}

@media (max-width: 600px) {
    .author-profile {
        padding: 30px 0;
    }

    .author-header h1 {
        font-size: 22px;
    }

    .author-details {
        padding: 20px 16px;
    }

    .author-details h2 {
        font-size: 18px;
    }

    .author-details p {
        font-size: 14px;
    }
}
