:root {
    --theme: #fd9206;
    --theme-dark: #bd5f00;
    --theme-deep: #6a3000;
    --theme-light: #fff8ed;
    --theme-soft: #ffead0;
    --theme-accent: #ffc15a;
    --theme-hover: #d87300;
    --theme-border: rgba(189, 95, 0, .22);
    --header-bg: #663000;
    --header-bg-2: #974800;
    --text-main: #3e2b19;
    --text-muted: #735e47;
    --on-theme: #2d1700;
    --on-header: #ffffff;
    --on-dark: #fff8ef;
    --white: #ffffff;
    --shadow-soft: 0 18px 44px rgba(125, 58, 0, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; overflow-x: hidden; overflow-y: auto; }
body {
    background: var(--theme-light);
    color: var(--text-main);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: var(--theme-dark); }
img { max-width: 100%; }
button, input, textarea, select { font: inherit; }

.container,
.section-inner,
.header-inner,
.footer-inner,
.hero-inner {
    width: min(1280px, calc(100% - 80px));
    margin-left: auto;
    margin-right: auto;
}

.section { position: relative; padding: 76px 0; }
.content-section { background: var(--white); }
.soft-section { background: linear-gradient(180deg, var(--theme-light) 0%, var(--theme-soft) 100%); }
.section-heading { max-width: 820px; margin-bottom: 34px; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading.compact-heading { margin-bottom: 24px; }
.section-heading h2,
.split-main h2,
.notice h2,
.compliance-box h2,
.topic-summary h2 {
    margin: 8px 0 16px;
    color: var(--theme-dark);
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.16;
    letter-spacing: -.02em;
}
.section-heading p { margin: 0; color: var(--text-muted); font-size: 18px; }
.eyebrow,
.hero-badge {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--theme-soft);
    color: var(--theme-dark);
    border: 1px solid var(--theme-border);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: linear-gradient(180deg, var(--header-bg) 0%, var(--header-bg-2) 100%);
    color: var(--on-header);
    box-shadow: var(--shadow-soft);
    border-bottom: 1px solid rgba(255,255,255,.18);
    overflow: visible;
}
.header-inner {
    min-height: 82px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    overflow: visible;
}
.site-logo,
.drawer-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}
.site-logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: 190px;
    max-height: 72px;
    object-fit: contain;
}
.main-nav { display: flex; justify-content: center; align-items: center; gap: 18px; }
.main-nav a {
    position: relative;
    color: var(--on-header);
    text-decoration: none;
    white-space: nowrap;
    padding: 28px 0 25px;
    font-size: 14px;
    font-weight: 700;
}
.main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 15px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--theme-accent);
    transform: translateX(-50%);
    transition: width .22s ease;
}
.main-nav a.active::after,
.main-nav a:hover::after { width: 100%; }
.main-nav a.active,
.main-nav a:hover { color: #fff1d2; }
.header-actions { display: flex; justify-content: flex-end; align-items: center; }
.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 22px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--theme-accent) 0%, var(--theme) 48%, var(--theme-dark) 100%);
    color: var(--on-theme);
    box-shadow: 0 13px 28px rgba(75, 34, 0, .28);
    text-decoration: none;
    white-space: nowrap;
    font-weight: 900;
    letter-spacing: .02em;
    transition: transform .2s ease, filter .2s ease;
}
.main-btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.mobile-menu-toggle { display: none; }
.mobile-drawer,
.drawer-overlay { display: none; }


.section.banner-section {
    padding: 34px 0 24px;
    background:
        radial-gradient(circle at 12% 18%, rgba(253,146,6,.15) 0%, transparent 34%),
        linear-gradient(180deg, var(--theme-light) 0%, var(--white) 100%);
}
.banner-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--theme-border);
    border-radius: 28px;
    background: var(--theme-soft);
    box-shadow: var(--shadow-soft);
}
.banner-slide { display: none; width: 100%; }
.banner-slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.banner-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0 0 4px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 50%;
    background: rgba(82,38,0,.72);
    color: #fff;
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .2s ease, transform .2s ease;
}
.banner-arrow:hover { background: var(--theme-dark); transform: translateY(-50%) scale(1.04); }
.banner-prev { left: 18px; }
.banner-next { right: 18px; }
.banner-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    z-index: 3;
    display: flex;
    gap: 9px;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(68,31,0,.48);
    transform: translateX(-50%);
}
.banner-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.78);
    border-radius: 50%;
    background: rgba(255,255,255,.38);
    cursor: pointer;
}
.banner-dots button.active { width: 28px; border-radius: 999px; background: var(--theme-accent); }

