/* ===================== VARIABLES ===================== */
:root {
  --green-950: #012d31;
  --green-900: #063f3b;
  --green-800: #07524d;
  --green-700: #0b675d;
  --gold-500: #E3D4B5;
  --gold-400: #E3D4B5;
  --gold-100: rgba(227,212,181,0.15);
  --ink: #102421;
  --muted: #60736e;
  --line: #dce6e2;
  --paper: #fbfcfa;
  --white: #ffffff;
  --danger: #c64235;
  --shadow: 0 18px 55px rgba(9, 49, 45, 0.14);
  --radius: 8px;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Noto Serif TC","Noto Sans TC","PingFang TC","Microsoft JhengHei",serif; line-height: 1.6; letter-spacing: 0.05em; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
h1,h2,h3 { margin: 0; }
fieldset { border: 0; padding: 0; margin: 0; }
address { font-style: normal; }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 72px;
  padding: 10px clamp(24px, 5vw, 74px);
  background: rgba(2, 39, 43, 0.96);
  border-bottom: 1px solid rgba(229, 180, 105, 0.14);
  backdrop-filter: blur(16px);
  color: #fff;
}

.brand img {
  width: clamp(156px, 14vw, 210px);
  height: auto;
  filter: brightness(0) invert(1);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 48px);
}

.desktop-nav a {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.desktop-nav a:hover { color: var(--gold-400); }

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

.phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #E3D4B5;
  color: #1a2e2b;
  font-weight: 900;
  font-size: 15px;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(0,0,0,0.22);
  transition: transform 140ms;
}
.phone-btn:hover { transform: translateY(-1px); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 735px;
  overflow: hidden;
  color: #fff;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(360px, 0.76fr);
  gap: clamp(30px, 5vw, 66px);
  align-items: start;
  padding: 20px clamp(34px, 6vw, 88px) 32px;
  width: 100%;
}

/* Background slider */
.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 600ms ease;
}

.hero-bg-slide.active { opacity: 1; }

.hero-bg-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1,39,43,0.94) 0%, rgba(4,58,63,0.82) 42%, rgba(4,55,62,0.38) 70%, rgba(3,47,53,0.6) 100%),
    linear-gradient(180deg, transparent 66%, rgba(1,31,33,0.58));
  pointer-events: none;
}

.hero-bg-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.hero-bg-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 200ms, width 200ms;
}

.hero-bg-dot.active {
  width: 24px;
  border-radius: 999px;
  background: var(--gold-400);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 8px;
}

.hero h1 {
  margin-bottom: 18px;
  line-height: 1.1;
}

.hero h1 span { display: block; }

.hero-title-small {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(24px, 2.55vw, 41px);
  font-weight: 900;
}

.hero-title-gold {
  color: #E3D4B5;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 1.02;
  text-shadow: 0 5px 18px rgba(0,0,0,0.26);
}

.hero-copy {
  margin: 0 0 28px;
  color: rgba(255,255,255,0.9);
  font-size: clamp(18px, 1.7vw, 25px);
  font-weight: 800;
  line-height: 1.75;
}

.hero-tags {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 18px 24px;
  max-width: 780px;
  margin-bottom: 34px;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  position: relative;
  padding-left: 22px;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  font-weight: 800;
}

.hero-tags li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-400);
  font-weight: 900;
}

/* Hero problem panel */
.hero-problem-panel {
  width: 100%;
  padding: 10px 16px 12px;
  border: 1px solid rgba(227,212,181,0.4);
  border-radius: 8px;
  background: rgba(0,50,57,0.82);
  box-shadow: 0 24px 48px rgba(0,0,0,0.26);
}

.hero-problem-panel h2 {
  margin: 0 0 6px;
  color: #fff;
  text-align: center;
  font-size: clamp(18px, 1.6vw, 26px);
  letter-spacing: 0.04em;
}

.hero-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-problem-grid article {
  display: grid;
  grid-template-rows: 86px auto auto;
  justify-items: center;
  align-items: start;
  gap: 4px;
  padding: 6px 8px;
  text-align: center;
  border-right: 1px solid rgba(227,212,181,0.3);
}

