:root {
    --theme: #78e02c;
    --theme-dark: #347f15;
    --theme-deep: #123d0a;
    --theme-light: #f4fbe9;
    --theme-soft: #e5f7d7;
    --theme-accent: #a8f16f;
    --theme-hover: #59b91f;
    --theme-border: rgba(61, 132, 24, 0.28);
    --header-bg: #173f18;
    --header-bg-2: #245f1d;
    --text-main: #20331d;
    --text-muted: #56684f;
    --on-theme: #10220a;
    --on-header: #f7ffef;
    --on-dark: #f5ffed;
    --white: #ffffff;
    --shadow-soft: 0 18px 44px rgba(43, 105, 18, 0.13);
}

*,
*::before,
*::after {
    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.65;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
}

a {
    color: var(--theme-dark);
    text-underline-offset: 3px;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--theme-accent);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 11000;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--theme-deep);
    color: var(--on-dark);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.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;
}

.section-tint {
    background: linear-gradient(180deg, rgba(229, 247, 215, 0.72), rgba(244, 251, 233, 0.92));
}

.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: 0 12px 34px rgba(12, 45, 8, 0.24);
    border-bottom: 1px solid rgba(168, 241, 111, 0.24);
    overflow: visible;
}

.header-inner {
    min-height: 82px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    overflow: visible;
}

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    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: 20px;
}

.main-nav a {
    position: relative;
    padding: 28px 0 25px;
    color: var(--on-header);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 16px;
    height: 3px;
    border-radius: 999px;
    background: var(--theme-accent);
    transition: left .2s ease, right .2s ease;
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--theme-accent);
}

.main-nav a.active::after,
.main-nav a:hover::after {
    left: 0;
    right: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    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 12px 24px rgba(4, 31, 3, 0.24);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .2s ease, filter .2s ease;
}

.main-btn:hover {
    background: linear-gradient(180deg, var(--theme-accent) 0%, var(--theme-hover) 100%);
    color: var(--on-theme);
    filter: saturate(1.12) brightness(1.04);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    color: var(--on-header);
}

.mobile-menu-toggle span {
    width: 21px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 82%;
    max-width: 320px;
    height: 100vh;
    transform: translateX(-100%);
    transition: transform .28s ease;
    z-index: 10001;
    overflow-y: auto;
    background: linear-gradient(180deg, var(--header-bg) 0%, var(--theme-deep) 100%);
    color: var(--on-header);
    box-shadow: 18px 0 50px rgba(0, 0, 0, .28);
}

.mobile-drawer.is-open {
    transform: translateX(0);
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 10000;
    background: rgba(7, 24, 6, .62);
    transition: opacity .28s ease, visibility .28s ease;
}

.drawer-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.drawer-head {
    min-height: 80px;
    padding: 14px 16px 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.drawer-head img {
    display: block;
    width: auto;
    height: auto;
    max-width: 150px;
    max-height: 52px;
    object-fit: contain;
}

.drawer-close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, .1);
    color: var(--on-header);
    font-size: 30px;
    line-height: 1;
}

.drawer-nav {
    display: grid;
    padding: 14px;
}

.drawer-nav a {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    color: var(--on-header);
    font-weight: 700;
    text-decoration: none;
}

.drawer-nav a.active,
.drawer-nav a:hover {
    background: rgba(168, 241, 111, .14);
    color: var(--theme-accent);
}

.hero-section {
    min-height: 570px;
    padding: 70px 0 48px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 15% 20%, rgba(120, 224, 44, .22) 0%, transparent 34%),
        radial-gradient(circle at 86% 28%, rgba(52, 127, 21, .14) 0%, transparent 28%),
        linear-gradient(180deg, var(--theme-light) 0%, var(--white) 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    align-items: center;
    gap: 56px;
}