.section.intro-section { padding: 28px 0 34px; background: var(--white); }
.intro-card {
    padding: 34px;
    border: 1px solid var(--theme-border);
    border-radius: 28px;
    background: linear-gradient(135deg, var(--white) 0%, var(--theme-soft) 100%);
    box-shadow: var(--shadow-soft);
}
.intro-copy { display: grid; grid-template-columns: minmax(260px,.75fr) minmax(0,1.25fr); gap: 34px; align-items: start; }
.intro-copy h2 { margin: 12px 0 0; color: var(--theme-dark); font-size: clamp(28px, 3vw, 42px); line-height: 1.18; }
.intro-copy p { margin: 0; color: var(--text-main); font-size: 17px; line-height: 1.82; }
.intro-points { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 20px; }
.intro-points span {
    display: inline-flex;
    padding: 8px 13px;
    border: 1px solid var(--theme-border);
    border-radius: 999px;
    background: var(--white);
    color: var(--theme-dark);
    font-weight: 800;
}
.intro-card .category-pills { justify-content: flex-start; padding-top: 20px; border-top: 1px solid var(--theme-border); }
.section.headline-section { padding: 60px 0 70px; background: var(--white); }
.headline-inner { max-width: 1060px; text-align: center; }
.headline-inner .eyebrow { margin-left: auto; margin-right: auto; }
.headline-inner h1 {
    margin: 18px auto 22px;
    max-width: 1000px;
    color: var(--theme-dark);
    font-size: clamp(40px, 4.4vw, 64px);
    line-height: 1.08;
    letter-spacing: -.035em;
}
.headline-inner p { max-width: 920px; margin: 0 auto; color: var(--text-main); font-size: 18px; line-height: 1.84; }

.hero-section,
.page-hero {
    padding: 64px 0 48px;
    background:
        radial-gradient(circle at 10% 18%, rgba(253,146,6,.17) 0%, transparent 32%),
        radial-gradient(circle at 86% 20%, rgba(255,193,90,.20) 0%, transparent 28%),
        linear-gradient(180deg, var(--theme-light) 0%, var(--white) 100%);
}
.hero-inner,
.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    align-items: center;
    gap: 56px;
}
.hero-content h1,
.page-hero-copy h1 {
    max-width: 900px;
    margin: 16px 0 22px;
    color: var(--theme-dark);
    font-size: clamp(42px, 4.2vw, 64px);
    line-height: 1.08;
    letter-spacing: -.035em;
}
.hero-content > p,
.page-lead {
    max-width: 780px;
    margin: 0 0 28px;
    color: var(--text-main);
    font-size: 18px;
    line-height: 1.82;
}
.hero-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-tags span,
.category-pills a,
.related-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px 16px;
    background: var(--white);
    color: var(--theme-dark);
    border: 1px solid var(--theme-border);
    font-weight: 800;
    text-decoration: none;
}
.hero-visual,
.page-visual,
.media-box,
.app-visual,
.card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}
.hero-media-box,
.visual-card {
    width: 100%;
    max-width: 540px;
    min-height: 320px;
    max-height: 420px;
    padding: 34px;
    border-radius: 32px;
    background: linear-gradient(180deg, var(--white) 0%, var(--theme-soft) 100%);
    border: 1px solid var(--theme-border);
    box-shadow: var(--shadow-soft);
}
.hero-media-box img,
.visual-card img,
.media-box img,
.app-visual img,
.card-media img {
    display: block;
    max-width: 100%;
    max-height: 340px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
}
.page-visual { justify-self: end; }
.page-visual .media-box { width: 100%; min-height: 250px; }
.topic-summary { display: flex; flex-direction: column; justify-content: center; }
.summary-number {
    display: inline-flex;
    width: 74px;
    height: 74px;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(180deg, var(--theme-accent), var(--theme-dark));
    color: var(--on-theme);
    font-size: 23px;
    font-weight: 900;
}
.topic-summary h2 { font-size: 34px; }
.topic-summary p { color: var(--text-muted); }