.hero-problem-grid article:last-child { border-right: 0; }

.hero-problem-grid img {
  width: 160px;
  height: 100%;
  object-fit: contain;
  align-self: end;
}

.hero-problem-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 15px;
  text-align: center;
}

.hero-problem-grid p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.hero-problem-note {
  margin: 14px 0 0;
  color: #E3D4B5;
  text-align: center;
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 900;
  line-height: 1.55;
}

/* ===================== HERO FORM ===================== */
.hero-form-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  justify-self: stretch;
  padding: 24px 28px 26px;
  border-radius: 10px;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 28px 70px rgba(0,0,0,0.32);
}

.hero-form-panel h2 {
  margin: 0;
  color: #20322d;
  text-align: center;
  font-size: clamp(18px, 1.6vw, 24px);
}

.form-subtitle {
  margin: 4px 0 14px;
  color: #66736d;
  text-align: center;
  font-weight: 800;
  font-size: 13px;
}

.req { color: #c64235; }

.lead-form-light {
  display: grid;
  gap: 10px;
}

.form-row {
  display: grid;
  gap: 4px;
}

.lead-form-light label,
.lead-form-light legend {
  color: #596760;
  font-size: 12px;
  font-weight: 900;
}

.lead-form-light input,
.lead-form-light select,
.lead-form-light textarea {
  min-height: 36px;
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #e3e5e1;
  border-radius: 4px;
  background: #f9faf8;
  color: #27352f;
  font-size: 13px;
  outline: none;
}

.lead-form-light input:focus,
.lead-form-light select:focus,
.lead-form-light textarea:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 2px rgba(227,182,91,0.2);
}

.lead-form-light textarea { resize: vertical; min-height: 64px; }

/* Radio group */
.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 4px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 5px 8px;
  border: 1px solid #e2e6e0;
  border-radius: 4px;
  background: #fff;
  color: #5e6963;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1.35;
}

.radio-label input {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  min-height: 0;
  min-width: 0;
  margin: 0;
  accent-color: var(--gold-500);
}

/* Checkboxes */
.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 6px;
}

.option-grid label {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 5px 8px;
  border: 1px solid #e2e6e0;
  border-radius: 4px;
  background: #fff;
  color: #5e6963;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.option-grid input {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  margin: 0;
  accent-color: var(--gold-500);
}

.field-error {
  min-height: 16px;
  color: #c64235;
  font-size: 11px;
  font-weight: 700;
}

.has-error input, .has-error select, .has-error textarea {
  border-color: #ffb5a8;
}

.form-consent {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #44655a;
  font-size: 11px;
  font-weight: 800;
}

.form-consent input { width: auto; min-height: auto; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms, background 160ms;
}

.button-primary {
  min-height: 42px;
  padding: 10px 24px;
  border-radius: 999px;
  color: #fff;
  background: #E3D4B5;
  box-shadow: 0 8px 22px rgba(227,212,181,0.32);
}

.button-primary:hover { transform: translateY(-1px); }

.form-submit { width: 100%; margin-top: 4px; }

.form-line-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid rgba(7,107,69,0.2);
  border-radius: 999px;
  background: rgba(6,178,99,0.08);
  color: #086b45;
  font-size: 13px;
  font-weight: 900;
  transition: background 160ms, color 160ms, transform 160ms;
}

.form-line-link:hover { background: #06b263; color: #fff; transform: translateY(-1px); }

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--gold-500);
  font-size: 13px;
  font-weight: 800;
}

/* ===================== SECTIONS BASE ===================== */
.section {
  padding: clamp(50px, 7vw, 80px) clamp(18px, 5vw, 72px);
}

.section h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.2;
  color: var(--green-950);
}

.section h3 {
  margin: 0 0 8px;
  color: var(--green-950);
  font-size: 20px;
  line-height: 1.25;
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 22px;
  padding: 1px 6px;
  border-radius: 3px;
  color: var(--gold-500);
  background: var(--green-900);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 8px;
}

.section-heading { margin-bottom: 16px; }

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

.inline-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.section-lead, .section-heading p, .inline-heading > p {
  color: var(--gold-500);
  font-weight: 800;
  margin: 0;
}

