:root {
    --lime: #a8ff00;
    --lime-strong: #8fe000;
    --lime-soft: #efffd1;
    --ink: #11120f;
    --ink-2: #24261f;
    --muted: #65685f;
    --line: #dfe2d8;
    --paper: #ffffff;
    --soft: #f5f6f1;
    --warm: #eceee6;
    --danger: #b42318;
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;
    --shadow: 0 20px 55px rgba(17, 18, 15, .1);
    --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans Thai", Tahoma, sans-serif;
    font-size: 16px;
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img {
    display: block;
    max-width: 100%;
}

.hero img,
.inner-hero img,
.product-media img,
.product-hero-media img,
.blog-media img,
.article-cover img,
.gallery-grid img,
.brand img,
.contact-card img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

:focus-visible {
    outline: 3px solid #4e8200;
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 9999;
    padding: 10px 16px;
    color: var(--ink);
    background: var(--lime);
    border-radius: 8px;
    transform: translateY(-150%);
}

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

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.narrow { max-width: 860px; }
.section { padding: 92px 0; }
.section-soft { background: var(--soft); }
.section-dark { color: #fff; background: var(--ink); }
.section-process { background: #f1f3ec; }

.topbar {
    padding: 7px 20px;
    color: var(--ink);
    background: var(--lime);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-align: center;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 78px;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(17, 18, 15, .09);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.site-header.scrolled { box-shadow: 0 10px 30px rgba(17, 18, 15, .08); }

.nav-wrap {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: 11px;
}

.brand img {
    width: 57px;
    border-radius: 10px;
    background: var(--lime);
}

.brand span { display: grid; line-height: 1.1; }
.brand strong { font-family: Impact, "Arial Black", sans-serif; font-size: 18px; letter-spacing: .04em; }
.brand small { margin-top: 5px; color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .14em; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav > a:not(.button) {
    position: relative;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 750;
}

.main-nav > a:not(.button)::after {
    position: absolute;
    right: 14px;
    bottom: 7px;
    left: 14px;
    height: 2px;
    background: var(--lime-strong);
    content: "";
    opacity: 0;
    transform: scaleX(.4);
    transition: .2s ease;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a.active::after { opacity: 1; transform: scaleX(1); }

.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; }

.button {
    display: inline-flex;
    min-height: 46px;
    padding: 11px 20px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.25;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--lime); box-shadow: 0 8px 22px rgba(143, 224, 0, .18); }
.button-primary:hover { background: #bdff35; box-shadow: 0 12px 28px rgba(143, 224, 0, .28); }
.button-dark { color: #fff; background: var(--ink); }
.button-dark:hover { background: var(--ink-2); }
.button-ghost { color: var(--ink); background: rgba(255, 255, 255, .82); border-color: rgba(17, 18, 15, .25); }
.button-outline { color: var(--ink); background: #fff; border-color: var(--ink); }
.button-large { min-height: 54px; padding: 14px 26px; font-size: 15px; }

.text-link { display: inline-flex; color: var(--ink); font-size: 14px; font-weight: 850; }
.text-link:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.text-link-dark { color: var(--ink); }
.text-link-light { color: var(--lime); }

.eyebrow {
    margin: 0 0 13px;
    color: #4c7900;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.section-dark .eyebrow { color: var(--lime); }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
    line-height: 1.18;
    text-wrap: balance;
}

h1 {
    margin-bottom: 22px;
    font-size: clamp(38px, 5.8vw, 72px);
    font-weight: 950;
    letter-spacing: -.045em;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(28px, 3.7vw, 44px);
    font-weight: 900;
    letter-spacing: -.03em;
}

h3 { margin-bottom: 10px; font-size: 20px; font-weight: 850; letter-spacing: -.015em; }
p { color: var(--muted); }
.section-dark p { color: #bfc2b9; }
.lead { font-size: 19px; }

.section-heading {
    max-width: 780px;
    margin-bottom: 42px;
}

.section-heading > p:last-child {
    max-width: 700px;
    margin-bottom: 0;
    font-size: 18px;
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 48%, rgba(168, 255, 0, .2), transparent 28%),
        linear-gradient(145deg, #f8f9f5 0%, #fff 55%, #efffd0 100%);
}

.hero::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 28%;
    height: 100%;
    background-image: radial-gradient(rgba(17, 18, 15, .15) 1px, transparent 1px);
    background-size: 12px 12px;
    content: "";
    mask-image: linear-gradient(to left, #000, transparent);
}

.hero-grid {
    position: relative;
    display: grid;
    min-height: 680px;
    padding-top: 72px;
    padding-bottom: 72px;
    grid-template-columns: 1.04fr .96fr;
    align-items: center;
    gap: 64px;
}

.hero-copy { position: relative; z-index: 1; }
.hero-lead { max-width: 720px; margin-bottom: 28px; color: #55594f; font-size: clamp(18px, 2.2vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }

.hero-points {
    display: flex;
    padding: 0;
    margin: 28px 0 0;
    flex-wrap: wrap;
    gap: 10px 24px;
    list-style: none;
}

.hero-points li { position: relative; padding-left: 18px; color: #41443d; font-size: 13px; font-weight: 750; }
.hero-points li::before { position: absolute; top: .55em; left: 0; width: 8px; height: 8px; background: var(--lime-strong); border-radius: 50%; content: ""; }

.hero-visual { position: relative; }
.hero-image-frame { overflow: hidden; background: #dfff9c; border: 1px solid rgba(17, 18, 15, .1); border-radius: var(--radius-lg); box-shadow: var(--shadow); transform: rotate(1.5deg); }
.hero-image-frame img { width: 100%; }

.hero-price-card {
    position: absolute;
    right: -18px;
    bottom: -25px;
    display: grid;
    width: 205px;
    padding: 18px 20px;
    color: #fff;
    background: var(--ink);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-price-card span, .hero-price-card small { color: #c7c9c1; font-size: 11px; }
.hero-price-card strong { color: var(--lime); font-size: 36px; line-height: 1.1; }

.trust-strip { color: #fff; background: var(--ink); border-top: 1px solid #2c2e28; }
.trust-grid { display: grid; min-height: 64px; grid-template-columns: repeat(3, 1fr); align-items: center; }
.trust-grid span { padding: 0 20px; font-size: 13px; font-weight: 750; text-align: center; }
.trust-grid span + span { border-left: 1px solid #373931; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { position: relative; min-height: 255px; padding: 28px; overflow: hidden; background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); transition: .25s ease; }
.service-card::after { position: absolute; top: -38px; right: -38px; width: 100px; height: 100px; background: var(--lime); border-radius: 50%; content: ""; opacity: .2; transition: .25s ease; }
.service-card > span { display: inline-flex; margin-bottom: 38px; color: #5a8e00; font-size: 12px; font-weight: 950; letter-spacing: .14em; }
.service-card h3 { font-size: 23px; }
.service-card p { margin-bottom: 26px; font-size: 14px; }
.service-card b { position: absolute; bottom: 25px; font-size: 13px; }
.service-card:hover { border-color: #a9ad9f; box-shadow: 0 14px 30px rgba(17, 18, 15, .08); transform: translateY(-4px); }
.service-card:hover::after { width: 130px; height: 130px; opacity: .55; }

.quick-link-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #363832; border-left: 1px solid #363832; }
.quick-link-grid a { min-height: 210px; padding: 26px; border-right: 1px solid #363832; border-bottom: 1px solid #363832; transition: background .2s ease; }
.quick-link-grid a:hover { background: #20221d; }
.quick-link-grid span { color: var(--lime); font-size: 12px; font-weight: 900; }
.quick-link-grid h3 { margin: 42px 0 8px; color: #fff; font-size: 25px; }
.quick-link-grid p { margin: 0; font-size: 14px; }

.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.product-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 8px 25px rgba(17, 18, 15, .05); }
.product-media { display: flex; min-height: 360px; padding: 0; align-items: center; justify-content: center; overflow: hidden; background: linear-gradient(145deg, #f2f3ee, #e9ffc4); }
.product-media img { width: 100%; transition: transform .35s ease; }
.product-body { padding: 26px; }
.product-meta { display: flex; margin-bottom: 12px; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 12px; }
.product-meta strong { color: #487600; }
.product-body h3 { font-size: 26px; }
.product-body p { min-height: 52px; font-size: 14px; }
.card-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; }

.split-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(40px, 8vw, 100px); }
.align-start { align-items: start; }
.checklist-card { padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 12px 36px rgba(17, 18, 15, .06); }
.checklist-card h3 { margin-bottom: 22px; font-size: 25px; }
.check-list { padding: 0; margin: 0; list-style: none; }
.check-list li { display: grid; padding: 14px 0 14px 34px; border-top: 1px solid var(--line); grid-template-columns: 140px 1fr; gap: 10px; position: relative; }
.check-list li::before { position: absolute; top: 20px; left: 4px; width: 14px; height: 14px; background: var(--lime); border: 4px solid var(--ink); border-radius: 50%; content: ""; }
.check-list strong { font-size: 14px; }
.check-list span { color: var(--muted); font-size: 13px; }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.audience-grid article { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.audience-grid span, .feature-grid article > span, .check-grid article > span { display: block; margin-bottom: 38px; color: #5b9000; font-size: 12px; font-weight: 900; }
.audience-grid h3 { font-size: 22px; }
.audience-grid p { margin-bottom: 0; font-size: 14px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.process-card { position: relative; min-height: 250px; padding: 28px; background: #fff; border-top: 4px solid var(--ink); }
.process-card:nth-child(even) { border-color: var(--lime-strong); }
.step-number { display: inline-block; margin-bottom: 55px; color: #568a00; font-size: 13px; font-weight: 900; }
.process-card h3 { font-size: 21px; }
.process-card p { margin-bottom: 0; font-size: 14px; }
.process-card:not(:last-child)::after { position: absolute; top: 28px; right: -8px; z-index: 2; width: 16px; height: 16px; background: var(--lime); border: 4px solid var(--ink); border-radius: 50%; content: ""; }

.faq-section { background: #fff; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { position: relative; padding: 22px 52px 22px 0; font-size: 17px; font-weight: 800; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span::before, .faq-item summary span::after { position: absolute; top: 31px; right: 4px; width: 16px; height: 2px; background: var(--ink); content: ""; transition: transform .2s ease; }
.faq-item summary span::after { transform: rotate(90deg); }
.faq-item[open] summary span::after { transform: rotate(0); }
.faq-item[open] summary { color: #4e8000; }
.faq-answer { padding: 0 52px 20px 0; }
.faq-answer p { margin: 0; }

.section-cta { color: var(--ink); background: #fff; }
.cta-panel { display: flex; min-height: 280px; padding: clamp(34px, 6vw, 68px); align-items: center; justify-content: space-between; gap: 40px; overflow: hidden; background: var(--lime); border-radius: var(--radius-lg); position: relative; }
.cta-panel::before { position: absolute; right: -80px; bottom: -120px; width: 360px; height: 360px; border: 55px solid rgba(17, 18, 15, .08); border-radius: 50%; content: ""; }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel > div:first-child { max-width: 690px; }
.cta-panel .eyebrow { color: #334d00; }
.cta-panel h2 { font-size: clamp(30px, 4vw, 50px); }
.cta-panel p { max-width: 680px; margin-bottom: 0; color: #314500; }
.cta-actions { display: grid; flex-shrink: 0; justify-items: center; gap: 16px; }

.breadcrumbs { padding-top: 19px; padding-bottom: 12px; }
.breadcrumbs ol { display: flex; padding: 0; margin: 0; flex-wrap: wrap; gap: 7px; list-style: none; }
.breadcrumbs li { display: flex; color: var(--muted); font-size: 12px; }
.breadcrumbs li:not(:last-child)::after { margin-left: 7px; color: #a4a69f; content: "/"; }
.breadcrumbs a:hover { color: var(--ink); text-decoration: underline; }

.inner-hero { padding: 76px 0 82px; overflow: hidden; background: linear-gradient(140deg, var(--soft), #fff 54%, var(--lime-soft)); }
.inner-hero-grid { display: grid; grid-template-columns: 1.05fr .75fr; align-items: center; gap: 70px; }
.inner-hero h1 { max-width: 850px; font-size: clamp(38px, 5vw, 64px); }
.inner-hero-media { overflow: hidden; background: #e5ffb2; border-radius: var(--radius-lg); box-shadow: var(--shadow); transform: rotate(1.5deg); }
.compact-hero { padding: 80px 0 88px; }
.compact-hero .container { max-width: 1020px; }
.compact-hero h1 { max-width: 980px; }

.prose-grid { display: grid; grid-template-columns: 1.25fr .75fr; align-items: start; gap: 75px; }
.prose-main h2 { font-size: clamp(30px, 4vw, 46px); }
.prose-main p { font-size: 18px; }
.decision-card, .info-panel { padding: 32px; background: var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.decision-card h2, .info-panel h2 { color: #fff; font-size: 27px; }
.decision-card p, .info-panel p { color: #c6c9bf; }
.decision-card .text-link { color: var(--lime); }
.tag { display: inline-flex; padding: 6px 10px; margin-bottom: 24px; color: var(--ink); background: var(--lime); border-radius: 999px; font-size: 11px; font-weight: 900; }
.tick-list { padding: 0; margin: 22px 0 28px; list-style: none; }
.tick-list li { position: relative; padding: 10px 0 10px 28px; color: #d8dbd2; border-bottom: 1px solid #34362f; }
.tick-list li::before { position: absolute; top: 16px; left: 2px; width: 11px; height: 6px; border-bottom: 2px solid var(--lime); border-left: 2px solid var(--lime); content: ""; transform: rotate(-45deg); }

.feature-grid, .check-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-grid article, .check-grid article { min-height: 260px; padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.feature-grid h3, .check-grid h3 { font-size: 21px; }
.feature-grid p, .check-grid p { margin: 0; font-size: 14px; }

.use-case-list { display: grid; margin-top: 30px; gap: 14px; }
.use-case-list article { padding: 20px 22px; background: var(--soft); border-left: 4px solid var(--lime-strong); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.use-case-list h3 { margin-bottom: 5px; }
.use-case-list p { margin: 0; font-size: 14px; }
.info-panel .notice, .notice { padding: 16px; margin: 22px 0 0; color: #273500; background: var(--lime); border-radius: var(--radius-sm); font-size: 13px; }
.info-panel > p strong { color: #fff; }

.price-preview { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: 65px; }
.price-preview h2 { font-size: 38px; }
.table-scroll { max-width: 100%; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); -webkit-overflow-scrolling: touch; }
.section-dark .table-scroll { border-color: #3d4038; }
table { width: 100%; min-width: 620px; border-collapse: collapse; background: #fff; color: var(--ink); font-size: 14px; }
caption { padding: 14px 18px; color: var(--muted); background: var(--soft); font-size: 12px; font-weight: 700; text-align: left; caption-side: bottom; }
th, td { padding: 15px 17px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; white-space: nowrap; }
th { color: #fff; background: var(--ink); font-size: 12px; letter-spacing: .03em; }
td:first-child { font-weight: 800; }
tbody tr:nth-child(even) { background: #f8f9f5; }
tbody tr:last-child td { border-bottom: 0; }
.table-note { margin: 12px 2px 0; font-size: 12px; }

.price-layout { display: grid; grid-template-columns: 220px minmax(0, 1fr); align-items: start; gap: 50px; }
.price-nav { position: sticky; top: 110px; display: grid; padding: 22px; gap: 4px; background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); }
.price-nav strong { margin-bottom: 10px; font-size: 14px; }
.price-nav a { padding: 8px 10px; color: var(--muted); border-radius: 8px; font-size: 13px; font-weight: 700; }
.price-nav a:hover { color: var(--ink); background: var(--lime-soft); }
.price-content { min-width: 0; }
.price-block { margin-bottom: 68px; }
.price-block:last-child { margin-bottom: 0; }
.price-block-heading { display: grid; margin-bottom: 24px; grid-template-columns: 55px 1fr; gap: 20px; }
.price-block-heading > span { display: flex; width: 46px; height: 46px; align-items: center; justify-content: center; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: 12px; font-weight: 900; }
.price-block-heading h2 { margin-bottom: 7px; font-size: 31px; }
.price-block-heading p { margin: 0; }
.factor-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.factor-grid article { display: flex; min-height: 88px; padding: 18px; align-items: center; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.factor-grid b { display: flex; width: 36px; height: 36px; align-items: center; justify-content: center; background: var(--lime); border-radius: 50%; font-size: 11px; }
.factor-grid span { font-weight: 800; }

.comparison-heading { display: flex; margin-bottom: 36px; align-items: end; justify-content: space-between; gap: 30px; }
.comparison-heading h2 { margin: 0; }

.product-hero { padding: 58px 0 86px; background: linear-gradient(145deg, #fff 0%, #f3f5ee 48%, #edffd0 100%); }
.product-hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 70px; }
.product-hero-media { overflow: hidden; background: #e9ffbd; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.product-hero-copy h1 { font-size: clamp(38px, 4.8vw, 62px); }
.product-summary { display: grid; max-width: 520px; margin: 28px 0; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #cacdc4; border-bottom: 1px solid #cacdc4; }
.product-summary div { display: grid; padding: 17px 20px 17px 0; }
.product-summary div + div { padding-left: 22px; border-left: 1px solid #cacdc4; }
.product-summary span { color: var(--muted); font-size: 11px; }
.product-summary strong { font-size: 23px; }
.microcopy { margin: 14px 0 0; font-size: 12px; }
.tag-list { display: flex; margin-top: 28px; flex-wrap: wrap; gap: 8px; }
.tag-list span { padding: 8px 12px; color: #395e00; background: var(--lime-soft); border: 1px solid #caee89; border-radius: 999px; font-size: 12px; font-weight: 750; }
.product-facts { display: grid; margin: 28px 0 0; border-top: 1px solid var(--line); }
.product-facts div { display: grid; padding: 14px 0; border-bottom: 1px solid var(--line); grid-template-columns: 105px 1fr; gap: 15px; }
.product-facts dt { color: var(--muted); font-size: 12px; font-weight: 800; }
.product-facts dd { margin: 0; font-size: 14px; font-weight: 650; }
.table-intro { max-width: 800px; margin-bottom: 30px; }
.dual-table-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; gap: 28px; }
.dual-table-grid section { min-width: 0; padding: 25px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.dual-table-grid h3 { font-size: 24px; }
.dual-table-grid .table-scroll + .table-scroll { margin-top: 18px; }
.faded-table { box-shadow: inset 0 4px var(--lime-strong); }
.warning { padding: 14px 16px; color: #552f00; background: #fff1c7; border: 1px solid #f2cc78; border-radius: var(--radius-sm); font-size: 13px; }

.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.gallery-grid figure { margin: 0; overflow: hidden; background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.gallery-grid figcaption { padding: 14px 18px; color: var(--muted); background: #fff; font-size: 12px; }
.gallery-note { display: flex; min-height: 430px; padding: 42px; align-items: center; background: var(--ink) !important; }
.gallery-note span { color: var(--lime); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.gallery-note h3 { margin-top: 20px; color: #fff; font-size: 34px; }
.gallery-note p { color: #c8cac2; }
.gallery-note .text-link { color: var(--lime); }

.blog-toolbar { display: flex; margin-bottom: 34px; align-items: end; justify-content: space-between; gap: 30px; }
.blog-toolbar h2 { margin: 0; }
.filter-chips { display: flex; max-width: 100%; flex-wrap: wrap; gap: 7px; }
.filter-chips button { padding: 8px 13px; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; font-weight: 750; cursor: pointer; }
.filter-chips button:hover, .filter-chips button.active { color: var(--ink); background: var(--lime); border-color: var(--lime-strong); }
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.blog-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); transition: transform .25s ease, box-shadow .25s ease; }
.blog-card:hover { box-shadow: 0 14px 32px rgba(17, 18, 15, .09); transform: translateY(-4px); }
.blog-card[hidden] { display: none; }
.blog-media { display: flex; min-height: 260px; align-items: center; background: var(--soft); }
.blog-body { padding: 24px; }
.blog-meta, .article-kicker { display: flex; margin-bottom: 15px; align-items: center; justify-content: space-between; gap: 10px; color: var(--muted); font-size: 11px; font-weight: 750; }
.blog-meta span, .article-kicker span { color: #4f7f00; font-weight: 900; letter-spacing: .08em; }
.blog-body h2 { font-size: 22px; }
.blog-body h2 a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.blog-body p { font-size: 14px; }
.empty-state, .not-found { text-align: center; }
.empty-state { padding: 70px 30px; background: var(--soft); border-radius: var(--radius-lg); }
.not-found { padding: 120px 0; }
.not-found .hero-lead { margin-inline: auto; }
.not-found .hero-actions { justify-content: center; }

.article-header { padding: 68px 0 38px; text-align: center; }
.article-header h1 { font-size: clamp(38px, 5vw, 62px); }
.article-header .hero-lead { margin-inline: auto; }
.article-kicker { justify-content: center; gap: 20px; }
.article-cover { display: flex; max-width: 1100px; padding: 0; justify-content: center; overflow: hidden; background: var(--soft); border-radius: var(--radius-lg); }
.article-cover img { width: auto; max-height: 760px; }
.article-layout { display: grid; padding-top: 65px; padding-bottom: 80px; grid-template-columns: minmax(0, 1fr) 310px; align-items: start; gap: 75px; }
.article-content { max-width: 760px; }
.article-content h2 { margin-top: 48px; font-size: 32px; }
.article-content h3 { margin-top: 32px; }
.article-content p, .article-content li { font-size: 17px; }
.article-content ul { padding-left: 22px; }
.article-content li { margin-bottom: 8px; color: var(--muted); }
.answer-box { padding: 24px; background: var(--lime-soft); border: 1px solid #c9eb8c; border-left: 5px solid var(--lime-strong); border-radius: var(--radius); }
.answer-box strong { display: block; margin-bottom: 8px; font-size: 13px; }
.answer-box p { margin: 0; color: #354800; }
.article-checklist { padding: 22px 25px 14px 46px !important; background: var(--soft); border-radius: var(--radius); }
.article-link-card { display: flex; padding: 22px; margin-top: 32px; align-items: center; justify-content: space-between; gap: 20px; background: var(--lime); border-radius: var(--radius); }
.article-link-card div { display: grid; }
.article-link-card span { color: #405500; font-size: 11px; }
.article-link-card strong { font-size: 18px; }
.article-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.service-shirt-links { grid-template-columns: repeat(4, 1fr); }
.article-service-grid a { display: grid; padding: 18px; background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.article-service-grid a:hover { background: var(--lime-soft); border-color: #a9d653; }
.article-service-grid span { margin-top: 10px; color: var(--muted); font-size: 12px; }
.sticky-card { position: sticky; top: 110px; padding: 27px; background: var(--ink); border-radius: var(--radius-lg); }
.sticky-card h2 { color: #fff; font-size: 27px; }
.sticky-card p { color: #c7c9c1; }
.sticky-card .button { width: 100%; }
.sticky-card .text-link { margin-top: 18px; color: var(--lime); }

.faq-tools { padding: 25px; background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); }
.faq-tools label { display: block; margin-bottom: 9px; font-size: 13px; font-weight: 800; }
.faq-tools input { width: 100%; min-height: 52px; padding: 12px 16px; margin-bottom: 16px; color: var(--ink); background: #fff; border: 1px solid #bfc3b7; border-radius: 10px; }
.faq-tools input:focus { border-color: #5c9200; box-shadow: 0 0 0 3px rgba(168, 255, 0, .25); outline: 0; }
.faq-count { margin: 24px 0 10px; font-size: 13px; }
.faq-list-all .faq-item[hidden] { display: none; }
.empty-faq { padding: 40px; color: var(--muted); text-align: center; background: var(--soft); border-radius: var(--radius); }

.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) 370px; align-items: start; gap: 70px; }
.contact-checklist { margin-top: 35px; }
.contact-checklist article { display: grid; padding: 24px 0; border-top: 1px solid var(--line); grid-template-columns: 52px 1fr; gap: 14px; }
.contact-checklist article > span { display: flex; width: 38px; height: 38px; align-items: center; justify-content: center; background: var(--lime); border-radius: 50%; font-size: 11px; font-weight: 900; }
.contact-checklist h3 { margin-bottom: 5px; }
.contact-checklist p { margin: 0; }
.contact-card { position: sticky; top: 110px; padding: 32px; text-align: center; background: var(--ink); border-radius: var(--radius-lg); }
.contact-card img { width: 180px; margin: 0 auto 24px; border-radius: var(--radius); }
.contact-card h2 { color: #fff; }
.contact-card p { color: #c8cac1; }
.contact-card .button { width: 100%; }
.contact-card ul { padding: 20px 0 0; margin: 20px 0 0; color: #c8cac1; border-top: 1px solid #383a34; list-style: none; font-size: 13px; }
.contact-card li { margin-bottom: 7px; }

.site-footer { padding-top: 68px; color: #fff; background: var(--ink); border-top: 8px solid var(--lime); }
.footer-grid { display: grid; padding-bottom: 55px; grid-template-columns: 1.5fr .7fr .7fr .95fr 1fr; gap: 36px; }
.brand-footer { margin-bottom: 22px; }
.brand-footer img { width: 74px; }
.brand-footer strong { color: #fff; }
.brand-footer small { color: #aeb1a8; }
.footer-brand p { max-width: 420px; color: #b8bbb2; font-size: 14px; }
.site-footer h2 { margin-bottom: 22px; color: #fff; font-size: 16px; }
.footer-links, .footer-contact { padding: 0; margin: 0; list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a, .footer-contact { color: #b8bbb2; font-size: 13px; }
.footer-links a:hover, .footer-bottom a:hover { color: var(--lime); }
.footer-contact li { display: grid; margin-bottom: 14px; }
.footer-contact span { color: #fff; font-size: 11px; font-weight: 800; }
.footer-contact a:hover { color: var(--lime); }
.footer-embed { padding: 18px 0 28px; overflow: hidden; }
.footer-embed iframe { display: block; width: 100%; max-width: 100%; border: 0; }
.footer-bottom { display: flex; padding: 19px 0; align-items: center; justify-content: space-between; border-top: 1px solid #363831; }
.footer-bottom p { margin: 0; color: #92958d; font-size: 11px; }
.mobile-action { display: none; }

@media (max-width: 1050px) {
    .main-nav > a:not(.button) { padding-inline: 9px; }
    .hero-grid, .inner-hero-grid, .product-hero-grid { gap: 38px; }
    .hero-grid { min-height: 600px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-grid, .check-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
    body { padding-bottom: 64px; }
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 68px 0; }
    .topbar { font-size: 10px; }
    .site-header, .nav-wrap { min-height: 68px; }
    .brand img { width: 48px; }
    .brand strong { font-size: 16px; }
    .nav-toggle { display: grid; width: 44px; height: 44px; padding: 10px; align-content: center; gap: 5px; background: #fff; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; }
    .nav-toggle span { display: block; width: 100%; height: 2px; background: var(--ink); transition: .2s ease; }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .main-nav { position: fixed; top: 99px; right: 0; bottom: 0; left: 0; display: none; padding: 22px 20px 40px; align-items: stretch; overflow-y: auto; background: #fff; }
    .main-nav.open { display: flex; flex-direction: column; }
    .main-nav > a:not(.button) { padding: 15px 4px; border-bottom: 1px solid var(--line); font-size: 18px; }
    .main-nav > a:not(.button)::after { display: none; }
    .nav-cta { min-height: 54px; margin: 14px 0 0; }
    .hero-grid, .inner-hero-grid, .product-hero-grid, .split-layout, .prose-grid, .price-preview, .article-layout, .contact-grid { grid-template-columns: 1fr; }
    .hero-grid { padding-top: 55px; padding-bottom: 75px; gap: 48px; }
    .hero-visual { max-width: 620px; }
    .hero-price-card { right: 12px; bottom: -28px; }
    .trust-grid { grid-template-columns: 1fr; padding: 8px 0; }
    .trust-grid span { padding: 8px 15px; }
    .trust-grid span + span { border-left: 0; }
    .quick-link-grid { grid-template-columns: repeat(2, 1fr); }
    .product-media { min-height: 260px; }
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .process-card:not(:last-child)::after { display: none; }
    .cta-panel { display: grid; }
    .cta-actions { justify-items: start; }
    .inner-hero { padding: 58px 0 68px; }
    .inner-hero-media { max-width: 620px; }
    .decision-card, .info-panel { max-width: 650px; }
    .price-preview { gap: 35px; }
    .price-layout { grid-template-columns: 1fr; }
    .price-nav { position: static; display: flex; padding: 12px; overflow-x: auto; white-space: nowrap; }
    .price-nav strong { display: none; }
    .dual-table-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .article-layout { gap: 40px; }
    .article-content { max-width: none; }
    .service-shirt-links { grid-template-columns: repeat(2, 1fr); }
    .article-sidebar { order: -1; }
    .sticky-card { position: static; }
    .contact-card { position: static; max-width: 520px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-brand { grid-column: 1 / -1; }
    .mobile-action { position: fixed; right: 0; bottom: 0; left: 0; z-index: 90; display: grid; height: 64px; padding: 7px max(10px, env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left)); grid-template-columns: .75fr 1.25fr; gap: 7px; background: rgba(255, 255, 255, .96); border-top: 1px solid var(--line); backdrop-filter: blur(12px); }
    .mobile-action a { display: flex; align-items: center; justify-content: center; background: var(--soft); border-radius: 999px; font-size: 13px; font-weight: 850; }
    .mobile-action .mobile-action-primary { background: var(--lime); }
}

@media (max-width: 620px) {
    .container { width: min(calc(100% - 24px), var(--container)); }
    .section { padding: 56px 0; }
    h1 { font-size: 39px; }
    h2 { font-size: 30px; }
    .brand small { display: none; }
    .hero-grid { padding-top: 42px; }
    .hero-lead, .section-heading > p:last-child, .lead { font-size: 16px; }
    .hero-actions { align-items: stretch; }
    .hero-actions .button { flex: 1 1 auto; }
    .hero-points { display: grid; }
    .hero-price-card { width: 178px; padding: 14px 16px; }
    .hero-price-card strong { font-size: 30px; }
    .service-grid, .product-grid, .audience-grid, .process-grid, .feature-grid, .check-grid, .factor-grid, .gallery-grid, .blog-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 230px; }
    .quick-link-grid { grid-template-columns: 1fr; }
    .quick-link-grid a { min-height: 160px; }
    .quick-link-grid h3 { margin-top: 25px; }
    .product-media { min-height: 0; }
    .product-body p { min-height: auto; }
    .checklist-card { padding: 22px; }
    .check-list li { grid-template-columns: 1fr; gap: 2px; }
    .process-card { min-height: 210px; }
    .step-number { margin-bottom: 34px; }
    .cta-panel { padding: 30px 24px; }
    .cta-panel h2 { font-size: 31px; }
    .inner-hero h1, .product-hero-copy h1 { font-size: 39px; }
    .price-preview h2 { font-size: 31px; }
    .price-block-heading { grid-template-columns: 42px 1fr; gap: 12px; }
    .price-block-heading > span { width: 38px; height: 38px; }
    .price-block-heading h2 { font-size: 26px; }
    .table-scroll { border-radius: 12px; }
    table { min-width: 600px; font-size: 13px; }
    th, td { padding: 13px 14px; }
    .product-summary { grid-template-columns: 1fr 1fr; }
    .dual-table-grid section { padding: 18px; }
    .gallery-note { min-height: 340px; padding: 28px; }
    .blog-toolbar, .comparison-heading { display: grid; align-items: start; }
    .blog-media { min-height: 0; }
    .article-header { padding-top: 48px; }
    .article-header h1 { font-size: 38px; }
    .article-cover { width: calc(100% - 24px); }
    .article-layout { padding-top: 42px; }
    .article-content p, .article-content li { font-size: 16px; }
    .article-content h2 { font-size: 27px; }
    .article-link-card { display: grid; }
    .article-service-grid { grid-template-columns: 1fr; }
    .service-shirt-links { grid-template-columns: 1fr; }
    .contact-checklist article { grid-template-columns: 44px 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 1 / -1; }
    .footer-bottom { display: grid; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
    .topbar, .site-header, .mobile-action, .section-cta, .site-footer, .price-nav { display: none !important; }
    body { color: #000; background: #fff; font-size: 12pt; }
    .section { padding: 20px 0; }
    .table-scroll { overflow: visible; }
    table { min-width: 0; }
}
