/* ========================================
   CSS Variables
======================================== */
:root {
  --green: #00766c;
  --green-dark: #004e49;
  --navy: #102c44;
  --blue: #e6f7fb;
  --sky: #b7ecf7;
  --yellow: #ffd84a;
  --coral: #e24b58;
  --orange: #d99000;
  --ink: #152433;
  --muted: #607082;
  --line: #d9e5e8;
  --bg: #f6fbfb;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(12, 58, 68, 0.18);
  --radius: 8px;
  --container: 1120px;
}

/* ========================================
   Reset / Base
======================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--bg);
  line-height: 1.75;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

/* ========================================
   Utility Classes
======================================== */
.sp-only{
  display: none;
}

.pc-only{
  display: block;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================
   Common Layout
======================================== */
.page {
  overflow: hidden;
}

section {
  scroll-margin-top: 86px;
}

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

/* ========================================
   Header
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(76, 164, 91, 0.22);
  box-shadow: 0 5px 16px rgba(76, 164, 91, 0.055);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
  color: var(--green-dark);
}

.brand-logo {
  display: block;
  width: clamp(172px, 16vw, 230px);
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.nav a{
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.nav a:hover{
  color: var(--green-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-image-cta {
  display: flex;
  align-items: center;
  width: clamp(142px, 10.7vw, 174px);
  min-height: 50px;
  overflow: visible;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.header-image-cta img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.header-image-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.03) saturate(1.04);
}

.header-image-cta:focus-visible {
  outline: 3px solid rgba(0, 119, 95, 0.34);
  outline-offset: 3px;
  border-radius: 999px;
}

/* ========================================
   Mobile Navigation
======================================== */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 7px;
  color: var(--white);
  background: var(--green);
  position: relative;
}

.hamburger span,
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 11px;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.hamburger::before {
  top: 14px;
}

.hamburger span {
  top: 21px;
}

.hamburger::after {
  top: 28px;
}

.hamburger.is-open span {
  opacity: 0;
}

.hamburger.is-open::before {
  top: 21px;
  transform: rotate(45deg);
}

.hamburger.is-open::after {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}

/* ========================================
   Hero / First View
======================================== */
.hero {
  position: relative;
  height: auto;
  padding-top: 72px;
  background: #c9f2ff;
  isolation: isolate;
}

.hero-media {
  position: relative;
  z-index: 0;
}

.hero-media picture,
.hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-media img {
  object-fit: contain;
  object-position: center top;
}

.hero::after {
  display: none;
}

.hero-inner {
  position: absolute;
  inset: 72px 0 0;
  min-height: 0;
  padding: 0;
  pointer-events: none;
}

.hero-copy {
  max-width: 560px;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  color: var(--green-dark);
  background: var(--white);
  border: 2px solid rgba(0, 119, 95, 0.16);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(16, 44, 68, 0.1);
}

.area-pill::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--coral);
  border-radius: 50%;
}

.hero h1 {
  margin: 18px 0 0;
  color: var(--navy);
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 1000;
}

.hero-lead {
  width: fit-content;
  margin: 18px 0 0;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(16, 44, 68, 0.2);
}

/* ========================================
   Worry Section
======================================== */
.worry-image-section {
  overflow: hidden;
  background: #061c2d;
}

.worry-image {
  display: block;
  width: 100%;
}

.worry-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========================================
   Reasons Section
======================================== */
.reason-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  color: var(--green-dark);
  background: var(--yellow);
  border-radius: 50%;
  font-weight: 1000;
}

/* ========================================
   FAQ Section
======================================== */
details {
  background: var(--white);
  border: 1px solid rgba(16, 44, 68, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(16, 44, 68, 0.06);
}

summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--navy);
  font-weight: 1000;
}

details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-weight: 700;
}

