:root {
    --green-950: #043321;
    --green-900: #06452d;
    --green-800: #075e3b;
    --green-700: #087d43;
    --green-600: #08a44a;
    --green-500: #0bbb50;
    --green-400: #2cda6c;
    --green-300: #73ee9e;
    --lime: #c9ff48;
    --lime-soft: #eaffad;
    --mint: #eaffef;
    --mint-2: #f5fff7;
    --white: #fff;
    --ink: #0b2d1c;
    --ink-soft: #274b39;
    --muted: #698073;
    --line: #d8eadf;
    --line-strong: #bed9c8;
    --danger: #c83b45;
    --shadow-sm: 0 10px 30px rgba(4, 75, 39, .08);
    --shadow-md: 0 20px 55px rgba(4, 75, 39, .13);
    --shadow-lg: 0 35px 100px rgba(4, 64, 34, .2);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --radius-xl: 48px;
    --font-heading: "Prompt", "Noto Sans Thai", Tahoma, sans-serif;
    --font-body: "IBM Plex Sans Thai", "Noto Sans Thai", Tahoma, sans-serif;
    --container: 1240px;
    --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 115px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.chat-open, body.menu-open, body.popup-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg.icon { width: 1.15em; height: 1.15em; display: inline-block; vertical-align: -.16em; flex: 0 0 auto; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 108px 0; position: relative; }
.section-tight { padding: 58px 0; position: relative; }
.section-soft { background: var(--mint-2); }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 99999; background: #fff; color: var(--green-900); padding: 12px 18px; border-radius: 12px; box-shadow: var(--shadow-md); }
.skip-link:focus { top: 20px; }

h1, h2, h3, h4, strong { font-family: var(--font-heading); }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.18; letter-spacing: -.025em; }

.eyebrow, .hero-eyebrow, .card-kicker, .mini-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--green-600);
    font-family: var(--font-heading);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 99px; background: var(--lime); box-shadow: 0 0 0 4px rgba(201,255,72,.18); }