.hero-badge,
.eyebrow {
    display: inline-flex;
    align-items: center;
    width: auto;
    max-width: max-content;
    padding: 9px 15px;
    border: 1px solid var(--theme-border);
    border-radius: 999px;
    background: var(--theme-soft);
    color: var(--theme-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 820px;
    margin: 18px 0 22px;
    color: var(--theme-dark);
    font-size: clamp(42px, 4.2vw, 64px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.hero-content > p {
    max-width: 760px;
    margin: 0 0 28px;
    color: var(--text-main);
    font-size: 18px;
    line-height: 1.8;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-tags span {
    display: inline-flex;
    align-items: center;
    padding: 9px 15px;
    border: 1px solid var(--theme-border);
    border-radius: 999px;
    background: var(--white);
    color: var(--theme-dark);
    font-size: 14px;
    font-weight: 700;
}

.hero-visual,
.media-box,
.app-visual,
.card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.hero-media-box {
    width: min(100%, 540px);
    min-height: 320px;
    max-height: 420px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    border: 1px solid var(--theme-border);
    border-radius: 32px;
    background: linear-gradient(180deg, var(--white) 0%, var(--theme-soft) 100%);
    box-shadow: var(--shadow-soft);
}

.hero-media-box img {
    display: block;
    max-width: 70%;
    max-height: 340px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
}

.info-section {
    padding: 36px 0 52px;
    background: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.info-card,
.content-card,
.category-card,
.feature-card,
.news-card,
.service-card,
.faq-item,
.visual-card,
.topic-summary {
    position: relative;
    height: auto;
    min-height: auto;
    padding: 28px;
    overflow: visible;
    border: 1px solid var(--theme-border);
    border-radius: 24px;
    background: var(--white);
    color: var(--text-main);
    box-shadow: var(--shadow-soft);
}

.info-card::before,
.content-card::before,
.category-card::before,
.feature-card::before,
.news-card::before,
.service-card::before {
    content: "";
    display: block;
    width: 52px;
    height: 4px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--theme), var(--theme-accent));
}

.info-card span,
.card-number {
    color: var(--theme-dark);
    font-size: 14px;
    font-weight: 900;
}

.info-card h2,
.content-card h3,
.category-card h3,
.feature-card h3,
.news-card h3,
.service-card h3 {
    margin: 10px 0 12px;
    color: var(--theme-dark);
    line-height: 1.3;
}

.info-card h2 {
    font-size: 21px;
}

.info-card p,
.content-card p,
.category-card p,
.feature-card p,
.news-card p,
.service-card p {
    margin: 0;
    color: var(--text-muted);
}

.category-section {
    padding: 24px 0 58px;
    background: var(--white);
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.category-pills a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    padding: 9px 18px;
    border: 1px solid var(--theme-border);
    border-radius: 999px;
    background: var(--white);
    color: var(--theme-dark);
    font-weight: 800;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.category-pills a:hover {
    background: linear-gradient(180deg, var(--theme-accent), var(--theme));
    color: var(--on-theme);
    transform: translateY(-2px);
}

.section-heading {
    max-width: 880px;
    margin: 0 0 34px;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading h2 {
    margin: 15px 0 16px;
    color: var(--theme-dark);
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.16;
    letter-spacing: -.025em;
}

.section-heading p {
    margin: 0 0 14px;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.category-card {
    display: flex;
    flex-direction: column;
}

.category-card a,
.text-link {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    color: var(--theme-dark);
    font-weight: 800;
    text-decoration-thickness: 2px;
}

.feature-grid,
.service-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
    align-items: center;
    gap: 62px;
}

.split-section.reverse .split-copy {
    order: 2;
}

.split-section.reverse .split-visual {
    order: 1;
}

.split-copy h2 {
    margin: 16px 0 18px;
    color: var(--theme-dark);
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.15;
}

.split-copy p {
    margin: 0 0 16px;
    color: var(--text-muted);
    font-size: 17px;
}

.split-visual,
.app-visual,
.page-visual {
    min-height: 360px;
    padding: 32px;
    border: 1px solid var(--theme-border);
    border-radius: 30px;
    background: linear-gradient(145deg, var(--white), var(--theme-soft));
    box-shadow: var(--shadow-soft);
}

.split-visual img,
.app-visual img,
.page-visual img,
.media-box img,
.card-media img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.check-list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    margin: 12px 0;
    padding-left: 30px;
    color: var(--text-main);
}

.check-list li::before {
    content: "";
    position: absolute;
    top: .58em;
    left: 2px;
    width: 11px;
    height: 11px;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: var(--theme);
    box-shadow: 0 0 0 2px var(--theme-border);
}

.app-band {
    padding: 70px 0;
    background: linear-gradient(130deg, var(--theme-deep), var(--header-bg-2));
    color: var(--on-dark);
}

.app-band .split-copy h2,
.app-band .split-copy p,
.app-band .check-list li {
    color: var(--on-dark);
}

.app-band .eyebrow {
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .1);
    color: var(--theme-accent);
}

.app-band .check-list li::before {
    border-color: var(--theme-deep);
}

.app-band .app-visual {
    background: linear-gradient(145deg, rgba(255, 255, 255, .96), var(--theme-soft));
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.quote-grid blockquote {
    position: relative;
    margin: 0;
    padding: 30px 30px 30px 68px;
    border: 1px solid var(--theme-border);
    border-radius: 22px;
    background: var(--white);
    color: var(--text-main);
    box-shadow: var(--shadow-soft);
}

.quote-grid blockquote::before {
    content: "“";
    position: absolute;
    top: 14px;
    left: 24px;
    color: var(--theme);
    font-family: Georgia, serif;
    font-size: 58px;
    line-height: 1;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
    gap: 52px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 116px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    padding: 0;
}

.faq-item summary {
    position: relative;
    padding: 21px 54px 21px 24px;
    color: var(--theme-dark);
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 22px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--theme-soft);
    color: var(--theme-dark);
    transform: translateY(-50%);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 0;
    padding: 0 24px 24px;
    color: var(--text-muted);
}

.notice-section {
    background: var(--white);
}

.notice {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 26px;
    padding: 32px;
    border: 1px solid var(--theme-border);
    border-left: 6px solid var(--theme);
    border-radius: 24px;
    background: linear-gradient(120deg, var(--theme-soft), var(--white));
    box-shadow: var(--shadow-soft);
}

.notice-mark {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--theme-accent), var(--theme-dark));
    color: var(--on-theme);
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(53, 127, 21, .2);
}

.notice h2 {
    margin: 0 0 8px;
    color: var(--theme-dark);
    font-size: 25px;
}

.notice p {
    margin: 0;
    color: var(--text-main);
}

.page-hero {
    padding: 70px 0 58px;
    background:
        radial-gradient(circle at 12% 22%, rgba(120, 224, 44, .2), transparent 32%),
        linear-gradient(180deg, var(--theme-light), var(--white));
}

.page-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
    align-items: center;
    gap: 60px;
}

