:root {
    --theme: #78e02c;
    --theme-dark: #347f15;
    --theme-deep: #153f0b;
    --theme-light: #f4fde9;
    --theme-soft: #e8f9d8;
    --theme-accent: #a8f274;
    --theme-hover: #5fc522;
    --theme-border: rgba(66, 139, 24, 0.25);
    --header-bg: #173f0e;
    --header-bg-2: #245c14;
    --text-main: #20301b;
    --text-muted: #586850;
    --on-theme: #14220e;
    --on-header: #f7fff1;
    --on-dark: #f3ffe9;
    --white: #ffffff;
    --shadow-soft: 0 18px 48px rgba(42, 104, 19, 0.14);
}

*,
*::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;
}

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

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

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    line-height: 1.2;
}

h1,
h2 {
    color: var(--theme-dark);
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 20000;
    transform: translateY(-150%);
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--white);
    color: var(--theme-deep);
    font-weight: 800;
    text-decoration: none;
}

.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 {
    padding: 74px 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(232, 249, 216, 0.82), rgba(244, 253, 233, 0.95));
    border-top: 1px solid var(--theme-border);
    border-bottom: 1px solid var(--theme-border);
}

.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 36px rgba(17, 56, 7, 0.25);
    border-bottom: 1px solid rgba(168, 242, 116, 0.22);
    overflow: visible;
}

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

.site-logo,
.drawer-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: 176px;
    max-height: 66px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(10px, 1.1vw, 20px);
}

.main-nav a {
    position: relative;
    padding: 28px 0 24px;
    color: var(--on-header);
    font-size: clamp(12px, 0.92vw, 15px);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 17px;
    height: 3px;
    border-radius: 999px;
    background: var(--theme-accent);
    transition: left 0.2s ease, right 0.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,
.header-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 20px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    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 26px rgba(0, 0, 0, 0.19);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.main-btn:hover,
.header-login:hover {
    color: var(--on-theme);
    filter: saturate(1.08) brightness(1.03);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--on-header);
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    border-radius: 99px;
    background: currentColor;
}

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

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

.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    background: rgba(12, 30, 8, 0.62);
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

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

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

.drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--on-header);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.drawer-nav {
    display: grid;
    gap: 7px;
    padding: 20px 0;
}

.drawer-nav a {
    padding: 12px 14px;
    border: 1px solid transparent;
    border-radius: 12px;
    color: var(--on-header);
    font-weight: 700;
    text-decoration: none;
}

.drawer-nav a.active,
.drawer-nav a:hover {
    border-color: rgba(168, 242, 116, 0.35);
    background: rgba(168, 242, 116, 0.12);
    color: var(--theme-accent);
}

.drawer-notice {
    margin-top: 12px;
    padding: 18px;
    border: 1px solid rgba(168, 242, 116, 0.28);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
}

.drawer-notice strong {
    color: var(--theme-accent);
    font-size: 22px;
}

.drawer-notice p {
    margin: 6px 0 0;
    color: var(--on-header);
    font-size: 14px;
}

.hero-section {
    padding: 66px 0 50px;
    background:
        radial-gradient(circle at 16% 18%, rgba(168, 242, 116, 0.4) 0%, transparent 34%),
        linear-gradient(180deg, var(--theme-light) 0%, var(--white) 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    align-items: center;
    gap: 56px;
    min-height: 500px;
}

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

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

.hero-badge,
.hero-tags span,
.eyebrow,
.tag,
.badge {
    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: 0.035em;
}

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

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

.hero-media-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 540px);
    min-height: 320px;
    max-height: 420px;
    padding: 34px;
    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);
    overflow: visible;
}

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

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

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

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

.info-card::before,
.category-card::before,
.feature-card::before,
.service-card::before,
.detail-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,
.visual-index {
    color: var(--theme-dark);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.info-card h2,
.category-card h3,
.feature-card h3,
.service-card h3,
.topic-card h3,
.detail-card h3,
.visual-card h2 {
    margin: 10px 0 12px;
    color: var(--theme-dark);
}

.info-card p,
.category-card p,
.feature-card p,
.service-card p,
.topic-card p,
.detail-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.72;
}

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

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

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

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

.section-heading {
    max-width: 840px;
    margin-bottom: 34px;
}

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

.section-heading.narrow-heading {
    max-width: 760px;
}

.section-heading h2,
.split-copy h2,
.related-block h2,
.split-panel h2 {
    margin: 14px 0 14px;
    color: var(--theme-dark);
    font-size: clamp(30px, 3vw, 44px);
    letter-spacing: -0.025em;
}

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

.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;
    width: max-content;
    margin-top: auto;
    padding-top: 18px;
    color: var(--theme-dark);
    font-weight: 900;
    text-decoration: none;
}

.category-card a::after,
.text-link::after {
    content: " →";
    margin-left: 4px;
}

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

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

.content-split,
.app-panel,
.split-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    align-items: center;
    gap: 56px;
}

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

.content-split.reverse .media-box {
    order: 1;
}

.media-box,
.app-visual,
.page-media-box {
    min-height: 320px;
    padding: 28px;
    border: 1px solid var(--theme-border);
    border-radius: 28px;
    background: linear-gradient(180deg, var(--white), var(--theme-soft));
    box-shadow: var(--shadow-soft);
}

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

.split-copy p,
.split-panel > div > p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
}

.check-list,
.topic-list {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li,
.topic-list li {
    position: relative;
    padding-left: 28px;
    color: var(--text-main);
}

.check-list li::before,
.topic-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--theme-dark);
    font-weight: 900;
}

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