/* ========================================
   Footer
======================================== */
.footer {
  position: relative;
  padding: 0;
  overflow: hidden;
  color: var(--navy);
  background:
    radial-gradient(circle at 0 72%, rgba(129, 181, 82, 0.1), transparent 22%),
    radial-gradient(circle at 100% 100%, rgba(0, 119, 95, 0.07), transparent 20%),
    linear-gradient(180deg, #fbfefc 0%, #f4faf7 100%);
  font-size: 14px;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #72bd55, #3cae69);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(190px, 0.75fr) minmax(300px, 1fr);
  gap: 0;
  align-items: center;
  padding: 76px 0 56px;
}

.footer-brand-block {
  padding-right: clamp(34px, 4vw, 62px);
  text-align: center;
}

.footer-logo {
  display: block;
  width: min(100%, 280px);
  margin: 0 auto;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-tagline {
  margin: 28px 0 0;
  color: var(--navy);
  line-height: 1.9;
  font-size: 15px;
  font-weight: 800;
}

.footer-area {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 24px 0 0;
  padding: 9px 18px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 119, 95, 0.42);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.footer-area span {
  color: #77bd50;
  font-size: 9px;
}

.footer-nav {
  min-height: 250px;
  padding: 12px clamp(34px, 4vw, 62px);
  border-left: 1px solid rgba(16, 44, 68, 0.12);
}

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

.footer-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding-left: 25px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-nav a::before {
  content: "";
  position: absolute;
  left: 2px;
  width: 10px;
  height: 7px;
  background: #72bd55;
  border-radius: 100% 0 100% 0;
  transform: rotate(-24deg);
}

.footer-nav a:hover {
  color: var(--green-dark);
  transform: translateX(3px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  padding: 30px clamp(18px, 3vw, 40px) 20px;
  border-left: 1px solid rgba(16, 44, 68, 0.12);
  text-align: center;
}

.footer-contact-label {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  width: max-content;
  margin: 0 auto;
  padding-left: 0;
  color: var(--navy);
  justify-content: center;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
}

.footer-contact-label::before {
  content: "☎";
  position: absolute;
  right: calc(100% + 16px);
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #63b947;
  background: rgba(129, 181, 82, 0.14);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 27px;
  font-weight: 500;
}

.footer-phone {
  display: inline-block;
  margin: 18px auto 0;
  white-space: nowrap;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.footer-phone strong {
  color: #ef8a17;
  font-size: clamp(28px, 2.45vw, 36px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.footer-phone:hover {
  opacity: 0.84;
  transform: translateY(-2px);
}

.footer-phone:focus-visible,
.footer-nav a:focus-visible {
  outline: 3px solid rgba(0, 119, 95, 0.26);
  outline-offset: 4px;
}

.footer-contact small {
  display: block;
  margin: 18px auto 0;
  color: var(--navy);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.footer-bottom {
  border-top: 1px dashed rgba(16, 44, 68, 0.16);
  background: rgba(255, 255, 255, 0.32);
}

.footer-bottom .container {
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 14px;
  padding: 30px 0 34px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.footer-legal span {
  display: inline-flex;
  align-items: center;
}

.footer-legal span + span::before {
  content: "";
  width: 1px;
  height: 14px;
  margin: 0 24px;
  background: #62b649;
}

.footer-bottom p {
  margin: 0;
  color: rgba(16, 44, 68, 0.72);
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

/* ========================================
   LINE Demo Modal
======================================== */
body.demo-modal-open {
  overflow: hidden;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.demo-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.demo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 25, 46, 0.72);
  backdrop-filter: blur(6px);
}

.demo-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100vw - 32px), 680px);
  max-height: calc(100dvh - 32px);
  overflow: auto;
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(7, 25, 46, 0.3);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.22s ease;
  scrollbar-width: thin;
}

.demo-modal.is-open .demo-modal-dialog {
  transform: translateY(0) scale(1);
}

.demo-modal-dialog > img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.demo-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 44, 68, 0.1);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(7, 25, 46, 0.14);
  cursor: pointer;
  font: 700 30px/1 Arial, sans-serif;
  transition: color 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
}

.demo-modal-close:hover {
  color: var(--green-dark);
  background: var(--white);
  transform: scale(1.05);
}

.demo-modal-close:focus-visible,
[data-demo-line]:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

/* ========================================
   Mobile Fixed CTA
======================================== */
.mobile-fixed-cta {
  display: none;
}

/* ========================================
   Common Poster Section
======================================== */
.poster-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background: var(--white);
}

.poster-container {
  width: min(100% - 72px, 1280px);
}

.poster-heading {
  margin-bottom: 30px;
}

.poster-heading-center {
  text-align: center;
}

.poster-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 38px;
  line-height: 1.24;
  font-weight: 1000;
}

.poster-heading > p:last-child {
  margin: 10px auto 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

.poster-note {
  margin: 20px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

/* ========================================
   Service Support Section
======================================== */
.poster-ok {
  padding-top: 68px;
  background: linear-gradient(180deg, var(--white), #f7fbf8 100%);
}

.poster-ok .poster-heading {
  margin-bottom: 34px;
}

.poster-ok::before,
.poster-ok::after,
.poster-reason::before,
.poster-reason::after,
.poster-final-cta::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border: 18px solid rgba(129, 181, 82, 0.34);
  border-right: 0;
  border-bottom: 0;
  transform: rotate(-18deg);
  pointer-events: none;
}

.poster-ok::before {
  left: -34px;
  top: 24px;
}

.poster-ok::after {
  right: -48px;
  top: 20px;
  transform: scaleX(-1) rotate(-18deg);
}

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

.ok-card,
.pickup-card,
.poster-price-card,
.poster-reason-grid article,
.poster-case-card,
.poster-flow-grid article{
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(16, 44, 68, 0.08);
  box-shadow: 0 14px 34px rgba(16, 44, 68, 0.08);
}

.ok-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 16px;
  padding: 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ok-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(16, 44, 68, 0.12);
}

.ok-card-head {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
}

.ok-num,
.poster-flow-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: #82b548;
  border-radius: 50%;
  font-weight: 1000;
}

.ok-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 1000;
}

