/* ===== CSS VARIABLES ===== */
:root {
    --primary: #0f172a;
    --primary-mid: #1e293b;
    --accent: #10b981;
    --accent-light: #d1fae5;
    --accent-dark: #059669;
    --orange: #f59e0b;
    --bg: #f8fafc;
    --bg-card: #ffffff;
    --bg-gray: #f1f5f9;
    --text: #1e293b;
    --text-light: #64748b;
    --border: #e2e8f0;
    --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.08);
    --radius: 16px;
    --radius-sm: 8px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Noto Sans JP', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ===== HEADER ===== */
header {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}
.logo .dot { color: var(--accent); }
.desktop-nav { display: flex; gap: 4px; }
.desktop-nav a {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.desktop-nav a:hover { background: var(--bg); color: var(--text); }
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}
.mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
}
.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 0 24px 16px;
    border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    color: var(--text);
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

/* ===== HERO ===== */
.hero {
    background: var(--primary);
    color: white;
    padding: 72px 24px 56px;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 40px;
    background: var(--bg);
    border-radius: 40px 40px 0 0;
}
.hero-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-block;
    background: rgba(16,185,129,0.15);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}
.hero h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.hero h1 .gradient {
    background: linear-gradient(135deg, var(--accent), #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 32px;
}
.pill-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.pill {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.pill:hover, .pill.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

/* ===== STATS BAR ===== */
.stats-bar {
    max-width: 1200px;
    margin: -20px auto 0;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}
.stats-bar-inner {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 24px;
    gap: 24px;
}
.stat-item { text-align: center; }
.stat-item .number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}
.stat-item .number span { color: var(--accent); font-size: 18px; }
.stat-item .label { font-size: 13px; color: var(--text-light); margin-top: 2px; }

/* ===== SECTION COMMON ===== */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 24px;
}
.bg-gray {
    background: var(--bg-gray);
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}
.bg-gray > .section-header,
.bg-gray > .store-grid,
.bg-gray > .area-ranking-block,
.bg-gray > .compare-grid,
.bg-gray > .articles-grid {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 8px;
}
.section-header h2 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.section-sub {
    color: var(--text-light);
    font-size: 14px;
}
.view-all {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
}
.view-all:hover { text-decoration: underline; }

/* ===== AREA GRID (Top Page) ===== */
.area-grid-full {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.area-card-h {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.2s;
    color: inherit;
}
.area-card-h:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
    transform: translateX(4px);
}
.area-card-icon {
    font-size: 28px;
    width: 48px;
    height: 48px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.area-card-text { flex: 1; }
.area-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2px;
}
.area-card-top h3 { font-size: 17px; font-weight: 700; }
.area-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.area-badge.our { background: var(--accent); color: white; }
.area-card-text p { font-size: 13px; color: var(--text-light); margin-bottom: 4px; }
.area-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-light);
}
.area-meta strong { color: var(--accent-dark); font-weight: 700; }
.area-arrow {
    font-size: 20px;
    color: var(--text-light);
    flex-shrink: 0;
}

/* ===== AREA PHOTO GRID ===== */
.area-photo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.area-photo-card {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}
.area-photo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(15,23,42,0.8) 0%,
        rgba(15,23,42,0.3) 40%,
        rgba(0,0,0,0.05) 100%);
    transition: all 0.3s ease;
    pointer-events: none;
}
.area-photo-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-lg);
}
.area-photo-card:hover::before {
    background: linear-gradient(to top,
        rgba(16,185,129,0.85) 0%,
        rgba(16,185,129,0.3) 50%,
        rgba(0,0,0,0.05) 100%);
}
.area-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.area-photo-overlay h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
    line-height: 1.3;
}
.area-photo-overlay p {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 8px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    line-height: 1.4;
}
.area-photo-meta {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: rgba(255,255,255,0.9);
}
.area-photo-meta strong {
    color: var(--accent);
    font-weight: 700;
}

/* ===== AREA RANKING BLOCK ===== */
.area-ranking-block {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 24px;
}
.area-ranking-block:last-child { margin-bottom: 0; }
.area-ranking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.area-ranking-header h3 {
    font-size: 20px;
    font-weight: 700;
}

