/*
Theme Name: 黄色い木 (kiiroiki)
Theme URI: https://www.kiiroiki.net
Author: kiiroiki
Author URI: https://www.kiiroiki.net
Description: 黄色い木 — オーダーメイド介護サービス テーマ
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: kiiroiki
*/

/* ============================================
   黄色い木 — Design tokens & base styles
   ============================================ */

:root {
  --bg: #FFFBEE;
  --bg-cream: #FFF6DC;
  --bg-soft: #FFFAE6;
  --bg-deep: #FCE989;
  --paper: #FFFFFF;

  --ink: #3F2A1D;
  --ink-soft: #6E5544;
  --ink-mute: #9B8773;

  --brand: #F2B441;
  --brand-deep: #E59A1D;
  --brand-soft: #FFE497;

  --accent: #F08AAC;
  --accent-deep: #DC6A8E;
  --accent-soft: #FFE0EA;

  --mint: #8FCFA3;
  --mint-deep: #5FB07B;

  --sky: #B7DCEA;
  --sky-deep: #6FB7D1;

  --line: #EFE3CC;
  --line-soft: #F7EED9;

  --container: 1200px;
  --container-wide: 1320px;
  --pad: 32px;

  --r-sm: 10px;
  --r: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  --shadow-card: 0 12px 40px -18px rgba(70, 45, 20, 0.18);
  --shadow-soft: 0 4px 20px -8px rgba(70, 45, 20, 0.12);
  --shadow-cta: 0 12px 28px -10px rgba(220, 106, 142, 0.55);
  --shadow-yellow: 0 12px 28px -10px rgba(229, 154, 29, 0.45);

  --font-display: "Klee One", "Zen Maru Gothic", "Noto Sans JP", system-ui, sans-serif;
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", system-ui, sans-serif;
}

/* ============================================ Reset & base ============================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.85;
  font-size: 16px;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ============================================ Typography ============================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: 0;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--brand-deep);
  font-weight: 600;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--brand-deep);
  opacity: 0.55;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.06em;
  margin-top: 14px;
}
.section-title .accent { color: var(--brand-deep); }
.section-title .pink { color: var(--accent-deep); }

.section-lede {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 2;
  margin-top: 18px;
  max-width: 620px;
}

.section-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-head .section-lede { margin-left: auto; margin-right: auto; }

/* ============================================ Buttons ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--r-pill);
  border: none;
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  box-shadow: var(--shadow-yellow);
}
.btn-primary:hover { box-shadow: 0 18px 32px -10px rgba(229, 154, 29, 0.55); }
.btn-yellow {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  box-shadow: var(--shadow-yellow);
}
.btn-line {
  background: #06C755;
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(6, 199, 85, 0.5);
}
.btn-amber {
  background: rgba(90,51,0,0.18);
  color: #3A1F00;
  border: 2px solid rgba(90,51,0,0.35);
  backdrop-filter: blur(4px);
}
.btn-amber:hover { background: rgba(90,51,0,0.28); }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--brand-deep); color: var(--brand-deep); }
.btn-lg { padding: 20px 38px; font-size: 17px; }
.btn-mini { padding: 10px 22px; font-size: 13px; }

.star {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: var(--brand);
  clip-path: polygon(50% 0,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
  flex-shrink: 0;
}

/* ============================================ Floating decorations ============================================ */

@keyframes deco-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(7deg); }
}
@keyframes deco-sway {
  0%, 100% { transform: rotate(-12deg) translateY(0px); }
  50%       { transform: rotate(12deg) translateY(-10px); }
}
@keyframes deco-drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  30%       { transform: translate(14px, -16px) rotate(8deg); }
  70%       { transform: translate(-10px, 10px) rotate(-6deg); }
}
@keyframes deco-spin-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-14px) rotate(180deg); }
}

.deco-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9;
  overflow: hidden;
}

.deco {
  position: absolute;
  opacity: 0.82;
  will-change: transform;
}