.ok-card picture,
.pickup-card picture,
.poster-price-card picture{
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #e9f7f5;
}

.ok-card picture {
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background: #e9f7f5;
}

.ok-card picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ok-card img,
.pickup-card img,
.poster-price-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ok-card p,
.pickup-card p,
.poster-price-card p,
.poster-reason-grid p,
.poster-flow-grid p{
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 800;
}

.ok-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}

/* ========================================
   Pickup Items Section
======================================== */
.poster-items,
.poster-flow,
.poster-faq {
  background:
    linear-gradient(180deg, #f3fbfa, #ffffff 46%, #f3fbfa);
}

.poster-items {
  background:
    radial-gradient(circle at 12% 12%, rgba(129, 181, 82, 0.13), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(0, 118, 108, 0.08), transparent 30%),
    linear-gradient(180deg, #f3fbfa, #ffffff 48%, #f3fbfa);
}

.poster-items .poster-heading {
  margin-bottom: 34px;
}

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

.pickup-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 16px;
  padding: 20px;
  text-align: left;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pickup-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(16, 44, 68, 0.12);
}

.pickup-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pickup-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 54px;
  min-height: 30px;
  padding: 0 13px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #0b8f7d);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 1000;
}

.pickup-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.35;
  font-weight: 1000;
}

.pickup-card picture {
  aspect-ratio: 16 / 10;
}

.pickup-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 850;
}

/* ========================================
   Price Section
======================================== */
.poster-price {
  background:
    linear-gradient(180deg, var(--white), #f8fcfa 52%, var(--white));
}

.poster-price .poster-heading {
  margin-bottom: 34px;
}

.poster-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.poster-price-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  gap: 12px;
  padding: 24px;
  border: 2px solid rgba(0, 118, 108, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.poster-price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(16, 44, 68, 0.12);
}

.poster-price-card.featured {
  border-color: var(--green);
  box-shadow: 0 18px 44px rgba(0, 118, 108, 0.14);
}

.poster-price-card h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  margin: 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #0b8f7d);
  border-radius: 999px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 1000;
}