.info-section { padding: 30px 0 54px; background: var(--white); }
.info-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.info-card,
.topic-card,
.category-card,
.feature-card,
.feedback-card,
.faq-item,
.notice,
.news-card,
.service-card,
.content-wall-card {
    position: relative;
    background: var(--white);
    color: var(--text-main);
    border: 1px solid var(--theme-border);
    box-shadow: var(--shadow-soft);
    border-radius: 24px;
    min-height: auto;
    height: auto;
    padding: 28px;
}
.info-card::before,
.topic-card::before,
.category-card::before,
.feature-card::before,
.service-card::before,
.content-wall-card::before {
    content: "";
    display: block;
    width: 54px;
    height: 4px;
    border-radius: 999px;
    margin-bottom: 16px;
    background: linear-gradient(90deg, var(--theme), var(--theme-accent));
}
.info-card span,
.card-number { color: var(--theme); font-weight: 900; letter-spacing: .08em; }
.info-card h2,
.topic-card h3,
.category-card h3,
.feature-card h3,
.service-card h3,
.news-card h3,
.content-wall-card h3 {
    color: var(--theme-dark);
    margin: 10px 0 12px;
    line-height: 1.28;
}
.info-card h2 { font-size: 22px; }
.info-card p,
.topic-card p,
.category-card p,
.feature-card p,
.service-card p,
.news-card p,
.content-wall-card p { color: var(--text-muted); margin: 0; }

.category-section { padding: 28px 0 56px; background: var(--white); }
.category-pills,
.related-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.category-pills a:hover,
.related-links a:hover {
    background: linear-gradient(180deg, var(--theme-accent), var(--theme));
    color: var(--on-theme);
}
.category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.category-card { display: flex; flex-direction: column; }
.category-card a,
.news-card a,
.content-wall-card a {
    display: inline-flex;
    width: max-content;
    margin-top: auto;
    padding-top: 18px;
    color: var(--theme-dark);
    font-weight: 900;
    text-decoration: none;
}

.feature-grid,
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.alternating-stack { display: grid; gap: 34px; }
.alternating-row,
.app-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr);
    align-items: center;
    gap: 46px;
    padding: 36px;
    border-radius: 30px;
    background: var(--white);
    border: 1px solid var(--theme-border);
    box-shadow: var(--shadow-soft);
}
.alternating-row.reverse .row-media { order: 2; }
.row-copy h2,
.app-copy h2 { color: var(--theme-dark); font-size: clamp(30px, 3vw, 44px); line-height: 1.16; margin: 10px 0 18px; }
.row-copy p,
.app-copy p { color: var(--text-muted); }
.row-media {
    min-height: 300px;
    padding: 28px;
    border-radius: 26px;
    background: var(--theme-soft);
    border: 1px solid var(--theme-border);
    display: flex;
    align-items: center;
    justify-content: center;
}
.row-media img { max-height: 280px; width: auto; height: auto; object-fit: contain; }
.check-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 28px; color: var(--text-main); }
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--theme);
    font-weight: 900;
}
.news-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.content-wall { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.feedback-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.feedback-card { margin: 0; }
.feedback-card p { margin: 0; color: var(--text-main); font-style: italic; }

.prose-block { max-width: 1280px; }
.prose-columns { columns: 2; column-gap: 46px; }
.prose-columns p { margin: 0 0 20px; color: var(--text-main); break-inside: avoid; }
.topic-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.topic-card { min-height: 250px; }
.split-content { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: 42px; align-items: start; }
.split-main p { color: var(--text-main); margin: 0 0 20px; }
.advice-panel { background: linear-gradient(180deg, var(--theme-soft) 0%, var(--white) 100%); position: sticky; top: 112px; }
.advice-panel h2 { font-size: 28px; }
.faq-list { max-width: 980px; margin: 0 auto; display: grid; gap: 16px; }
.faq-item { padding: 0; overflow: visible; }
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 22px 60px 22px 24px;
    color: var(--theme-dark);
    font-weight: 900;
    position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--theme);
    font-size: 25px;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 0; padding: 0 24px 24px; color: var(--text-muted); }