/* 各素材の位置・サイズ・アニメーション */
.d-bird {
  width: 110px;
  top: 18%;
  left: 1.5%;
  animation: deco-drift 7s ease-in-out infinite;
  animation-delay: 0s;
}
.d-flower-pink {
  width: 72px;
  top: 10%;
  right: 3%;
  animation: deco-float 5s ease-in-out infinite;
  animation-delay: 1.2s;
}
.d-flower-red {
  width: 65px;
  top: 52%;
  left: 1%;
  animation: deco-sway 6s ease-in-out infinite;
  animation-delay: 0.8s;
}
.d-flower-blue {
  width: 68px;
  top: 38%;
  right: 1.5%;
  animation: deco-float 5.5s ease-in-out infinite;
  animation-delay: 2s;
}
.d-flower-yel {
  width: 58px;
  top: 72%;
  right: 2.5%;
  animation: deco-spin-float 8s ease-in-out infinite;
  animation-delay: 0.4s;
}
.d-leaf {
  width: 80px;
  top: 68%;
  left: 1.5%;
  animation: deco-sway 7s ease-in-out infinite;
  animation-delay: 1.6s;
}
.d-flowers-yel {
  width: 100px;
  top: 85%;
  left: 3%;
  animation: deco-float 6.5s ease-in-out infinite;
  animation-delay: 3s;
}

@media (max-width: 768px) {
  .deco { opacity: 0.55; }
  .d-bird        { width: 70px; left: -1%; }
  .d-flower-red  { width: 45px; }
  .d-flower-blue { width: 45px; }
  .d-leaf        { width: 55px; }
  .d-flowers-yel { display: none; }
  .d-flower-yel  { width: 40px; }
}

/* ============================================ Top utility bar ============================================ */

.topbar {
  background: var(--ink);
  color: #FFF6DC;
  font-size: 12.5px;
  letter-spacing: 0.06em;
}
.topbar .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  font-size: 12px;
}
.topbar .info {
  display: flex;
  gap: 24px;
  align-items: center;
  opacity: 0.92;
  white-space: nowrap;
}
.topbar .info span { display: inline-flex; align-items: center; gap: 8px; }
.topbar .info .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brand); }

/* ============================================ Header ============================================ */

.site-header {
  background: rgba(255, 251, 238, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}
.brand-lock {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-lock .mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-lock .name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}
.brand-lock .tag {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.16em;
  margin-top: 6px;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-shrink: 0;
}
.nav a {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand-deep);
  transition: all 0.25s ease;
  transform: translateX(-50%);
}
.nav a:hover { color: var(--brand-deep); }
.nav a:hover::after { width: 100%; }

.header-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}
.header-tel {
  text-align: right;
  line-height: 1.1;
}
.header-tel .label { font-size: 11px; color: var(--ink-mute); letter-spacing: 0.18em; }
.header-tel .num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* ============================================ Hero ============================================ */

.hero {
  background: linear-gradient(180deg, #FFF8D0 0%, #FFE640 55%, #FFD000 100%);
  overflow: hidden;
}

.hero-main-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 520px;
  object-fit: cover;
  object-position: center center;
}

.hero-wave {
  width: 100%;
  margin-top: -76px;
  position: relative;
  z-index: 1;
  line-height: 0;
}
.hero-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

.hero-bottom {
  position: relative;
  z-index: 1;
  padding: 48px 0 68px;
  text-align: center;
}

/* ② タグライン — 大きく・ゆったり */
.hero-tagline {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 2.2;
  color: #5A2E00;
  letter-spacing: 0.12em;
  margin: 0 0 40px;
  text-shadow: 0 2px 0 rgba(255,255,255,0.5);
}

.hero-tagline-sub {
  font-size: 24px;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.08em;
}

/* ③ ボタン — より目立つ */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 32px;
}
.hero-actions .btn-primary {
  font-size: 18px;
  padding: 22px 44px;
  box-shadow: 0 16px 40px -10px rgba(200,120,0,0.55);
  letter-spacing: 0.1em;
}
.hero-actions .btn-amber {
  font-size: 17px;
  padding: 20px 36px;
  background: rgba(255,255,255,0.55);
  border: 2px solid rgba(120,70,0,0.3);
  color: #4A2800;
  backdrop-filter: blur(6px);
}
.hero-actions .btn-line {
  font-size: 17px;
  padding: 20px 36px;
  box-shadow: 0 14px 32px -10px rgba(6,199,85,0.55);
}

