/*
Theme Name: LikeExpert
Theme URI: https://likeexpert.pl
Description: Minimalistyczny, premium motyw w stylu Apple do porownywania serwisow social media.
Version: 1.0.0
Author: LikeExpert
Author URI: https://likeexpert.pl
Text Domain: likeexpert
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* ========================================================================
   RESET & BASE
   ======================================================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #ffffff;
    --red: #e63946;
    --red-hover: #c5303c;
    --light-bg: #f1faee;
    --navy: #1d3557;
    --blue: #a8dadc;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1200px;
    --section-padding: 120px 0;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--navy);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: var(--red);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--red-hover);
}

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* ========================================================================
   CONTAINER
   ======================================================================== */

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

.le-container--narrow {
    max-width: 800px;
}

.le-container--wide {
    max-width: 1400px;
}

/* ========================================================================
   HEADER
   ======================================================================== */

.le-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    height: 72px;
}

.le-header.scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: 0 1px 12px rgba(0,0,0,0.04);
}

.le-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.le-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
}

.le-logo span {
    color: var(--red);
}

.le-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.le-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 0.01em;
    position: relative;
}

.le-nav a:hover {
    color: var(--red);
}

.le-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: var(--transition);
}

.le-nav a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.le-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.le-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: var(--transition);
    border-radius: 2px;
}

.le-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.le-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.le-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.le-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.le-mobile-nav.active {
    display: flex;
}

.le-mobile-nav a {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--navy);
}

.le-mobile-nav a:hover {
    color: var(--red);
}

/* ========================================================================
   HERO SECTION
   ======================================================================== */

.le-hero {
    padding: 200px 0 140px;
    text-align: center;
    background: var(--white);
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.le-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin-bottom: 28px;
    color: var(--navy);
}

.le-hero h1 em {
    font-style: normal;
    color: var(--red);
}

.le-hero p {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
    font-weight: 400;
}

/* Buttons */
.le-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font);
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.le-btn--primary {
    background: var(--red);
    color: var(--white);
}

.le-btn--primary:hover {
    background: var(--red-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.3);
}

.le-btn--outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--gray-300);
}

.le-btn--outline:hover {
    border-color: var(--red);
    color: var(--red);
}

.le-btn--small {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.le-btn--white {
    background: var(--white);
    color: var(--navy);
}

.le-btn--white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* ========================================================================
   SECTIONS
   ======================================================================== */

.le-section {
    padding: var(--section-padding);
}

.le-section--alt {
    background: var(--light-bg);
}

.le-section--navy {
    background: var(--navy);
    color: var(--white);
}

.le-section__header {
    text-align: center;
    margin-bottom: 80px;
}

.le-section__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--red);
    margin-bottom: 16px;
}

.le-section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.le-section__subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 560px;
    margin: 0 auto;
    font-weight: 400;
}

/* ========================================================================
   RANKING LIST
   ======================================================================== */

.le-ranking {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.le-ranking__item {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px 40px;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
}

.le-ranking__item:hover {
    border-color: var(--gray-300);
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.le-ranking__item--top {
    border-color: var(--red);
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
}

.le-ranking__item--top:hover {
    border-color: var(--red);
}

.le-ranking__item--competitor {
    opacity: 0.7;
    border-color: var(--gray-200);
}

.le-ranking__item--competitor:hover {
    opacity: 0.85;
}

.le-ranking__number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-400);
    min-width: 28px;
}

.le-ranking__item--top .le-ranking__number {
    color: var(--red);
}

.le-ranking__score {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--navy);
    min-width: 90px;
}

.le-ranking__item--top .le-ranking__score {
    color: var(--red);
}

.le-ranking__item--competitor .le-ranking__score {
    color: var(--gray-500);
    font-size: 2rem;
}

.le-ranking__info {
    flex: 1;
}

.le-ranking__name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.le-ranking__name a {
    color: var(--navy);
}

.le-ranking__name a:hover {
    color: var(--red);
}

.le-ranking__desc {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.le-ranking__badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 50px;
    background: var(--red);
    color: var(--white);
    margin-left: 8px;
    vertical-align: middle;
}

.le-ranking__badge--warn {
    background: var(--gray-400);
    color: var(--white);
}

.le-ranking__cta {
    flex-shrink: 0;
}

/* ========================================================================
   COMPARISON TABLE
   ======================================================================== */

.le-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    background: var(--white);
}

.le-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.le-table thead {
    background: var(--navy);
    color: var(--white);
}

.le-table thead th {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: left;
    white-space: nowrap;
}

.le-table tbody tr {
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.le-table tbody tr:last-child {
    border-bottom: none;
}

.le-table tbody tr:hover {
    background: var(--gray-100);
}

.le-table tbody tr.le-table__row--highlight {
    background: #fff5f5;
}

.le-table tbody tr.le-table__row--highlight:hover {
    background: #ffecee;
}

.le-table td {
    padding: 18px 24px;
    vertical-align: middle;
}

.le-table .le-check {
    color: var(--red);
    font-weight: 700;
    font-size: 1.1rem;
}

.le-table .le-cross {
    color: var(--gray-400);
    font-size: 1.1rem;
}

.le-table .le-table__name {
    font-weight: 700;
}

.le-table .le-table__score {
    font-weight: 800;
    font-size: 1.1rem;
}

.le-table .le-table__score--high {
    color: var(--red);
}

.le-table .le-table__score--low {
    color: var(--gray-500);
}

/* ========================================================================
   FEATURES
   ======================================================================== */

.le-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.le-feature {
    text-align: center;
    padding: 48px 32px;
}

.le-feature__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--light-bg);
    border-radius: 16px;
}