/* ===================== TOP INFO BAND (01/02/03) ===================== */
.top-info-band {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  align-items: stretch;
  padding: 16px clamp(18px, 5vw, 72px) 20px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.info-column {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0 clamp(16px, 2.2vw, 36px);
}

.info-column + .info-column {
  border-left: 1px solid var(--line);
}

.compact-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  text-align: center;
}

.compact-heading > div { display: contents; }

/* 01/02/03 靠左 */
.pain-section .compact-heading,
.services-column .compact-heading,
.why-section .compact-heading {
  justify-content: flex-start;
  text-align: left;
}

.compact-heading .section-number {
  flex: 0 0 auto;
  margin: 0;
}

.compact-heading h2 {
  margin: 0;
  font-size: clamp(18px, 1.5vw, 22px);
}

.compact-heading .section-lead { flex-basis: 100%; margin: 2px 0 0; font-size: 14px; }

/* Check list (01) */
.check-list {
  display: grid;
  gap: 8px;
  flex: 1;
  align-content: start;
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  font-size: 15px;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-weight: 900;
}

.notice {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--green-950);
  background: var(--gold-100);
  border: 1px solid rgba(227,212,181,0.4);
}

.notice-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  object-fit: contain;
}

.notice strong, .notice span { display: block; }
.notice strong { font-size: 17px; }
.notice span { font-size: 15px; color: var(--muted); }

/* Service grid (02) */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-content: start;
  align-items: start;
}

.service-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 4px;
  text-align: center;
  border: none;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  margin: 0 auto 4px;
}

.service-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  object-position: center;
}

/* team.png 圖形寬扁，放大補償視覺尺寸 */
.service-grid article:nth-child(4) .service-icon img {
  transform: scale(1.35);
}

.service-grid h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  color: var(--ink);
}

/* Why grid (03) */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-content: start;
}

.why-grid article {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.why-icon-img {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  object-fit: contain;
}

.why-grid h3 {
  margin: 0 0 3px;
  font-size: 16px;
  color: var(--green-950);
}

.why-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

/* ===================== GROWTH SERVICES ===================== */
.growth-services {
  padding: 28px clamp(18px, 5vw, 72px) 30px;
  background: #fffdf8;
  border-top: 1px solid rgba(12,65,58,0.14);
  border-bottom: 1px solid rgba(12,65,58,0.1);
}

.growth-services h2 {
  color: #20352f;
  font-size: clamp(28px, 2.8vw, 42px);
  letter-spacing: 0.04em;
}

.growth-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 32px);
}

.growth-card-grid article {
  overflow: hidden;
  border: 1px solid rgba(12,65,58,0.1);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(24,62,57,0.08);
}

.growth-card-grid img {
  width: 100%;
  aspect-ratio: 2.4 / 1;
  object-fit: cover;
}

.growth-card-grid article > div {
  padding: 20px 22px 24px;
}

.growth-card-grid h3 {
  margin: 0 0 4px;
  color: #163b35;
  font-size: 26px;
}

.growth-card-grid p {
  margin: 0 0 14px;
  color: #163b35;
  font-weight: 800;
  font-size: 17px;
}

.growth-card-grid ul {
  display: grid;
  gap: 8px;
  list-style: none;
  padding: 0;
  color: #5f6f69;
  font-weight: 700;
  font-size: 16px;
}

.growth-card-grid li {
  position: relative;
  padding-left: 20px;
}

.growth-card-grid li::before {
  content: "◎";
  position: absolute;
  left: 0;
  color: #07524d;
  font-size: 13px;
}

/* ===================== VALUE SECTION (為什麼選擇) ===================== */
.value-section {
  padding: 22px clamp(18px, 5vw, 72px) 22px;
  background: #fff;
  border-bottom: 1px solid rgba(227,212,181,0.3);
}

.value-section h2 {
  color: #20352f;
  font-size: clamp(26px, 2.6vw, 40px);
  letter-spacing: 0.04em;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(227,212,181,0.35);
  margin-top: 16px;
}