/* ④ 信頼バッジ — カード風 */
.hero-trust {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  background: rgba(255,255,255,0.52);
  border: 1.5px solid rgba(255,255,255,0.75);
  border-radius: var(--r-pill);
  padding: 14px 36px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px -12px rgba(160,90,0,0.2);
  font-size: 14px;
  font-weight: 600;
  color: rgba(70,35,0,0.8);
  letter-spacing: 0.04em;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 20px;
  border-right: 1px solid rgba(180,120,0,0.2);
}
.hero-trust span:last-child { border-right: none; }
.hero-trust .star { width: 14px; height: 14px; background: #D4860A; }

/* ============================================ Section common ============================================ */

section.section {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
section.section.alt { background: var(--bg-cream); }
section.section.cream { background: var(--bg-soft); }

.sec-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}
section.section > .container { position: relative; z-index: 1; }

/* ============================================ About ============================================ */

.about-text {
  background:
    radial-gradient(60% 70% at 15% 30%, #FFF1B8 0%, transparent 60%),
    radial-gradient(50% 60% at 85% 70%, #FFE0EA 0%, transparent 60%),
    var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-text > .container { position: relative; z-index: 1; }
.about-text .about-body { max-width: 720px; margin: 0 auto; }
.about-text .eyebrow { justify-content: center; }
.about-text .section-title { text-align: center; }
.about-text p { text-align: center; margin-top: 20px; font-size: 16px; line-height: 2.1; color: var(--ink-soft); }
.about-text .pull {
  margin-top: 36px;
  display: inline-block;
  border-radius: var(--r);
  text-align: center;
  padding: 22px 36px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.about-text .t1 { top: 40px; left: 60px; width: 140px; opacity: 0.7; }
.about-text .t2 { top: 30px; right: 80px; width: 160px; opacity: 0.55; }
.about-text .t3 { bottom: 30px; left: 50%; transform: translateX(-50%); width: 280px; opacity: 0.55; }

/* ============================================ Services ============================================ */

.services {
  background:
    radial-gradient(70% 60% at 50% 0%, #FFE497 0%, transparent 55%),
    radial-gradient(40% 50% at 0% 100%, #DCEFD0 0%, transparent 60%),
    radial-gradient(40% 50% at 100% 100%, #FFE0EA 0%, transparent 60%),
    var(--bg-soft);
}

.services .s1 { top: 60px; left: 30px; width: 180px; opacity: 0.6; }
.services .s2 { bottom: 60px; right: -40px; width: 200px; opacity: 0.45; }
.services .s3 { top: 24px; right: 24%; width: 220px; opacity: 0.55; }

.services-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  border: 1.5px solid var(--line-soft);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.service-card .num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--brand-soft);
  line-height: 1;
}
.service-card .illu {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  overflow: hidden;
}
.service-card .illu img { width: 105%; }
.service-card h3 { font-size: 22px; font-weight: 700; letter-spacing: 0.06em; }
.service-card p { margin-top: 14px; font-size: 14.5px; line-height: 1.95; color: var(--ink-soft); }
.service-card .tag {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-family: var(--font-display);
  color: var(--brand-deep);
  font-weight: 600;
  letter-spacing: 0.12em;
}

.others {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
}
.others-card {
  background: linear-gradient(135deg, var(--brand-soft), #FFFBEE);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  border: 1.5px solid var(--brand-soft);
}
.others-card h3 {
  font-size: 22px;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.others-card h3::before {
  content: "他にも";
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  letter-spacing: 0.16em;
}
.others-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}
.others-card li {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
}
.others-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-deep);
}

.cannot-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
}
.cannot-card .tag-cannot {
  display: inline-flex;
  align-items: center;
  background: #FFF0F0;
  color: #C7506C;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  border: 1px solid #F8D5DC;
}
.cannot-card h4 { margin-top: 14px; font-size: 18px; }
.cannot-card ul { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 10px; }
.cannot-card li { font-size: 13.5px; color: var(--ink-soft); padding-left: 18px; position: relative; }
.cannot-card li::before { content: "×"; position: absolute; left: 0; top: 0; color: #C7506C; font-weight: 700; }

/* ============================================ Steps ============================================ */

.steps {
  background:
    radial-gradient(60% 70% at 20% 10%, #FFE0EA 0%, transparent 55%),
    radial-gradient(50% 60% at 85% 80%, #DCEFD0 0%, transparent 60%),
    var(--bg-cream);
}
.steps::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background-image: linear-gradient(90deg, var(--brand) 0 25%, var(--accent) 25% 50%, var(--mint) 50% 75%, var(--sky) 75% 100%);
}

.steps .st1 { top: 40px; right: 30px; width: 180px; opacity: 0.55; }
.steps .st2 { bottom: 30px; left: -30px; width: 200px; opacity: 0.5; }
.steps .st3 { bottom: 40px; right: -20px; width: 180px; opacity: 0.6; }

.step-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.step-grid::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 12%;
  right: 12%;
  height: 2px;
  background-image: radial-gradient(circle, var(--ink-mute) 1px, transparent 1px);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}
.step {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px 24px 28px;
  text-align: center;
  position: relative;
  border: 1.5px solid var(--line-soft);
  z-index: 1;
}
.step .step-num {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  box-shadow: var(--shadow-yellow);
  border: 3px solid #fff;
}
.step .icon-wrap {
  width: 90px;
  height: 90px;
  margin: 20px auto 0;
  border-radius: 50%;
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step .icon-wrap img { width: 60%; }
.step h4 { margin-top: 18px; font-size: 18px; color: var(--ink); }
.step p { margin-top: 8px; font-size: 13px; color: var(--ink-soft); line-height: 1.7; }

/* ============================================ Pricing ============================================ */

.pricing {
  background:
    radial-gradient(65% 70% at 0% 0%, #FFF1B8 0%, transparent 55%),
    radial-gradient(55% 60% at 100% 100%, #FFE0EA 0%, transparent 60%),
    radial-gradient(45% 50% at 50% 50%, #ECF6E4 0%, transparent 70%),
    var(--bg-soft);
}
.pricing .p1 { top: 20px; left: 50%; transform: translateX(-50%); width: 280px; opacity: 0.55; }
.pricing .p2 { top: 60px; right: 40px; width: 180px; opacity: 0.45; }
.pricing .p3 { bottom: -20px; left: -40px; width: 220px; opacity: 0.55; }
.pricing .p4 { bottom: -20px; right: -40px; width: 200px; opacity: 0.55; transform: scaleX(-1); }

.pricing-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px 28px 32px;
  border: 1.5px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.price-card .ribbon {
  position: absolute;
  top: 18px;
  left: -38px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 6px 50px;
  transform: rotate(-30deg);
}
.price-card .label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--brand-deep);
  font-weight: 700;
  letter-spacing: 0.14em;
}
.price-card h3 { margin-top: 12px; font-size: 22px; line-height: 1.5; }
.price-card .price {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 700;
  color: var(--brand-deep);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-card .price .unit { font-size: 22px; color: var(--ink); }
.price-card.addon .price { color: var(--mint-deep); }
.price-card .price-sub { margin-top: 16px; font-size: 14px; color: var(--ink-soft); line-height: 1.85; }
.price-card .footnote { margin-top: 16px; font-size: 11.5px; color: var(--ink-mute); line-height: 1.7; }
.price-card .badges { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.price-card .badges .b {
  background: var(--bg-cream);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 11.5px;
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
}
.price-card .badges .b.mint { background: #E6F4EA; color: var(--mint-deep); }

/* ============================================ Reasons ============================================ */

.reasons {
  background:
    radial-gradient(60% 60% at 20% 100%, #FFE0EA 0%, transparent 55%),
    radial-gradient(50% 60% at 80% 0%, #FFE497 0%, transparent 60%),
    radial-gradient(40% 50% at 50% 100%, #DCEFD0 0%, transparent 65%),
    var(--bg);
}
.reasons .r1 { top: 30px; left: 40px; width: 200px; opacity: 0.55; }
.reasons .r2 { top: 50px; right: 60px; width: 200px; opacity: 0.5; }
.reasons .r3 { bottom: 0; right: 0; width: 200px; opacity: 0.35; transform: scaleX(-1) translateY(40px); }

.reasons-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.reason {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 40px 32px 32px;
  border: 1.5px solid var(--line-soft);
  position: relative;
  text-align: center;
}
.reason .point-badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  border-radius: var(--r-pill);
  padding: 10px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 13px;
  box-shadow: var(--shadow-yellow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.reason .point-badge .num {
  background: #fff;
  color: var(--brand-deep);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.reason .illu {
  width: 180px;
  height: 180px;
  margin: 18px auto 0;
  border-radius: 50%;
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.reason .illu img { width: 110%; }
.reason h3 { margin-top: 24px; font-size: 26px; }
.reason p { margin-top: 14px; font-size: 15px; line-height: 2; color: var(--ink-soft); }

/* ============================================ Final CTA / Contact ============================================ */

.final-cta {
  background:
    radial-gradient(50% 60% at 10% 0%, #FFE0EA 0%, transparent 60%),
    radial-gradient(50% 60% at 90% 100%, #DCEFD0 0%, transparent 60%),
    linear-gradient(135deg, #FFF1B8 0%, #FFE497 50%, #FFD485 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.final-cta > .container { position: relative; z-index: 1; }
.final-cta .c1 { bottom: 0; left: 20px; width: 180px; opacity: 0.95; z-index: 2; }
.final-cta .c2 { bottom: 0; left: 140px; width: 180px; opacity: 0.95; z-index: 2; }
.final-cta .c3 { top: 30px; right: 40px; width: 180px; opacity: 0.6; }
.final-cta .c4 { top: 30px; left: 30px; width: 260px; opacity: 0.65; }

.final-cta .inner { position: relative; z-index: 2; text-align: center; }
.final-cta h2 { font-size: 44px; letter-spacing: 0.08em; line-height: 1.4; }
.final-cta h2 .pink { color: var(--brand-deep); }
.final-cta .sub { margin-top: 16px; font-size: 17px; color: var(--ink-soft); }

.contact-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 18px;
}
.contact-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  border: 1.5px solid var(--line-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.contact-card .pict {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.contact-card .pict.tel { background: var(--brand-soft); }
.contact-card .pict.doc { background: var(--accent-soft); }
.contact-card .pict.line { background: #DCF5E1; }
.contact-card .pict.mail { background: #E2F0F7; }
.contact-card .label { font-family: var(--font-display); font-size: 13px; color: var(--ink-soft); letter-spacing: 0.14em; font-weight: 600; }
.contact-card .value { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--ink); line-height: 1; }
.contact-card.tel-card .value { font-size: 30px; }
.contact-card.mail-card .value { font-size: 17px; word-break: break-all; }
.contact-card .action { font-size: 12.5px; color: var(--ink-mute); }

/* ============================================ Footer ============================================ */

.footer {
  background: var(--ink);
  color: #FFF6DC;
  padding: 80px 0 40px;
}
.footer .top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 246, 220, 0.12);
}
.footer .brand-lock .name { color: #FFF6DC; }
.footer .brand-lock .tag { color: rgba(255, 246, 220, 0.6); }
.footer .blurb { margin-top: 18px; font-size: 13.5px; line-height: 2; color: rgba(255, 246, 220, 0.75); max-width: 320px; }
.footer .col h4 { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.2em; color: var(--brand); margin-bottom: 18px; }
.footer .col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer .col a { font-size: 14px; color: rgba(255, 246, 220, 0.85); transition: color 0.2s ease; }
.footer .col a:hover { color: var(--brand); }
.footer .contact-row { font-size: 13.5px; line-height: 2; color: rgba(255, 246, 220, 0.85); }
.footer .contact-row .tel-num { display: block; font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--brand); margin: 8px 0 4px; }
.footer .bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255, 246, 220, 0.5); }
.footer .bottom .legal { display: flex; gap: 18px; }

/* ============================================ FAB ============================================ */

.fab {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fab .fab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-yellow);
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: transform 0.2s ease;
}
.fab .fab-btn:hover { transform: translateY(-2px); }
.fab .fab-btn.line { background: #06C755; box-shadow: 0 12px 28px -10px rgba(6, 199, 85, 0.5); }

/* ============================================ Responsive ============================================ */

@media (max-width: 1180px) { .nav { display: none; } }

@media (max-width: 1100px) {
  .hero-tagline { font-size: 22px; }
  .services-grid, .pricing-grid, .reasons-grid { grid-template-columns: 1fr 1fr; }
  .others { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr 1fr; }
  .step-grid::before { display: none; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer .top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .sec-decor { display: none; }
  .hero-main-img { max-height: 360px; }
  .hero-tagline { font-size: 20px; }
  .hero-bottom { padding: 28px 0 44px; }
}

@media (max-width: 680px) {
  .services-grid, .pricing-grid, .reasons-grid { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-main-img { max-height: 260px; }
  .hero-tagline { font-size: 17px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn-lg { padding: 16px 24px; font-size: 15px; }
  .section-title { font-size: 28px; }
  .header-tel { display: none; }
}