.le-feature__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.le-feature__text {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========================================================================
   BLOG GRID
   ======================================================================== */

.le-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.le-blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.le-blog-card:hover {
    border-color: var(--gray-300);
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

.le-blog-card__body {
    padding: 32px;
}

.le-blog-card__meta {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 12px;
    font-weight: 500;
}

.le-blog-card__title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.le-blog-card__title a {
    color: var(--navy);
}

.le-blog-card__title a:hover {
    color: var(--red);
}

.le-blog-card__excerpt {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.le-blog-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--red);
}

.le-blog-card__link:hover {
    color: var(--red-hover);
}

/* ========================================================================
   FAQ
   ======================================================================== */

.le-faq {
    max-width: 700px;
    margin: 0 auto;
}

.le-faq__item {
    border-bottom: 1px solid var(--gray-200);
}

.le-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 28px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    transition: var(--transition);
    gap: 16px;
}

.le-faq__question:hover {
    color: var(--red);
}

.le-faq__icon {
    font-size: 1.5rem;
    font-weight: 300;
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--gray-400);
}

.le-faq__item.active .le-faq__icon {
    transform: rotate(45deg);
    color: var(--red);
}

.le-faq__answer {
    display: none;
    padding-bottom: 28px;
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.le-faq__item.active .le-faq__answer {
    display: block;
}

/* ========================================================================
   SERVICE PAGE
   ======================================================================== */

.le-service-hero {
    padding: 160px 0 80px;
    text-align: center;
}

.le-service-hero__score {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 8px;
}

.le-service-hero__score--high {
    color: var(--red);
}

.le-service-hero__score--low {
    color: var(--gray-400);
}

.le-service-hero__label {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 24px;
}

.le-service-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.le-service-hero__rank {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 32px;
}

.le-service-hero__rank--own {
    background: var(--red);
    color: var(--white);
}

.le-service-hero__rank--competitor {
    background: var(--gray-300);
    color: var(--gray-700);
}

/* Pros & Cons */
.le-proscons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.le-proscons__col {
    padding: 40px;
    border-radius: 20px;
}

.le-proscons__col--pros {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.le-proscons__col--cons {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.le-proscons__title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.le-proscons__col--pros .le-proscons__title {
    color: #16a34a;
}

.le-proscons__col--cons .le-proscons__title {
    color: #dc2626;
}

.le-proscons__list li {
    padding: 8px 0;
    font-size: 0.9375rem;
    padding-left: 24px;
    position: relative;
}

.le-proscons__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.le-proscons__col--pros .le-proscons__list li::before {
    background: #16a34a;
}

.le-proscons__col--cons .le-proscons__list li::before {
    background: #dc2626;
}

/* Service Content */
.le-service-content {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--gray-700);
}

.le-service-content h2 {
    font-size: 1.75rem;
    margin: 48px 0 20px;
    color: var(--navy);
}

.le-service-content h3 {
    font-size: 1.35rem;
    margin: 36px 0 16px;
    color: var(--navy);
}

.le-service-content p {
    margin-bottom: 20px;
}

.le-service-content ul,
.le-service-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.le-service-content ul li,
.le-service-content ol li {
    margin-bottom: 8px;
    list-style: disc;
}

.le-service-content ol li {
    list-style: decimal;
}

.le-service-content a {
    color: var(--red);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(230, 57, 70, 0.3);
    text-underline-offset: 3px;
}

.le-service-content a:hover {
    text-decoration-color: var(--red);
}

/* ========================================================================
   BLOG POST
   ======================================================================== */

.le-post {
    padding: 160px 0 80px;
}

.le-post__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.le-post__meta {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 20px;
}

.le-post__title {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.le-post__excerpt {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.le-post__body {
    max-width: 700px;
    margin: 0 auto;
}

.le-post__body .le-service-content {
    max-width: 100%;
}

/* Blog List */
.le-blog-list-hero {
    padding: 160px 0 60px;
    text-align: center;
}

.le-blog-list-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: -0.04em;
}

/* ========================================================================
   CTA SECTION
   ======================================================================== */

.le-cta {
    text-align: center;
    padding: 100px 0;
    background: var(--navy);
    color: var(--white);
}

.le-cta__title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.le-cta__text {
    font-size: 1.1rem;
    color: var(--blue);
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================================================
   FOOTER
   ======================================================================== */

.le-footer {
    padding: 80px 0 40px;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.le-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.le-footer__brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.le-footer__brand span {
    color: var(--red);
}

.le-footer__desc {
    line-height: 1.7;
    max-width: 320px;
}

.le-footer__heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--white);
    margin-bottom: 20px;
}

.le-footer__links li {
    margin-bottom: 10px;
}

.le-footer__links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.le-footer__links a:hover {
    color: var(--white);
}

.le-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
}

/* ========================================================================
   COOKIE BAR
   ======================================================================== */

.le-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
    font-size: 0.875rem;
}

.le-cookie.active {
    display: block;
}

.le-cookie__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.le-cookie__btn {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 10px 28px;
    border-radius: 50px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.le-cookie__btn:hover {
    background: var(--red-hover);
}

/* ========================================================================
   404 / SEARCH
   ======================================================================== */

.le-404,
.le-search-page {
    padding: 200px 0 120px;
    text-align: center;
    min-height: 60vh;
}

.le-404 h1 {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 800;
    color: var(--gray-200);
    letter-spacing: -0.05em;
}

.le-404 p,
.le-search-page p {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin: 20px 0 40px;
}

.le-search-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.le-search-form input[type="search"] {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-family: var(--font);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.le-search-form input[type="search"]:focus {
    border-color: var(--red);
}

/* ========================================================================
   UTILITIES
   ======================================================================== */

.le-text-center { text-align: center; }
.le-text-red { color: var(--red); }
.le-mt-0 { margin-top: 0; }
.le-mb-0 { margin-bottom: 0; }
.le-mt-40 { margin-top: 40px; }
.le-mb-40 { margin-bottom: 40px; }
.le-mt-80 { margin-top: 80px; }
.le-mb-80 { margin-bottom: 80px; }

/* ========================================================================
   RESPONSIVE: 1024px
   ======================================================================== */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    .le-hero {
        padding: 160px 0 100px;
        min-height: auto;
    }

    .le-features {
        gap: 24px;
    }

    .le-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* ========================================================================
   RESPONSIVE: 768px
   ======================================================================== */

@media (max-width: 768px) {
    :root {
        --section-padding: 64px 0;
    }

    .le-nav {
        display: none;
    }

    .le-menu-toggle {
        display: flex;
    }

    .le-hero {
        padding: 140px 0 80px;
    }

    .le-section__header {
        margin-bottom: 48px;
    }

    .le-ranking__item {
        flex-wrap: wrap;
        padding: 24px;
        gap: 16px;
    }

    .le-ranking__score {
        font-size: 2rem;
        min-width: auto;
    }

    .le-ranking__cta {
        width: 100%;
    }

    .le-ranking__cta .le-btn {
        width: 100%;
    }

    .le-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .le-feature {
        padding: 32px 24px;
    }

    .le-blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .le-table-wrap {
        margin: 0 -24px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .le-proscons {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .le-proscons__col {
        padding: 28px;
    }

    .le-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .le-footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .le-service-hero__score {
        font-size: 5rem;
    }

    .le-cookie__inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================================================
   RESPONSIVE: 480px
   ======================================================================== */

@media (max-width: 480px) {
    :root {
        --section-padding: 48px 0;
    }

    .le-container {
        padding: 0 16px;
    }

    .le-hero {
        padding: 120px 0 60px;
    }

    .le-hero h1 {
        font-size: 2.25rem;
    }

    .le-hero p {
        font-size: 1rem;
    }

    .le-btn {
        padding: 14px 32px;
        font-size: 0.9375rem;
    }

    .le-section__title {
        font-size: 1.75rem;
    }

    .le-ranking__item {
        padding: 20px;
    }

    .le-ranking__name {
        font-size: 1.1rem;
    }

    .le-ranking__score {
        font-size: 1.75rem;
    }

    .le-ranking__item--competitor .le-ranking__score {
        font-size: 1.5rem;
    }

    .le-blog-card__body {
        padding: 24px;
    }

    .le-blog-card__title {
        font-size: 1.15rem;
    }

    .le-faq__question {
        font-size: 1rem;
        padding: 20px 0;
    }

    .le-service-hero {
        padding: 120px 0 60px;
    }

    .le-service-hero__score {
        font-size: 4rem;
    }

    .le-post {
        padding: 120px 0 60px;
    }

    .le-post__title {
        font-size: 1.75rem;
    }

    .le-search-form {
        flex-direction: column;
    }
}

/* ========================================================================
   TOUCH & SAFE AREAS
   ======================================================================== */

@supports (padding: env(safe-area-inset-bottom)) {
    .le-footer {
        padding-bottom: calc(40px + env(safe-area-inset-bottom));
    }

    .le-cookie {
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }

    .le-header {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
}

@media (hover: none) and (pointer: coarse) {
    .le-btn {
        min-height: 48px;
    }

    .le-faq__question {
        min-height: 48px;
    }

    .le-nav a {
        padding: 8px 0;
    }

    .le-ranking__item:hover {
        transform: none;
    }

    .le-blog-card:hover {
        transform: none;
    }

    .le-btn--primary:hover {
        transform: none;
    }
}

/* ========================================================================
   PRINT
   ======================================================================== */

@media print {
    .le-header, .le-cookie, .le-footer {
        display: none !important;
    }

    .le-hero {
        padding: 40px 0;
        min-height: auto;
    }

    body {
        color: #000;
    }
}
