/* =========================================================
   Gmap Review — Landing Page Styles
   No framework. Pure CSS.
   ========================================================= */

:root {
  /* Brand greens */
  --teal: #21a06b;
  --teal-strong: #1c9362;
  --teal-dark: #178053;
  --teal-bright: #29b074;          /* heading highlight */
  --green-deep: #0e4339;            /* dark sections */
  --green-deep-2: #0a322b;
  --green-deepest: #072420;

  /* Text */
  --ink: #0d2233;
  --ink-soft: #28404e;
  --muted: #5d6f77;
  --muted-light: #8a979d;

  /* Surfaces */
  --white: #ffffff;
  --mint-50: #f4fbf8;
  --mint-100: #ecf9f3;
  --mint-200: #e2f5ec;
  --line: #e8efeb;
  --line-soft: #eef3f0;

  /* Accents (tiny dots only) */
  --acc-orange: #f5a623;
  --acc-yellow: #f7d04b;
  --acc-blue: #5b8def;
  --acc-purple: #9b7bd6;

  /* System */
  --shadow-sm: 0 2px 10px rgba(13, 60, 50, 0.05);
  --shadow-md: 0 14px 40px rgba(13, 60, 50, 0.08);
  --shadow-lg: 0 26px 60px rgba(13, 60, 50, 0.13);
  --shadow-float: 0 18px 50px rgba(13, 60, 50, 0.16);

  --radius-sm: 14px;
  --radius-md: 14px;
  --radius-lg: 14px;
  --radius-xl: 14px;

  --maxw: 1200px;
  --gutter: 24px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.8;
  font-size: 16px;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, p {
  margin: 0;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-label {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.45;
  color: var(--ink);
}

.section-title .hl {
  color: var(--teal);
}

.section-sub {
  text-align: center;
  margin: 18px auto 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 15.5px;
}

.tcenter { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  padding: 15px 30px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
  line-height: 1.2;
}

.btn .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--ease);
}

.btn-primary {
  background: var(--teal);
  color: #fff;
}

.btn-primary:hover {
  background: var(--teal-strong);
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(33, 160, 107, 0.4);
}

.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  background: #fff;
  color: var(--teal);
  border: 1.6px solid var(--teal);
}

.btn-ghost:hover {
  background: var(--mint-100);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--teal-dark);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.24);
}

.btn-lg {
  padding: 18px 38px;
  font-size: 16.5px;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 15px;
}

.btn-text svg { transition: transform 0.25s var(--ease); }
.btn-text:hover svg { transform: translateX(4px); }

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(33, 160, 107, 0.45);
  outline-offset: 3px;
  border-radius: 8px;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.brand .pin {
  width: 26px;
  height: 26px;
  color: var(--teal);
  flex: none;
}

.brand-logo {
  height: 60px;
  width: auto;
  display: block;
}
.brand-logo-footer {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: width 0.25s var(--ease);
}

.nav a:hover { color: var(--teal); }
.nav a:hover::after { width: 100%; }

.header-cta {
  margin-left: 8px;
  padding: 13px 24px;
  font-size: 14px;
}

.header-cta .arrow svg {
  width: 16px;
  height: 16px;
}

/* Hamburger */
.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--mint-100);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--teal-dark);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 74px 0 auto 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  z-index: 99;
  padding: 18px var(--gutter) 26px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), visibility 0.3s;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu a.m-link {
  display: block;
  padding: 14px 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 18px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
}