.topic-card {
    box-shadow: none;
    background: linear-gradient(145deg, var(--white), var(--theme-soft));
}

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

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

blockquote {
    position: relative;
    margin: 0;
    padding: 24px 24px 24px 28px;
    border-left: 4px solid var(--theme);
    border-radius: 0 20px 20px 0;
    background: var(--white);
    color: var(--text-main);
    box-shadow: var(--shadow-soft);
    line-height: 1.75;
}

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

.faq-item {
    padding: 0;
    overflow: visible;
}

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

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    color: var(--theme-dark);
    font-size: 26px;
}

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

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

.notice {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 22px;
    background: linear-gradient(135deg, var(--theme-soft), var(--white));
    border-width: 2px;
}

.notice-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: var(--theme-deep);
    color: var(--on-dark);
    font-size: 22px;
    font-weight: 900;
}

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

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

.page-hero {
    padding: 64px 0;
    background:
        radial-gradient(circle at 80% 15%, rgba(120, 224, 44, 0.2), transparent 30%),
        linear-gradient(180deg, var(--theme-light), var(--white));
}

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

.page-hero-copy h1 {
    margin: 16px 0 22px;
    color: var(--theme-dark);
    font-size: clamp(40px, 4vw, 60px);
    letter-spacing: -0.035em;
}

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

.page-media-box {
    width: min(100%, 500px);
    min-height: 360px;
}

.visual-card {
    width: min(100%, 500px);
    background: linear-gradient(145deg, var(--white), var(--theme-soft));
}

.visual-card h2 {
    font-size: 30px;
}

.prose-section {
    display: grid;
    gap: 8px;
}

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

.prose-columns p {
    margin: 0;
    color: var(--text-main);
    font-size: 17px;
    line-height: 1.86;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.split-panel {
    align-items: start;
}

.split-panel .quote-list {
    grid-template-columns: 1fr;
}

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

.related-block {
    margin-top: 40px;
    padding-top: 34px;
    border-top: 1px solid var(--theme-border);
}

.related-block h2 {
    font-size: 28px;
}

.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.75fr 0.85fr 1fr;
    gap: 42px;
}

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

.footer h2 {
    margin: 0 0 18px;
    color: var(--on-dark);
    font-size: 18px;
}

.footer p {
    color: rgba(243, 255, 233, 0.82);
}

.footer-brand p {
    max-width: 460px;
}

.footer-nav {
    display: grid;
    gap: 10px;
}

.footer a {
    color: var(--on-dark);
}

.footer-nav a,
.footer-action {
    text-decoration: none;
}

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

.footer-action {
    display: inline-flex;
    padding: 10px 15px;
    border: 1px solid rgba(168, 242, 116, 0.36);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 800;
}

.footer-legal {
    margin-top: 42px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

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

.footer-legal p {
    margin: 9px 0 0;
    font-size: 14px;
}

@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(420px, 0.95fr);
        gap: 70px;
    }
}

@media (max-width: 1180px) {
    .header-inner {
        width: min(100% - 32px, 1280px);
        min-height: 72px;
        grid-template-columns: 48px minmax(0, 1fr) auto;
        gap: 10px;
    }

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

    .main-nav {
        display: none;
    }

    .site-logo {
        justify-self: center;
    }

    .site-logo img {
        max-width: min(160px, 40vw);
        max-height: 58px;
    }

    .header-actions {
        justify-self: end;
    }
}

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

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

    .hero-inner,
    .page-hero-inner,
    .content-split,
    .app-panel,
    .split-panel {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero-inner {
        min-height: auto;
    }

    .hero-content h1 {
        font-size: clamp(38px, 7vw, 54px);
    }

    .hero-visual,
    .page-hero-visual {
        justify-content: flex-start;
    }

    .hero-media-box,
    .page-media-box,
    .visual-card {
        width: min(100%, 660px);
    }

    .hero-media-box {
        min-height: 290px;
    }

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

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

    .content-split.reverse .split-copy,
    .content-split.reverse .media-box {
        order: initial;
    }

    .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: 48px 0;
    }

    .header-inner {
        width: min(calc(100% - 24px), 1280px);
    }

    .header-actions .main-btn {
        min-height: 40px;
        padding: 8px 13px;
        font-size: 12px;
    }

    .site-logo img {
        max-width: min(140px, 38vw);
        max-height: 52px;
    }

    .hero-section {
        padding-top: 42px;
    }

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

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

    .hero-media-box,
    .page-media-box,
    .media-box,
    .app-visual {
        min-height: 240px;
        padding: 22px;
        border-radius: 24px;
    }

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

    .info-grid,
    .category-grid,
    .service-grid,
    .feature-grid,
    .content-wall,
    .dual-grid,
    .quote-grid,
    .quote-list,
    .detail-grid,
    .footer-grid,
    .prose-columns {
        grid-template-columns: 1fr;
    }

    .info-card,
    .category-card,
    .feature-card,
    .service-card,
    .topic-card,
    .detail-card,
    .visual-card {
        padding: 23px;
        border-radius: 21px;
    }

    .notice {
        grid-template-columns: 1fr;
        padding: 23px;
    }

    .notice-mark {
        width: 58px;
        height: 58px;
        border-radius: 17px;
    }

    .section-heading h2,
    .split-copy h2,
    .split-panel h2 {
        font-size: clamp(28px, 8vw, 38px);
    }

    .footer {
        padding-top: 50px;
    }
}

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

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

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

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