.value-grid article {
  display: grid;
  justify-items: center;
  gap: 6px;
  min-height: auto;
  padding: 14px 12px 14px;
  text-align: center;
  border-right: 1px solid rgba(12,65,58,0.12);
}

.value-grid article:last-child { border-right: 0; }

.value-icon-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.value-grid h3 {
  margin: 0;
  color: #153a34;
  font-size: 19px;
}

.value-grid p {
  margin: 0;
  color: #65736d;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

/* ===================== CASES (輪播) ===================== */
.cases-section,
#cases {
  padding: clamp(18px, 2.5vw, 28px) clamp(18px, 5vw, 72px);
}

.cases-section h2,
.process-section h2,
#cases h2 {
  font-size: clamp(20px, 1.6vw, 26px);
}

.case-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.case-arrow {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--green-800);
  font-size: 26px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 140ms;
  z-index: 2;
}

.case-arrow:disabled { opacity: 0.38; pointer-events: none; }
.case-arrow:hover { background: var(--gold-100); }

.case-row-clip {
  flex: 1;
  overflow: hidden;
  padding: 4px 2px 12px;
}

.case-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, calc(25% - 12px));
  gap: 16px;
  will-change: transform;
}

.case-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.case-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.case-card div { padding: 16px; }

.case-card div > span {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  display: inline-flex;
  margin: 0;
  padding: 5px 12px;
  border-radius: 4px;
  color: #E3D4B5;
  background: rgba(2,39,43,0.92);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.case-card h3 {
  margin: 0 0 6px;
  font-size: 19px;
  color: #E3D4B5;
}

.case-card p {
  margin: 0;
  color: #2c3b36;
  font-size: 14px;
  font-weight: 700;
}

.case-card strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
  color: #1a2e2b;
  line-height: 1.25;
}

.case-num { color: #E3D4B5; }

/* ===================== PROCESS ===================== */
.process-section {
  padding: 14px clamp(18px, 5vw, 72px) 20px;
}

.cases-section .section-heading,
.process-section .section-heading,
#cases .section-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.cases-section .compact-heading,
.process-section .compact-heading,
#cases .compact-heading {
  justify-content: flex-start;
  text-align: left;
  margin-bottom: 0;
  align-items: center;
}

.cases-section .section-heading > p,
.process-section .section-heading > p,
#cases .section-heading > p {
  margin: 0;
}

.process-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 0;
  margin: 0;
  list-style: none;
  border: none;
  background: transparent;
}

.process-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  text-align: left;
  font-weight: 900;
  font-size: 15px;
}

.process-list li img {
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  object-fit: contain;
}

.process-list li span {
  display: block;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 2px;
}

.process-list li:not(:last-child)::after {
  content: "→";
  color: var(--green-950);
  font-size: 24px;
  font-weight: 900;
  margin-left: 12px;
}

/* ===================== FOUNDER + GIFT ===================== */
.founder-band {
  display: grid;
  grid-template-columns: minmax(160px, 0.9fr) minmax(0, 1.4fr) minmax(0, 1.2fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(14px, 2vw, 28px);
  row-gap: 10px;
  padding: clamp(20px, 3vw, 36px) clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(197,151,73,0.2);
  background: #fff;
}

/* heading: row 1, col 1 */
.founder-heading {
  grid-column: 1;
  grid-row: 1;
}

/* photo: row 2, col 1 */
.founder-image {
  grid-column: 1;
  grid-row: 2;
}

/* text: row 2, col 2 */
.founder-info {
  grid-column: 2;
  grid-row: 2;
}

/* gift card: rows 1-2, col 3 (dark panel with heading inside) */
.gift-card {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: stretch;
}

.founder-image {
  border-radius: 6px;
  overflow: hidden;
  background: #f2f1ed;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.founder-info { padding: 0; }

.founder-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 8px;
}

.founder-heading .section-number { margin-bottom: 0; flex: 0 0 auto; }

.founder-heading h2,
.founder-info h2,
.gift-heading h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(20px, 1.6vw, 26px);
}

.founder-info h3 {
  margin: 0 0 16px;
  color: var(--gold-500);
  font-size: 20px;
}