/* big soft background curves */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background-image: url("assets/hero-background.png");
  background-repeat: no-repeat;
  background-position: calc(100% + 600px) top;
  background-size: 1920px auto;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-blob.b1 {
  width: 560px; height: 560px;
  right: -160px; top: -200px;
  background: radial-gradient(circle at 30% 30%, #d8f3e8, #eafaf3 60%, transparent 72%);
}
.hero-blob.b2 {
  width: 380px; height: 380px;
  right: 180px; top: 120px;
  background: radial-gradient(circle at 40% 40%, #c9eede, transparent 70%);
  opacity: 0.5;
}

.hero-wave {
  position: absolute;
  right: -60px;
  top: 40px;
  width: 760px;
  height: 620px;
  z-index: 0;
  opacity: 0.9;
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
  align-items: center;
}

.hero-copy { padding-top: 6px; }

.hero h1 {
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.hero h1 .hl { color: var(--teal); }

.hero-lead {
  margin-top: 26px;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 2;
  max-width: 460px;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.hero-actions .btn-primary { padding-left: 34px; padding-right: 34px; }

/* No.1 laurel badge */
.hero-no1 {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-no1 .laurel { width: 30px; height: 66px; flex: none; }
.hero-no1 .laurel-r { transform: scaleX(-1); }
.hero-no1 .no1-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 5px;
}
.hero-no1 .no1-label {
  background: var(--teal);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 12px;
  border-radius: 6px;
  text-align: center;
  white-space: nowrap;
}
.hero-no1 .no1-sub {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  text-align: center;
  letter-spacing: 0.02em;
}
.hero-no1 .no1-big {
  font-size: 50px;
  font-weight: 900;
  color: #c89a3c;
  line-height: 0.9;
  letter-spacing: -0.01em;
  font-family: "Noto Sans JP", sans-serif;
}
.hero-no1 .no1-big span { color: #b8862c; }

/* circular arrow on hero CTA */
.cta-circle {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: inline-flex; align-items: center; justify-content: center;
}

/* ----- hero visual ----- */
.hero-visual {
  position: relative;
  height: 540px;
  min-height: 540px;
}

.hv-slideshow {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 75%;
  top: -40%;
  left: -10%;
}
.hv-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
.hv-slide.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hv-slide { transition: none; }
}

/* phone mockup */
.phone {
  position: absolute;
  top: 56px;
  right: 6px;
  width: 256px;
  height: 470px;
  background: #0d1b16;
  border-radius: 40px;
  padding: 11px;
  box-shadow: var(--shadow-float);
  z-index: 3;
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  position: absolute;
  top: 9px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 22px;
  background: #0d1b16;
  border-radius: 0 0 14px 14px;
  z-index: 5;
}
.phone-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 20px 6px;
  font-size: 11px; font-weight: 700; color: #0d2233;
}
.phone-status .dots { display: flex; gap: 3px; align-items: center; }
.phone-body {
  padding: 8px 16px 16px;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.chat-q {
  background: var(--mint-100);
  border-radius: 14px 14px 14px 4px;
  padding: 11px 13px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  align-self: flex-start;
  max-width: 92%;
}
.chat-title {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink-soft);
}
.rate-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.rate-opt {
  border: 1.4px solid var(--line);
  border-radius: 12px;
  padding: 10px 4px 8px;
  text-align: center;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink-soft);
  display: flex; flex-direction: column; align-items: center; gap: 5px;
}
.rate-opt svg { width: 18px; height: 18px; color: var(--teal); }
.rate-opt.active { border-color: var(--teal); background: var(--mint-100); }
.chat-note { font-size: 10.5px; color: var(--muted); }
.chat-input {
  border: 1.4px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 10.5px;
  color: var(--muted-light);
  flex: 1;
  min-height: 70px;
}

/* floating: AI generating card */
.float-card {
  position: absolute;
  z-index: 4;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-float);
}

.ai-card {
  left: -6px;
  bottom: 70px;
  width: 268px;
  padding: 16px 18px;
  left: 50%;
  bottom: 0px;
}
.ai-card .ai-head {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 700; color: var(--ink);
}
.ai-card .ai-head .spark {
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--mint-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); flex: none;
}
.ai-card .ai-head .chev { margin-left: auto; color: var(--muted-light); }
.ai-card .ai-text {
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.85;
}
.ai-card .ai-btn {
  margin-top: 14px;
  width: 100%;
  pointer-events: none;
  background: var(--teal);
  color: #fff;
  border-radius: 999px;
  padding: 11px;
  font-size: 12.5px;
  font-weight: 700;
}