/* ===== STORE CARDS ===== */
.store-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.store-card {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 24px;
    display: flex;
    gap: 16px;
    transition: all 0.2s;
    position: relative;
    flex-direction: column;
}
.store-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.store-card.recommended {
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, #f0fdf4, #fff);
}
.store-card.recommended::before {
    content: 'おすすめ';
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 6px;
}
.store-rank {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}
.store-rank.gold { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.store-body { flex: 1; }
.store-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.store-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.store-meta span {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}
.store-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.store-tag {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: 600;
}
.store-tag.green { background: var(--accent-light); color: var(--accent-dark); }
.store-tag.gray { background: #f1f5f9; color: var(--text-light); }
.store-tag.yellow { background: #fef3c7; color: #92400e; }
.store-address { font-size: 12px; color: var(--text-light); margin-bottom: 6px; display: flex; align-items: center; gap: 4px; }
.store-address a { color: var(--text-light); text-decoration: none; transition: color 0.2s; }
.store-address a:hover { color: var(--accent); }
.store-map-link { display: inline-flex; align-items: center; gap: 3px; font-size: 11px; color: var(--accent-dark); background: var(--accent-light); padding: 2px 8px; border-radius: 4px; text-decoration: none; font-weight: 600; margin-left: 4px; transition: all 0.2s; white-space: nowrap; }
.store-map-link:hover { background: var(--accent); color: white; }
.store-desc { font-size: 13px; color: var(--text-light); margin-bottom: 12px; line-height: 1.6; }
.store-pricing {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.price-box {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    flex: 1;
    min-width: 140px;
}
.price-box .price-label {
    font-size: 10px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.price-box .price-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.3;
}
.price-box .price-value small {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-light);
}
.price-box .price-note {
    font-size: 10px;
    color: var(--text-light);
    margin-top: 1px;
}
.price-ref {
    font-size: 10px;
    color: var(--text-light);
    margin-bottom: 8px;
}
.store-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: auto;
    gap: 8px;
}
.store-price { font-size: 20px; font-weight: 800; display: none; }
.store-price small { font-size: 12px; font-weight: 500; color: var(--text-light); }
.store-cta {
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s;
    white-space: nowrap;
}
.store-cta.primary { background: var(--accent); color: white; }
.store-cta.primary:hover { background: var(--accent-dark); transform: scale(1.03); }
.store-cta.outline { background: white; color: var(--text); border: 1px solid var(--border); }
.store-cta.outline:hover { border-color: var(--text); }

/* ===== STORE LIST (Area Page) ===== */
.store-list { display: flex; flex-direction: column; gap: 16px; }
.store-list-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: grid;
    grid-template-columns: 48px 120px 1fr 180px;
    gap: 20px;
    align-items: start;
    transition: all 0.2s;
    position: relative;
}
.store-list-item:hover { box-shadow: var(--shadow-lg); border-color: transparent; }
.store-list-item.recommended {
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, #f0fdf4, #fff);
}
.store-list-item.recommended::before {
    content: 'おすすめ';
    position: absolute;
    top: -10px;
    left: 24px;
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 6px;
}
.store-list-item .store-rank { margin-top: 4px; }
.store-thumb {
    width: 120px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}
.store-thumb a {
    display: block;
    width: 100%;
    height: 100%;
}
.store-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
    transition: transform 0.2s;
}
.store-thumb img:hover {
    transform: scale(1.05);
}
.list-price-col { text-align: right; }
.list-price-col .store-price { margin-bottom: 8px; }

/* ===== COMPARISON ===== */
.compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.compare-card {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.2s;
}
.compare-card:hover { box-shadow: var(--shadow-lg); }
.compare-card.highlight {
    border: 2px solid var(--accent);
    position: relative;
}
.compare-card.highlight::after {
    content: 'BEST CHOICE';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    color: white;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    padding: 4px;
    letter-spacing: 1px;
}
.compare-head {
    padding: 32px 20px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.compare-card.highlight .compare-head { padding-top: 44px; }
.compare-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 4px;
}
.compare-head h3 { font-size: 18px; margin-bottom: 8px; }
.compare-head .price { font-size: 28px; font-weight: 800; color: var(--primary); }
.compare-head .price small { font-size: 14px; font-weight: 500; color: var(--text-light); }
.compare-features { padding: 20px; list-style: none; }
.compare-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.compare-features li:last-child { border-bottom: none; }
.icon-yes { color: var(--accent); font-weight: 700; }
.icon-no { color: #cbd5e1; }
.compare-cta { padding: 0 20px 20px; }
.compare-cta a {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s;
}
.compare-card.highlight .compare-cta a { background: var(--accent); color: white; }
.compare-card:not(.highlight) .compare-cta a { background: #f1f5f9; color: var(--text); }
.compare-cta a:hover { opacity: 0.85; transform: scale(1.02); }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #1e3a5f 100%);
    border-radius: var(--radius);
    padding: 48px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}
.cta-banner h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.cta-banner p { font-size: 15px; opacity: 0.7; }
.cta-banner-btn {
    background: var(--accent);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
    transition: all 0.2s;
}
.cta-banner-btn:hover { background: var(--accent-dark); }

/* ===== ARTICLES ===== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.article-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    color: inherit;
    transition: all 0.2s;
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.article-thumb {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
}
.article-body { padding: 16px; }
.article-body .category {
    font-size: 11px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.article-body h3 { font-size: 14px; margin: 6px 0; line-height: 1.5; }
.article-body .date { font-size: 12px; color: var(--text-light); }

/* ===== GUIDE ===== */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.guide-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: all 0.2s;
}
.guide-card:hover { box-shadow: var(--shadow-lg); }
.guide-icon {
    font-size: 32px;
    margin-bottom: 12px;
}
.guide-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.guide-card p { font-size: 13px; color: var(--text-light); }