.eyebrow-light { color: #e8fff0; }
.eyebrow-light::before { background: var(--lime); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 21px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.15;
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { min-height: 58px; padding: 15px 27px; font-size: 1.02rem; }
.btn-sm { min-height: 42px; padding: 10px 17px; font-size: .9rem; }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--green-600), var(--green-400)); box-shadow: 0 13px 30px rgba(8,164,74,.25); }
.btn-primary:hover { box-shadow: 0 17px 40px rgba(8,164,74,.34); }
.btn-light { color: var(--green-900); background: #fff; box-shadow: 0 15px 35px rgba(5,66,37,.18); }
.btn-light:hover { background: var(--lime); }
.btn-outline { color: var(--green-800); border-color: var(--line-strong); background: #fff; }
.btn-outline:hover { border-color: var(--green-500); background: var(--mint); }
.btn-ghost-light { color: #fff; border-color: rgba(255,255,255,.44); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.17); }
.btn-line { background: #06c755; color: #fff; box-shadow: 0 12px 28px rgba(6,199,85,.22); }
.btn-line:hover { background: #05b84e; }
.btn-full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green-700); font-family: var(--font-heading); font-weight: 600; }
.text-link .icon { transition: transform .2s ease; }
.text-link:hover .icon { transform: translateX(4px); }
.link-button { padding: 0; border: 0; background: none; cursor: pointer; color: inherit; text-align: left; font: inherit; }
.icon-button { display: inline-grid; place-items: center; width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(255,255,255,.12); cursor: pointer; }

.announcement-bar { background: var(--green-950); color: #ecfff2; min-height: 37px; position: relative; z-index: 70; }
.announcement-bar a { min-height: 37px; padding: 6px 20px; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: .84rem; }
.announcement-bar .icon { transition: transform .2s ease; }
.announcement-bar a:hover .icon { transform: translateX(4px); }
.announcement-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 6px rgba(201,255,72,.12); }

.site-header { height: var(--header-height); background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(202,224,210,.8); position: sticky; top: 0; z-index: 60; backdrop-filter: blur(18px); transition: box-shadow .25s ease, height .25s ease; }
.site-header.is-scrolled { box-shadow: 0 10px 35px rgba(4,72,37,.08); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 24px; }
.brand { width: 144px; height: 66px; display: flex; align-items: center; overflow: hidden; flex: 0 0 auto; }
.brand img { width: 145px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.main-nav > a { font-family: var(--font-heading); font-size: .91rem; font-weight: 500; color: var(--ink-soft); position: relative; padding: 29px 0 25px; white-space: nowrap; }
.main-nav > a::after { content: ""; position: absolute; left: 50%; bottom: 15px; width: 0; height: 3px; border-radius: 99px; background: var(--green-500); transition: .2s ease; transform: translateX(-50%); }
.main-nav > a:hover, .main-nav > a.active { color: var(--green-700); }
.main-nav > a:hover::after, .main-nav > a.active::after { width: 20px; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone { display: flex; align-items: center; gap: 9px; }
.header-phone .icon-chip { width: 37px; height: 37px; border-radius: 12px; background: var(--mint); color: var(--green-700); display: grid; place-items: center; }
.header-phone span:last-child { display: grid; line-height: 1.15; }
.header-phone small { font-size: .68rem; color: var(--muted); }
.header-phone strong { font-size: .86rem; color: var(--green-900); }
.menu-toggle { display: none; margin-left: auto; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 14px; background: #fff; place-items: center; cursor: pointer; }
.menu-toggle .icon-close { display: none; }
.menu-open .menu-toggle .icon-menu { display: none; }
.menu-open .menu-toggle .icon-close { display: block; }

.hero { min-height: 690px; position: relative; background: var(--green-500); overflow: hidden; color: #fff; }
.hero-slides { min-height: 690px; position: relative; }
.hero-slide { position: absolute; inset: 0; min-height: 690px; opacity: 0; visibility: hidden; transform: scale(1.015); transition: opacity .65s ease, transform .75s ease, visibility .65s; background: linear-gradient(120deg, var(--hero-from), var(--hero-to)); overflow: hidden; }
.hero-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); }
.hero-noise { position: absolute; inset: 0; opacity: .13; background-image: radial-gradient(rgba(255,255,255,.8) .7px, transparent .7px); background-size: 13px 13px; mask-image: linear-gradient(to right,#000,transparent 80%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.hero-orb.orb-a { width: 450px; height: 450px; right: -150px; top: -180px; background: rgba(255,255,255,.12); }
.hero-orb.orb-b { width: 260px; height: 260px; left: -100px; bottom: -120px; background: rgba(255,255,255,.11); }
.hero-grid { min-height: 650px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 46px; position: relative; z-index: 2; padding-top: 30px; padding-bottom: 50px; }
.hero-copy { max-width: 650px; }
.hero-eyebrow { color: #f1fff4; margin-bottom: 17px; }
.hero-eyebrow i { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 7px rgba(201,255,72,.16); }
.hero-copy h1 { font-size: clamp(2.65rem, 5.25vw, 5.15rem); margin: 0 0 22px; font-weight: 800; letter-spacing: -.05em; max-width: 780px; }
.hero-copy p { max-width: 670px; font-size: 1.14rem; line-height: 1.75; color: rgba(255,255,255,.88); margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-trust { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 13px 22px; font-size: .88rem; color: rgba(255,255,255,.9); }
.hero-trust span { display: flex; align-items: center; gap: 7px; }
.hero-trust .icon { color: var(--lime); }
.hero-visual { position: relative; min-height: 500px; display: grid; place-items: center; }
.hero-visual > img { width: min(100%, 700px); max-height: 580px; object-fit: contain; filter: drop-shadow(0 30px 45px rgba(3,45,24,.16)); }
.hero-float-card { position: absolute; display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: rgba(255,255,255,.94); color: var(--green-900); border: 1px solid rgba(255,255,255,.75); border-radius: 18px; box-shadow: var(--shadow-md); animation: floatCard 4.2s ease-in-out infinite; }
.hero-float-card small, .hero-float-card strong { display: block; line-height: 1.25; }
.hero-float-card small { font-family: var(--font-heading); font-size: .62rem; letter-spacing: .1em; color: var(--muted); }
.hero-float-card strong { font-size: .9rem; }
.float-card-a { left: 0; bottom: 75px; }
.float-card-b { right: 7px; top: 100px; animation-delay: -1.7s; }
.float-icon { width: 39px; height: 39px; border-radius: 13px; background: var(--mint); color: var(--green-600); display: grid; place-items: center; }
.pulse-dot { width: 13px; height: 13px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 8px rgba(11,187,80,.13); }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.hero-controls { position: absolute; z-index: 5; bottom: 42px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; justify-content: space-between; }
.hero-dots { display: flex; gap: 10px; }
.hero-dot { width: 38px; height: 18px; padding: 0; border: 0; background: transparent; cursor: pointer; display: grid; align-items: center; }
.hero-dot span { display: block; height: 3px; border-radius: 99px; background: rgba(255,255,255,.38); overflow: hidden; position: relative; }
.hero-dot.is-active span { background: var(--lime); }
.hero-arrows { display: flex; gap: 8px; }
.hero-arrows button { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.1); color: #fff; display: grid; place-items: center; cursor: pointer; backdrop-filter: blur(8px); }
.hero-arrows button:hover { background: #fff; color: var(--green-900); }
.hero-bottom-wave { position: absolute; left: 0; right: 0; bottom: -1px; height: 34px; background: #fff; clip-path: polygon(0 72%, 17% 83%, 34% 60%, 52% 86%, 70% 63%, 86% 80%, 100% 60%, 100% 100%, 0 100%); }

.quick-journey { margin-top: -12px; background: #fff; z-index: 4; }
.journey-strip { border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: var(--shadow-md); display: grid; grid-template-columns: 1.15fr repeat(3, 1fr); overflow: hidden; }
.journey-intro, .journey-item { min-height: 128px; padding: 24px 26px; }
.journey-intro { background: var(--green-950); color: #fff; display: flex; flex-direction: column; justify-content: center; }
.journey-intro h2 { font-size: 1.22rem; margin: 7px 0 0; }
.mini-label { color: var(--lime); font-size: .65rem; }
.journey-item { border: 0; border-right: 1px solid var(--line); background: #fff; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; text-align: left; cursor: pointer; transition: background .2s ease; }
.journey-item:last-child { border-right: 0; }
.journey-item:hover { background: var(--mint); }
.journey-number { font-family: var(--font-heading); font-size: .72rem; color: var(--green-500); font-weight: 700; align-self: start; margin-top: 7px; }
.journey-item strong, .journey-item small { display: block; }
.journey-item strong { font-size: .98rem; }
.journey-item small { margin-top: 4px; color: var(--muted); font-size: .77rem; line-height: 1.4; }
.journey-item > .icon { color: var(--green-500); transition: transform .2s ease; }
.journey-item:hover > .icon { transform: translateX(4px); }

.section-heading { margin-bottom: 46px; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.65rem); margin: 14px 0 0; font-weight: 700; }
.section-heading p { color: var(--muted); max-width: 610px; margin: 14px 0 0; }
.section-heading.center { text-align: center; max-width: 820px; margin-inline: auto; margin-bottom: 50px; }
.section-heading.center p { margin-inline: auto; }
.split-heading { display: grid; grid-template-columns: 1.12fr .88fr; gap: 60px; align-items: end; }
.split-heading > p, .heading-action { justify-self: end; max-width: 510px; }
.heading-action .text-link, .heading-action .btn { margin-top: 16px; }
.split-heading.light { color: #fff; }
.split-heading.light p { color: rgba(255,255,255,.76); }

.bento-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-auto-rows: minmax(245px, auto); gap: 20px; }
.bento-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; padding: 30px; box-shadow: var(--shadow-sm); }
.bento-card h3 { font-size: 1.35rem; margin: 16px 0 11px; }
.bento-card p { color: var(--muted); margin: 0; }
.bento-large { grid-column: span 2; grid-row: span 2; min-height: 515px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 22px; padding: 42px; }
.bento-large h3 { font-size: 2.1rem; }
.bento-green { background: linear-gradient(145deg, var(--green-500), var(--green-300)); color: #fff; border: 0; }
.bento-green p { color: rgba(255,255,255,.82); }
.bento-dark { background: var(--green-950); color: #fff; border: 0; }
.bento-dark p { color: rgba(255,255,255,.72); }
.bento-wide { grid-column: span 2; display: flex; justify-content: space-between; align-items: flex-end; gap: 25px; background: linear-gradient(120deg,#fff 0,#fff 65%,#eaffef 100%); }
.bento-icon { width: 58px; height: 58px; border-radius: 20px; display: grid; place-items: center; background: rgba(255,255,255,.17); color: #fff; font-size: 1.45rem; }
.bento-icon.pale { background: var(--mint); color: var(--green-600); }
.bento-icon.neon { background: var(--lime); color: var(--green-950); }
.card-kicker { color: var(--green-600); }
.brand-orbit { min-height: 370px; position: relative; display: grid; place-items: center; }
.orbit-ring { position: absolute; border: 1px dashed rgba(8,164,74,.32); border-radius: 50%; }
.ring-one { width: 310px; height: 310px; animation: spin 23s linear infinite; }
.ring-two { width: 225px; height: 225px; animation: spin 17s linear reverse infinite; }
.orbit-core { width: 150px; height: 150px; border-radius: 42px; display: grid; place-items: center; background: linear-gradient(145deg,var(--green-700),var(--green-400)); box-shadow: 0 25px 45px rgba(7,94,59,.25); transform: rotate(-8deg); }
.orbit-core img { width: 115px; transform: rotate(8deg); }
.orbit-node { position: absolute; width: 57px; height: 57px; border-radius: 19px; display: grid; place-items: center; background: #fff; color: var(--green-600); box-shadow: var(--shadow-md); font-size: 1.35rem; }
.node-one { top: 34px; right: 75px; }
.node-two { left: 30px; bottom: 100px; }
.node-three { right: 42px; bottom: 48px; background: var(--lime); color: var(--green-950); }
@keyframes spin { to { transform: rotate(360deg); } }
.speed-lines { position: absolute; right: -15px; bottom: 5px; transform: rotate(-17deg); opacity: .32; }
.speed-lines i { display: block; height: 7px; width: 140px; margin: 11px; background: #fff; border-radius: 999px; }
.speed-lines i:nth-child(2) { width: 95px; margin-left: 50px; }
.speed-lines i:nth-child(3) { width: 180px; margin-left: -15px; }
.mini-avatars { display: flex; margin-top: 25px; }
.mini-avatars img { width: 54px; height: 54px; border-radius: 18px; object-fit: cover; border: 4px solid #fff; margin-left: -9px; background: var(--mint); }
.mini-avatars img:first-child { margin-left: 0; }
.log-code { margin-top: 24px; display: grid; gap: 7px; font-family: monospace; color: var(--lime); font-size: .72rem; }
.log-code span { padding: 7px 10px; border: 1px solid rgba(201,255,72,.18); border-radius: 8px; background: rgba(255,255,255,.04); }

.packages-section { overflow: hidden; }
.card-slider { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.package-card { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.package-card.featured { border-color: var(--green-400); box-shadow: 0 25px 70px rgba(8,164,74,.17); }
.package-media { display: block; position: relative; aspect-ratio: 1.6; overflow: hidden; background: var(--mint); }
.package-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.package-card:hover .package-media img { transform: scale(1.035); }
.package-badge { position: absolute; left: 18px; top: 18px; padding: 7px 12px; border-radius: 999px; background: #fff; color: var(--green-700); font-family: var(--font-heading); font-size: .72rem; font-weight: 700; box-shadow: var(--shadow-sm); }
.package-body { padding: 28px; position: relative; }
.package-index { position: absolute; right: 27px; top: 28px; color: var(--line-strong); font-family: var(--font-heading); font-size: .8rem; font-weight: 700; }
.package-body h3 { font-size: 1.55rem; margin: 0 0 6px; }
.package-price { display: block; color: var(--green-600); font-size: 1.05rem; margin-bottom: 12px; }
.package-body p { color: var(--muted); font-size: .94rem; min-height: 72px; }
.package-body ul { list-style: none; padding: 0; margin: 22px 0 26px; display: grid; gap: 11px; }
.package-body li { display: flex; gap: 9px; align-items: flex-start; font-size: .88rem; }
.package-body li .icon { margin-top: 4px; color: var(--green-500); }
.slider-mobile-hint { display: none; color: var(--muted); font-size: .8rem; margin-top: 16px; align-items: center; gap: 7px; justify-content: center; }

.sales-section { background: var(--green-950); color: #fff; overflow: hidden; }
.sales-section::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; right: -230px; top: -150px; background: radial-gradient(circle,var(--green-500),transparent 70%); opacity: .33; filter: blur(5px); }
.sales-bg-word { position: absolute; left: -30px; bottom: -45px; font-family: var(--font-heading); font-size: clamp(6rem,15vw,14rem); font-weight: 800; line-height: 1; color: rgba(255,255,255,.025); letter-spacing: -.08em; pointer-events: none; }
.sales-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 28px; position: relative; z-index: 2; }
.sales-list { display: grid; gap: 12px; align-content: start; }
.sales-card { width: 100%; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06); border-radius: 22px; color: #fff; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 15px; padding: 13px 16px; text-align: left; cursor: pointer; transition: .22s ease; }
.sales-card:hover { background: rgba(255,255,255,.1); transform: translateX(4px); }
.sales-card.is-selected { background: #fff; color: var(--green-950); border-color: #fff; box-shadow: 0 20px 50px rgba(0,0,0,.18); }
.sales-photo { width: 70px; height: 70px; border-radius: 21px; overflow: hidden; background: var(--mint); position: relative; }
.sales-photo img { width: 100%; height: 100%; object-fit: cover; }
.sales-photo i { position: absolute; right: 5px; bottom: 5px; width: 12px; height: 12px; border-radius: 50%; background: var(--green-400); border: 2px solid #fff; }
.sales-info { display: grid; }
.sales-info small { color: rgba(255,255,255,.58); font-size: .7rem; }
.sales-card.is-selected .sales-info small { color: var(--muted); }
.sales-info strong { font-size: 1.02rem; }
.sales-info em { font-style: normal; color: var(--lime); font-size: .67rem; margin-top: 3px; }
.sales-card.is-selected .sales-info em { color: var(--green-600); }
.select-mark { width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); display: grid; place-items: center; opacity: .25; }
.sales-card.is-selected .select-mark { opacity: 1; background: var(--green-500); color: #fff; border-color: var(--green-500); }
.sales-focus { min-height: 510px; border-radius: 38px; background: linear-gradient(145deg,var(--green-600),var(--green-300)); position: relative; overflow: hidden; display: grid; grid-template-columns: .88fr 1.12fr; align-items: end; padding: 40px 44px 40px 20px; box-shadow: 0 35px 90px rgba(0,0,0,.22); }
.sales-focus::before { content: ""; position: absolute; inset: 24px; border: 1px solid rgba(255,255,255,.21); border-radius: 28px; }
.sales-focus-glow { position: absolute; width: 310px; height: 310px; border-radius: 50%; left: 30px; top: 25px; background: var(--lime); filter: blur(70px); opacity: .45; }
.sales-focus-photo { position: relative; z-index: 2; align-self: end; min-height: 450px; display: flex; align-items: end; justify-content: center; }
.sales-focus-photo img { width: 100%; max-width: 390px; max-height: 455px; object-fit: contain; filter: drop-shadow(0 25px 25px rgba(0,0,0,.18)); }
.sales-focus-copy { position: relative; z-index: 3; padding: 20px 0; }
.availability { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.42); border-radius: 999px; padding: 7px 12px; font-size: .72rem; background: rgba(255,255,255,.11); }
.availability i { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 6px rgba(201,255,72,.15); }
.sales-focus-copy > small { display: block; margin-top: 22px; color: rgba(255,255,255,.75); }
.sales-focus-copy h3 { font-size: clamp(2rem,3.6vw,3.4rem); margin: 5px 0 12px; }
.sales-focus-copy p { color: rgba(255,255,255,.83); max-width: 480px; }
.sales-contact-actions { display: flex; gap: 11px; flex-wrap: wrap; margin-top: 25px; }
.sales-contact-actions .btn span { font-weight: 400; opacity: .72; }

.promotion-section { overflow: hidden; }
.promotion-slider { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(340px, 31.5%); gap: 20px; overflow-x: auto; scrollbar-width: none; scroll-snap-type: x mandatory; padding: 4px 3px 24px; cursor: grab; }
.promotion-slider::-webkit-scrollbar { display: none; }
.promotion-slider.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.promotion-card { scroll-snap-align: start; border-radius: 30px; overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.promotion-media { aspect-ratio: 1.5; display: block; position: relative; overflow: hidden; }
.promotion-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.promotion-card:hover .promotion-media img { transform: scale(1.045); }
.promotion-media span { position: absolute; left: 18px; top: 18px; padding: 7px 12px; border-radius: 999px; background: var(--green-950); color: var(--lime); font-family: var(--font-heading); font-size: .68rem; font-weight: 700; letter-spacing: .05em; }
.promotion-body { padding: 24px 25px 26px; position: relative; min-height: 245px; }
.promotion-body small { color: var(--green-600); font-size: .72rem; }
.promotion-body h3 { font-size: 1.24rem; margin: 8px 45px 10px 0; }
.promotion-body h3 a:hover { color: var(--green-600); }
.promotion-body p { color: var(--muted); font-size: .9rem; margin: 0; }
.round-link { position: absolute; right: 20px; bottom: 22px; width: 43px; height: 43px; border-radius: 50%; background: var(--mint); color: var(--green-600); display: grid; place-items: center; transition: .2s ease; }
.round-link:hover { background: var(--green-500); color: #fff; transform: rotate(-10deg); }

.customer-section { overflow: hidden; background: #fff; }
.customer-heading { display: flex; align-items: center; gap: 20px; color: var(--ink-soft); margin-bottom: 28px; }
.customer-heading > span { font-family: var(--font-heading); font-weight: 600; }
.customer-heading small { font-family: var(--font-heading); color: var(--green-500); letter-spacing: .12em; }
.customer-line { flex: 1; height: 1px; background: var(--line); }
.logo-marquee { overflow: hidden; mask-image: linear-gradient(to right,transparent,#000 8%,#000 92%,transparent); }
.logo-track { display: flex; width: max-content; gap: 18px; animation: marquee 32s linear infinite; }
.logo-track:hover { animation-play-state: paused; }
.customer-logo { width: 220px; height: 105px; border: 1px solid var(--line); border-radius: 20px; background: #fff; display: grid; place-items: center; padding: 14px; filter: grayscale(.75); opacity: .7; transition: .2s ease; }
.customer-logo:hover { filter: none; opacity: 1; border-color: var(--green-300); transform: translateY(-3px); }
.customer-logo img { max-height: 75px; }
@keyframes marquee { to { transform: translateX(calc(-50% - 9px)); } }

.blog-preview-section { background: #fff; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { border: 1px solid var(--line); border-radius: 29px; overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); transition: transform .24s ease, box-shadow .24s ease; }
.post-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.post-media { aspect-ratio: 1.55; position: relative; display: block; overflow: hidden; background: var(--mint); }
.post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .post-media img { transform: scale(1.04); }
.post-media > span { position: absolute; left: 17px; bottom: 17px; padding: 7px 12px; border-radius: 999px; background: #fff; color: var(--green-700); font-family: var(--font-heading); font-size: .7rem; font-weight: 600; box-shadow: var(--shadow-sm); }
.post-body { padding: 24px 25px 26px; }
.post-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--muted); font-size: .72rem; }
.post-meta span { display: inline-flex; align-items: center; gap: 6px; }
.post-body h3, .post-body h2 { font-size: 1.28rem; margin: 12px 0 10px; }
.post-body h3 a:hover, .post-body h2 a:hover { color: var(--green-600); }
.post-body p { color: var(--muted); font-size: .9rem; }
.post-featured { grid-column: span 1; }

.lead-section { background: linear-gradient(135deg,var(--green-950),#087845); color: #fff; overflow: hidden; }
.lead-section::before { content: ""; position: absolute; width: 570px; height: 570px; left: -240px; top: -190px; border-radius: 50%; background: rgba(201,255,72,.14); }
.lead-section::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.24) .7px,transparent .7px); background-size: 15px 15px; opacity: .08; mask-image: linear-gradient(to right,#000,transparent 55%); }
.lead-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; position: relative; z-index: 2; }
.lead-copy h2 { font-size: clamp(2.5rem,4.5vw,4.3rem); margin: 15px 0 22px; }
.lead-copy > p { color: rgba(255,255,255,.75); max-width: 520px; }
.lead-benefits { display: grid; gap: 11px; margin: 28px 0; }
.lead-benefits span { display: flex; align-items: center; gap: 10px; }
.lead-benefits .icon { color: var(--lime); }
.lead-contact-card { margin-top: 30px; display: inline-flex; align-items: center; gap: 14px; padding: 13px 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; background: rgba(255,255,255,.07); }
.lead-contact-card .icon-chip { width: 46px; height: 46px; border-radius: 15px; background: var(--lime); color: var(--green-950); display: grid; place-items: center; }
.lead-contact-card small, .lead-contact-card a { display: block; }
.lead-contact-card small { color: rgba(255,255,255,.62); font-size: .72rem; }
.lead-contact-card a { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; }
.lead-form-card { background: #fff; color: var(--ink); border-radius: 36px; padding: 36px; box-shadow: var(--shadow-lg); }
.form-head { display: flex; justify-content: space-between; align-items: start; margin-bottom: 28px; }
.form-head span { color: var(--green-500); font-family: var(--font-heading); font-size: .7rem; letter-spacing: .12em; }
.form-head h3 { font-size: 1.7rem; margin: 4px 0 0; }
.form-step { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--mint); color: var(--green-600); font-family: var(--font-heading); font-size: .8rem; font-weight: 700; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.field { display: grid; gap: 7px; }
.field > span { color: var(--ink-soft); font-family: var(--font-heading); font-size: .79rem; font-weight: 500; }
.field input, .field select, .field textarea {
    width: 100%; border: 1px solid var(--line); border-radius: 14px; background: #fbfffc; color: var(--ink); padding: 13px 14px; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input, .field select { min-height: 50px; }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-400); box-shadow: 0 0 0 4px rgba(11,187,80,.1); background: #fff; }
.field-full { grid-column: 1 / -1; }
.honeypot { position: absolute!important; left: -9999px!important; opacity: 0!important; pointer-events: none!important; }
.consent { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: .77rem; }
.consent input { margin-top: 5px; accent-color: var(--green-500); }
.consent a { color: var(--green-600); text-decoration: underline; }
.selected-advisor-inline { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 16px; background: var(--mint-2); margin: 20px 0 16px; }
.selected-advisor-inline img { width: 46px; height: 46px; border-radius: 14px; object-fit: cover; background: var(--mint); }
.selected-advisor-inline small, .selected-advisor-inline strong { display: block; }
.selected-advisor-inline small { color: var(--muted); font-size: .68rem; }
.selected-advisor-inline strong { font-size: .86rem; }
.selected-advisor-inline a { color: var(--green-600); font-size: .75rem; text-decoration: underline; }
.form-response { margin-top: 14px; padding: 12px 14px; border-radius: 12px; font-size: .86rem; }
.form-response.success { background: #eaffef; color: var(--green-800); border: 1px solid #b9e8c7; }
.form-response.error { background: #fff1f1; color: #9c2731; border: 1px solid #f0c7ca; }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.faq-layout .section-heading { position: sticky; top: 130px; }
.accordion { display: grid; gap: 12px; }
.accordion-item { border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: #fff; }
.accordion-item > button { width: 100%; border: 0; background: #fff; padding: 21px 23px; display: flex; justify-content: space-between; align-items: center; text-align: left; font-family: var(--font-heading); font-weight: 600; cursor: pointer; }
.accordion-item > button i { width: 24px; height: 24px; border-radius: 50%; background: var(--mint); position: relative; flex: 0 0 auto; }
.accordion-item > button i::before, .accordion-item > button i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 2px; background: var(--green-600); transform: translate(-50%,-50%); }
.accordion-item > button i::after { transform: translate(-50%,-50%) rotate(90deg); transition: transform .2s ease; }
.accordion-item.is-open > button i::after { transform: translate(-50%,-50%) rotate(0deg); }
.accordion-content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.accordion-content > p { overflow: hidden; padding: 0 23px; margin: 0; color: var(--muted); overflow-wrap: anywhere; white-space: normal; }
.accordion-item.is-open .accordion-content { grid-template-rows: 1fr; }
.accordion-item.is-open .accordion-content > p { padding-bottom: 22px; }

.footer-cta { background: var(--green-500); color: #fff; padding: 58px 0; position: relative; overflow: hidden; }
.footer-cta::after { content: ""; position: absolute; width: 400px; height: 400px; border-radius: 50%; right: -120px; top: -180px; background: var(--lime); opacity: .22; }
.footer-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 45px; position: relative; z-index: 2; }
.footer-cta h2 { font-size: clamp(1.9rem,3.5vw,3.25rem); margin: 10px 0 8px; }
.footer-cta p { margin: 0; color: rgba(255,255,255,.82); }
.footer-cta-actions { display: flex; flex-wrap: wrap; gap: 11px; flex: 0 0 auto; }
.site-footer { background: var(--green-950); color: #fff; padding: 74px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .8fr 1fr; gap: 45px; }
.footer-brand img { width: 160px; margin-bottom: 20px; }
.footer-brand > p { color: rgba(255,255,255,.62); max-width: 420px; }
.footer-contact-list { display: grid; gap: 10px; margin-top: 23px; }
.footer-contact-list a, .footer-contact-list span { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.78); font-size: .84rem; }
.footer-contact-list .icon { color: var(--lime); }
.footer-links { display: grid; align-content: start; gap: 11px; }
.footer-links h3, .footer-status h3 { font-size: 1rem; margin-bottom: 9px; }
.footer-links a, .footer-links button { color: rgba(255,255,255,.62); font-size: .84rem; }
.footer-links a:hover, .footer-links button:hover { color: var(--lime); }
.status-card { display: flex; align-items: center; gap: 12px; padding: 13px; border: 1px solid rgba(255,255,255,.11); border-radius: 15px; margin-bottom: 14px; background: rgba(255,255,255,.045); }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #8ba698; display: inline-block; }
.status-card.online .status-dot, .status-dot.online { background: var(--lime); box-shadow: 0 0 0 6px rgba(201,255,72,.13); }
.status-card strong, .status-card small { display: block; }
.status-card strong { font-size: .78rem; }
.status-card small { color: rgba(255,255,255,.5); font-size: .67rem; }
.footer-bottom { margin-top: 55px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.42); font-size: .72rem; }

.mobile-action-bar { display: none; }

.chat-shell { position: fixed; inset: 0; z-index: 900; pointer-events: none; visibility: hidden; }
.chat-shell[aria-hidden="false"] { pointer-events: auto; visibility: visible; }
.chat-backdrop { position: absolute; inset: 0; background: rgba(3,24,14,.55); opacity: 0; transition: opacity .25s ease; backdrop-filter: blur(3px); }
.chat-shell[aria-hidden="false"] .chat-backdrop { opacity: 1; }
.chat-panel { position: absolute; right: 26px; bottom: 24px; width: min(410px, calc(100% - 32px)); height: min(650px, calc(100dvh - 45px)); border-radius: 28px; background: #fff; box-shadow: 0 35px 120px rgba(0,0,0,.33); display: grid; grid-template-rows: auto auto 1fr auto auto; overflow: hidden; transform: translateY(25px) scale(.96); opacity: 0; transition: .25s ease; }
.chat-shell[aria-hidden="false"] .chat-panel { transform: translateY(0) scale(1); opacity: 1; }
.chat-header { background: linear-gradient(135deg,var(--green-800),var(--green-500)); color: #fff; padding: 16px 17px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; }
.chat-agent-mark { width: 50px; height: 50px; border-radius: 16px; background: rgba(255,255,255,.12); display: grid; place-items: center; overflow: hidden; }
.chat-agent-mark img { width: 44px; }
.chat-header strong, .chat-header span { display: block; }
.chat-header strong { font-size: .91rem; }
.chat-header span { font-size: .68rem; color: rgba(255,255,255,.72); margin-top: 3px; }
.chat-header .status-dot { margin-right: 7px; width: 7px; height: 7px; }
.chat-privacy-note { padding: 9px 14px; background: var(--mint); color: var(--green-800); font-size: .67rem; text-align: center; border-bottom: 1px solid var(--line); }
.chat-messages { overflow-y: auto; padding: 17px 15px; background: #f8fffa; display: flex; flex-direction: column; gap: 10px; }
.chat-loading { margin: auto; color: var(--muted); font-size: .8rem; }
.chat-message { max-width: 82%; display: grid; gap: 4px; }
.chat-message.guest { align-self: flex-end; }
.chat-message.admin, .chat-message.system { align-self: flex-start; }
.chat-bubble { padding: 10px 13px; border-radius: 16px 16px 16px 5px; background: #fff; border: 1px solid var(--line); color: var(--ink); font-size: .86rem; line-height: 1.5; white-space: pre-wrap; overflow-wrap: anywhere; }
.chat-message.guest .chat-bubble { background: var(--green-500); color: #fff; border-color: var(--green-500); border-radius: 16px 16px 5px 16px; }
.chat-message.system .chat-bubble { background: var(--mint); color: var(--green-800); font-size: .79rem; }
.chat-message-meta { color: #91a399; font-size: .61rem; padding-inline: 5px; }
.chat-message.guest .chat-message-meta { text-align: right; }
.chat-compose { display: grid; grid-template-columns: 1fr auto; gap: 9px; padding: 12px; border-top: 1px solid var(--line); background: #fff; align-items: end; }
.chat-compose textarea { width: 100%; max-height: 115px; resize: none; border: 1px solid var(--line); border-radius: 15px; padding: 11px 13px; outline: none; background: #fbfffc; font-size: .85rem; line-height: 1.45; }
.chat-compose textarea:focus { border-color: var(--green-400); box-shadow: 0 0 0 4px rgba(11,187,80,.08); }
.chat-compose button { width: 45px; height: 45px; border: 0; border-radius: 15px; background: var(--green-500); color: #fff; display: grid; place-items: center; cursor: pointer; }
.chat-error { padding: 8px 13px; background: #fff1f1; color: var(--danger); font-size: .72rem; }

.site-popup { position: fixed; inset: 0; z-index: 850; visibility: hidden; pointer-events: none; }
.site-popup[aria-hidden="false"] { visibility: visible; pointer-events: auto; }
.popup-backdrop { position: absolute; inset: 0; background: rgba(3,24,14,.64); opacity: 0; transition: opacity .26s ease; backdrop-filter: blur(5px); }
.site-popup[aria-hidden="false"] .popup-backdrop { opacity: 1; }
.popup-card { position: absolute; left: 50%; top: 50%; width: min(880px, calc(100% - 36px)); max-height: calc(100dvh - 36px); overflow: auto; transform: translate(-50%,-46%) scale(.95); opacity: 0; transition: .28s ease; background: #fff; border-radius: 34px; box-shadow: var(--shadow-lg); display: grid; grid-template-columns: 1.05fr .95fr; }
.site-popup[aria-hidden="false"] .popup-card { transform: translate(-50%,-50%) scale(1); opacity: 1; }
.popup-close { position: absolute; z-index: 3; right: 15px; top: 15px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.9); display: grid; place-items: center; cursor: pointer; }
.popup-media { min-height: 420px; background: var(--mint); }
.popup-media img { width: 100%; height: 100%; object-fit: cover; }
.popup-content { padding: 48px 42px; align-self: center; }
.popup-content h2 { font-size: 2.1rem; margin: 14px 0; }
.popup-content .btn { margin-top: 20px; }

.toast-stack { position: fixed; z-index: 1000; right: 20px; top: 20px; display: grid; gap: 10px; pointer-events: none; }
.toast { min-width: 250px; max-width: 360px; padding: 13px 16px; border-radius: 14px; background: var(--green-950); color: #fff; box-shadow: var(--shadow-md); font-size: .82rem; animation: toastIn .25s ease; }
.toast.success { background: var(--green-700); }
.toast.error { background: #9f2832; }
@keyframes toastIn { from { opacity: 0; transform: translateY(-8px); } }

/* Blog and content pages */
.page-hero { padding: 105px 0 90px; background: linear-gradient(135deg,var(--green-950),var(--green-500)); color: #fff; position: relative; overflow: hidden; }
.page-hero-orb { position: absolute; width: 510px; height: 510px; right: -170px; top: -210px; border-radius: 50%; background: var(--lime); opacity: .18; }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.8rem,5.5vw,5.25rem); margin: 17px 0 20px; }
.page-hero p { color: rgba(255,255,255,.78); max-width: 680px; font-size: 1.05rem; }
.page-hero-card { border: 1px solid rgba(255,255,255,.21); border-radius: 30px; padding: 28px; background: rgba(255,255,255,.09); backdrop-filter: blur(12px); }
.page-hero-card-label { color: var(--lime); font-family: var(--font-heading); font-size: .7rem; letter-spacing: .1em; }
.url-demo { margin: 17px 0; padding: 15px; border-radius: 15px; background: rgba(3,43,24,.5); font-family: monospace; font-size: .83rem; overflow: hidden; }
.url-demo span { color: rgba(255,255,255,.55); }
.url-demo strong { color: var(--lime); }
.page-hero-card p { font-size: .82rem; margin: 0; }
.blog-toolbar { display: grid; gap: 20px; margin-bottom: 34px; }
.search-box { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 19px; padding: 7px 7px 7px 17px; background: #fff; box-shadow: var(--shadow-sm); }
.search-box .icon { color: var(--green-500); }
.search-box input { border: 0; outline: 0; min-width: 0; padding: 8px 0; background: transparent; }
.search-box button { border: 0; border-radius: 13px; background: var(--green-500); color: #fff; padding: 10px 18px; font-family: var(--font-heading); cursor: pointer; }
.category-chips { display: flex; gap: 9px; overflow-x: auto; scrollbar-width: none; padding-bottom: 3px; }
.category-chips::-webkit-scrollbar { display: none; }
.category-chips a { white-space: nowrap; padding: 9px 14px; border-radius: 999px; border: 1px solid var(--line); color: var(--ink-soft); font-size: .8rem; background: #fff; }
.category-chips a.active, .category-chips a:hover { background: var(--green-950); color: #fff; border-color: var(--green-950); }
.category-chips small { margin-left: 5px; opacity: .65; }
.results-summary { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin-bottom: 25px; color: var(--muted); font-size: .82rem; }
.results-summary strong { padding: 5px 10px; background: var(--mint); color: var(--green-700); border-radius: 999px; font-size: .75rem; }
.results-summary a { margin-left: auto; color: var(--green-600); text-decoration: underline; }
.blog-grid { grid-template-columns: repeat(3,1fr); }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 42px; }
.pagination a { width: 43px; height: 43px; border-radius: 13px; border: 1px solid var(--line); display: grid; place-items: center; font-family: var(--font-heading); font-size: .82rem; }
.pagination a.active, .pagination a:hover { background: var(--green-500); color: #fff; border-color: var(--green-500); }
.empty-state { text-align: center; padding: 80px 20px; border: 1px dashed var(--line-strong); border-radius: 28px; background: var(--mint-2); }
.empty-state .bento-icon { margin-inline: auto; }
.empty-state h2 { margin: 18px 0 8px; }
.empty-state p { color: var(--muted); }

.article-hero { background: var(--green-950); color: #fff; padding: 72px 0 92px; position: relative; overflow: hidden; }
.article-hero-bg { position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%,rgba(37,213,105,.45),transparent 33%), radial-gradient(circle at 15% 80%,rgba(201,255,72,.13),transparent 30%); }
.article-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: .75rem; color: rgba(255,255,255,.58); margin-bottom: 22px; }
.breadcrumbs a:hover { color: var(--lime); }
.breadcrumbs em { font-style: normal; color: rgba(255,255,255,.84); }
.article-heading h1 { font-size: clamp(2.5rem,5vw,4.7rem); margin: 14px 0 19px; }
.article-heading > p { color: rgba(255,255,255,.76); font-size: 1.03rem; max-width: 680px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 14px 23px; color: rgba(255,255,255,.62); font-size: .77rem; margin-top: 25px; }
.article-meta span { display: inline-flex; align-items: center; gap: 7px; }
.article-cover { border-radius: 34px; overflow: hidden; box-shadow: 0 35px 80px rgba(0,0,0,.25); transform: rotate(2deg); }
.article-cover img { width: 100%; aspect-ratio: 1.28; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: 66px minmax(0,1fr) 300px; gap: 40px; align-items: start; padding-top: 70px; padding-bottom: 100px; }
.share-rail { position: sticky; top: 125px; display: grid; gap: 9px; justify-items: center; }
.share-rail > span { writing-mode: vertical-rl; color: var(--muted); font-family: var(--font-heading); font-size: .67rem; letter-spacing: .13em; margin-bottom: 8px; }
.share-rail a, .share-rail button { width: 43px; height: 43px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--green-700); display: grid; place-items: center; cursor: pointer; }
.share-rail a:hover, .share-rail button:hover { background: var(--green-500); color: #fff; border-color: var(--green-500); }
.article-main { min-width: 0; }
.rich-text { color: var(--ink-soft); font-size: 1.04rem; line-height: 1.9; }
.rich-text h2 { color: var(--ink); font-size: 1.9rem; margin: 48px 0 15px; }
.rich-text h3 { color: var(--ink); font-size: 1.45rem; margin: 34px 0 12px; }
.rich-text p { margin-bottom: 20px; }
.rich-text ul, .rich-text ol { padding-left: 25px; margin-bottom: 24px; }
.rich-text li { margin-bottom: 8px; }
.rich-text blockquote { margin: 30px 0; padding: 22px 25px; border-left: 5px solid var(--lime); border-radius: 0 18px 18px 0; background: var(--mint); color: var(--green-800); font-family: var(--font-heading); font-size: 1.15rem; }
.rich-text img { border-radius: 22px; margin: 28px auto; }
.rich-text a { color: var(--green-600); text-decoration: underline; }
.rich-text table { width: 100%; border-collapse: collapse; display: block; overflow-x: auto; }
.rich-text th, .rich-text td { border: 1px solid var(--line); padding: 12px; min-width: 130px; }
.rich-text th { background: var(--mint); }
.rich-text.compact { font-size: .92rem; line-height: 1.75; }
.rich-text.compact h2 { font-size: 1.4rem; margin-top: 24px; }
.tag-list { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin: 38px 0; padding-top: 25px; border-top: 1px solid var(--line); }
.tag-list > span { color: var(--muted); font-size: .78rem; }
.tag-list a { padding: 7px 11px; border-radius: 999px; background: var(--mint); color: var(--green-700); font-size: .72rem; }
.article-share-box { padding: 23px; border-radius: 22px; background: var(--green-950); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.article-share-box p { color: rgba(255,255,255,.6); margin: 3px 0 0; font-size: .78rem; }
.article-share-box > div:last-child { display: flex; gap: 7px; flex-wrap: wrap; justify-content: flex-end; }
.share-button { min-height: 39px; padding: 8px 12px; border: 0; border-radius: 11px; color: #fff; font-size: .72rem; display: inline-flex; align-items: center; gap: 7px; cursor: pointer; }
.share-button.facebook { background: #1877f2; }
.share-button.line { background: #06c755; }
.share-button.copy { background: rgba(255,255,255,.13); }
.article-author { margin-top: 25px; padding: 22px; border: 1px solid var(--line); border-radius: 22px; display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center; }
.article-author img { width: 100px; }
.article-author small, .article-author strong { display: block; }
.article-author small { color: var(--muted); font-size: .7rem; }
.article-author p { margin: 4px 0 0; color: var(--muted); font-size: .78rem; }
.article-sidebar { position: sticky; top: 120px; display: grid; gap: 18px; }
.sidebar-cta { padding: 25px; border-radius: 24px; background: var(--mint); border: 1px solid #cce7d5; }
.sidebar-cta h3 { font-size: 1.5rem; margin: 12px 0 8px; }
.sidebar-cta p { color: var(--muted); font-size: .84rem; }
.sidebar-cta .btn + .btn { margin-top: 9px; }
.related-mini { padding: 22px; border: 1px solid var(--line); border-radius: 24px; }
.related-mini h3 { font-size: 1rem; margin-bottom: 15px; }
.related-mini > a { display: grid; grid-template-columns: 72px 1fr; gap: 11px; padding: 11px 0; border-top: 1px solid var(--line); align-items: center; }
.related-mini > a:first-of-type { border-top: 0; padding-top: 0; }
.related-mini img { width: 72px; height: 62px; border-radius: 12px; object-fit: cover; }
.related-mini small, .related-mini strong { display: block; }
.related-mini small { color: var(--green-600); font-size: .63rem; }
.related-mini strong { font-size: .75rem; line-height: 1.4; }

.detail-hero { padding: 75px 0 88px; background: linear-gradient(135deg,var(--green-950),var(--green-500)); color: #fff; position: relative; overflow: hidden; }
.detail-hero::after { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; right: -150px; top: -210px; background: var(--lime); opacity: .17; }
.detail-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 65px; align-items: center; position: relative; z-index: 2; }
.detail-copy h1 { font-size: clamp(2.6rem,5vw,4.7rem); margin: 16px 0 18px; }
.detail-copy > p { color: rgba(255,255,255,.78); font-size: 1.05rem; }
.detail-image { border-radius: 34px; overflow: hidden; box-shadow: 0 35px 85px rgba(0,0,0,.26); transform: rotate(1.5deg); }
.detail-image img { width: 100%; aspect-ratio: 1.4; object-fit: cover; }
.detail-period { display: inline-flex; align-items: center; gap: 9px; margin: 5px 0 22px; padding: 9px 13px; border: 1px solid rgba(255,255,255,.2); border-radius: 13px; background: rgba(255,255,255,.08); font-size: .8rem; }
.detail-price { display: block; color: var(--lime); font-size: 1.35rem; margin: -5px 0 12px; }
.narrow-content { max-width: 900px; margin-inline: auto; }
.detail-share { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin-bottom: 35px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.detail-share > span { color: var(--muted); font-size: .8rem; margin-right: 5px; }
.detail-share a, .detail-share button { min-height: 39px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 11px; background: #fff; color: var(--green-700); display: inline-flex; align-items: center; gap: 7px; font-size: .73rem; cursor: pointer; }
.detail-rich-text { font-size: 1.06rem; }
.important-note { margin: 45px 0; display: grid; grid-template-columns: auto 1fr; gap: 17px; padding: 22px; border-radius: 20px; background: #fffbe9; border: 1px solid #f1df8c; color: #5b4c18; }
.important-note > .icon { width: 30px; height: 30px; }
.important-note strong { display: block; margin-bottom: 4px; }
.important-note p { margin: 0; font-size: .87rem; }
.detail-bottom-cta { padding: 30px; border-radius: 28px; background: var(--mint); display: flex; justify-content: space-between; align-items: center; gap: 25px; }
.detail-bottom-cta h2 { margin: 10px 0 0; font-size: 1.8rem; }
.package-detail-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.package-detail-grid h2 { font-size: 3rem; margin: 14px 0 15px; }
.package-detail-grid > div:first-child p { color: var(--muted); }
.feature-check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.feature-check-grid > div { min-height: 125px; padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: #fff; display: grid; grid-template-columns: auto auto 1fr; align-items: start; gap: 12px; box-shadow: var(--shadow-sm); }
.feature-check-grid > div > span { color: var(--line-strong); font-family: var(--font-heading); font-size: .72rem; }
.feature-check-grid .icon { color: var(--green-500); margin-top: 2px; }
.feature-check-grid strong { font-size: .9rem; line-height: 1.5; }
.simple-page-hero { padding: 80px 0; }
.simple-page-hero h1 { font-size: 4rem; }
.policy-text { max-width: 850px; }
.not-found { min-height: 72vh; display: grid; place-items: center; text-align: center; background: var(--mint-2); position: relative; overflow: hidden; }
.not-found-orb { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: var(--lime); opacity: .28; filter: blur(50px); }
.not-found .container { position: relative; z-index: 2; }
.not-found span { font-family: var(--font-heading); font-size: clamp(6rem,18vw,13rem); font-weight: 800; line-height: 1; color: var(--green-500); letter-spacing: -.08em; }
.not-found h1 { font-size: 2.3rem; margin: 10px 0; }
.not-found p { color: var(--muted); }
.not-found .btn { margin: 8px 4px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

@media (max-width: 1120px) {
    :root { --container: 1060px; }
    .main-nav { gap: 15px; }
    .main-nav > a { font-size: .82rem; }
    .header-phone { display: none; }
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
    .hero-copy h1 { font-size: 4.2rem; }
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-large { grid-column: 1 / -1; }
    .bento-wide { grid-column: 1 / -1; }
    .sales-layout { grid-template-columns: .85fr 1.15fr; }
    .sales-focus { grid-template-columns: .8fr 1.2fr; padding-right: 30px; }
    .footer-grid { grid-template-columns: 1.4fr .7fr .8fr; }
    .footer-status { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 15px; }
    .footer-status h3 { grid-column: 1 / -1; margin: 0; }
    .status-card { margin: 0; }
    .article-layout { grid-template-columns: 55px minmax(0,1fr); }
    .article-sidebar { grid-column: 2; position: static; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
    :root { --header-height: 72px; }
    .header-actions .btn-line { display: none; }
    .menu-toggle { display: grid; }
    .main-nav { position: fixed; top: calc(37px + var(--header-height)); left: 0; right: 0; background: #fff; padding: 18px 20px 26px; display: grid; gap: 0; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); transform: translateY(-15px); opacity: 0; visibility: hidden; transition: .22s ease; }
    .menu-open .main-nav { transform: translateY(0); opacity: 1; visibility: visible; }
    .main-nav > a { padding: 12px 4px; border-bottom: 1px solid var(--line); font-size: .95rem; }
    .main-nav > a:last-child { border-bottom: 0; }
    .main-nav > a::after { display: none; }
    .brand { width: 125px; height: 58px; }
    .brand img { width: 126px; }
    .hero, .hero-slides, .hero-slide { min-height: 830px; }
    .hero-grid { min-height: 790px; grid-template-columns: 1fr; padding-top: 70px; text-align: center; }
    .hero-copy { max-width: 760px; margin-inline: auto; }
    .hero-copy h1 { font-size: clamp(2.7rem,8.5vw,4.7rem); }
    .hero-copy p { margin-inline: auto; }
    .hero-actions, .hero-trust { justify-content: center; }
    .hero-visual { min-height: 330px; margin-top: -30px; }
    .hero-visual > img { max-height: 390px; }
    .float-card-a { left: 8%; bottom: 20px; }
    .float-card-b { right: 7%; top: 20px; }
    .hero-controls { bottom: 35px; }
    .journey-strip { grid-template-columns: 1fr 1fr; }
    .journey-intro { grid-column: 1 / -1; min-height: 90px; }
    .journey-item:last-child { grid-column: 1 / -1; }
    .split-heading { grid-template-columns: 1fr; gap: 18px; }
    .split-heading > p, .heading-action { justify-self: start; }
    .bento-large { grid-template-columns: 1fr; }
    .brand-orbit { min-height: 320px; }
    .card-slider { grid-template-columns: repeat(3, minmax(300px, 1fr)); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 4px 3px 20px; }
    .card-slider::-webkit-scrollbar { display: none; }
    .package-card { scroll-snap-align: start; }
    .slider-mobile-hint { display: flex; }
    .sales-layout { grid-template-columns: 1fr; }
    .sales-list { grid-template-columns: repeat(3, minmax(260px,1fr)); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .sales-card { scroll-snap-align: start; }
    .sales-focus { min-height: 490px; }
    .promotion-slider { grid-auto-columns: minmax(320px, 55%); }
    .post-grid, .blog-grid { grid-template-columns: repeat(2,1fr); }
    .lead-layout { grid-template-columns: 1fr; gap: 45px; }
    .faq-layout { grid-template-columns: 1fr; gap: 25px; }
    .faq-layout .section-heading { position: static; }
    .footer-cta-inner { align-items: flex-start; flex-direction: column; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .page-hero-grid, .article-hero-grid, .detail-hero-grid { grid-template-columns: 1fr; }
    .page-hero-card { max-width: 620px; }
    .article-cover, .detail-image { max-width: 680px; transform: none; }
    .article-layout { grid-template-columns: 1fr; }
    .share-rail { position: static; display: flex; justify-content: flex-start; align-items: center; }
    .share-rail > span { writing-mode: initial; margin: 0 8px 0 0; }
    .article-sidebar { grid-column: auto; grid-template-columns: 1fr 1fr; }
    .package-detail-grid { grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 680px) {
    body { font-size: 16px; padding-bottom: 66px; }
    .container { width: min(100% - 28px, var(--container)); }
    .section { padding: 78px 0; }
    .section-tight { padding: 44px 0; }
    .announcement-bar a { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
    .announcement-bar span:nth-child(2) { overflow: hidden; text-overflow: ellipsis; }
    .header-inner { gap: 10px; }
    .hero, .hero-slides, .hero-slide { min-height: 780px; }
    .hero-grid { min-height: 735px; padding-top: 46px; padding-bottom: 80px; }
    .hero-copy h1 { font-size: clamp(2.4rem,12vw,3.5rem); }
    .hero-copy p { font-size: .98rem; }
    .hero-actions .btn { width: 100%; }
    .hero-trust { gap: 8px; font-size: .75rem; }
    .hero-visual { min-height: 285px; }
    .hero-visual > img { max-height: 300px; }
    .hero-float-card { transform: scale(.85); animation: none; }
    .float-card-a { left: -18px; bottom: 10px; }
    .float-card-b { right: -20px; top: 0; }
    .hero-controls { bottom: 27px; }
    .hero-arrows { display: none; }
    .journey-strip { grid-template-columns: 1fr; }
    .journey-intro, .journey-item, .journey-item:last-child { grid-column: auto; }
    .journey-item { min-height: 105px; border-right: 0; border-bottom: 1px solid var(--line); }
    .journey-item:last-child { border-bottom: 0; }
    .section-heading h2 { font-size: 2.25rem; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large, .bento-wide { grid-column: auto; }
    .bento-large { padding: 28px; min-height: 0; }
    .bento-large h3 { font-size: 1.65rem; }
    .bento-wide { display: grid; }
    .brand-orbit { min-height: 285px; transform: scale(.85); margin: -20px; }
    .card-slider { grid-template-columns: repeat(3, minmax(285px, 85vw)); }
    .package-body { padding: 24px; }
    .sales-section { padding-bottom: 95px; }
    .sales-list { grid-template-columns: repeat(3, 82vw); }
    .sales-focus { grid-template-columns: 1fr; min-height: 0; padding: 25px; }
    .sales-focus-photo { min-height: 310px; }
    .sales-focus-photo img { max-height: 330px; }
    .sales-focus-copy { padding: 0 0 10px; }
    .sales-focus-copy h3 { font-size: 2.3rem; }
    .sales-contact-actions .btn { width: 100%; }
    .promotion-slider { grid-auto-columns: 84vw; }
    .customer-heading { display: grid; gap: 5px; }
    .customer-line { display: none; }
    .customer-logo { width: 175px; height: 88px; }
    .post-grid, .blog-grid { grid-template-columns: 1fr; }
    .lead-form-card { padding: 24px 19px; border-radius: 28px; }
    .form-grid { grid-template-columns: 1fr; }
    .field-full { grid-column: auto; }
    .lead-copy h2 { font-size: 2.7rem; }
    .footer-cta { padding: 48px 0; }
    .footer-cta-actions, .footer-cta-actions .btn { width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 24px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-status { grid-column: 1 / -1; display: block; }
    .footer-status .status-card { margin-bottom: 12px; }
    .footer-bottom { flex-direction: column; }
    .mobile-action-bar { display: grid; position: fixed; z-index: 120; left: 8px; right: 8px; bottom: max(8px, env(safe-area-inset-bottom)); height: 59px; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-radius: 19px; background: rgba(255,255,255,.95); backdrop-filter: blur(18px); box-shadow: 0 15px 50px rgba(0,0,0,.18); overflow: hidden; }
    .mobile-action-bar a, .mobile-action-bar button { border: 0; background: transparent; display: grid; place-items: center; align-content: center; gap: 2px; color: var(--green-800); font-family: var(--font-heading); font-size: .65rem; cursor: pointer; position: relative; }
    .mobile-action-bar .icon { font-size: 1.3rem; }
    .mobile-action-bar > :nth-child(3) { background: var(--green-500); color: #fff; border-radius: 16px; margin: 5px; }
    .chat-unread-dot { position: absolute; right: 18px; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }
    .chat-panel { right: 8px; bottom: max(75px, calc(env(safe-area-inset-bottom) + 70px)); width: calc(100% - 16px); height: calc(100dvh - 92px); border-radius: 24px; }
    .popup-card { grid-template-columns: 1fr; border-radius: 26px; }
    .popup-media { min-height: 230px; max-height: 280px; }
    .popup-content { padding: 32px 24px; }
    .page-hero { padding: 75px 0 68px; }
    .page-hero h1 { font-size: 3rem; }
    .url-demo { font-size: .7rem; overflow-wrap: anywhere; }
    .search-box { grid-template-columns: auto 1fr; }
    .search-box button { grid-column: 1 / -1; width: 100%; }
    .results-summary a { margin-left: 0; }
    .article-hero { padding: 55px 0 65px; }
    .article-heading h1 { font-size: 2.7rem; }
    .article-layout { padding-top: 45px; gap: 25px; }
    .article-sidebar { grid-template-columns: 1fr; }
    .article-share-box { flex-direction: column; align-items: flex-start; }
    .article-share-box > div:last-child { justify-content: flex-start; }
    .rich-text { font-size: .98rem; }
    .rich-text h2 { font-size: 1.6rem; }
    .article-author img { width: 80px; }
    .detail-hero { padding: 55px 0 70px; }
    .detail-copy h1 { font-size: 2.75rem; }
    .detail-bottom-cta { flex-direction: column; align-items: flex-start; }
    .detail-bottom-cta .btn { width: 100%; }
    .feature-check-grid { grid-template-columns: 1fr; }
    .simple-page-hero h1 { font-size: 3rem; }
}

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

/* v1.4.0 — proportional logos and one-column blog hero */
.brand {
    width: var(--header-logo-width, 160px);
    height: var(--header-logo-height, 62px);
    max-width: 44vw;
    overflow: visible;
}
.brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    display: block;
}
.footer-brand .footer-brand-logo {
    width: var(--footer-logo-width, 180px);
    height: var(--footer-logo-height, 100px);
    object-fit: contain;
    object-position: left center;
    display: block;
    margin-bottom: 20px;
}
.chat-agent-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 5px;
}
.orbit-core img {
    width: auto;
    height: auto;
    max-width: 115px;
    max-height: 88px;
    object-fit: contain;
}
.article-author img {
    width: 100px;
    height: 72px;
    object-fit: contain;
    object-position: left center;
}
.page-hero-grid-single {
    grid-template-columns: minmax(0, 920px);
    justify-content: start;
}
.page-hero-grid-single > div {
    max-width: 920px;
}

@media (max-width: 920px) {
    .brand {
        width: min(var(--header-logo-width, 160px), 136px);
        height: min(var(--header-logo-height, 62px), 56px);
    }
}

@media (max-width: 680px) {
    .brand {
        width: min(var(--header-logo-width, 160px), 128px);
        height: min(var(--header-logo-height, 62px), 52px);
        max-width: 42vw;
    }
    .footer-brand .footer-brand-logo {
        width: min(var(--footer-logo-width, 180px), 190px);
        height: min(var(--footer-logo-height, 100px), 100px);
    }
    .article-author img {
        width: 82px;
        height: 62px;
    }
}

/* v1.6.0 — balanced desktop advisor layout; mobile rules above remain unchanged */
@media (min-width: 921px) {
    .sales-layout {
        grid-template-columns: minmax(330px, .76fr) minmax(0, 1.24fr);
        align-items: start;
    }
    .sales-list,
    .sales-focus,
    .sales-focus-copy {
        min-width: 0;
    }
    .sales-list {
        max-height: 650px;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding-right: 9px;
        scrollbar-width: thin;
        scrollbar-color: rgba(201,255,72,.48) rgba(255,255,255,.06);
    }
    .sales-list::-webkit-scrollbar { width: 7px; }
    .sales-list::-webkit-scrollbar-track { background: rgba(255,255,255,.06); border-radius: 999px; }
    .sales-list::-webkit-scrollbar-thumb { background: rgba(201,255,72,.46); border-radius: 999px; }
    .sales-focus {
        height: 650px;
        min-height: 650px;
        max-height: 650px;
        grid-template-columns: minmax(250px, .9fr) minmax(0, 1.1fr);
        align-items: center;
        gap: 30px;
        padding: 34px 38px 34px 24px;
    }
    .sales-focus-photo {
        min-width: 0;
        min-height: 0;
        height: 560px;
        max-height: 560px;
        align-self: center;
        align-items: flex-end;
        justify-content: center;
        overflow: hidden;
        padding: 18px 8px 0;
        border-radius: 28px;
        background: rgba(255,255,255,.97);
    }
    .sales-focus-photo img {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        object-fit: contain;
        object-position: center bottom;
    }
    .sales-focus-copy {
        align-self: center;
        padding: 18px 0;
    }
    .sales-focus-copy h3 {
        max-width: 100%;
        font-size: clamp(2rem, 3vw, 3.05rem);
        line-height: 1.08;
        overflow-wrap: anywhere;
        word-break: normal;
    }
    .sales-focus-copy p,
    .sales-contact-actions .btn {
        max-width: 100%;
    }
    .sales-contact-actions .btn { min-width: 0; }
}

@media (min-width: 921px) and (max-width: 1120px) {
    .sales-layout { grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr); }
    .sales-list { max-height: 610px; }
    .sales-focus {
        height: 610px;
        min-height: 610px;
        max-height: 610px;
        grid-template-columns: minmax(210px, .82fr) minmax(0, 1.18fr);
        gap: 22px;
        padding: 30px 28px 30px 20px;
    }
    .sales-focus-photo { height: 510px; max-height: 510px; }
    .sales-focus-copy h3 { font-size: clamp(1.75rem, 3.35vw, 2.65rem); }
}

/* v1.6.0 — About ME2PLUS, colorful customer showcase, partner logos and content protection */
.about-section {
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, #f7fff9 100%);
    isolation: isolate;
}
.about-orb { position: absolute; z-index: -1; border-radius: 50%; pointer-events: none; }
.about-orb-one { width: 430px; height: 430px; left: -210px; top: 15%; background: rgba(53,220,114,.13); filter: blur(10px); }
.about-orb-two { width: 340px; height: 340px; right: -130px; bottom: -120px; background: rgba(201,255,72,.2); filter: blur(16px); }
.about-layout { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(0,.92fr); align-items: center; gap: clamp(42px,6vw,86px); }
.about-visual, .about-copy { min-width: 0; }
.about-image-frame {
    position: relative;
    min-height: 500px;
    padding: 20px;
    border: 1px solid rgba(11,187,80,.16);
    border-radius: 46px;
    background: linear-gradient(145deg,rgba(255,255,255,.98),rgba(234,255,239,.82));
    box-shadow: 0 34px 90px rgba(4,75,39,.14);
}
.about-image-frame::before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,.72); border-radius: 32px; pointer-events: none; }
.about-image-frame > img { width: 100%; height: 100%; min-height: 458px; border-radius: 30px; object-fit: contain; background: var(--mint); }
.about-image-badge {
    position: absolute;
    left: 46px;
    right: 46px;
    bottom: 38px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 21px;
    background: rgba(4,51,33,.89);
    color: #fff;
    box-shadow: 0 18px 45px rgba(4,51,33,.22);
    backdrop-filter: blur(14px);
}
.about-image-badge > span { width: 46px; height: 46px; border-radius: 15px; display: grid; place-items: center; background: var(--lime); color: var(--green-950); font-size: 1.25rem; flex: 0 0 auto; }
.about-image-badge strong, .about-image-badge small { display: block; }
.about-image-badge strong { color: var(--lime); font-size: .78rem; letter-spacing: .08em; }
.about-image-badge small { color: rgba(255,255,255,.78); font-size: .78rem; margin-top: 3px; }
.about-copy h2 { font-size: clamp(2.4rem,4.5vw,4.3rem); margin: 16px 0 22px; }
.about-description { color: var(--muted); font-size: 1.04rem; line-height: 1.85; }
.about-highlight { display: grid; grid-template-columns: auto minmax(0,1fr); gap: 13px; align-items: start; margin: 25px 0; padding: 18px 20px; border: 1px solid #c9ead4; border-radius: 20px; background: #f0fff4; color: var(--green-900); }
.about-highlight > .icon { width: 30px; height: 30px; padding: 7px; border-radius: 10px; background: var(--lime); color: var(--green-950); }
.about-highlight p { margin: 0; font-size: .92rem; }
.about-stats { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 11px; margin-top: 24px; }
.about-stats > div { min-height: 128px; padding: 18px 16px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.about-stats strong, .about-stats span { display: block; }
.about-stats strong { color: var(--green-600); font-size: 1.3rem; }
.about-stats span { margin-top: 6px; color: var(--muted); font-size: .76rem; line-height: 1.45; }
.about-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 28px; }

.customer-section {
    padding: 84px 0 94px;
    overflow: hidden;
    background: var(--customer-section-bg,#f4fff7);
    position: relative;
    isolation: isolate;
}
.customer-section-pattern { position: absolute; z-index: -1; inset: 0; opacity: .72; background-image: radial-gradient(rgba(11,187,80,.13) 1px,transparent 1px),linear-gradient(120deg,transparent 0 64%,rgba(201,255,72,.13) 64% 82%,transparent 82%); background-size: 22px 22px,100% 100%; mask-image: linear-gradient(to bottom,transparent,#000 20%,#000 80%,transparent); }
.customer-section::before { content: ""; position: absolute; z-index: -1; width: 360px; height: 360px; border-radius: 50%; right: -130px; top: -120px; background: var(--lime); opacity: .18; filter: blur(8px); }
.customer-heading { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.72fr); align-items: end; gap: 44px; margin-bottom: 36px; }
.customer-heading > div { min-width: 0; }
.customer-heading h2 { margin: 13px 0 0; font-size: clamp(2rem,3.8vw,3.65rem); }
.customer-heading > p { margin: 0; color: var(--muted); justify-self: end; max-width: 550px; }
.logo-marquee { overflow: hidden; mask-image: linear-gradient(to right,transparent,#000 5%,#000 95%,transparent); }
.logo-track { display: flex; width: max-content; gap: 20px; will-change: transform; }
.marquee-set { display: flex; flex: 0 0 auto; gap: 20px; }
.customer-track { animation: marqueeLoop var(--customer-marquee-speed,34s) linear infinite; }
.logo-track:hover { animation-play-state: paused; }
.customer-logo {
    position: relative;
    width: var(--customer-card-width,300px);
    height: var(--customer-card-height,165px);
    flex: 0 0 auto;
    overflow: hidden;
    display: block;
    padding: 0;
    border: 2px solid rgba(255,255,255,.84);
    border-radius: 28px;
    background: #fff;
    filter: none;
    opacity: 1;
    box-shadow: 0 18px 45px rgba(4,75,39,.13), 0 0 0 1px color-mix(in srgb,var(--customer-accent,#16c867) 25%,transparent);
    transition: transform .28s ease, box-shadow .28s ease;
    isolation: isolate;
}
.customer-logo::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(145deg,var(--customer-accent,#16c867),transparent 54%); opacity: .14; pointer-events: none; }
.customer-logo::after { content: ""; position: absolute; z-index: 4; left: 20px; right: 20px; top: 0; height: 5px; border-radius: 0 0 99px 99px; background: var(--customer-accent,#16c867); box-shadow: 0 7px 18px color-mix(in srgb,var(--customer-accent,#16c867) 35%,transparent); }
.customer-logo:hover { border-color: #fff; transform: translateY(-7px) scale(1.015); box-shadow: 0 28px 65px rgba(4,75,39,.21),0 0 0 2px var(--customer-accent,#16c867); }
.customer-image { position: absolute; z-index: 0; inset: 0; display: grid; place-items: center; overflow: hidden; }
.customer-image img { width: 100%; height: 100%; max-height: none; object-fit: cover; transition: transform .5s ease,filter .35s ease; }
.customer-logo:hover .customer-image img { transform: scale(1.045); }
.customer-logo.fit-contain .customer-image { inset: 12px 12px 54px; border-radius: 19px; background: rgba(255,255,255,.96); }
.customer-logo.fit-contain .customer-image img { object-fit: contain; max-height: var(--customer-logo-max-height,132px); padding: 12px 18px; }
.customer-logo.fit-contain:hover .customer-image img { transform: scale(1.025); }
.customer-card-label { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; min-height: 62px; padding: 16px 18px 13px; color: #fff; background: linear-gradient(to top,rgba(3,34,21,.94),rgba(3,34,21,.68),transparent); display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.customer-card-label strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .86rem; }
.customer-card-label small { flex: 0 0 auto; color: var(--lime); font-family: var(--font-heading); font-size: .54rem; letter-spacing: .09em; }
.customer-logo.fit-contain .customer-card-label { min-height: 52px; padding: 11px 15px; background: var(--green-950); }
.customer-section:not(.is-colorful) .customer-logo::before,.customer-section:not(.is-colorful) .customer-logo::after { display: none; }
.customer-section:not(.is-colorful) .customer-logo { border-color: var(--line); box-shadow: var(--shadow-sm); }

.shipping-partner-section {
    padding: 82px 0 88px;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    background: var(--partner-section-bg,#043321);
    color: #fff;
}
.shipping-partner-section::before { content: ""; position: absolute; z-index: -1; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.07) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.07) 1px,transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(to right,transparent,#000 18%,#000 82%,transparent); }
.partner-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(55px); pointer-events: none; }
.partner-glow-one { width: 300px; height: 300px; left: -90px; bottom: -130px; background: var(--green-400); opacity: .24; }
.partner-glow-two { width: 330px; height: 330px; right: -100px; top: -160px; background: var(--lime); opacity: .16; }
.partner-heading { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.72fr); align-items: end; gap: 44px; margin-bottom: 34px; }
.partner-heading h2 { margin: 13px 0 0; color: #fff; font-size: clamp(2rem,3.6vw,3.45rem); }
.partner-heading p { margin: 0; color: rgba(255,255,255,.72); max-width: 540px; justify-self: end; }
.partner-marquee { mask-image: linear-gradient(to right,transparent,#000 5%,#000 95%,transparent); }
.partner-track { animation: partnerMarqueeLoop var(--partner-marquee-speed,30s) linear infinite; }
.partner-logo-card { width: var(--partner-card-width,240px); height: var(--partner-card-height,122px); flex: 0 0 auto; padding: 15px 20px 12px; border: 1px solid rgba(255,255,255,.55); border-radius: 24px; background: rgba(255,255,255,.96); display: grid; grid-template-rows: minmax(0,1fr) auto; place-items: center; gap: 5px; color: var(--green-950); box-shadow: 0 18px 48px rgba(0,0,0,.18); transition: transform .25s ease,background .25s ease; }
.partner-logo-card:hover { transform: translateY(-6px); background: #fff; }
.partner-logo-card img { width: 100%; height: 100%; max-height: var(--partner-logo-max-height,84px); object-fit: contain; }
.partner-logo-card span { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--muted); font-family: var(--font-heading); font-size: .65rem; }
@keyframes marqueeLoop { to { transform: translateX(calc(-50% - 10px)); } }
@keyframes partnerMarqueeLoop { from { transform: translateX(calc(-50% - 10px)); } to { transform: translateX(0); } }

body.protect-selection main,
body.protect-selection .footer-cta,
body.protect-selection .site-footer,
body.protect-selection .announcement-bar { -webkit-user-select: none; user-select: none; }
body.protect-selection input,
body.protect-selection textarea,
body.protect-selection select,
body.protect-selection [contenteditable="true"],
body.protect-selection .allow-copy { -webkit-user-select: text; user-select: text; }
body.protect-image-drag img { -webkit-user-drag: none; user-drag: none; }

@media (max-width: 1120px) {
    .main-nav { gap: 13px; }
    .main-nav > a { font-size: .79rem; }
    .about-layout { gap: 42px; }
    .about-image-frame { min-height: 440px; }
    .about-image-frame > img { min-height: 398px; }
}

@media (max-width: 920px) {
    .about-layout { grid-template-columns: 1fr; }
    .about-visual { max-width: 760px; width: 100%; margin-inline: auto; }
    .about-copy { max-width: 760px; }
    .about-image-frame { min-height: 0; }
    .about-image-frame > img { min-height: 0; aspect-ratio: 16/10; }
    .customer-heading,.partner-heading { grid-template-columns: 1fr; gap: 14px; align-items: start; }
    .customer-heading > p,.partner-heading p { justify-self: start; }
}

@media (max-width: 680px) {
    .about-section { padding-top: 72px; }
    .about-image-frame { padding: 10px; border-radius: 30px; }
    .about-image-frame::before { inset: 9px; border-radius: 23px; }
    .about-image-frame > img { border-radius: 22px; }
    .about-image-badge { left: 22px; right: 22px; bottom: 20px; padding: 12px; border-radius: 17px; }
    .about-image-badge > span { width: 40px; height: 40px; border-radius: 13px; }
    .about-copy h2 { font-size: 2.4rem; }
    .about-stats { grid-template-columns: 1fr; }
    .about-stats > div { min-height: 0; }
    .about-actions,.about-actions .btn { width: 100%; }
    .customer-section,.shipping-partner-section { padding: 68px 0 74px; }
    .customer-heading h2,.partner-heading h2 { font-size: 2.25rem; }
    .customer-logo { width: min(var(--customer-card-width,300px),78vw); height: min(var(--customer-card-height,165px),46vw); min-height: 145px; border-radius: 23px; }
    .customer-card-label small { display: none; }
    .partner-logo-card { width: min(var(--partner-card-width,240px),66vw); height: min(var(--partner-card-height,122px),34vw); min-height: 105px; border-radius: 20px; }
    .logo-marquee { mask-image: linear-gradient(to right,transparent,#000 3%,#000 97%,transparent); }
}

@media (prefers-reduced-motion: reduce) {
    .customer-track,.partner-track { animation: none; }
}

/* About page ------------------------------------------------------------- */
.about-page-hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 58px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 255, 72, .19), transparent 28%),
    radial-gradient(circle at 10% 92%, rgba(22, 200, 103, .28), transparent 32%),
    linear-gradient(135deg, #002f20 0%, #00472e 46%, #08a94c 100%);
}
.about-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}
.about-page-hero .container { position: relative; z-index: 2; }
.about-page-orb { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); pointer-events: none; }
.about-page-orb.one { width: 470px; height: 470px; right: -190px; top: -190px; box-shadow: 0 0 0 55px rgba(255,255,255,.035), 0 0 0 112px rgba(255,255,255,.02); }
.about-page-orb.two { width: 260px; height: 260px; left: -100px; bottom: -150px; box-shadow: 0 0 0 45px rgba(201,255,72,.045); }
.breadcrumb-light { margin-bottom: 42px; color: rgba(255,255,255,.72); }
.breadcrumb-light a { color: #fff; }
.breadcrumb-light .icon { width: 14px; height: 14px; }
.about-page-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .88fr); gap: 70px; align-items: center; }
.about-page-copy h1 { margin: 18px 0 22px; max-width: 760px; font-size: clamp(46px, 5.3vw, 82px); line-height: .99; letter-spacing: -.055em; }
.about-page-copy > p { max-width: 690px; margin: 0; color: rgba(255,255,255,.79); font-size: 19px; line-height: 1.85; }
.about-page-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn-ghost-light { border: 1px solid rgba(255,255,255,.34); color: #fff; background: rgba(255,255,255,.06); backdrop-filter: blur(12px); }
.btn-ghost-light:hover { border-color: rgba(255,255,255,.62); color: #fff; background: rgba(255,255,255,.13); }
.about-page-visual { position: relative; min-width: 0; }
.about-page-image-frame { position: relative; overflow: hidden; aspect-ratio: 4 / 3; border: 1px solid rgba(255,255,255,.2); border-radius: 38px; background: rgba(255,255,255,.08); box-shadow: 0 38px 90px rgba(0,20,12,.34); }
.about-page-image-frame::after { content: ""; position: absolute; inset: 14px; pointer-events: none; border: 1px solid rgba(255,255,255,.28); border-radius: 28px; }
.about-page-image-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-page-badge { position: absolute; left: -44px; bottom: 34px; display: flex; align-items: center; gap: 14px; min-width: 270px; padding: 16px 19px; color: var(--ink); border-radius: 22px; background: rgba(255,255,255,.96); box-shadow: 0 22px 54px rgba(0,30,17,.28); }
.about-page-badge > span { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 16px; color: var(--dark); background: var(--lime); }
.about-page-badge small, .about-page-badge strong { display: block; }
.about-page-badge small { margin-bottom: 3px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.about-page-badge strong { font-size: 14px; }
.about-page-hero .about-stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: 54px; border: 1px solid rgba(255,255,255,.18); border-radius: 28px; background: rgba(255,255,255,.075); backdrop-filter: blur(16px); }
.about-page-hero .about-stats > div { min-height: 0; padding: 22px 28px; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.about-page-hero .about-stats > div + div { border-left: 1px solid rgba(255,255,255,.15); }
.about-page-hero .about-stats strong, .about-page-hero .about-stats span { display: block; }
.about-page-hero .about-stats strong { color: var(--lime); font-size: clamp(27px,3vw,42px); line-height: 1.15; }
.about-page-hero .about-stats span { margin-top: 5px; color: rgba(255,255,255,.72); font-size: 14px; }
.about-story-section { background: linear-gradient(180deg, #fff 0%, #f5fff7 100%); }
.about-story-layout { display: grid; grid-template-columns: minmax(0,.86fr) minmax(0,1.14fr); gap: 82px; align-items: start; }
.about-story-copy { position: sticky; top: 116px; }
.about-story-copy h2 { margin: 18px 0 26px; font-size: clamp(42px,4.6vw,68px); line-height: 1.04; letter-spacing: -.045em; }
.about-story-copy p { margin: 0 0 18px; color: var(--muted); font-size: 17px; line-height: 1.85; }
.about-principles { display: grid; gap: 16px; }
.about-principle { display: grid; grid-template-columns: 64px minmax(0,1fr); gap: 22px; align-items: start; padding: 28px; border: 1px solid #d9ebdf; border-radius: 28px; background: rgba(255,255,255,.92); box-shadow: 0 18px 45px rgba(0,75,39,.055); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.about-principle:hover { transform: translateY(-4px); border-color: rgba(22,200,103,.45); box-shadow: 0 24px 55px rgba(0,75,39,.1); }
.about-principle > span { display: grid; width: 64px; height: 64px; place-items: center; border-radius: 21px; color: var(--dark); background: linear-gradient(145deg, var(--lime), #eaff87); }
.about-principle > span .icon { width: 27px; height: 27px; }
.about-principle h3 { margin: 3px 0 8px; font-size: 22px; }
.about-principle p { margin: 0; color: var(--muted); line-height: 1.75; }
.about-partner-section { overflow: hidden; background: #f2fff5; }
.about-partner-section .section-heading { margin-bottom: 30px; }
.about-partner-marquee { border-block: 1px solid #dceee1; background: rgba(255,255,255,.74); }
.about-bottom-section { padding-top: 74px; padding-bottom: 84px; background: #fff; }
.about-bottom-card { position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 42px; align-items: center; padding: 48px 52px; color: #fff; border-radius: 38px; background: linear-gradient(135deg, #003e28, #05b954 72%, #27d765); box-shadow: 0 32px 70px rgba(0,83,43,.2); }
.about-bottom-card::before { content: ""; position: absolute; width: 340px; height: 340px; right: -100px; top: -180px; border: 52px solid rgba(201,255,72,.16); border-radius: 50%; }
.about-bottom-card > * { position: relative; z-index: 1; }
.about-bottom-card h2 { margin: 14px 0 10px; max-width: 720px; font-size: clamp(34px,4vw,58px); line-height: 1.08; }
.about-bottom-card p { max-width: 720px; margin: 0; color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.75; }
.about-bottom-actions { display: flex; flex-direction: column; gap: 10px; min-width: 230px; }

/* Public content protection keeps form fields usable. */
body.protect-selection main :where(h1,h2,h3,h4,h5,h6,p,span,small,strong,li,blockquote,figcaption),
body.protect-selection .site-footer :where(h1,h2,h3,h4,h5,h6,p,span,small,strong,li) { -webkit-user-select: none; user-select: none; }
body.protect-selection :where(input,textarea,select,option,[contenteditable="true"],.allow-copy) { -webkit-user-select: text; user-select: text; }
body.protect-image-drag img { -webkit-user-drag: none; user-drag: none; }

@media (max-width: 980px) {
  .about-page-hero { padding-top: 28px; }
  .about-page-hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .about-page-copy h1 { max-width: 800px; }
  .about-page-visual { max-width: 720px; }
  .about-page-badge { left: 22px; bottom: 22px; }
  .about-story-layout { grid-template-columns: 1fr; gap: 42px; }
  .about-story-copy { position: static; }
  .about-bottom-card { grid-template-columns: 1fr; }
  .about-bottom-actions { flex-direction: row; min-width: 0; }
}

@media (max-width: 680px) {
  .about-page-hero { padding: 20px 0 38px; }
  .breadcrumb-light { margin-bottom: 28px; }
  .about-page-copy h1 { margin-top: 14px; font-size: clamp(40px,12vw,58px); }
  .about-page-copy > p { font-size: 16px; line-height: 1.72; }
  .about-page-actions { display: grid; }
  .about-page-actions .btn { width: 100%; }
  .about-page-image-frame { border-radius: 28px; }
  .about-page-image-frame::after { inset: 9px; border-radius: 21px; }
  .about-page-badge { position: relative; left: auto; bottom: auto; margin: -24px 16px 0; min-width: 0; }
  .about-page-hero .about-stats { grid-template-columns: 1fr; margin-top: 34px; }
  .about-page-hero .about-stats > div { padding: 18px 22px; }
  .about-page-hero .about-stats > div + div { border-top: 1px solid rgba(255,255,255,.15); border-left: 0; }
  .about-story-copy h2 { font-size: 40px; }
  .about-principle { grid-template-columns: 50px minmax(0,1fr); gap: 15px; padding: 21px; border-radius: 23px; }
  .about-principle > span { width: 50px; height: 50px; border-radius: 17px; }
  .about-bottom-section { padding-top: 48px; padding-bottom: 62px; }
  .about-bottom-card { padding: 30px 24px; border-radius: 28px; }
  .about-bottom-card h2 { font-size: 38px; }
  .about-bottom-actions { display: grid; }
  .about-bottom-actions .btn { width: 100%; }
}

/* v1.7.0 — quick-service navigation and multi-image detail galleries */
.nav-service-menu{position:relative;align-self:stretch;display:flex;align-items:center}
.nav-service-toggle{position:relative;display:inline-flex;align-items:center;gap:5px;padding:29px 0 25px;border:0;background:transparent;color:var(--ink-soft);font:500 .91rem var(--font-heading);white-space:nowrap;cursor:pointer}
.nav-service-toggle>.icon{width:14px;height:14px;transition:transform .2s ease}
.nav-service-toggle::after{content:"";position:absolute;left:50%;bottom:15px;width:0;height:3px;border-radius:99px;background:var(--green-500);transform:translateX(-50%);transition:.2s ease}
.nav-service-menu.is-open .nav-service-toggle,.nav-service-toggle:hover{color:var(--green-700)}
.nav-service-menu.is-open .nav-service-toggle::after,.nav-service-toggle:hover::after{width:20px}
.nav-service-menu.is-open .nav-service-toggle>.icon{transform:rotate(90deg)}
.service-dropdown{position:absolute;z-index:95;top:calc(100% - 6px);left:50%;width:min(590px,calc(100vw - 34px));padding:16px;border:1px solid rgba(192,221,201,.9);border-radius:24px;background:rgba(255,255,255,.98);box-shadow:0 28px 70px rgba(4,63,35,.18);backdrop-filter:blur(18px);opacity:0;visibility:hidden;pointer-events:none;transform:translate(-50%,12px);transition:opacity .2s ease,transform .2s ease,visibility .2s ease}
.nav-service-menu.is-open .service-dropdown{opacity:1;visibility:visible;pointer-events:auto;transform:translate(-50%,0)}
.service-dropdown-head{display:flex;align-items:end;justify-content:space-between;gap:15px;padding:2px 5px 13px;border-bottom:1px solid var(--line)}
.service-dropdown-head span{color:var(--green-600);font:700 .66rem var(--font-heading);letter-spacing:.14em}
.service-dropdown-head strong{color:var(--green-950);font:700 1.06rem var(--font-heading)}
.service-dropdown-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;padding-top:10px}
.main-nav .service-dropdown a{position:relative;display:grid;grid-template-columns:42px minmax(0,1fr) 18px;align-items:center;gap:10px;min-height:74px;padding:10px;border:1px solid transparent;border-radius:16px;color:var(--green-950);white-space:normal;font:400 .82rem var(--font-body);transition:background .18s ease,border-color .18s ease,transform .18s ease}
.main-nav .service-dropdown a::after{display:none!important}
.main-nav .service-dropdown a:hover{border-color:var(--line-strong);background:var(--mint-2);transform:translateY(-1px)}
.service-dropdown-icon{width:42px;height:42px;border-radius:13px;display:grid;place-items:center;background:linear-gradient(145deg,var(--mint),#fff);color:var(--green-700);border:1px solid var(--line)}
.service-dropdown-icon .icon{width:20px;height:20px}
.service-dropdown a>span:nth-child(2){min-width:0;display:grid;gap:2px}
.service-dropdown a strong{font:600 .82rem var(--font-heading);overflow-wrap:anywhere}
.service-dropdown a small{color:var(--muted);font-size:.68rem;line-height:1.45}
.service-dropdown-arrow{width:15px;height:15px;color:var(--green-500)}
.footer-service-links a{display:flex!important;align-items:center;gap:8px}
.footer-service-links a .icon{width:15px;height:15px;color:var(--green-300);flex:0 0 auto}

.detail-gallery-section{background:linear-gradient(180deg,#fff,var(--mint-2))}
.content-gallery{margin-top:48px;padding-top:36px;border-top:1px solid var(--line)}
.detail-gallery-section .content-gallery{margin-top:0;padding-top:0;border-top:0}
.content-gallery-head{display:flex;align-items:end;justify-content:space-between;gap:20px;margin-bottom:20px}
.content-gallery-head h2{margin:6px 0 0;font-size:clamp(1.65rem,3vw,2.35rem);letter-spacing:-.03em}
.content-gallery-head>span{padding:7px 11px;border-radius:999px;background:var(--mint);color:var(--green-700);font:600 .75rem var(--font-heading);white-space:nowrap}
.content-gallery-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.content-gallery-item{min-width:0;margin:0;border:1px solid var(--line);border-radius:22px;background:#fff;overflow:hidden;box-shadow:0 14px 40px rgba(4,72,37,.07)}
.content-gallery-item:first-child:nth-last-child(n+2){grid-column:1/-1}
.content-gallery-button{position:relative;width:100%;padding:0;border:0;background:linear-gradient(145deg,#eefaf2,#fff);cursor:zoom-in;overflow:hidden;aspect-ratio:4/3;display:grid;place-items:center}
.content-gallery-item:first-child:nth-last-child(n+2) .content-gallery-button{aspect-ratio:16/8}
.content-gallery-button img{width:100%;height:100%;object-fit:contain;object-position:center;transition:transform .35s ease;background:#f8fcf9}
.content-gallery-button:hover img{transform:scale(1.025)}
.content-gallery-zoom{position:absolute;right:14px;bottom:14px;width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:rgba(3,51,33,.86);color:#fff;box-shadow:0 10px 25px rgba(3,51,33,.2);backdrop-filter:blur(8px)}
.content-gallery-zoom .icon{width:18px;height:18px}
.content-gallery-item figcaption{padding:13px 16px 15px;color:var(--ink-soft);font-size:.82rem;line-height:1.65;border-top:1px solid var(--line)}
.content-lightbox{position:fixed;z-index:220;inset:0;display:grid;place-items:center;padding:24px;opacity:0;visibility:hidden;pointer-events:none;transition:opacity .2s ease,visibility .2s ease}
.content-lightbox.is-open{opacity:1;visibility:visible;pointer-events:auto}
.content-lightbox-backdrop{position:absolute;inset:0;border:0;background:rgba(1,25,15,.88);backdrop-filter:blur(12px);cursor:zoom-out}
.content-lightbox-dialog{position:relative;z-index:1;width:min(1180px,94vw);max-height:92dvh;display:grid;grid-template-rows:minmax(0,1fr) auto;border:1px solid rgba(255,255,255,.18);border-radius:24px;background:#fff;overflow:hidden;box-shadow:0 40px 100px rgba(0,0,0,.38)}
.content-lightbox-media{min-height:240px;max-height:calc(92dvh - 78px);display:grid;place-items:center;background:#081b12}
.content-lightbox-media img{display:block;width:100%;height:100%;max-height:calc(92dvh - 78px);object-fit:contain}
.content-lightbox-dialog>p{margin:0;padding:15px 58px 16px 18px;color:var(--ink-soft);font-size:.86rem;line-height:1.55;background:#fff}
.content-lightbox-close{position:absolute;z-index:2;right:13px;top:13px;width:43px;height:43px;border:1px solid rgba(255,255,255,.3);border-radius:50%;display:grid;place-items:center;background:rgba(2,37,23,.76);color:#fff;cursor:pointer;backdrop-filter:blur(8px)}
.content-lightbox-close .icon{width:20px;height:20px}
body.gallery-lightbox-open{overflow:hidden}

@media(max-width:1120px){
    .nav-service-toggle{font-size:.82rem}
    .service-dropdown{width:min(550px,calc(100vw - 28px))}
}
@media(max-width:920px){
    .main-nav{max-height:calc(100dvh - 105px);overflow-y:auto;overscroll-behavior:contain}
    .nav-service-menu{display:block;width:100%;align-self:auto;border-bottom:1px solid var(--line)}
    .nav-service-toggle{width:100%;justify-content:space-between;padding:12px 4px;font-size:.95rem;text-align:left}
    .nav-service-toggle::after{display:none}
    .nav-service-toggle>.icon{margin-right:4px}
    .service-dropdown{position:static;width:100%;padding:0;border:0;border-radius:0;background:var(--mint-2);box-shadow:none;backdrop-filter:none;opacity:1;visibility:visible;pointer-events:none;transform:none;max-height:0;overflow:hidden;transition:max-height .28s ease,padding .28s ease}
    .nav-service-menu.is-open .service-dropdown{pointer-events:auto;transform:none;max-height:850px;padding:10px}
    .service-dropdown-head{align-items:center;padding:2px 4px 9px}
    .service-dropdown-grid{grid-template-columns:1fr;padding-top:8px}
    .main-nav .service-dropdown a{min-height:64px;padding:8px;background:#fff;border-color:var(--line);font-size:.82rem}
    .service-dropdown-icon{width:38px;height:38px;border-radius:12px}
    .service-dropdown a small{font-size:.66rem}
    .content-gallery{margin-top:36px;padding-top:28px}
}
@media(max-width:680px){
    .content-gallery-head{align-items:flex-start}
    .content-gallery-grid{grid-template-columns:1fr;gap:13px}
    .content-gallery-item:first-child:nth-last-child(n+2){grid-column:auto}
    .content-gallery-button,.content-gallery-item:first-child:nth-last-child(n+2) .content-gallery-button{aspect-ratio:4/3}
    .content-gallery-item{border-radius:18px}
    .content-lightbox{padding:10px}
    .content-lightbox-dialog{width:100%;max-height:94dvh;border-radius:18px}
    .content-lightbox-media{max-height:calc(94dvh - 68px)}
    .content-lightbox-media img{max-height:calc(94dvh - 68px)}
}



/* =========================================================
   ME2PLUS Consumers v1.10.1 — Mobile display controls
   These rules apply only to mobile/tablet widths. Desktop UI
   remains unchanged from v1.9.0.
   ========================================================= */
.mobile-home-hero,
.mobile-package-toggle { display: none; }

.mobile-settings-summary { display: grid; gap: 12px; }

@media (max-width: 920px) {
  .mobile-section-hidden { display: none !important; }
  .mobile-announcement-hidden { display: none !important; }
  .hero.mobile-replaced { display: none !important; }
  .mobile-home-hero { display: block; position: relative; overflow: hidden; }

  .mobile-home-hero--image {
    padding: 14px 0 26px;
    background: linear-gradient(180deg, #f7fff9 0%, #ffffff 100%);
  }
  .mobile-hero-image-wrap { display: grid; gap: 13px; }
  .mobile-hero-image-frame {
    display: block;
    height: min(var(--mobile-hero-height, 560px), 78dvh);
    min-height: 360px;
    overflow: hidden;
    border-radius: 28px;
    background: #effaf3;
    box-shadow: 0 24px 60px rgba(3, 74, 39, .13);
  }
  .mobile-hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: var(--mobile-hero-fit, cover);
    object-position: center;
    display: block;
  }
  .mobile-hero-image-button { min-height: 54px; }

  .mobile-home-hero--compact {
    min-height: var(--mobile-hero-height, 560px);
    color: #fff;
    background: linear-gradient(142deg, var(--mobile-hero-from, #06b94e), var(--mobile-hero-to, #7bee2a));
    isolation: isolate;
  }
  .mobile-home-hero--compact::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .18;
    background-image: radial-gradient(rgba(255,255,255,.75) 1px, transparent 1px);
    background-size: 16px 16px;
  }
  .mobile-hero-orb { position: absolute; border-radius: 50%; z-index: -1; pointer-events: none; }
  .mobile-hero-orb-a { width: 360px; height: 360px; top: -170px; right: -130px; background: rgba(201,255,72,.28); }
  .mobile-hero-orb-b { width: 250px; height: 250px; bottom: -150px; left: -90px; background: rgba(255,255,255,.15); }
  .mobile-hero-compact-grid {
    min-height: var(--mobile-hero-height, 560px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(240px, .95fr);
    align-items: center;
    gap: 28px;
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .mobile-hero-copy { min-width: 0; }
  .mobile-hero-copy h1 {
    margin: 16px 0 16px;
    max-width: 13ch;
    color: #fff;
    font-size: clamp(42px, 8.2vw, 72px);
    line-height: 1.04;
    letter-spacing: -.04em;
  }
  .mobile-hero-copy p { max-width: 620px; margin: 0 0 24px; color: rgba(255,255,255,.88); line-height: 1.75; }
  .mobile-hero-copy .btn { min-width: 190px; }
  .mobile-hero-visual { height: min(calc(var(--mobile-hero-height, 560px) - 80px), 540px); display: grid; place-items: center; }
  .mobile-hero-visual img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 26px 46px rgba(1,60,29,.20)); }

  /* Packages: replace the clipped horizontal carousel with a readable list. */
  .packages-section .slider-shell { overflow: visible; }
  .packages-section .package-slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }
  .packages-section .package-card { width: 100%; min-width: 0; max-width: none; scroll-snap-align: none; }
  .packages-section .slider-mobile-hint { display: none !important; }
  .packages-section .mobile-package-extra:not(.is-mobile-visible) { display: none !important; }
  .mobile-package-toggle {
    width: min(100%, 460px);
    min-height: 52px;
    margin: 18px auto 0;
    padding: 12px 20px;
    border: 1px solid #b9dcc6;
    border-radius: 999px;
    background: #fff;
    color: var(--green-950);
    font: inherit;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
  }
  .mobile-package-toggle { display: flex; }
  .mobile-package-toggle .icon { transition: transform .25s ease; }
  .mobile-package-toggle.is-expanded .icon { transform: rotate(180deg); }
  .mobile-package-hide-badge .package-badge { display: none !important; }
  .mobile-package-hide-price .package-price { display: none !important; }
  .mobile-package-hide-description .package-description { display: none !important; }
  .mobile-package-hide-features .package-features { display: none !important; }
  .mobile-package-hide-cta .package-cta { display: none !important; }
  .packages-section .package-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--mobile-package-description-lines, 3);
    overflow: hidden;
  }
  .mobile-package-layout-stacked .package-media,
  .mobile-package-layout-cover .package-media { height: var(--mobile-package-image-height, 150px); }
  .mobile-package-layout-stacked .package-media img,
  .mobile-package-layout-cover .package-media img { width: 100%; height: 100%; object-fit: cover; }
  .mobile-package-layout-cover .package-card { position: relative; overflow: hidden; }
  .mobile-package-layout-cover .package-body { padding-top: 18px; }
  .mobile-package-layout-cover .package-features { display: none !important; }

  /* Advisors and promotions are intentionally shorter on mobile. */
  .sales-section .section-heading { margin-bottom: 22px; }
  .sales-section .sales-layout { gap: 18px; }
  .sales-section .sales-list { max-height: 330px; overflow-y: auto; overscroll-behavior: contain; padding-right: 4px; }
  .sales-section .sales-card { min-height: 78px; padding: 10px 12px; }
  .sales-section .sales-photo { width: 58px; height: 58px; }
  .sales-section .sales-focus { min-height: 0; padding: 16px; }
  .sales-section .sales-focus-photo { max-height: 360px; }
  .sales-section .sales-focus-copy h3 { font-size: clamp(28px, 6vw, 42px); }
  .promotion-section .promotion-card { min-height: 0; }
  .promotion-section .promotion-body p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}

@media (max-width: 680px) {
  .mobile-home-hero--image { padding: 10px 0 20px; }
  .mobile-hero-image-frame { border-radius: 22px; min-height: 340px; height: min(var(--mobile-hero-height, 560px), 72dvh); }
  .mobile-hero-compact-grid {
    min-height: var(--mobile-hero-height, 560px);
    grid-template-columns: 1fr;
    align-content: center;
    gap: 14px;
    padding-top: 38px;
    padding-bottom: 36px;
    text-align: center;
  }
  .mobile-hero-copy { display: flex; flex-direction: column; align-items: center; }
  .mobile-hero-copy h1 { max-width: 12ch; margin: 12px auto 14px; font-size: clamp(42px, 12.8vw, 62px); }
  .mobile-hero-copy p { margin-bottom: 18px; font-size: 15px; line-height: 1.65; }
  .mobile-hero-copy .hero-eyebrow { justify-content: center; }
  .mobile-hero-copy .btn { width: 100%; }
  .mobile-hero-visual { height: min(230px, 29dvh); }

  .quick-journey { padding: 18px 0 8px; }
  .quick-journey .journey-strip { display: grid; grid-template-columns: 1fr; border-radius: 24px; overflow: hidden; }
  .quick-journey .journey-intro { min-height: 106px; padding: 22px 24px; }
  .quick-journey .journey-item { min-height: 82px; padding: 16px 20px; }
  .quick-journey .journey-item small { display: none; }

  .packages-section { padding-top: 58px; padding-bottom: 62px; }
  .packages-section .section-heading { margin-bottom: 26px; }
  .packages-section .section-heading p { font-size: 14px; line-height: 1.65; }
  .mobile-package-layout-compact .package-card {
    display: grid;
    grid-template-columns: minmax(112px, 35%) minmax(0, 1fr);
    align-items: stretch;
    min-height: var(--mobile-package-image-height, 150px);
    border-radius: 22px;
    overflow: hidden;
  }
  .mobile-package-layout-compact .package-media { height: 100%; min-height: var(--mobile-package-image-height, 150px); border-radius: 0; }
  .mobile-package-layout-compact .package-media img { width: 100%; height: 100%; object-fit: cover; }
  .mobile-package-layout-compact .package-body { padding: 16px 15px 14px; min-width: 0; }
  .mobile-package-layout-compact .package-index { display: none; }
  .mobile-package-layout-compact .package-body h3 { margin: 0 0 4px; font-size: 18px; line-height: 1.35; }
  .mobile-package-layout-compact .package-price { font-size: 15px; }
  .mobile-package-layout-compact .package-description { margin: 8px 0 10px; font-size: 13px; line-height: 1.55; }
  .mobile-package-layout-compact .package-features { margin: 8px 0 10px; font-size: 12px; }
  .mobile-package-layout-compact .package-cta { min-height: 40px; padding: 8px 12px; font-size: 13px; }
  .mobile-package-layout-compact .package-badge { top: 10px; left: 8px; right: auto; max-width: calc(100% - 16px); font-size: 10px; }
  .mobile-package-layout-stacked .package-card,
  .mobile-package-layout-cover .package-card { border-radius: 24px; }
  .mobile-package-layout-stacked .package-body,
  .mobile-package-layout-cover .package-body { padding: 20px 18px; }

  .sales-section .sales-list { display: flex; max-height: none; overflow-x: auto; overflow-y: hidden; gap: 10px; padding: 0 2px 8px; scroll-snap-type: x proximity; }
  .sales-section .sales-card { flex: 0 0 min(82vw, 330px); scroll-snap-align: start; }
  .sales-section .sales-focus { border-radius: 24px; }
  .sales-section .sales-focus-photo { height: 300px; max-height: none; }
  .sales-section .sales-focus-copy { padding: 20px 4px 2px; }
  .sales-section .sales-focus-copy p { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; }
  .sales-section .sales-contact-actions { display: grid; grid-template-columns: 1fr; }

  .promotion-section .promotion-slider { gap: 14px; }
  .promotion-section .promotion-card { flex-basis: min(84vw, 330px); }
  .promotion-section .promotion-media { height: 190px; }
  .promotion-section .promotion-body { padding: 18px; }
}

/* =========================================================
   ME2PLUS Consumers v1.11.0 — Square 1040 media + mobile slider
   Main content artwork uses a 1:1 canvas to match 1040 × 1040 px.
   The fit/background are editable from Website settings.
   ========================================================= */
.package-media,
.promotion-media,
.post-media {
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
  background: var(--content-media-bg, #f4fff7);
}
.package-media img,
.promotion-media img,
.post-media img {
  width: 100%;
  height: 100%;
  object-fit: var(--content-media-fit, contain);
  object-position: center;
  background: var(--content-media-bg, #f4fff7);
}
.package-card:hover .package-media img,
.promotion-card:hover .promotion-media img,
.post-card:hover .post-media img { transform: none; }

.article-cover,
.detail-image {
  background: var(--content-media-bg, #f4fff7);
}
.article-cover img,
.detail-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: var(--content-media-fit, contain);
  object-position: center;
  background: var(--content-media-bg, #f4fff7);
}
.related-mini img {
  width: 72px;
  height: 72px;
  aspect-ratio: 1 / 1;
  object-fit: var(--content-media-fit, contain);
  object-position: center;
  background: var(--content-media-bg, #f4fff7);
}
.content-gallery-button,
.content-gallery-item:first-child:nth-last-child(n+2) .content-gallery-button {
  aspect-ratio: 1 / 1;
  background: var(--content-media-bg, #f4fff7);
}
.content-gallery-button img {
  object-fit: contain;
  object-position: center;
  background: var(--content-media-bg, #f4fff7);
}

@media (max-width: 920px) {
  /* Single-image mode also supports the same square 1040 artwork. */
  .mobile-hero-image-wrap,
  .mobile-hero-slider-wrap {
    display: grid;
    justify-items: center;
    gap: 13px;
  }
  .mobile-hero-image-frame,
  .mobile-hero-slider-viewport {
    width: min(100%, var(--mobile-hero-height, 560px));
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
    margin-inline: auto;
  }
  .mobile-home-hero--image,
  .mobile-home-hero--slider {
    padding: 14px 0 26px;
    background: linear-gradient(180deg, #f7fff9 0%, #ffffff 100%);
  }
  .mobile-home-hero--slider .mobile-hero-image-button,
  .mobile-home-hero--image .mobile-hero-image-button {
    width: min(100%, var(--mobile-hero-height, 560px));
  }

  /* Unlimited mobile-only banner slider. */
  .mobile-hero-slider-wrap { position: relative; }
  .mobile-hero-slider-viewport {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(8, 164, 74, .13);
    border-radius: 28px;
    background: var(--content-media-bg, #f4fff7);
    box-shadow: 0 24px 60px rgba(3, 74, 39, .13);
    touch-action: pan-y;
    user-select: none;
  }
  .mobile-hero-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .42s ease, visibility .42s ease;
  }
  .mobile-hero-slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .mobile-hero-slide > a,
  .mobile-hero-slide > div {
    display: block;
    width: 100%;
    height: 100%;
  }
  .mobile-hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: var(--mobile-slide-fit, contain);
    object-position: center;
    background: var(--content-media-bg, #f4fff7);
    -webkit-user-drag: none;
  }
  .mobile-hero-slider-arrows {
    position: absolute;
    z-index: 4;
    inset: 50% 12px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
  }
  .mobile-hero-slider-arrows button {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(3, 51, 33, .46);
    color: #fff;
    box-shadow: 0 12px 32px rgba(3, 51, 33, .18);
    backdrop-filter: blur(8px);
    cursor: pointer;
    pointer-events: auto;
  }
  .mobile-hero-slider-arrows .icon { width: 19px; height: 19px; }
  .mobile-hero-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    max-width: min(100%, 420px);
    min-height: 34px;
    padding: 8px 12px;
    border: 1px solid rgba(5, 100, 53, .13);
    border-radius: 999px;
    background: #effaf3;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .mobile-hero-slider-dots::-webkit-scrollbar { display: none; }
  .mobile-hero-slider-dots button {
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(4, 51, 33, .28);
    cursor: pointer;
    transition: width .22s ease, background .22s ease;
  }
  .mobile-hero-slider-dots button.is-active {
    width: 25px;
    background: var(--green-500);
  }

  /* Square content artwork remains square in every mobile package layout. */
  .mobile-package-layout-stacked .package-media,
  .mobile-package-layout-cover .package-media {
    height: auto;
    aspect-ratio: 1 / 1;
    background: var(--content-media-bg, #f4fff7);
  }
  .mobile-package-layout-stacked .package-media img,
  .mobile-package-layout-cover .package-media img,
  .promotion-section .promotion-media img {
    width: 100%;
    height: 100%;
    object-fit: var(--content-media-fit, contain);
  }
  .promotion-section .promotion-media {
    height: auto;
    aspect-ratio: 1 / 1;
    background: var(--content-media-bg, #f4fff7);
  }
}

@media (max-width: 680px) {
  .mobile-home-hero--image,
  .mobile-home-hero--slider { padding: 10px 0 20px; }
  .mobile-hero-image-frame,
  .mobile-hero-slider-viewport {
    width: 100%;
    border-radius: 22px;
  }
  .mobile-hero-slider-arrows { left: 9px; right: 9px; }
  .mobile-hero-slider-arrows button { width: 40px; height: 40px; }

  .mobile-package-layout-compact .package-card {
    grid-template-columns: clamp(112px, 35vw, 150px) minmax(0, 1fr);
    align-items: start;
    min-height: 0;
  }
  .mobile-package-layout-compact .package-media {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
    align-self: start;
    background: var(--content-media-bg, #f4fff7);
  }
  .mobile-package-layout-compact .package-media img {
    width: 100%;
    height: 100%;
    object-fit: var(--content-media-fit, contain);
  }
  .content-gallery-button,
  .content-gallery-item:first-child:nth-last-child(n+2) .content-gallery-button {
    aspect-ratio: 1 / 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-hero-slide { transition: none; }
}