.price-visual-wrap {
  position: relative;
  margin-top: 2px;
}

.poster-price-card picture {
  aspect-ratio: 16 / 9;
  padding: 8px 10px;
  background:
    radial-gradient(circle at 50% 80%, rgba(0, 118, 108, 0.09), transparent 42%),
    linear-gradient(180deg, #ffffff, #f5fbfa);
  border: 1px solid rgba(0, 118, 108, 0.1);
  margin: 0;
}

.poster-price-card picture img {
  object-fit: contain;
}

.load-badge {
  position: absolute;
  right: 10px;
  top: 10px;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid rgba(0, 118, 108, 0.28);
  border-radius: 50%;
  text-align: center;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(16, 44, 68, 0.1);
}

.load-badge strong {
  display: block;
  margin-top: 2px;
  color: var(--green);
  font-size: 20px;
  line-height: 1;
}

.poster-price-card .price-catch {
  min-height: 28px;
  margin: 0;
  color: var(--navy);
  text-align: center;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 1000;
}

.poster-price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 7px;
  margin: 0;
  padding: 14px 12px;
  color: var(--coral);
  background: #fff5e2;
  border: 1px solid rgba(217, 144, 0, 0.18);
  border-radius: 8px;
  font-weight: 1000;
}

.poster-price-main small {
  color: #7a6417;
  background: var(--yellow);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 12px;
  white-space: nowrap;
}

.poster-price-main strong {
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 0;
}

.poster-price-main span {
  color: var(--coral);
  font-size: 20px;
}

.poster-price-card .price-description {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  text-align: left;
}

.poster-price-card .price-target {
  display: grid;
  place-items: center;
  min-height: 38px;
  margin: 0;
  padding: 8px 10px;
  color: var(--green-dark);
  background: #eaf7f3;
  border: 1px solid rgba(0, 118, 108, 0.12);
  border-radius: 7px;
  text-align: center;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 1000;
}

/* ========================================
   Reasons Section
======================================== */
.poster-reason {
  background: linear-gradient(180deg, #f7fbf8, #ffffff 50%, #f7fbf8);
}

.poster-reason .poster-heading {
  margin-bottom: 34px;
}

.poster-reason::before {
  left: -70px;
  top: 48px;
}

.poster-reason::after {
  right: -78px;
  top: 46px;
  transform: scaleX(-1) rotate(-18deg);
}

.poster-ok::before,
.poster-ok::after,
.poster-reason::before,
.poster-reason::after {
  display: none;
}

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

.poster-reason-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 84px 1fr;
  grid-template-rows: auto 1fr;
  gap: 8px 14px;
  align-items: center;
  min-height: 150px;
  padding: 22px;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.poster-reason-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(16, 44, 68, 0.11);
}

.poster-reason .reason-icon {
  display: block;
  grid-row: 1 / 3;
  width: 82px;
  height: 82px;
  margin: 0;
  overflow: hidden;
  background: #f5fbef;
  border-radius: 50%;
}

.poster-reason .reason-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
}

.poster-reason-grid h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 1000;
}

.poster-reason-grid p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  font-weight: 800;
}

/* ========================================
   Case Studies Section
======================================== */
.poster-case {
  background:
    linear-gradient(180deg, var(--white), #f5fbfa 52%, var(--white));
}

.poster-case .poster-heading {
  margin-bottom: 34px;
}

.poster-case-list {
  display: grid;
  gap: 22px;
}

.poster-case-card {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.7fr);
  gap: 24px;
  align-items: stretch;
  padding: 22px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.poster-case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(16, 44, 68, 0.12);
}

.case-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.case-media figure {
  position: relative;
  min-width: 0;
  margin: 0;
}

.case-media picture {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e9f7f5;
  border-radius: 8px;
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-media figcaption {
  position: absolute;
  left: 10px;
  top: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  color: var(--white);
  background: rgba(0, 118, 108, 0.92);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 1000;
  box-shadow: 0 8px 18px rgba(16, 44, 68, 0.14);
}

.case-media figure:last-child figcaption {
  background: rgba(226, 75, 88, 0.92);
}

.case-arrow {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(0, 118, 108, 0.18);
}

.case-arrow::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 4px solid var(--white);
  border-right: 4px solid var(--white);
  transform: translateX(-2px) rotate(45deg);
}