.page-hero h1 {
    max-width: 800px;
    margin: 16px 0 20px;
    color: var(--theme-dark);
    font-size: clamp(40px, 4.3vw, 62px);
    line-height: 1.08;
    letter-spacing: -.03em;
}

.page-hero-copy > p {
    margin: 0 0 26px;
    color: var(--text-main);
    font-size: 18px;
    line-height: 1.8;
}

.page-visual {
    min-height: 330px;
    max-height: 430px;
}

.page-visual img {
    max-height: 330px;
}

.topic-summary {
    background: linear-gradient(145deg, var(--white), var(--theme-soft));
}

.topic-summary strong {
    display: block;
    color: var(--theme-dark);
    font-size: 24px;
    line-height: 1.3;
}

.compact-list {
    margin-top: 18px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.content-grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wide-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 32px;
    padding: 26px 28px;
    border: 1px solid var(--theme-border);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.short-heading {
    max-width: 700px;
}

.related-links {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.related-links span {
    color: var(--text-muted);
    font-weight: 700;
}

.related-links a {
    padding: 8px 14px;
    border: 1px solid var(--theme-border);
    border-radius: 999px;
    background: var(--theme-soft);
    color: var(--theme-dark);
    font-weight: 800;
    text-decoration: none;
}

.related-links a:hover {
    background: var(--theme);
    color: var(--on-theme);
}

.footer {
    padding: 64px 0 22px;
    background: linear-gradient(180deg, var(--theme-dark) 0%, var(--theme-deep) 100%);
    color: var(--on-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 42px;
}

.footer-logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: 190px;
    max-height: 68px;
    object-fit: contain;
}

.footer-brand p {
    max-width: 430px;
    margin: 20px 0 0;
    color: rgba(245, 255, 237, .78);
}

.footer h2 {
    margin: 6px 0 16px;
    color: var(--theme-accent);
    font-size: 17px;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer a {
    margin: 5px 0;
    color: var(--on-dark);
    text-decoration: none;
}

.footer a:hover {
    color: var(--theme-accent);
}

.footer-warning {
    margin-top: 44px;
    padding: 24px 26px;
    border: 1px solid rgba(168, 241, 111, .22);
    border-radius: 20px;
    background: rgba(255, 255, 255, .06);
}

.footer-warning strong {
    color: var(--theme-accent);
}

.footer-warning p {
    margin: 9px 0 0;
    color: rgba(245, 255, 237, .8);
}

.footer-bottom {
    margin-top: 28px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(245, 255, 237, .68);
    font-size: 13px;
}

@media (min-width: 1440px) {
    .container,
    .section-inner,
    .header-inner,
    .footer-inner,
    .hero-inner {
        width: min(1360px, calc(100% - 120px));
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(480px, .95fr);
        gap: 80px;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .header-inner {
        gap: 12px;
    }

    .site-logo img {
        max-width: 122px;
        max-height: 58px;
    }

    .main-nav {
        gap: 10px;
    }

    .main-nav a {
        font-size: 12px;
    }

    .header-login {
        padding-left: 14px;
        padding-right: 14px;
        font-size: 12px;
    }

    .content-grid-four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1023px) {
    .section {
        padding: 60px 0;
    }

    .header-inner {
        width: min(100% - 28px, 1280px);
        min-height: 68px;
        grid-template-columns: 48px minmax(0, 1fr) auto;
        gap: 10px;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .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 {
        min-height: 42px;
        padding: 9px 15px;
        font-size: 13px;
    }

    .hero-section {
        min-height: auto;
        padding: 52px 0 38px;
    }

    .hero-inner,
    .page-hero-inner,
    .split-section,
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: clamp(36px, 7vw, 52px);
    }

    .hero-media-box {
        width: 100%;
        max-width: 100%;
        min-height: 280px;
        padding: 26px;
    }

    .hero-media-box img {
        max-height: 280px;
    }

    .info-grid,
    .category-grid,
    .content-grid-four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-grid,
    .service-grid,
    .news-grid,
    .content-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split-section.reverse .split-copy,
    .split-section.reverse .split-visual {
        order: initial;
    }

    .faq-intro {
        position: static;
    }

    .page-visual,
    .split-visual,
    .app-visual {
        min-height: 300px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .container,
    .section-inner,
    .header-inner,
    .footer-inner,
    .hero-inner {
        width: min(calc(100% - 32px), 1280px);
    }

    .section {
        padding: 50px 0;
    }

    .hero-section,
    .page-hero {
        padding: 42px 0 34px;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: clamp(34px, 10vw, 46px);
    }

    .hero-content > p,
    .page-hero-copy > p {
        font-size: 16px;
    }

    .hero-media-box {
        min-height: 230px;
        border-radius: 24px;
    }

    .hero-media-box img {
        max-height: 230px;
    }

    .info-grid,
    .category-grid,
    .feature-grid,
    .service-grid,
    .news-grid,
    .content-grid,
    .content-grid-four,
    .quote-grid,
    .wide-list,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .info-card,
    .content-card,
    .category-card,
    .feature-card,
    .news-card,
    .service-card {
        padding: 23px;
    }

    .section-heading h2,
    .split-copy h2 {
        font-size: 30px;
    }

    .split-visual,
    .app-visual,
    .page-visual {
        min-height: 240px;
        padding: 24px;
        border-radius: 24px;
    }

    .notice {
        grid-template-columns: 1fr;
        align-items: start;
        padding: 26px;
    }

    .notice-mark {
        width: 62px;
        height: 62px;
        font-size: 19px;
    }

    .quote-grid blockquote {
        padding: 28px 24px 26px 60px;
    }

    .footer {
        padding-top: 50px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 390px) {
    .header-inner {
        width: min(calc(100% - 20px), 1280px);
        grid-template-columns: 44px minmax(0, 1fr) auto;
        gap: 8px;
    }

    .site-logo img {
        max-width: min(112px, 34vw);
        max-height: 46px;
    }

    .header-actions .main-btn {
        min-height: 38px;
        padding: 7px 10px;
        font-size: 11px;
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
    }
}