.related-section { padding: 54px 0; background: var(--white); }
.compliance-section { padding: 50px 0 76px; background: var(--theme-light); }
.compliance-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 26px;
    align-items: center;
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--theme-deep), var(--theme-dark));
    color: var(--on-dark);
    box-shadow: var(--shadow-soft);
}
.compliance-box .eyebrow { background: rgba(255,255,255,.12); color: var(--on-dark); border-color: rgba(255,255,255,.22); }
.compliance-box h2 { color: var(--on-dark); font-size: 34px; }
.compliance-box p { margin: 0; color: rgba(255,255,255,.88); }
.compliance-mark {
    width: 88px;
    height: 88px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-accent);
    color: var(--on-theme);
    font-size: 28px;
    font-weight: 900;
}

.footer {
    background: linear-gradient(180deg, var(--theme-dark) 0%, var(--theme-deep) 100%);
    color: var(--on-dark);
    padding: 64px 0 26px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 42px; }
.footer-logo img { display: block; max-width: 190px; max-height: 70px; width: auto; height: auto; object-fit: contain; }
.footer-brand p { color: rgba(255,255,255,.78); max-width: 440px; }
.footer-column { display: flex; flex-direction: column; gap: 10px; }
.footer-column h2 { font-size: 17px; margin: 0 0 8px; color: #fff1d2; }
.footer a { color: var(--on-dark); text-decoration: none; }
.footer a:hover { color: #fff1d2; }
.footer-notice { margin-top: 42px; padding: 26px 0; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.footer-notice strong { color: #fff1d2; }
.footer-notice p { margin: 8px 0 0; color: rgba(255,255,255,.76); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; color: rgba(255,255,255,.72); font-size: 14px; }

@media (min-width: 1440px) {
    .container,
    .section-inner,
    .header-inner,
    .footer-inner,
    .hero-inner { width: min(1360px, calc(100% - 120px)); }
    .hero-inner,
    .page-hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(440px, .95fr); gap: 74px; }
}

@media (max-width: 1180px) {
    .main-nav { gap: 12px; }
    .main-nav a { font-size: 13px; }
    .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1023px) {
    .section.banner-section { padding: 24px 0 18px; }
    .banner-carousel { border-radius: 20px; }
    .banner-arrow { width: 42px; height: 42px; font-size: 32px; }
    .banner-prev { left: 10px; }
    .banner-next { right: 10px; }
    .intro-copy { grid-template-columns: 1fr; gap: 18px; }
    .intro-card { padding: 26px; }
    .section.headline-section { padding: 46px 0 54px; }

    .header-inner {
        width: min(100% - 28px, 1280px);
        min-height: 68px;
        display: grid;
        grid-template-columns: 48px minmax(0, 1fr) auto;
        gap: 10px;
    }
    .mobile-menu-toggle {
        display: inline-flex;
        width: 44px;
        height: 44px;
        border: 1px solid rgba(255,255,255,.25);
        border-radius: 13px;
        background: rgba(255,255,255,.1);
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        padding: 0;
        cursor: pointer;
    }
    .mobile-menu-toggle span { display: block; width: 20px; height: 2px; background: var(--on-header); border-radius: 99px; }
    .main-nav { display: none; }
    .site-logo { justify-self: center; }
    .site-logo img { max-width: min(150px, 42vw); max-height: 56px; }
    .header-actions { justify-self: end; }
    .header-actions .main-btn { padding: 10px 16px; font-size: 13px; }
    .mobile-drawer {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 82%;
        max-width: 320px;
        height: 100vh;
        transform: translateX(-100%);
        transition: transform .28s ease;
        z-index: 10001;
        background: linear-gradient(180deg, var(--header-bg), var(--header-bg-2));
        color: var(--on-header);
        padding: 22px;
        overflow-y: auto;
        box-shadow: 18px 0 42px rgba(43,5,8,.28);
    }
    .mobile-drawer.is-open { transform: translateX(0); }
    .drawer-overlay {
        display: block;
        position: fixed;
        inset: 0;
        opacity: 0;
        visibility: hidden;
        z-index: 10000;
        background: rgba(42, 8, 11, .58);
        transition: opacity .28s ease, visibility .28s ease;
    }
    .drawer-overlay.is-open { opacity: 1; visibility: visible; }
    .drawer-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.17); }
    .drawer-logo img { max-width: 150px; max-height: 58px; object-fit: contain; }
    .drawer-close { width: 42px; height: 42px; border-radius: 13px; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.1); color: var(--on-header); font-size: 28px; cursor: pointer; }
    .drawer-nav { display: grid; gap: 6px; padding-top: 18px; }
    .drawer-nav a { color: var(--on-header); text-decoration: none; padding: 11px 12px; border-radius: 12px; font-weight: 700; }
    .drawer-nav a.active,
    .drawer-nav a:hover { background: rgba(255,255,255,.13); color: #fff1d2; }
    .hero-section,
    .page-hero { padding: 48px 0 36px; }
    .hero-inner,
    .page-hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-content h1,
    .page-hero-copy h1 { font-size: clamp(36px, 8vw, 52px); }
    .hero-media-box,
    .visual-card { max-width: 100%; min-height: 280px; padding: 24px; justify-self: stretch; }
    .hero-media-box img,
    .visual-card img { max-height: 300px; }
    .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .feature-grid,
    .service-grid,
    .topic-grid,
    .content-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .alternating-row,
    .app-panel,
    .split-content { grid-template-columns: 1fr; }
    .alternating-row.reverse .row-media { order: 0; }
    .advice-panel { position: static; }
    .prose-columns { columns: 1; }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
    .banner-arrow { width: 36px; height: 36px; font-size: 28px; }
    .banner-dots { bottom: 8px; padding: 6px 9px; }
    .banner-dots button { width: 8px; height: 8px; }
    .banner-dots button.active { width: 22px; }
    .intro-card { padding: 22px; border-radius: 22px; }
    .intro-copy h2 { font-size: 30px; }
    .headline-inner h1 { font-size: clamp(34px, 10vw, 46px); }

    .container,
    .section-inner,
    .header-inner,
    .footer-inner,
    .hero-inner { width: min(100% - 32px, 1280px); }
    .section { padding: 56px 0; }
    .section.banner-section { padding: 20px 0 16px; }
    .section.intro-section { padding: 18px 0 24px; }
    .section.headline-section { padding: 40px 0 48px; }
    .hero-section,
    .page-hero { padding: 38px 0 32px; }
    .hero-content h1,
    .page-hero-copy h1 { font-size: clamp(34px, 10vw, 46px); }
    .hero-content > p,
    .page-lead { font-size: 17px; }
    .info-grid,
    .category-grid,
    .feature-grid,
    .service-grid,
    .topic-grid,
    .feedback-grid,
    .news-grid,
    .content-wall { grid-template-columns: 1fr; }
    .info-card,
    .topic-card,
    .category-card,
    .feature-card,
    .feedback-card,
    .faq-item,
    .notice,
    .news-card,
    .service-card,
    .content-wall-card { padding: 24px; }
    .alternating-row,
    .app-panel { padding: 24px; gap: 28px; }
    .row-media { min-height: 220px; }
    .compliance-box { grid-template-columns: 1fr; padding: 26px; }
    .compliance-mark { width: 72px; height: 72px; border-radius: 22px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
}

@media (max-width: 390px) {
    .header-inner { width: min(100% - 20px, 1280px); grid-template-columns: 44px minmax(0, 1fr) auto; gap: 8px; }
    .site-logo img { max-width: min(116px, 34vw); max-height: 46px; }
    .header-actions .main-btn { padding: 8px 10px; min-height: 38px; font-size: 12px; }
    .hero-media-box,
    .visual-card { min-height: 220px; }
}