.case-detail {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
}

.case-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 1000;
}

.case-title span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  font-size: 12px;
  white-space: nowrap;
}

.case-summary {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 800;
}

.poster-case-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.poster-case-card dl div {
  min-height: 72px;
  padding: 12px;
  text-align: left;
  background: #f4fbf8;
  border: 1px solid rgba(0, 118, 108, 0.12);
  border-radius: 8px;
}

.poster-case-card dt {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 1000;
}

.poster-case-card dd {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 1000;
}

.poster-case-card dl div:last-child dd {
  color: var(--coral);
}

/* ========================================
   Flow Section
======================================== */
.poster-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  counter-reset: flow;
}

.poster-flow-grid article {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 12px;
  min-height: 292px;
  padding: 24px 20px 22px;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.poster-flow-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(16, 44, 68, 0.12);
}

.poster-flow-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--green);
  border-right: 3px solid var(--green);
  transform: translateY(-50%) rotate(45deg);
}

.poster-flow-grid span {
  margin: 0 auto;
  box-shadow: 0 10px 18px rgba(129, 181, 82, 0.26);
}

.flow-icon {
  display: block;
  align-self: center;
  width: 116px;
  height: 116px;
  margin: 0 auto;
}

.flow-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.poster-flow-grid strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  font-weight: 1000;
}

.poster-flow-grid p {
  margin-top: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.poster-flow {
  background:
    radial-gradient(circle at 12% 18%, rgba(129, 181, 82, 0.12), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(0, 118, 108, 0.08), transparent 28%),
    linear-gradient(180deg, #f3fbfa, #ffffff 46%, #f3fbfa);
}

.poster-flow .poster-heading {
  margin-bottom: 36px;
}

/* ========================================
   FAQ Section
======================================== */
.poster-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: 44px;
  align-items: center;
}

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

.poster-faq-list details {
  overflow: hidden;
  border-color: rgba(16, 44, 68, 0.1);
  box-shadow: 0 10px 26px rgba(16, 44, 68, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.poster-faq-list details[open] {
  border-color: rgba(0, 119, 95, 0.26);
  box-shadow: 0 14px 32px rgba(0, 88, 70, 0.1);
}

.poster-faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr 28px;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  font-size: 15px;
  list-style: none;
}

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

.poster-faq-list summary::before {
  content: "Q";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.poster-faq-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--green);
  background: #edf9f4;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.poster-faq-list details[open] summary::after {
  content: "−";
}

.poster-faq-list summary:focus-visible {
  outline: 3px solid rgba(0, 119, 95, 0.3);
  outline-offset: -3px;
}

.poster-faq-list details p {
  padding: 0 58px 18px 64px;
  font-size: 14px;
}

.faq-image-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  justify-self: end;
  background: transparent;
}

.faq-image-card > img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========================================
   Final CTA Section
======================================== */
.poster-final-cta {
  position: relative;
  overflow: hidden;
  padding: 32px 0 44px;
  background: var(--white);
}

.poster-final-cta::before {
  display: none;
}

.poster-final-cta .poster-container {
  width: min(calc(100% - 48px), 1240px);
}

.image-final-card {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  background: var(--white);
}

.image-final-bg {
  position: absolute;
  inset: 0;
}

.image-final-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-final-actions {
  position: absolute;
  left: 3.9%;
  top: 58.1%;
  width: 42.8%;
  height: 22.8%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8%;
}

.image-final-action {
  position: relative;
  display: block;
  min-width: 0;
  overflow: visible;
  border-radius: 14px;
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.image-final-action img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-final-action:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.image-final-action:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 4px;
}


/* ========================================
   First View Contact CTA
======================================== */
.fv-contact {
  padding: clamp(22px, 2.8vw, 42px) 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(129, 181, 82, 0.1), transparent 54%),
    linear-gradient(180deg, #f5fbf7, #ffffff);
}

