
:root {
  --green: #006014;
  --green-700: #004c10;
  --green-900: #013309;
  --cream: #fef6e7;
  --cream-2: #fffaf1;
  --sand: #f0e1ce;
  --beige: #dfcbb2;
  --yellow: #fce4a8;
  --mint: #c6e8b5;
  --ink: #18301d;
  --muted: #667269;
  --white: #ffffff;
  --line: rgba(0, 96, 20, .14);
  --shadow: 0 24px 70px rgba(22, 55, 29, .12);
  --shadow-soft: 0 12px 34px rgba(22, 55, 29, .09);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1240px;
  --header-h: 146px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream-2);
  color: var(--ink);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--mint); color: var(--green-900); }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 1000;
  transform: translateY(-150%); padding: 10px 16px; border-radius: 999px;
  background: var(--green); color: #fff; font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 104px 0; position: relative; }
.section-sm { padding: 72px 0; }
.section-kicker {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px;
  color: var(--green); font-size: .76rem; font-weight: 900; letter-spacing: .16em;
  text-transform: uppercase;
}
.section-kicker::before { content: ""; width: 34px; height: 2px; background: var(--green); }
h1, h2, h3, h4 {
  margin: 0 0 .55em; line-height: 1.12; color: var(--green-900);
  font-family: Rockwell, "Roboto Slab", Georgia, serif;
}
h1 { font-size: clamp(2.65rem, 6vw, 5.7rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2.1rem, 4vw, 3.75rem); letter-spacing: -.045em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.72rem); letter-spacing: -.025em; }
p { margin: 0 0 1.2em; }
.lead { font-size: clamp(1.08rem, 1.7vw, 1.35rem); color: #526159; max-width: 760px; }
.muted { color: var(--muted); }
.text-green { color: var(--green); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn {
  min-height: 54px; display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px;
  font-weight: 850; transition: .22s ease; box-shadow: none;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 12px 28px rgba(0, 96, 20, .18); }
.btn-primary:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0, 96, 20, .23); }
.btn-secondary { border-color: rgba(0,96,20,.22); color: var(--green); background: rgba(255,255,255,.55); }
.btn-secondary:hover { border-color: var(--green); background: #fff; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--green); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-weight: 850; }
.text-link:hover { gap: 12px; }

.site-header {
  height: var(--header-h); position: sticky; top: 0; z-index: 100;
  background: rgba(255, 250, 241, .9); backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent; transition: .25s ease;
}
.site-header.scrolled { height: 112px; border-color: var(--line); box-shadow: 0 12px 34px rgba(22,55,29,.06); }
.header-inner {
  height: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px;
}
.nav-group { display: flex; gap: 7px; align-items: center; }
.nav-group.right { justify-content: flex-end; }
.nav-link, .dropdown-toggle {
  border: 0; background: transparent; padding: 11px 15px; border-radius: 999px;
  color: #2e4634; font-size: .93rem; font-weight: 800; transition: .2s ease;
}
.nav-link:hover, .dropdown-toggle:hover, .nav-link.active, .dropdown.active > .dropdown-toggle {
  color: var(--green); background: rgba(0,96,20,.075);
}
.header-logo {
  width: 120px; height: 120px; display: grid; place-items: center; padding: 5px;
  border-radius: 50%; background: var(--cream-2); transition: .25s ease;
}
.site-header.scrolled .header-logo { width: 88px; height: 88px; }
.header-logo img { width: 100%; height: 100%; object-fit: contain; }
.dropdown { position: relative; }
.dropdown-toggle { display: inline-flex; align-items: center; gap: 7px; }
.dropdown-toggle svg { width: 14px; transition: .2s ease; }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); right: 0; width: 310px; padding: 10px;
  background: rgba(255,255,255,.98); border: 1px solid var(--line); border-radius: 20px;
  box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: .2s ease;
}
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu, .dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a { display: block; padding: 11px 13px; border-radius: 12px; font-weight: 760; color: #304735; }
.dropdown-menu a small { display: block; color: #768079; font-weight: 550; margin-top: 1px; }
.dropdown-menu a:hover, .dropdown-menu a.active { background: var(--cream); color: var(--green); }
.mobile-toggle { display: none; width: 48px; height: 48px; border: 0; border-radius: 50%; background: rgba(0,96,20,.08); color: var(--green); }
.mobile-toggle span { display: block; width: 20px; height: 2px; background: currentColor; margin: 4px auto; transition: .2s ease; }

.hero {
  min-height: calc(100svh - var(--header-h)); display: grid; align-items: center;
  overflow: hidden; padding: 76px 0 96px; background:
    radial-gradient(circle at 78% 18%, rgba(198,232,181,.62), transparent 29%),
    radial-gradient(circle at 13% 90%, rgba(252,228,168,.55), transparent 31%),
    linear-gradient(135deg, #fffaf1 0%, #fef6e7 100%);
}
.hero::before, .hero::after { content: ""; position: absolute; pointer-events: none; }
.hero::before { width: 44vw; height: 22vw; min-width: 480px; min-height: 230px; left: -12vw; top: 8%; background: var(--yellow); opacity: .58; clip-path: polygon(0 12%, 100% 50%, 0 89%); }
.hero::after { width: 42vw; height: 28vw; min-width: 500px; min-height: 300px; right: -15vw; bottom: -8%; background: var(--sand); opacity: .7; clip-path: polygon(18% 0, 100% 50%, 10% 100%, 0 48%); }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
.hero-copy { max-width: 760px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 13px; margin-bottom: 22px;
  border: 1px solid rgba(0,96,20,.18); border-radius: 999px; background: rgba(255,255,255,.55);
  color: var(--green); font-size: .83rem; font-weight: 900;
}
.hero h1 span { display: block; color: var(--green); }
.hero .lead { margin: 24px 0 30px; }
.hero-note { margin-top: 30px; display: flex; gap: 11px; align-items: flex-start; max-width: 590px; color: #526159; font-size: .94rem; }
.hero-note svg { flex: 0 0 auto; width: 22px; color: var(--green); margin-top: 2px; }
.hero-visual { position: relative; min-height: 555px; display: grid; place-items: center; }
.hero-orbit {
  position: absolute; width: min(42vw, 520px); aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(0,96,20,.13); box-shadow: 0 0 0 32px rgba(255,255,255,.45), 0 0 0 33px rgba(0,96,20,.08);
}
.hero-logo-card {
  width: min(34vw, 410px); aspect-ratio: 1; border-radius: 50%; padding: 16px;
  background: rgba(255,255,255,.93); box-shadow: var(--shadow); position: relative; z-index: 2;
}
.hero-logo-card img { width: 100%; height: 100%; object-fit: contain; }
.float-card {
  position: absolute; z-index: 3; width: 220px; padding: 18px 19px; border-radius: 20px;
  background: rgba(255,255,255,.94); box-shadow: var(--shadow-soft); border: 1px solid rgba(0,96,20,.08);
}
.float-card strong { display: block; color: var(--green-900); font-family: Rockwell, Georgia, serif; font-size: 1.05rem; }
.float-card span { color: #69746d; font-size: .86rem; }
.float-card.one { left: -18px; top: 68px; transform: rotate(-3deg); }
.float-card.two { right: -6px; bottom: 68px; transform: rotate(3deg); }
.float-icon { width: 39px; height: 39px; display: grid; place-items: center; margin-bottom: 10px; border-radius: 50%; background: var(--mint); color: var(--green); }
.float-icon svg { width: 21px; }

.trust-strip { position: relative; z-index: 4; margin-top: -38px; }
.trust-inner {
  display: grid; grid-template-columns: repeat(3,1fr); background: var(--green); color: #fff;
  border-radius: 26px; padding: 26px 32px; box-shadow: 0 24px 50px rgba(0,96,20,.2);
}
.trust-item { display: flex; align-items: center; gap: 14px; padding: 0 24px; border-right: 1px solid rgba(255,255,255,.18); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; padding-right: 0; }
.trust-item svg { flex: 0 0 auto; width: 29px; height: 29px; }
.trust-item strong { display: block; font-size: .96rem; }
.trust-item span { display: block; opacity: .72; font-size: .82rem; }

.intro-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.intro-sticky { position: sticky; top: 150px; }
.quality-card {
  padding: 34px; border-radius: var(--radius-xl); background: var(--green); color: #fff;
  box-shadow: var(--shadow); overflow: hidden; position: relative;
}
.quality-card::after { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; right: -80px; bottom: -80px; background: rgba(198,232,181,.16); }
.quality-card h3 { color: #fff; font-size: 2rem; }
.quality-card p { color: rgba(255,255,255,.74); }
.quality-card .mini-stat { display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: center; margin-top: 22px; }
.mini-stat b { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.12); font-size: 1.2rem; }
.mini-stat span { font-size: .9rem; opacity: .8; }
.process-list { display: grid; gap: 14px; }
.process-step {
  display: grid; grid-template-columns: 62px 1fr; gap: 20px; align-items: start; padding: 25px;
  border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.76); transition: .2s ease;
}
.process-step:hover { transform: translateX(5px); background: #fff; box-shadow: var(--shadow-soft); }
.step-no { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--cream); color: var(--green); font-weight: 950; font-family: Rockwell, Georgia, serif; }
.process-step h3 { margin-bottom: 6px; font-size: 1.25rem; }
.process-step p { margin: 0; color: var(--muted); }

.services-section { background: #fff; overflow: hidden; }
.services-section::before { content: ""; position: absolute; width: 28vw; height: 100%; left: 0; top: 0; background: var(--mint); opacity: .2; clip-path: polygon(0 0, 100% 50%, 0 100%); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 44px; position: relative; z-index: 2; }
.section-head > div:first-child { max-width: 720px; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; position: relative; z-index: 2; }
.service-card {
  min-height: 335px; padding: 34px; border-radius: 30px; position: relative; overflow: hidden;
  background: var(--cream); border: 1px solid rgba(0,96,20,.08); transition: .3s ease;
  display: flex; flex-direction: column; align-items: flex-start;
}
.service-card:nth-child(2) { background: #f7efd8; }
.service-card:nth-child(3) { background: #edf7e9; }
.service-card:nth-child(4) { background: #f5e9d9; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.service-icon { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 20px; background: #fff; color: var(--green); box-shadow: var(--shadow-soft); }
.service-icon svg { width: 31px; height: 31px; }
.service-card h3 { margin-top: 26px; margin-bottom: 10px; font-size: 1.8rem; }
.service-card p { color: #617068; max-width: 510px; }
.service-card .text-link { margin-top: auto; }
.service-num { position: absolute; right: 26px; top: 19px; color: rgba(0,96,20,.12); font-family: Rockwell, Georgia, serif; font-size: 4.5rem; font-weight: 900; line-height: 1; }

.about-band { overflow: hidden; }
.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 68px; align-items: center; }
.about-visual { min-height: 520px; position: relative; }
.about-shape { position: absolute; border-radius: 34px; }
.about-shape.main { inset: 20px 55px 30px 20px; background: linear-gradient(145deg, var(--mint), #e7f4df); transform: rotate(-3deg); }
.about-shape.accent { width: 52%; height: 45%; right: 0; bottom: 0; background: var(--yellow); transform: rotate(5deg); }
.about-logo { position: absolute; inset: 62px 95px 62px 60px; display: grid; place-items: center; border-radius: 34px; background: rgba(255,255,255,.9); box-shadow: var(--shadow); z-index: 2; }
.about-logo img { width: min(92%, 360px); }
.badge-card { position: absolute; right: 5px; top: 45px; z-index: 3; padding: 18px 20px; border-radius: 18px; background: #fff; box-shadow: var(--shadow-soft); max-width: 220px; }
.badge-card strong { color: var(--green); display: block; font-family: Rockwell, Georgia, serif; }
.check-list { display: grid; gap: 13px; margin: 26px 0 32px; }
.check-item { display: flex; gap: 13px; align-items: flex-start; }
.check-item i { flex: 0 0 auto; width: 25px; height: 25px; border-radius: 50%; display: grid; place-items: center; background: var(--mint); color: var(--green); font-style: normal; font-weight: 950; margin-top: 1px; }

.cta-section { padding: 0 0 100px; }
.cta-box {
  padding: 64px; border-radius: 38px; background: var(--green); color: #fff; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px;
}
.cta-box::before { content: ""; position: absolute; width: 350px; height: 350px; border-radius: 50%; right: 8%; top: -180px; border: 70px solid rgba(255,255,255,.06); }
.cta-box h2 { color: #fff; max-width: 760px; margin-bottom: 12px; }
.cta-box p { margin: 0; color: rgba(255,255,255,.72); max-width: 720px; }
.cta-box > * { position: relative; z-index: 2; }

.page-hero { padding: 82px 0 86px; overflow: hidden; background: linear-gradient(135deg, var(--cream) 0%, #fffaf1 68%); position: relative; }
.page-hero::before { content: ""; position: absolute; inset: auto -8% -46% auto; width: 510px; aspect-ratio: 1; border-radius: 50%; background: var(--mint); opacity: .35; }
.page-hero::after { content: ""; position: absolute; width: 44%; height: 100%; left: -16%; top: 0; background: var(--yellow); opacity: .35; clip-path: polygon(0 0, 100% 50%, 0 100%); }
.page-hero-grid { display: grid; grid-template-columns: 1fr 300px; gap: 60px; align-items: center; position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.7rem, 5.7vw, 5.2rem); }
.page-hero-logo { width: 270px; aspect-ratio: 1; padding: 12px; border-radius: 50%; background: rgba(255,255,255,.86); box-shadow: var(--shadow); }
.breadcrumbs { display: flex; gap: 9px; align-items: center; margin-bottom: 18px; color: #758078; font-size: .86rem; font-weight: 700; }
.breadcrumbs a:hover { color: var(--green); }

.content-grid { display: grid; grid-template-columns: 1fr 360px; gap: 70px; align-items: start; }
.prose h2 { font-size: clamp(1.8rem, 3vw, 2.65rem); margin-top: 1.5em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.5em; }
.prose p, .prose li { color: #526159; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .55em; }
.sidebar-card { position: sticky; top: 140px; padding: 30px; border-radius: 28px; background: var(--green); color: #fff; box-shadow: var(--shadow); }
.sidebar-card h3 { color: #fff; }
.sidebar-card p { color: rgba(255,255,255,.72); }
.sidebar-list { display: grid; gap: 10px; margin: 22px 0 26px; }
.sidebar-list span { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; }
.sidebar-list span::before { content: "✓"; font-weight: 950; color: var(--mint); }

.detail-feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin: 34px 0; }
.detail-feature { padding: 23px; border-radius: 21px; background: #fff; border: 1px solid var(--line); }
.detail-feature svg { width: 28px; color: var(--green); margin-bottom: 13px; }
.detail-feature strong { display: block; color: var(--green-900); margin-bottom: 5px; }
.detail-feature span { color: var(--muted); font-size: .9rem; }

.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 18px; background: #fff; overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 20px 22px; border: 0; background: transparent; text-align: left; color: var(--green-900); font-weight: 850; }
.faq-question i { font-style: normal; font-size: 1.35rem; color: var(--green); transition: .2s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { padding: 0 22px 21px; margin: 0; color: var(--muted); }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-item.open .faq-question i { transform: rotate(45deg); }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 64px; align-items: start; }
.contact-card { padding: 34px; border-radius: 30px; background: var(--green); color: #fff; box-shadow: var(--shadow); }
.contact-card h2, .contact-card h3 { color: #fff; }
.contact-card p { color: rgba(255,255,255,.72); }
.contact-methods { display: grid; gap: 13px; margin-top: 26px; }
.contact-method { display: grid; grid-template-columns: 47px 1fr; gap: 13px; align-items: center; padding: 14px; border-radius: 16px; background: rgba(255,255,255,.08); }
.contact-method i { width: 47px; height: 47px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.12); font-style: normal; }
.contact-method svg { width: 21px; }
.contact-method span { display: block; font-size: .78rem; opacity: .62; }
.contact-method strong { display: block; font-size: .96rem; }
.contact-form { padding: 42px; border-radius: 32px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--green-900); font-weight: 800; font-size: .9rem; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid #dfe5df; border-radius: 13px; background: #fffdf8; color: var(--ink);
  padding: 14px 15px; outline: none; transition: .2s ease;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(0,96,20,.08); }
.checkbox { grid-column: 1 / -1; display: flex; gap: 11px; align-items: flex-start; color: var(--muted); font-size: .83rem; }
.checkbox input { margin-top: 5px; accent-color: var(--green); }
.form-status { min-height: 24px; margin: 13px 0 0; font-weight: 760; color: var(--green); }

.legal-wrap { max-width: 890px; }
.legal-note { padding: 20px 22px; border-radius: 17px; background: #fff2cf; border: 1px solid #ecd28e; margin-bottom: 30px; color: #66521a; }
.legal-card { padding: 38px; border-radius: 28px; background: #fff; border: 1px solid var(--line); }
.legal-card h2 { margin-top: 1.5em; font-size: 1.8rem; }
.legal-card h2:first-child { margin-top: 0; }
.placeholder { background: #fff0ee; color: #9a3026; padding: 2px 6px; border-radius: 5px; font-weight: 800; }

.site-footer { background: #f4eadb; position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; width: 44%; height: 100%; left: -15%; top: 0; background: var(--mint); opacity: .38; clip-path: polygon(0 0, 100% 50%, 0 100%); }
.footer-main { padding: 72px 0 48px; display: grid; grid-template-columns: 1.1fr .8fr .8fr .9fr; gap: 42px; position: relative; z-index: 2; }
.footer-brand img { width: 130px; margin-bottom: 17px; }
.footer-brand p { color: #69746d; max-width: 330px; }
.footer-title { color: var(--green-900); font-family: Rockwell, Georgia, serif; font-weight: 900; margin-bottom: 16px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: #59675e; font-size: .91rem; }
.footer-links a:hover { color: var(--green); }
.footer-contact { display: grid; gap: 10px; }
.footer-contact a { display: flex; gap: 9px; align-items: center; color: #59675e; font-size: .91rem; }
.footer-contact svg { width: 17px; color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(0,96,20,.12); padding: 20px 0; position: relative; z-index: 2; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 20px; color: #7a837d; font-size: .82rem; }
.footer-legal { display: flex; gap: 18px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  :root { --header-h: 116px; }
  .site-header { height: var(--header-h); }
  .site-header.scrolled { height: var(--header-h); }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .header-logo { width: 92px; height: 92px; grid-column: 1; }
  .site-header.scrolled .header-logo { width: 92px; height: 92px; }
  .mobile-toggle { display: block; grid-column: 3; }
  .nav-group {
    position: fixed; inset: var(--header-h) 16px auto 16px; max-height: calc(100svh - var(--header-h) - 20px); overflow: auto;
    display: none; flex-direction: column; align-items: stretch; gap: 5px; padding: 18px;
    border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.98); box-shadow: var(--shadow);
  }
  .nav-group.left { z-index: 2; border-radius: 24px 24px 0 0; padding-bottom: 10px; }
  .nav-group.right { inset-block-start: calc(var(--header-h) + 118px); justify-content: flex-start; padding: 0 18px 18px; border-top: 0; border-radius: 0 0 24px 24px; background: rgba(255,255,255,.98); max-height: calc(100svh - var(--header-h) - 130px); overflow: auto; }
  body.menu-open .nav-group { display: flex; }
  body.menu-open .nav-group.left { padding-bottom: 10px; }
  body.menu-open .nav-group.right { display: flex; position: fixed; top: calc(var(--header-h) + 118px); background: rgba(255,255,255,.98); border: 1px solid var(--line); border-top: 0; box-shadow: var(--shadow); }
  .nav-link, .dropdown-toggle { width: 100%; text-align: left; justify-content: space-between; padding: 13px 14px; }
  .dropdown { width: 100%; }
  .dropdown-menu { position: static; width: 100%; display: none; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 5px 6px 0 14px; background: transparent; }
  .dropdown.open .dropdown-menu { display: block; }
  .dropdown:hover .dropdown-menu:not(:focus-within) { display: none; }
  .dropdown.open:hover .dropdown-menu { display: block; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { margin-inline: auto; }
  .hero .lead, .hero-note { margin-inline: auto; }
  .hero .btn-row { justify-content: center; }
  .hero-visual { min-height: 450px; }
  .hero-logo-card { width: min(58vw, 380px); }
  .hero-orbit { width: min(72vw, 500px); }
  .intro-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .intro-sticky, .sidebar-card { position: static; }
  .content-grid { grid-template-columns: 1fr; }
  .page-hero-grid { grid-template-columns: 1fr 230px; }
  .page-hero-logo { width: 220px; }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-main > :last-child { grid-column: 2 / 4; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 76px 0; }
  .section-sm { padding: 56px 0; }
  .hero { padding: 48px 0 82px; min-height: auto; }
  .hero-grid { gap: 34px; }
  .hero-visual { min-height: 365px; }
  .hero-logo-card { width: min(68vw, 320px); }
  .hero-orbit { width: min(82vw, 390px); }
  .float-card { width: 185px; padding: 13px 14px; }
  .float-card.one { left: -4px; top: 20px; }
  .float-card.two { right: -4px; bottom: 14px; }
  .trust-strip { margin-top: -28px; }
  .trust-inner { grid-template-columns: 1fr; padding: 9px 20px; }
  .trust-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.17); padding: 16px 0; }
  .trust-item:last-child { border-bottom: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 310px; padding: 27px; }
  .section-head { display: block; }
  .section-head .btn { margin-top: 18px; }
  .about-visual { min-height: 430px; }
  .about-logo { inset: 52px 40px 52px 36px; }
  .badge-card { right: 0; top: 18px; }
  .cta-box { grid-template-columns: 1fr; padding: 42px 28px; }
  .cta-box .btn-row { justify-content: flex-start; }
  .page-hero { padding: 62px 0; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-logo { display: none; }
  .detail-feature-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 27px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full, .checkbox { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand, .footer-main > :last-child { grid-column: 1 / -1; }
  .footer-bottom-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.55rem; }
  .hero-eyebrow { font-size: .74rem; }
  .hero-visual { min-height: 330px; }
  .hero-logo-card { width: 255px; }
  .hero-orbit { width: 300px; }
  .float-card { width: 163px; }
  .float-card span { font-size: .75rem; }
  .trust-item { gap: 11px; }
  .process-step { grid-template-columns: 48px 1fr; gap: 14px; padding: 20px 17px; }
  .step-no { width: 44px; height: 44px; }
  .about-visual { min-height: 360px; }
  .badge-card { max-width: 170px; font-size: .82rem; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > * { grid-column: auto !important; }
  .footer-legal { flex-wrap: wrap; }
}

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