:root {
    --theme: #78e02c;
    --theme-dark: #3f8618;
    --theme-deep: #11330f;
    --theme-light: #f4fced;
    --theme-soft: #e7f8da;
    --theme-accent: #a8f36f;
    --theme-hover: #5fc41f;
    --theme-border: rgba(63, 134, 24, 0.24);
    --header-bg: #1b4d18;
    --header-bg-2: #27661d;
    --text-main: #1d3020;
    --text-muted: #526554;
    --on-theme: #14240e;
    --on-header: #f7fff1;
    --on-dark: #f3fbea;
    --white: #ffffff;
    --shadow-soft: 0 18px 45px rgba(43, 102, 29, 0.14);
}

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

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
}

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

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

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

.section {
    position: relative;
}

.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 10px 35px rgba(17, 51, 15, 0.24);
    border-bottom: 1px solid rgba(168, 243, 111, 0.2);
    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: 15px;
}

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

.main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 18px;
    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: 11px 22px;
    border: 0;
    background: linear-gradient(180deg, var(--theme-accent) 0%, var(--theme) 48%, var(--theme-dark) 100%);
    color: var(--on-theme);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(10, 38, 7, 0.24);
    text-decoration: none;
    white-space: nowrap;
    font-weight: 800;
    letter-spacing: .02em;
    transition: transform .2s ease, filter .2s ease;
}

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

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

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--on-header);
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 82%;
    max-width: 340px;
    height: 100vh;
    transform: translateX(-100%);
    transition: transform .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(17, 51, 15, .28);
    overflow-y: auto;
}

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

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

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

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

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

.drawer-close {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: var(--on-header);
    font-size: 28px;
    line-height: 1;
}

.drawer-nav {
    display: grid;
    padding: 18px;
    gap: 5px;
}

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

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

.hero-section {
    padding: 68px 0 48px;
    background:
        radial-gradient(circle at 12% 18%, var(--theme-soft) 0%, transparent 34%),
        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-content h1 {
    max-width: 760px;
    font-size: clamp(42px, 4.2vw, 64px);
    line-height: 1.08;
    letter-spacing: -.03em;
    margin: 14px 0 22px;
    color: var(--theme-dark);
}

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

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

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

.hero-visual,
.media-box,
.app-visual,
.card-media,
.page-visual {
    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-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 {
    display: block;
    max-width: 70%;
    max-height: 340px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
}

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

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

.info-card,
.topic-card,
.service-card,
.category-card,
.feature-card,
.review-card,
.faq-item,
.related-card,
.notice,
.visual-card {
    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;
}

.info-card {
    padding: 25px;
}

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

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

.info-card h2,
.topic-card h3,
.category-card h3,
.service-card h3 {
    color: var(--theme-dark);
    line-height: 1.3;
}

.info-card h2 {
    margin: 10px 0;
    font-size: 20px;
}

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

.category-section {
    padding: 26px 0;
    background: var(--theme-soft);
    border-top: 1px solid var(--theme-border);
    border-bottom: 1px solid var(--theme-border);
}

.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: 42px;
    padding: 9px 18px;
    border-radius: 999px;
    background: var(--white);
    color: var(--theme-dark);
    border: 1px solid var(--theme-border);
    text-decoration: none;
    font-weight: 800;
    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);
}

.content-section,
.home-section {
    padding: 76px 0;
    background: var(--white);
}

.soft-section {
    padding: 76px 0;
    background: linear-gradient(180deg, var(--theme-light), var(--theme-soft));
    border-top: 1px solid var(--theme-border);
    border-bottom: 1px solid var(--theme-border);
}

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

.section-heading h2,
.split-copy h2,
.compliance-notice h2 {
    color: var(--theme-dark);
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.16;
    letter-spacing: -.025em;
    margin: 14px 0 16px;
}

.section-heading > p {
    max-width: 820px;
    color: var(--text-muted);
    font-size: 17px;
}

.center-heading {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.center-heading .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

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

.category-card,
.topic-card,
.service-card {
    padding: 26px;
}

.category-card h3,
.topic-card h3,
.service-card h3 {
    margin: 10px 0 12px;
    font-size: 21px;
}

.text-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--theme-dark);
    text-decoration: none;
    font-weight: 800;
    border-bottom: 1px solid var(--theme-border);
}

.text-link:hover {
    color: var(--theme-hover);
}

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

.split-panel,
.split-reading,
.app-panel,
.news-promo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 50px;
}

.split-panel + .split-panel {
    margin-top: 64px;
}

.split-panel.reverse .split-media {
    order: 2;
}

.split-media,
.app-media {
    min-height: 330px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    border-radius: 28px;
    background: linear-gradient(180deg, var(--white), var(--theme-soft));
    border: 1px solid var(--theme-border);
    box-shadow: var(--shadow-soft);
}

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

.split-copy p {
    color: var(--text-muted);
}

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

.check-list li,
.plain-list li {
    position: relative;
    padding-left: 28px;
}

.check-list li::before,
.plain-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--theme-accent), var(--theme-dark));
}

.app-section {
    padding: 76px 0;
    background: linear-gradient(135deg, var(--theme-deep) 0%, var(--header-bg-2) 100%);
    color: var(--on-dark);
}

.app-section .eyebrow {
    color: var(--theme-accent);
    background: rgba(168, 243, 111, .12);
    border-color: rgba(168, 243, 111, .28);
}

.app-section h2,
.app-section p,
.app-section li {
    color: var(--on-dark);
}

.app-section .app-media {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .18);
    box-shadow: none;
}

.news-promo-grid {
    align-items: stretch;
}