.fv-contact-inner {
  position: relative;
  width: min(calc(100% - 40px), 1400px);
  aspect-ratio: 3 / 2;
}

.fv-contact-bg {
  position: absolute;
  inset: 0;
}

.fv-contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv-contact-actions {
  position: absolute;
  left: 10.4%;
  right: 8.8%;
  top: 38.3%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6%;
}

.fv-contact-action {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0;
  overflow: visible;
  border-radius: 0;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.fv-contact-action img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.fv-contact-action:hover {
  transform: translateY(-3px);
  filter: brightness(1.03) saturate(1.04);
}

.fv-contact-action:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 4px;
}

.fv-contact-price-link {
  position: absolute;
  left: 39%;
  bottom: 7.5%;
  width: 22%;
  height: 8%;
  border-radius: 8px;
}

.fv-contact-price-link:hover {
  background: rgba(0, 118, 108, 0.05);
}

.fv-contact-price-link:focus-visible {
  outline: 3px solid rgba(0, 119, 95, 0.36);
  outline-offset: 3px;
}

/* ========================================
   Responsive：768px以上
======================================== */
@media (min-width: 768px) {
  /* Hero / First View */
  .hero-lead {
    display: none;
  }
}

/* ========================================
   Responsive：1100px以下
======================================== */
@media (max-width: 1100px) {
  /* Common Poster Section */
  .poster-container {
    width: min(100% - 40px, 980px);
  }

  /* Service Support / Flow */
  .ok-grid,
  .poster-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Price */
  .poster-price-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  /* Case Studies */
  .poster-case-card {
    grid-template-columns: 1fr;
  }

  /* Pickup Items */
  .pickup-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Reasons */
  .poster-reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Flow */
  .poster-flow-grid article:not(:last-child)::after {
    display: none;
  }

  /* FAQ */
  .poster-faq-layout{
    grid-template-columns: 1fr;
  }

  .faq-image-card {
    width: min(100%, 480px);
    justify-self: center;
  }
}

/* ========================================
   Responsive：980px以下
======================================== */
@media (max-width: 980px) {
  /* Header */
  .nav,
  .header-actions {
    display: none;
  }

  /* Mobile Navigation */
  .hamburger {
    display: inline-flex;
  }

  .mobile-menu {
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    z-index: 29;
    display: grid;
    align-content: start;
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: var(--white);
    border-bottom: 1px solid rgba(16, 44, 68, 0.1);
    box-shadow: 0 22px 42px rgba(16, 44, 68, 0.12);
    backdrop-filter: blur(14px);
    transition: max-height 0.28s ease, padding 0.28s ease;
  }

  .mobile-menu.is-open {
    max-height: calc(100svh - 58px);
    min-height: calc(100svh - 58px);
    padding: 14px 20px 18px;
    overflow-y: auto;
  }

  .mobile-menu a:not(.button) {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    color: var(--navy);
    border-radius: 7px;
    font-weight: 900;
  }

  .mobile-menu a:not(.button):hover {
    background: #e9f7f5;
  }

  .mobile-menu-ctas {
    display: grid;
    gap: 10px;
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid rgba(16, 44, 68, 0.1);
  }

  .mobile-menu-image-cta {
    display: block;
    width: min(100%, 420px);
    margin: 0 auto;
    border-radius: 999px;
  }

  .mobile-menu-image-cta img {
    display: block;
    width: 100%;
    height: auto;
  }

  .mobile-menu-image-cta:focus-visible {
    outline: 3px solid rgba(0, 119, 95, 0.34);
    outline-offset: 2px;
  }

  /* Hero / First View */
  .hero {
    height: auto;
  }

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

  .hero h1 {
    font-size: 44px;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.8fr);
    gap: 0;
    padding: 58px 0 44px;
  }

  .footer-brand-block {
    padding-right: 40px;
  }

  .footer-nav {
    padding-right: 0;
  }

  .footer-contact {
    grid-column: 1 / -1;
    min-height: 0;
    margin-top: 42px;
    padding: 38px 0 0;
    border-top: 1px solid rgba(16, 44, 68, 0.12);
    border-left: 0;
    text-align: center;
  }

  .footer-contact-label {
    width: max-content;
    margin: 0 auto;
    text-align: center;
  }

  .footer-phone {
    display: block;
    width: max-content;
    margin: 16px auto 0;
  }

  .footer-contact small {
    margin: 14px 0 0;
    text-align: center;
  }
}