/* google review card */
.g-card {
  right: 16px;
  bottom: 6px;
  z-index: 5;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.g-card .g-label {
  font-size: 12.5px; font-weight: 700; color: var(--ink); white-space: nowrap;
}
.g-card .g-stars { display: flex; align-items: center; gap: 6px; }
.g-card .g-stars .gicon { width: 22px; height: 22px; }
.g-card .stars { display: flex; gap: 2px; }
.g-card .stars svg { width: 18px; height: 18px; color: #fbbc04; }

/* tiny decorative dots */
.dot {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
}
.dot.d-teal { background: var(--teal); }
.dot.d-orange { background: var(--acc-orange); }
.dot.d-yellow { background: var(--acc-yellow); }
.dot.d-blue { background: var(--acc-blue); }

/* dotted pattern */
.dots-pattern {
  position: absolute;
  width: 120px; height: 80px;
  background-image: radial-gradient(var(--teal) 1.6px, transparent 1.6px);
  background-size: 13px 13px;
  opacity: 0.22;
  z-index: 1;
}

/* ----- stats cards ----- */
.hero-stats {
  position: relative;
  z-index: 3;
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.stat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--mint-100);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.stat-icon svg { width: 26px; height: 26px; }
.stat-label { font-size: 13px; color: var(--muted); font-weight: 500; }
.stat-num {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.stat-num .u { font-size: 14px; margin-left: 2px; font-weight: 600; }

/* =========================================================
   HOW TO USE
   ========================================================= */
.how {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.soft-circle {
  position: absolute;
  border-radius: 50%;
  border: 1.6px solid rgba(33,160,107,0.16);
  z-index: 0;
}

.steps {
  margin-top: 58px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 6px;
  position: relative;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: 54px 40px;
}

/* ---- speech-bubble banner header ---- */
.how-banner {
  position: relative;
  z-index: 2;
  margin: 18px auto 0;
  max-width: 720px;
  background: linear-gradient(120deg, var(--teal) 0%, var(--teal-strong) 100%);
  color: #fff;
  text-align: center;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 24px 44px;
  border-radius: 999px;
}
.how-banner strong { font-weight: 900; }
.how-banner::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  transform: translateX(-50%);
  width: 28px;
  height: 16px;
  background: var(--teal-strong);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/* ---- 4-step card grid ---- */
.steps4 {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  position: relative;
  z-index: 2;
}
.step4 {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 22px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.step4:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.step4-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  padding: 9px 22px;
  background: var(--green-deep);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 999px;
}
.step4 h3 {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  min-height: 2.5em;
  display: flex;
  align-items: center;
}
.step4-art {
  width: 100%;
  margin: 10px 0 18px;
  background: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step4-art svg { width: 116px; height: 116px; display: block; }
.step4-art img { width: 96px; height: 96px; object-fit: contain; display: block; }
.step4 p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.85;
}
.step {
  text-align: center;
  padding: 0 18px;
}
.step-ic {
  width: 92px; height: 92px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #fff;
  border: 1.6px solid var(--mint-200);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  position: relative;
}
.step-ic svg { width: 40px; height: 40px; }
.step-no {
  position: absolute;
  top: -6px; right: -2px;
  font-size: 12px; font-weight: 800;
  color: var(--teal);
  background: #fff;
  border: 1.5px solid var(--mint-200);
  border-radius: 999px;
  padding: 1px 9px;
}
.step h3 { font-size: 18px; font-weight: 700; color: var(--ink); }
.step p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
}
.step-arrow {
  align-self: center;
  margin-top: 30px;
  color: var(--teal);
  opacity: 0.8;
}
.step-arrow svg { width: 56px; height: 16px; }

/* =========================================================
   REASON
   ========================================================= */
.reason { background: #fff; }
.reason-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.reason-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.reason-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.reason-ic { display: none; }

.reason-card {
  text-align: center;
}
.reason-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.reason-head .rs {
  width: 3px;
  height: 26px;
  background: var(--teal);
  border-radius: 2px;
  flex: none;
}
.reason-head .rs-l { transform: rotate(-22deg); }
.reason-head .rs-r { transform: rotate(22deg); }
.reason-card h3 {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.55;
  white-space: nowrap;
}
.reason-icon {
  margin: 26px auto 22px;
  width: 104px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reason-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.reason-card p {
  margin-top: 0;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.9;
}

/* =========================================================
   PRICE
   ========================================================= */
.price { background: var(--white); position: relative; overflow: hidden; }
.price-grid {
  margin: 54px auto 0;
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 30px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  border: 2px solid var(--teal);
}
.price-badge {
  position: absolute;
  top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 22px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(33,160,107,0.3);
}
.price-name {
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.price-amount {
  text-align: center;
  margin-top: 16px;
  color: var(--ink);
  font-weight: 700;
}
.price-amount .num {
  font-size: 42px;
  letter-spacing: -0.01em;
}
.price-card.featured .price-amount { color: var(--teal); }
.price-amount .unit { font-size: 15px; font-weight: 700; margin-left: 2px; }
.price-amount .tax { font-size: 13px; font-weight: 500; color: var(--muted); margin-left: 4px; }
.price-eq {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}
.price-desc {
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.8;
}
.price-divider {
  height: 1px;
  background: var(--line);
  margin: 22px 0;
}
.price-feats { display: flex; flex-direction: column; gap: 12px; }
.price-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}
.price-feats li .ck {
  color: var(--teal);
  flex: none;
  margin-top: 3px;
}
.price-feats li .ck svg { width: 17px; height: 17px; }
.price-card .btn { margin-top: auto; }
.price-card > .btn { margin-top: 26px; }
.price-opt {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price-opt-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-soft);
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}
.price-opt-row > span:first-child { flex: 1; min-width: 0; }
.price-opt-row .v { font-weight: 700; color: var(--teal); white-space: nowrap; flex: none; }

/* ---- wide option card ---- */
.price-option {
  max-width: 880px;
  margin: 26px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: none;
  padding: 28px 38px;
  display: flex;
  align-items: center;
  gap: 34px;
  position: relative;
  z-index: 2;
}
.opt-main { flex: 1; min-width: 0; }
.opt-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--teal);
  background: var(--mint-100);
  padding: 4px 13px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.opt-name { font-size: 19px; font-weight: 700; color: var(--ink); }
.opt-desc { margin-top: 8px; font-size: 14px; color: var(--muted); line-height: 1.8; }
.opt-price-area {
  flex: none;
  text-align: right;
  padding-right: 10px;
  border-right: 1px solid var(--line);
  padding-right: 34px;
}
.opt-amount { color: var(--teal); font-weight: 700; line-height: 1; }
.opt-amount .num { font-size: 40px; letter-spacing: -0.01em; }
.opt-amount .unit { font-size: 15px; font-weight: 700; margin-left: 2px; color: var(--ink); }
.opt-amount .tax { font-size: 13px; font-weight: 500; color: var(--muted); margin-left: 3px; }
.opt-sub { font-size: 13px; color: var(--muted); margin-top: 8px; }
.opt-btn { flex: none; }

.trial-bar {
  max-width: 880px;
  margin: 40px auto 0;
  background: #fff;
  border: 1px dashed var(--teal);
  border-radius: 999px;
  padding: 18px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  color: var(--teal-dark);
  font-size: 15.5px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.trial-bar svg { width: 22px; height: 22px; color: var(--teal); flex: none; }

/* =========================================================
   INDUSTRY
   ========================================================= */
.industry { background: #fff; position: relative; overflow: hidden; }
.ind-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  position: relative;
  z-index: 2;
}
.ind-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3.1;
  box-shadow: var(--shadow-sm);
  background: var(--mint-200);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.ind-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.ind-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.ind-card:hover img { transform: scale(1.06); }
.ind-label {
  position: absolute;
  left: 16px; bottom: 16px;
  background: #fff;
  border-radius: 999px;
  padding: 9px 18px 9px 14px;
  display: flex; align-items: center; gap: 9px;
  font-size: 14.5px; font-weight: 700; color: var(--ink);
  box-shadow: 0 6px 16px rgba(13,60,50,0.16);
}
.ind-label .ind-ic { color: var(--teal); display: flex; }
.ind-label .ind-ic svg { width: 19px; height: 19px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--white); position: relative; overflow: hidden; }
.faq-list {
  max-width: 900px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: none;
  overflow: hidden;
  transition: background 0.2s var(--ease);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  transition: background 0.2s var(--ease);
}
.faq-q:hover { background: var(--teal); color: #fff; }
.faq-q:hover .faq-icon::before,
.faq-q:hover .faq-icon::after { background: #fff; }
.faq-item.open .faq-q { background: var(--teal); color: #fff; }
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: #fff; }
.faq-icon {
  flex: none;
  width: 26px; height: 26px;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--teal);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.faq-icon::before {
  top: 12px; left: 4px; width: 18px; height: 2.4px;
}
.faq-icon::after {
  left: 12px; top: 4px; width: 2.4px; height: 18px;
}
.faq-item.open .faq-icon::after { transform: scaleY(0); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-a-inner {
  padding: 0 26px 24px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.95;
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
  background: #fff;
  padding: 60px 0 0;
}
.cta-block {
  position: relative;
  background:
    radial-gradient(700px 400px at 85% 120%, rgba(255,255,255,0.06), transparent 60%),
    #333;
  border-radius: var(--radius-xl);
  padding: 64px 64px;
  overflow: hidden;
  box-shadow: none;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 30px;
}
.cta-block .cta-copy { position: relative; z-index: 3; color: #fff; }
.cta-eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #7fe3bf;
  margin-bottom: 16px;
}
.cta-block h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
}
.cta-block p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.95;
}
.cta-block .btn { margin-top: 30px; }

/* cta decorative dots */
.cta-dots { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.cta-dots .dot { position: absolute; }

/* cta phones */
.cta-visual {
  position: relative;
  z-index: 2;
  height: 320px;
}
.cta-phone {
  position: absolute;
  width: 180px; height: 360px;
  background: #0d1b16;
  border-radius: 30px;
  padding: 8px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.4);
}
.cta-phone .pscreen {
  width: 100%; height: 100%;
  background: #f4fbf8;
  border-radius: 23px;
  overflow: hidden;
}
.cta-phone.p1 { right: 150px; top: 10px; transform: rotate(-6deg); z-index: 2; }
.cta-phone.p2 { right: 6px; top: -10px; transform: rotate(5deg); z-index: 3; }
.cta-mini {
  padding: 26px 14px 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.cta-mini .bar { height: 9px; border-radius: 6px; background: #d8efe5; }
.cta-mini .bar.w70 { width: 70%; }
.cta-mini .bar.w90 { width: 90%; }
.cta-mini .bar.teal { background: var(--teal); height: 28px; border-radius: 999px; width: 80%; margin-top: 6px; }
.cta-mini .chip {
  height: 40px; border-radius: 12px; background: #fff;
  border: 1.4px solid #e0f0e8;
}
.cta-grow {
  position: absolute;
  right: 6px; bottom: 14px;
  background: #fff;
  border-radius: 12px;
  padding: 8px 12px;
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  z-index: 4;
}
.cta-grow .gicon { width: 18px; height: 18px; }
.cta-grow .stars { display: flex; gap: 1px; }
.cta-grow .stars svg { width: 13px; height: 13px; color: #fbbc04; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer-wave {
  display: block;
  width: 100%;
  height: 90px;
  margin-bottom: -2px;
  color: #333;
}
.site-footer {
  background: #333;
  color: #fff;
  padding: 30px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .brand { color: #fff; }
.footer-brand .brand .pin { color: #5fd6a8; }
.footer-tag {
  margin-top: 18px;
  font-size: 13.5px;
  color: #fff;
  line-height: 1.9;
}
.footer-social {
  margin-top: 22px;
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,1);
  display: flex; align-items: center; justify-content: center;
  color: #111;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.footer-social a:hover { background: var(--teal); color: #fff; transform: translateY(-3px); }
.footer-social a svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a {
  font-size: 13.5px;
  color: #fff;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 12.5px;
  color: #fff;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .section { padding: 84px 0; }

  .hero-inner { grid-template-columns: 1fr; gap: 10px; }
  .hero-visual { height: 480px; margin: 10px auto 0; max-width: 540px; width: 100%; }
  .hero-lead { max-width: none; }

  .reason-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .price-grid { max-width: 620px; }
  .price-option, .trial-bar { max-width: 620px; }

  .ind-grid { grid-template-columns: repeat(2, 1fr); }

  .steps {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 440px;
    margin-left: auto; margin-right: auto;
    padding: 38px 26px;
  }
  .step-arrow { display: none; }
  .step p br { display: none; }

  .steps4 { grid-template-columns: repeat(2, 1fr); gap: 18px; }

  .cta-block { grid-template-columns: 1fr; padding: 48px 40px; }
  .cta-visual { height: 300px; margin-top: 20px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav, .header-cta { display: none; }
  .hamburger { display: flex; }

  .section { padding: 64px 0; }
  .section-title { font-size: 24px; }

  .hero { padding: 40px 0 56px; }

  /* mobile hero: small photo to the top-right of the headline */
  .hero-inner { display: block; position: relative; }
  .hero-copy { display: block; }
  .hero h1 {
    font-size: 26px;
    line-height: 1.34;
    padding-right: 130px;
    min-height: 116px;
  }
  .hero-lead { font-size: 15.5px; margin-top: 20px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn-primary { width: 100%; }

  /* decorative off on mobile */
  .hero-wave, .dots-pattern, .soft-circle, .dot, .hero-blob.b2 { display: none; }

  .hero-bg {
    background-position: 10% 60%;
    background-size: 770px auto;
  }

  /* small photo slideshow beside the headline */
  .hero-visual {
    position: absolute;
    top: -20px;
    right: 0;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
    width: 50%;
    max-width: 60%;
    margin: 0;
    z-index: -1;
  }
  .hv-slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .hv-slide { object-fit: contain; }
  .phone { display: none; }
  .ai-card { display: none; }
  .g-card { display: none; }

  .hero-stats { grid-template-columns: 1fr; gap: 14px; margin-top: 40px; }
  .stat-card { padding: 18px 22px; }

  .ind-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ind-label { font-size: 13px; padding: 7px 14px 7px 11px; left: 12px; bottom: 12px; }

  .price-grid { grid-template-columns: 1fr; max-width: 420px; }
  .price-card.featured { order: -1; }
  .price-option {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 18px;
    max-width: 420px;
    padding: 26px 24px;
  }
  .opt-price-area {
    text-align: center;
    border-right: none;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
  }
  .opt-btn { width: 100%; }

  .steps4 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .step4 h3 { min-height: 0; font-size: 15px; }
  .how-banner { font-size: 17px; padding: 18px 26px; }

  .faq-q { padding: 18px 18px; font-size: 15px; }
  .faq-a-inner { padding: 0 18px 20px; }

  .cta { padding: 40px 0 0; }
  .cta-block { padding: 40px 26px; border-radius: var(--radius-lg); }
  .cta-block h2 { font-size: 24px; }
  .cta-block .btn { width: 100%; }
  .cta-visual { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-wave { height: 56px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero h1 { font-size: 23px; padding-right: 116px; min-height: 100px; }
  .hero-visual { width: 50%; max-width: 60%; height: auto; min-height: 0; z-index: -1; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .price-amount .num { font-size: 36px; }
  .steps4 { grid-template-columns: 1fr; max-width: 340px; margin-left: auto; margin-right: auto; }
  .step4 p br { display: none; }
  .trial-bar { font-size: 13.5px; padding: 16px 20px; border-radius: var(--radius-md); flex-direction: column; text-align: center; }
}

/* scroll reveal (fade-up) */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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