.feature-card {
    padding: 32px;
}

.feature-card h3 {
    color: var(--theme-dark);
    font-size: 27px;
    margin: 14px 0;
}

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

.review-card {
    margin: 0;
    padding: 26px;
    border-top: 4px solid var(--theme);
}

.review-card p {
    margin: 0;
    color: var(--text-main);
    font-size: 16px;
}

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

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

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

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

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

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

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

.inner-hero {
    padding: 62px 0;
    background:
        radial-gradient(circle at 80% 16%, var(--theme-soft) 0%, transparent 31%),
        linear-gradient(180deg, var(--theme-light), var(--white));
}

.inner-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.07fr) minmax(340px, .93fr);
    gap: 52px;
    align-items: center;
}

.inner-hero-copy h1 {
    color: var(--theme-dark);
    font-size: clamp(40px, 4.4vw, 62px);
    line-height: 1.08;
    letter-spacing: -.03em;
    margin: 16px 0 22px;
}

.inner-hero-copy > p {
    color: var(--text-main);
    font-size: 17px;
    margin: 0 0 16px;
}

.page-media-box {
    width: min(100%, 520px);
    min-height: 340px;
    max-height: 430px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    border-radius: 30px;
    background: linear-gradient(180deg, var(--white), var(--theme-soft));
    border: 1px solid var(--theme-border);
    box-shadow: var(--shadow-soft);
}

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

.narrow-reading {
    max-width: 1120px;
}

.prose-columns {
    columns: 2;
    column-gap: 48px;
}

.prose-columns p {
    break-inside: avoid;
    margin-top: 0;
    color: var(--text-main);
}

.split-copy > p {
    font-size: 16px;
}

.steps-list {
    display: grid;
    gap: 16px;
}

.step-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 16px;
    padding: 20px;
    border-radius: 20px;
    background: var(--theme-soft);
    border: 1px solid var(--theme-border);
}

.step-item > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(180deg, var(--theme-accent), var(--theme));
    color: var(--on-theme);
    font-weight: 900;
}

.step-item h3 {
    color: var(--theme-dark);
    margin: 0 0 5px;
    line-height: 1.3;
    font-size: 18px;
}

.step-item p {
    margin: 0;
    color: var(--text-muted);
}

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

.faq-heading {
    position: sticky;
    top: 112px;
}

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

.related-section {
    padding: 68px 0;
    background: var(--theme-soft);
}

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

.related-card {
    display: grid;
    gap: 8px;
    padding: 24px;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease;
}

.related-card:hover {
    transform: translateY(-3px);
    border-color: var(--theme);
}

.related-card strong {
    color: var(--theme-dark);
    font-size: 19px;
}

.related-card span {
    color: var(--text-muted);
}

.compliance-section {
    padding: 60px 0 76px;
    background: var(--white);
}

.compliance-notice {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 28px;
    align-items: start;
    padding: 34px;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--theme-soft), var(--theme-light));
    border: 1px solid var(--theme-border);
    box-shadow: var(--shadow-soft);
}

.notice-mark {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--theme-accent), var(--theme-dark));
    color: var(--on-theme);
    font-size: 25px;
    font-weight: 900;
}

.compliance-notice h2 {
    font-size: 29px;
    margin-top: 0;
}

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

.footer {
    padding: 66px 0 24px;
    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 h2 {
    color: var(--theme-accent);
    font-size: 18px;
    margin: 0 0 18px;
}

.footer-brand p {
    max-width: 360px;
    color: rgba(243, 251, 234, .82);
}

.footer-logo {
    justify-content: flex-start;
    margin-bottom: 18px;
}

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

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 9px;
}

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

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

.footer-notice {
    margin-top: 42px;
    padding: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
}

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

.footer-notice p {
    margin: 8px 0 0;
    color: rgba(243, 251, 234, .82);
}

.footer-bottom {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .13);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: rgba(243, 251, 234, .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 {
        grid-template-columns: minmax(0, 1.05fr) minmax(480px, .95fr);
        gap: 80px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .header-inner {
        width: min(100% - 32px, 1280px);
        gap: 12px;
    }

    .site-logo img {
        max-width: 120px;
    }

    .main-nav {
        gap: 8px;
    }

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

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

@media (max-width: 1023px) {
    .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;
    }

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

    .hero-inner,
    .inner-hero-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

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

    .hero-media-box,
    .page-media-box {
        max-width: 620px;
        min-height: 280px;
        padding: 24px;
    }

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

    .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(100% - 32px, 1280px);
    }

    .hero-content h1,
    .inner-hero-copy h1 {
        font-size: clamp(33px, 10vw, 44px);
        line-height: 1.12;
    }

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

    .hero-media-box,
    .page-media-box {
        min-height: 230px;
    }

    .hero-media-box img,
    .page-media-box img {
        max-height: 260px;
    }

    .info-grid,
    .category-grid,
    .topic-grid,
    .service-grid,
    .review-grid,
    .home-faq-grid,
    .related-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .split-panel,
    .split-reading,
    .app-panel,
    .news-promo-grid,
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .split-panel.reverse .split-media {
        order: 0;
    }

    .prose-columns {
        columns: 1;
    }

    .faq-heading {
        position: static;
    }

    .content-section,
    .home-section,
    .soft-section,
    .app-section {
        padding: 56px 0;
    }

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

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

    .notice-mark {
        width: 70px;
        height: 70px;
    }

    .footer-bottom {
        align-items: flex-start;
        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(112px, 34vw);
        max-height: 46px;
    }

    .header-actions .main-btn {
        padding: 8px 10px;
        font-size: 12px;
    }

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
    }
}