.founder-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.founder-columns strong {
  display: block;
  margin-bottom: 6px;
  color: #183a35;
  font-size: 14px;
  font-weight: 900;
}

.founder-columns p {
  color: #5f6f69;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 12px;
}

.founder-columns ul {
  display: grid;
  gap: 4px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.founder-columns li {
  position: relative;
  padding-left: 13px;
  color: #5f6f69;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.founder-columns li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #E3D4B5;
}

/* Gift card */
.gift-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 22px 20px;
  border: 1px solid rgba(12,65,58,0.12);
  border-radius: 8px;
  background: #fff;
}

.gift-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gift-heading .section-number { margin: 0; flex: 0 0 auto; }

.gift-card h2 {
  font-size: clamp(20px, 1.6vw, 26px);
  color: var(--green-950);
  margin: 0;
}

.gift-card .limit {
  color: #E3D4B5;
  font-weight: 900;
  font-size: 14px;
  margin: 0;
}

.gift-card h3 {
  font-size: 15px;
  color: var(--green-950);
  margin: 0;
  font-weight: 900;
}

.gift-subtitle {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  margin: 0;
}

.gift-mid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 8px 14px;
  align-items: start;
  margin-top: 14px;
}

.gift-visual {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top left;
}

.gift-mid ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  list-style: none;
  margin: 0;
}

.gift-mid li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  font-weight: 700;
  color: #2c3b36;
}

.gift-mid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: #E3D4B5;
  color: #1a2e2b;
  font-size: 12px;
  font-weight: 900;
}


.gift-value {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: nowrap;
  padding-top: 6px;
  border-top: none;
  margin-top: 0;
}

.gift-value em { margin-left: auto; white-space: nowrap; }

.gift-value span { color: #2c3b36; font-size: 14px; font-weight: 800; }

.gift-value strong {
  color: #E3D4B5;
  font-size: 22px;
  font-weight: 900;
}

.gift-value em {
  padding: 5px 12px;
  border-radius: 999px;
  background: #E3D4B5;
  color: #1a2e2b;
  font-style: normal;
  font-weight: 900;
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
}

/* ===================== TRUST BAND ===================== */

/* ===================== TRUST BAND ===================== */
.trust-band {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 0;
  align-items: stretch;
  padding: 20px clamp(24px, 6vw, 86px);
  background: #012d31;
  color: #fff;
}

.trust-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-right: 36px;
  border-right: 1px solid rgba(227,212,181,0.4);
}

.trust-band h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: 0.06em;
  text-align: center;
}

.trust-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 36px;
}

.trust-quote {
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.85;
}

.trust-author {
  margin: 10px 0 0;
  color: var(--gold-500);
  font-size: 14px;
  font-weight: 900;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin: 0;
}

.trust-stats div {
  display: grid;
  justify-items: center;
  padding: 10px 14px;
  border-right: 1px solid rgba(227,212,181,0.3);
}

.trust-stats div:last-child { border-right: 0; }

.trust-stats dt {
  color: #E3D4B5;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 1;
  margin: 0;
}

.trust-stats dd {
  color: rgba(255,255,255,0.84);
  margin: 8px 0 0;
  font-size: 14px;
  text-align: center;
}

/* ===================== FOOTER ===================== */
.site-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(18px, 4vw, 56px);
  padding: 14px clamp(24px, 5vw, 72px);
  background: #012d31;
  border-top: 1px solid rgba(227,212,181,0.25);
  color: rgba(255,255,255,0.74);
  font-size: 14px;
}

.footer-main {
  display: flex;
  align-items: center;
  gap: clamp(18px, 4vw, 56px);
  flex: 1;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 0 0 auto;
}

.site-footer img {
  width: 160px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-slogan {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.footer-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px 28px;
  color: rgba(255,255,255,0.86);
  font-weight: 800;
  font-size: 13px;
}

.footer-contact a:hover { color: var(--gold-400); }

.footer-copy {
  margin: 0;
  text-align: center;
  color: rgba(255,255,255,0.72);
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

/* ===================== MOBILE STICKY ===================== */
.mobile-sticky { display: none; }

/* ===================== SUCCESS MODAL ===================== */
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-modal[hidden] { display: none; }

.success-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.success-modal__box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  max-width: 360px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}

.success-modal__icon {
  width: 64px;
  height: 64px;
  background: #2e7d32;
  color: #fff;
  border-radius: 50%;
  font-size: 32px;
  line-height: 64px;
  margin: 0 auto 16px;
}

.success-modal__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 12px;
}