/* ===== COMPARISON TABLE (Area Pages) ===== */
.comparison-table-wrap { overflow-x: auto; margin: 32px 0; }
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    font-size: 14px;
    min-width: 700px;
}
.comparison-table th {
    background: var(--primary);
    color: white;
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}
.comparison-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}
.comparison-table tr:hover { background: #fafafa; }
.comparison-table .highlight-row {
    background: #f0fdf4;
    font-weight: 600;
}
.comparison-table .highlight-row:hover { background: #dcfce7; }
.check { color: var(--accent); font-weight: 700; }
.cross { color: #cbd5e1; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    font-size: 13px;
    color: var(--text-light);
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--accent); }

/* ===== AREA HERO ===== */
.area-hero {
    background: var(--primary);
    color: white;
    padding: 48px 24px 40px;
    position: relative;
}
.area-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    height: 24px;
    background: var(--bg);
    border-radius: 24px 24px 0 0;
}
.area-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.area-hero h1 { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.area-hero p { font-size: 16px; color: rgba(255,255,255,0.65); }
.area-hero .hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 16px;
}
.area-hero .hero-stat {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}
.area-hero .hero-stat strong { color: var(--accent); }

/* ===== FOOTER ===== */
footer {
    background: var(--primary);
    color: rgba(255,255,255,0.6);
    padding: 48px 24px 24px;
    margin-top: 0;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 32px;
}
.footer-brand p { font-size: 13px; margin-top: 12px; line-height: 1.8; }
footer h4 {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
footer ul { list-style: none; }
footer li { margin-bottom: 6px; }
footer ul a { color: rgba(255,255,255,0.45); font-size: 13px; }
footer ul a:hover { color: var(--accent); }
.footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 8px;
}
.affiliate-note { opacity: 0.5; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .area-photo-grid { grid-template-columns: repeat(3, 1fr); }
    .store-grid { grid-template-columns: repeat(2, 1fr); }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
    .area-photo-grid { grid-template-columns: repeat(2, 1fr); }
    .area-photo-overlay h3 { font-size: 15px; }
    .area-photo-overlay p { font-size: 11px; }
    .area-photo-overlay { padding: 14px; }
    .desktop-nav { display: none; }
    .mobile-menu-btn { display: flex; }

    .hero h1 { font-size: 28px; }
    .hero p { font-size: 15px; }
    .pill-tabs { gap: 6px; }
    .pill { padding: 8px 16px; font-size: 13px; }

    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 20px; }
    .stat-item .number { font-size: 24px; }

    .store-grid { grid-template-columns: 1fr; }
    .store-list-item { grid-template-columns: 36px 80px 1fr; }
    .store-thumb { width: 80px; height: 60px; }
    .list-price-col { grid-column: 1 / -1; text-align: left; display: flex; align-items: center; gap: 16px; }

    .compare-grid { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: 1fr; }
    .guide-grid { grid-template-columns: repeat(2, 1fr); }

    .cta-banner { flex-direction: column; text-align: center; gap: 20px; padding: 32px 24px; }
    .cta-banner h3 { font-size: 20px; }

    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; }

    .area-hero h1 { font-size: 24px; }
    .area-hero .hero-stats { flex-wrap: wrap; gap: 12px; }

    .section { padding: 40px 16px; }
    .area-ranking-block { padding: 0 16px; }
}

@media (max-width: 480px) {
    .area-photo-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .area-photo-overlay h3 { font-size: 14px; }
    .area-photo-overlay p { display: none; }
    .area-photo-meta { font-size: 10px; }
    .guide-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
}


/* === FAQ SECTION === */
.faq-section .faq-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}
.faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
    overflow: hidden;
}
.faq-item[open] {
    border-color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.08);
}
.faq-q {
    padding: 18px 24px 18px 56px;
    font-size: 15px;
    font-weight: 600;
    color: #0f3d2a;
    cursor: pointer;
    position: relative;
    list-style: none;
    line-height: 1.5;
}
.faq-q::-webkit-details-marker {
    display: none;
}
.faq-q::before {
    content: "Q";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background: #10b981;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}
.faq-q::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: #10b981;
    transition: transform 0.2s ease;
}
.faq-item[open] .faq-q::after {
    content: "−";
}
.faq-a {
    padding: 4px 24px 20px 56px;
    font-size: 14px;
    line-height: 1.75;
    color: #334155;
    position: relative;
}
.faq-a::before {
    content: "A";
    position: absolute;
    left: 20px;
    top: 4px;
    width: 26px;
    height: 26px;
    background: #e2e8f0;
    color: #475569;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}
@media (max-width: 600px) {
    .faq-q, .faq-a {
        padding-left: 48px;
        font-size: 14px;
    }
    .faq-q::before, .faq-a::before {
        left: 12px;
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    .faq-q::after {
        right: 16px;
    }
}