/* ========================================
   Responsive：767px以下
======================================== */
@media (max-width: 767px) {
  /* Base / Common Layout */
  body {
    padding-bottom: calc(108px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  /* Header */
  .header-inner {
    min-height: 58px;
    gap: 6px;
  }

  .brand-logo {
    width: 146px;
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 4px;
    margin-left: auto;
  }

  .header-image-cta {
    width: clamp(84px, 24.5vw, 106px);
    min-height: 42px;
  }

  .hamburger {
    width: 42px;
    height: 42px;
  }

  /* Hero / First View */
  .hero {
    height: auto;
    padding-top: 58px;
    background: #aeeaff;
  }

  .hero-media {
    position: relative;
    inset: auto;
  }

  .hero-media img {
    object-position: center top;
  }

  .hero::after {
    inset: 58px 0 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.36) 34%, rgba(255, 255, 255, 0) 52%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  }

  .hero-inner {
    inset: 58px 0 0;
    min-height: 0;
    padding: 0;
  }

  .hero-copy {
    max-width: 100%;
  }

  .area-pill {
    padding: 6px 12px;
    font-size: 13px;
  }

  .hero h1 {
    max-width: 330px;
    margin-top: 12px;
    font-size: 34px;
    line-height: 1.08;
  }

  .hero-lead {
    margin-top: 12px;
    padding: 8px 12px;
    font-size: 13px;
  }

  /* Mobile Fixed CTA */
  .mobile-fixed-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: block;
    padding: 0 8px calc(4px + env(safe-area-inset-bottom));
    background: transparent;
    border: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .mobile-fixed-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .fixed-tel-image {
    display: block;
    width: min(calc(100% - 8px), 360px);
    margin: 0 auto;
    border-radius: 999px;
  }

  .fixed-tel-image img {
    display: block;
    width: 100%;
    height: auto;
  }

  .fixed-tel-image:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 2px;
  }

  /* Common Poster Section */
  .poster-section {
    padding: 56px 0;
  }

  .poster-container {
    width: min(100% - 28px, 100%);
  }

  .poster-heading h2{
    font-size: 28px;
  }

  .ok-grid,
  .pickup-grid,
  .poster-price-grid,
  .poster-reason-grid,
  .poster-flow-grid {
    grid-template-columns: 1fr;
  }

  /* Reasons */
  .poster-reason-grid article {
    grid-template-columns: 70px 1fr;
    gap: 8px 14px;
    min-height: 132px;
    padding: 20px;
  }

  .poster-reason .reason-icon {
    width: 66px;
    height: 66px;
  }

  /* Flow */
  .poster-flow-grid {
    gap: 16px;
  }

  .poster-flow-grid article {
    min-height: 0;
    padding: 22px 18px 20px;
  }

  .flow-icon {
    width: 112px;
    height: 112px;
  }

  /* Case Studies */
  .case-media {
    grid-template-columns: 1fr;
  }

  .case-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .case-title {
    font-size: 20px;
  }

  .poster-case-card dl {
    grid-template-columns: repeat(2, 1fr);
  }

  /* FAQ */
  .poster-faq-list summary {
    grid-template-columns: 32px 1fr 26px;
    gap: 10px;
    padding: 15px 14px;
    font-size: 14px;
  }

  .poster-faq-list summary::before {
    width: 32px;
    height: 32px;
  }

  .poster-faq-list details p {
    padding: 0 46px 17px 56px;
    font-size: 13px;
  }

  .faq-image-card {
    width: min(100%, 340px);
    margin: 6px auto 0;
  }

  .faq-image-card > img {
    width: 100%;
    height: auto;
  }

  /* Final CTA */
  .poster-final-cta {
    padding: 16px 0 20px;
  }

  .poster-final-cta .poster-container {
    width: min(100% - 16px, 520px);
  }

  .image-final-card {
    aspect-ratio: 927 / 1697;
  }

  .image-final-actions {
    left: 5.3%;
    right: 5.3%;
    top: 75.1%;
    width: auto;
    height: 22.1%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1.08fr;
    gap: 4.6%;
  }

  .image-final-action {
    border-radius: 16px;
  }

  .image-final-bg img {
    object-fit: cover;
  }

  .image-final-action img {
    display: none;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 48px 0 34px;
  }

  .footer-brand-block {
    padding: 0 0 32px;
  }

  .footer-logo {
    width: min(100%, 220px);
  }

  .footer-tagline {
    margin-top: 20px;
    font-size: 13px;
  }

  .footer-nav {
    min-height: 0;
    padding: 30px 0;
    border-top: 1px solid rgba(16, 44, 68, 0.12);
    border-left: 0;
  }

  .footer-nav div {
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
  }

  .footer-contact {
    grid-column: auto;
    margin-top: 0;
    padding: 30px 0 0;
  }

  .footer-contact-label {
    min-height: 50px;
    padding-left: 0;
    font-size: 14px;
  }

  .footer-contact-label::before {
    width: 50px;
    height: 50px;
    font-size: 23px;
  }

  .footer-phone strong {
    font-size: 32px;
  }

  .footer-bottom .container {
    padding: 24px 0 28px;
  }

  .footer-legal {
    gap: 8px 14px;
    font-size: 11px;
  }

  .footer-legal span + span::before {
    display: none;
  }

  /* Utility Classes */
  .sp-only{
    display: block;
  }

   .pc-only{
    display: none;
  }

  /* First View Contact CTA */
  .fv-contact {
    padding: 20px 0 24px;
  }

  .fv-contact-inner {
    width: min(100% - 20px, 520px);
    aspect-ratio: auto;
    padding: 28px 14px 22px;
    background:
      radial-gradient(circle at 50% 0%, rgba(129, 181, 82, 0.12), transparent 42%),
      var(--white);
    border: 1px solid rgba(0, 118, 108, 0.1);
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(12, 58, 68, 0.1);
  }

  .fv-contact-bg {
    display: none;
  }

  .fv-contact-copy.visually-hidden {
    position: static !important;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    text-align: center;
  }

  .fv-contact-copy > p:first-child {
    margin: 0;
    color: var(--green);
    font-size: 13px;
    font-weight: 1000;
  }

  .fv-contact-copy h2 {
    margin: 8px 0 0;
    color: var(--navy);
    font-size: 27px;
    line-height: 1.35;
    font-weight: 1000;
  }

  .fv-contact-copy h2 span {
    color: var(--green);
  }

  .fv-contact-copy > p:last-child {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
  }

  .fv-contact-actions {
    position: static;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .fv-contact-action {
    padding: 0;
    border-radius: 0;
  }

  .fv-contact-benefits.visually-hidden {
    position: static !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
    width: auto;
    height: auto;
    padding: 0;
    margin: 18px 0 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .fv-contact-benefits span {
    position: relative;
    padding-left: 20px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 900;
  }

  .fv-contact-benefits span::before {
    content: "✓";
    position: absolute;
    left: 0;
    display: grid;
    place-items: center;
    width: 16px;
    height: 16px;
    color: var(--white);
    background: #72bb31;
    border-radius: 50%;
    font-size: 10px;
  }

  .fv-contact-price-link {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: auto;
    min-height: 42px;
    margin: 14px auto 0;
    padding: 0 8px;
    color: var(--navy);
    border-bottom: 1px solid currentColor;
    border-radius: 0;
    font-size: 14px;
    font-weight: 1000;
  }

  .fv-contact-price-link .visually-hidden {
    position: static !important;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }
}