.success-modal__body {
  color: #444;
  line-height: 1.7;
  margin: 0 0 24px;
}

.success-modal__line { display: block; margin-bottom: 12px; }

.success-modal__close {
  background: none;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px 24px;
  cursor: pointer;
  color: #666;
  width: 100%;
}

.success-modal__close:hover { background: #f5f5f5; }

/* ===================== RESPONSIVE ===================== */

/* Tablet */
@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .desktop-nav { display: none; }

  .header-actions { justify-content: flex-end; }

  .hero { min-height: auto; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 96px 24px 32px;
  }

  .hero-form-panel { justify-self: stretch; width: 100%; }

  .hero-problem-grid { grid-template-columns: 1fr 1fr; }

  .hero-problem-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(227,212,181,0.28);
  }

  .hero-problem-grid article:nth-last-child(-n+2) { border-bottom: 0; }

  .top-info-band { grid-template-columns: 1fr; gap: 28px; }

  .info-column { padding: 0; }
  .info-column + .info-column {
    padding-top: 28px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .growth-card-grid { grid-template-columns: 1fr; }

  .value-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }

  .trust-band { grid-template-columns: 1fr; }

  .trust-stats { grid-template-columns: repeat(4, minmax(0,1fr)); }

  .site-footer { flex-direction: column; align-items: flex-start; gap: 10px; }

  .footer-copy { text-align: left; }

  .founder-band { grid-template-columns: 1fr; }
  .founder-heading, .founder-image, .founder-info, .gift-card { grid-column: 1; grid-row: auto; }

  .process-list { flex-wrap: wrap; justify-content: flex-start; gap: 12px 20px; }
}

/* Mobile */
@media (max-width: 720px) {
  body { padding-bottom: 70px; }

  .site-header { padding: 10px 16px; }

  .hero-inner { padding: 86px 16px 24px; }

  .hero-tags { grid-template-columns: 1fr 1fr; gap: 10px 16px; }

  .hero-problem-panel { padding: 10px 10px 12px; }
  .hero-problem-grid img { width: 70px; height: 70px; }

  .service-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }

  .service-grid article { min-height: auto; padding: 6px 4px; }
  .service-icon { width: 44px; height: 44px; }
  .service-icon img { width: 44px; height: 44px; }
  .service-grid h3 { font-size: 13px; }

  .why-icon-img { width: 40px; height: 40px; }

  .value-grid { grid-template-columns: 1fr 1fr; }
  .value-grid article { min-height: 120px; }

  .trust-stats { grid-template-columns: 1fr 1fr; }

  .founder-columns { grid-template-columns: 1fr; }

  .gift-card ul { grid-template-columns: 1fr; }

  .process-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
  }

  .process-list li:not(:last-child)::after {
    content: "";
    display: none;
  }

  .case-carousel-wrapper { gap: 6px; }
  .case-arrow { width: 32px; height: 32px; font-size: 20px; }

  .mobile-sticky {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(3,47,45,0.96);
    box-shadow: 0 -12px 30px rgba(0,0,0,0.18);
  }

  .mobile-sticky a {
    display: grid;
    place-items: center;
    min-height: 48px;
    color: var(--white);
    font-weight: 900;
  }

  .mobile-sticky a:last-child {
    color: #1a2e2b;
    border-radius: var(--radius);
    background: #E3D4B5;
  }

  .trust-band { grid-template-columns: 1fr; padding: 28px 16px; }

  .site-footer { padding: 18px 16px; }
}

@media (max-width: 480px) {
  .hero-problem-grid { grid-template-columns: 1fr 1fr; }
  .radio-group { grid-template-columns: 1fr; }
  .option-grid { grid-template-columns: 1fr; }
  .hero-tags { grid-template-columns: 1fr; }
}
