/* ============================================
   BESTONE - KADODE Style CSS
   Bright, cheerful, professional junk removal
   ============================================ */

/* --- CSS Variables & Reset --- */
:root {
  --primary: #0055CC;
  --primary-dark: #003D99;
  --primary-light: #E8F0FE;
  --accent: #FF6B00;
  --accent-dark: #E05E00;
  --accent-light: #FFF3E8;
  --danger: #E53935;
  --danger-light: #FFEBEE;
  --success: #2E7D32;
  --success-light: #E8F5E9;
  --gold: #F9A825;
  --gold-light: #FFF8E1;
  --text: #1A1A1A;
  --text-light: #555;
  --text-muted: #888;
  --bg: #FFFFFF;
  --bg-light: #F5F7FA;
  --bg-section: #F0F4F8;
  --border: #E0E0E0;
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-xs: 4px;
  --font-body: 'Noto Sans JP', sans-serif;
  --font-heading: 'M PLUS Rounded 1c', sans-serif;
  --header-height: 64px;
}

/* --- RESET --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s, opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

ul, ol {
  list-style: none;
}

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

table {
  border-collapse: collapse;
  width: 100%;
}

small {
  font-size: 0.75em;
  display: block;
}

strong {
  font-weight: 700;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
}

/* --- CONTAINER --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* --- HEADER --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  height: var(--header-height);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.02em;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s;
}

.header-phone:hover {
  background: var(--accent-dark);
  opacity: 1;
}

.header-phone-icon {
  font-size: 1.2rem;
}

.header-phone-number {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.header-phone-label {
  font-size: 0.65rem;
  font-weight: 400;
  display: block;
  opacity: 0.9;
}

/* --- HAMBURGER --- */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.is-open .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- NAV MENU --- */
.nav-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 999;
  overflow-y: auto;
  padding: 24px 16px;
}

.nav-menu.is-open {
  display: block;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-item {
  border-bottom: 1px solid var(--border);
}

.nav-link {
  display: block;
  padding: 16px 8px;
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-link:hover {
  color: var(--primary);
  background: var(--primary-light);
  opacity: 1;
}

/* --- HERO --- */
.hero {
  background: linear-gradient(135deg, #0055CC 0%, #003D99 50%, #002266 100%);
  color: #fff;
  padding: 48px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--danger);
  color: #fff;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 12px;
  color: #fff;
}

.hero-title-accent {
  color: var(--gold);
  font-size: 1.3em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hero-stat {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 16px 20px;
  min-width: 130px;
  text-align: center;
}

.hero-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
}

.hero-stat-number small {
  font-size: 0.5em;
  display: inline;
}

.hero-stat-label {
  display: block;
  font-size: 0.75rem;
  opacity: 0.9;
  margin-top: 4px;
}

.hero-campaign {
  background: linear-gradient(135deg, var(--accent), #FF8C33);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  margin-bottom: 16px;
  display: inline-block;
}

.hero-campaign-text {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.hero-campaign-discount {
  font-size: 1.3em;
  font-weight: 800;
  color: var(--gold);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-clock {
  margin-bottom: 20px;
  font-size: 0.9rem;
  opacity: 0.95;
}

.hero-clock strong {
  color: #7CFC00;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  align-items: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.hero-badge-item {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
  cursor: pointer;
  width: 100%;
  max-width: 360px;
  text-align: center;
  line-height: 1.3;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  opacity: 1;
}

.btn-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.btn-text {
  text-align: left;
}

.btn-text small {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.9;
}

.btn-phone {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255,107,0,0.3);
}

.btn-phone:hover {
  background: var(--accent-dark);
}

.btn-mail {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,85,204,0.3);
}

.btn-mail:hover {
  background: var(--primary-dark);
}

.btn-line {
  background: #06C755;
  color: #fff;
  box-shadow: 0 4px 12px rgba(6,199,85,0.3);
}

.btn-line:hover {
  background: #05B04C;
}

/* --- WARNING --- */
.warning-section {
  padding: 40px 0;
  background: var(--danger-light);
}

.warning-box {
  border: 2px solid var(--danger);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
}

.warning-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--danger);
  margin-bottom: 12px;
}

.warning-text {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--text);
}

.warning-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.warning-list li {
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 4px;
}

/* --- SECTION TITLES --- */
.section-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text);
  position: relative;
  padding-bottom: 16px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.section-title-en {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.section-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 32px;
  margin-top: 8px;
}

/* --- CAMPAIGN PRICING --- */
.campaign-pricing {
  padding: 48px 0;
  background: var(--accent-light);
}

.campaign-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.campaign-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.campaign-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.campaign-card-header {
  padding: 14px 20px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
}

.campaign-card-ss { background: linear-gradient(135deg, #4CAF50, #2E7D32); }
.campaign-card-s { background: linear-gradient(135deg, #2196F3, #1565C0); }
.campaign-card-m { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }

.campaign-card-body {
  padding: 20px;
  text-align: center;
}

.campaign-card-volume {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.campaign-card-price {
  margin-bottom: 8px;
  line-height: 1.2;
}

.campaign-card-desc {
  font-size: 0.85rem;
  color: var(--text-light);
}

.price-yen {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--danger);
}

.price-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--danger);
}

.price-suffix {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* --- CTA BLOCK --- */
.cta-block {
  background: linear-gradient(135deg, #0055CC, #003D99);
  padding: 40px 0;
  text-align: center;
}

.cta-block-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.cta-block-sub {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.cta-block-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* --- REASONS --- */
.reasons-section {
  padding: 48px 0;
  background: var(--bg-light);
}

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.reason-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.reason-number {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.reason-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  line-height: 1;
}

.reason-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.reason-subtitle {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}

.reason-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* --- COMPARISON --- */
.comparison-section {
  padding: 48px 0;
  background: #fff;
}

.comparison-point {
  margin-bottom: 32px;
}

.comparison-point-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.comparison-point-number {
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-xs);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.comparison-point-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.comparison-point-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 8px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.comparison-table {
  min-width: 500px;
  background: #fff;
  font-size: 0.9rem;
}

.comparison-table thead th {
  background: var(--primary);
  color: #fff;
  padding: 12px 16px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.comparison-table thead th:first-child {
  text-align: left;
}

.comparison-table tbody td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
}

.comparison-table tbody tr:nth-child(even) {
  background: var(--bg-light);
}

.comparison-yes {
  color: var(--success);
  font-weight: 700;
  background: var(--success-light) !important;
}

.comparison-no {
  color: var(--danger);
  font-weight: 500;
}

/* --- PACK PLAN --- */
.pack-plan-section {
  padding: 48px 0;
  background: var(--bg-light);
}

.pack-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.pack-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pack-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pack-card-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.pack-ss { background: linear-gradient(135deg, #66BB6A, #388E3C); }
.pack-s { background: linear-gradient(135deg, #42A5F5, #1565C0); }
.pack-m { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }
.pack-l { background: linear-gradient(135deg, #AB47BC, #7B1FA2); }
.pack-ll { background: linear-gradient(135deg, #EF5350, #C62828); }
.pack-3l { background: linear-gradient(135deg, #78909C, #37474F); }

.pack-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
}

.pack-popular {
  background: rgba(255,255,255,0.25);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.pack-card-body {
  padding: 20px;
  text-align: center;
}

.pack-volume {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.pack-vehicle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.pack-price {
  margin-bottom: 12px;
  line-height: 1.2;
}

.pack-price-yen {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--danger);
}

.pack-price-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--danger);
}

.pack-price-suffix {
  font-size: 0.85rem;
  color: var(--text-light);
}

.pack-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.pack-includes {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pack-includes li {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.5;
}

.pack-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 20px;
}

/* --- ITEMS --- */
.items-section {
  padding: 48px 0;
  background: #fff;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.item-card {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 16px 8px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.item-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  background: #fff;
}

.item-icon {
  font-size: 2rem;
  margin-bottom: 6px;
  line-height: 1;
}

.item-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
}

.items-tags {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}

.items-tags-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.items-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.item-tag {
  background: #fff;
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-light);
  transition: background 0.2s, color 0.2s;
}

.item-tag:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
}

.items-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- KAITORI --- */
.kaitori-section {
  padding: 48px 0;
  background: var(--success-light);
}

.kaitori-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.kaitori-image {
  width: 100%;
}

.kaitori-text {
  flex: 1;
}

.kaitori-text h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.kaitori-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.kaitori-items {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 16px;
}

.kaitori-items h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--success);
  margin-bottom: 12px;
}

.kaitori-items ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.kaitori-items li {
  font-size: 0.9rem;
  line-height: 1.6;
}

.kaitori-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- PLACEHOLDER IMAGES --- */
.placeholder-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  border-radius: var(--radius-sm);
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 24px;
  font-size: 0.95rem;
}

.placeholder-image p {
  margin-bottom: 4px;
}

.placeholder-green { background: linear-gradient(135deg, #66BB6A, #2E7D32); }
.placeholder-blue { background: linear-gradient(135deg, #42A5F5, #1565C0); }
.placeholder-orange { background: linear-gradient(135deg, #FFA726, #E65100); }
.placeholder-purple { background: linear-gradient(135deg, #AB47BC, #6A1B9A); }
.placeholder-teal { background: linear-gradient(135deg, #26A69A, #00695C); }
.placeholder-red { background: linear-gradient(135deg, #EF5350, #C62828); }

/* --- SERVICES (index) --- */
.services-section {
  padding: 48px 0;
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card-image {
  width: 100%;
}

.service-card-image .placeholder-image {
  min-height: 160px;
  border-radius: 0;
}

.service-card-body {
  padding: 24px;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.service-card-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-card-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-card-features li {
  font-size: 0.85rem;
  color: var(--success);
  font-weight: 500;
}

/* --- FLOW --- */
.flow-section {
  padding: 48px 0;
  background: var(--bg-light);
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}

.flow-step {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  margin-bottom: 16px;
}

.flow-step-arrow {
  text-align: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin: -8px 0;
  transform: rotate(90deg);
  line-height: 1;
}

.flow-step-number {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.flow-step-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  line-height: 1;
}

.flow-step-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.flow-step-text {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

.flow-payment {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
}

.flow-payment-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.flow-payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.payment-method {
  background: var(--bg-light);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}

.flow-card-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.card-logo {
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: var(--radius-xs);
  font-size: 0.8rem;
  font-weight: 700;
}

/* --- CASES --- */
.cases-section {
  padding: 48px 0;
  background: #fff;
}

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

.case-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.case-card:hover {
  transform: translateY(-3px);
}

.case-images {
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 8px;
}

.case-before,
.case-after {
  flex: 1;
  position: relative;
}

.case-before .placeholder-image,
.case-after .placeholder-image {
  min-height: 120px;
  font-size: 0.8rem;
}

.case-arrow {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
}

.case-label {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 2px 8px;
  border-radius: var(--radius-xs);
  font-size: 0.7rem;
  font-weight: 700;
}

.case-info {
  padding: 16px 20px 20px;
}

.case-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.case-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.case-detail {
  font-size: 0.8rem;
  color: var(--text-light);
  background: #fff;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid var(--border);
}

.case-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--danger);
  margin-bottom: 8px;
}

.case-price strong {
  font-size: 1.2rem;
}

.case-text {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- REVIEWS --- */
.reviews-section {
  padding: 48px 0;
  background: var(--gold-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.review-card:hover {
  transform: translateY(-3px);
}

.review-stars {
  font-size: 1.2rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.review-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.review-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.review-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.review-detail {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- AREA --- */
.area-section {
  padding: 48px 0;
  background: var(--bg-light);
}

.area-group {
  margin-bottom: 24px;
}

.area-group-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.area-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.area-btn {
  display: inline-block;
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.area-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  opacity: 1;
}

.area-btn-current {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.area-sub {
  margin-top: 8px;
  padding-left: 16px;
}

.area-sub-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 6px;
}

.area-buttons-small {
  gap: 6px;
}

.area-btn-small {
  padding: 5px 12px;
  font-size: 0.8rem;
}

/* --- FAQ --- */
.faq-section {
  padding: 48px 0;
  background: #fff;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.6;
  transition: background 0.2s;
  user-select: none;
}

.faq-question:hover {
  background: rgba(0,85,204,0.04);
}

.faq-q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.faq-answer {
  display: none;
  padding: 0 20px 16px;
  gap: 12px;
  align-items: flex-start;
}

.faq-item.is-open .faq-answer {
  display: flex;
}

.faq-a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  flex: 1;
}

/* --- FOOTER --- */
.footer {
  background: #1A1A2E;
  color: rgba(255,255,255,0.8);
  padding: 48px 0 0;
}

.footer a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer a:hover {
  color: #fff;
  opacity: 1;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-company {
  flex-shrink: 0;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 16px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.footer-nav-col h4,
.footer-nav-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-col li a {
  font-size: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
  text-align: center;
}

.footer-copyright {
  font-size: 0.75rem;
  opacity: 0.6;
}

/* --- FLOATING CTA --- */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  background: #fff;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
  border-top: 1px solid var(--border);
}

.floating-cta-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 4px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  gap: 2px;
  transition: opacity 0.2s;
}

.floating-cta-btn:hover {
  opacity: 0.9;
}

.floating-cta-phone {
  background: var(--accent);
}

.floating-cta-mail {
  background: var(--primary);
}

.floating-cta-line {
  background: #06C755;
}

.floating-cta-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.floating-cta-label {
  font-size: 0.7rem;
  font-weight: 700;
}

/* --- EXIT POPUP --- */
.exit-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.exit-popup {
  background: #fff;
  border-radius: var(--radius);
  max-width: 460px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.exit-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-muted);
  border-radius: 50%;
  transition: background 0.2s;
  z-index: 1;
}

.exit-popup-close:hover {
  background: var(--bg-light);
}

.exit-popup-content {
  padding: 40px 28px 28px;
  text-align: center;
}

.exit-popup-badge {
  display: inline-block;
  background: var(--danger);
  color: #fff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.exit-popup-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.exit-popup-discount {
  color: var(--danger);
  font-size: 1.5em;
}

.exit-popup-text {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.exit-popup-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.exit-popup-note {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- AREA PAGE SPECIFIC --- */
.area-hero {
  padding-top: 40px;
}

.breadcrumb-section {
  background: var(--bg-light);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-list li::after {
  content: '>';
  color: var(--text-muted);
}

.breadcrumb-list li:last-child::after {
  content: '';
}

.breadcrumb-list a {
  color: var(--primary);
  font-size: 0.8rem;
}

/* Trust Badges (area pages) */
.trust-badges-section {
  padding: 24px 0;
  background: #fff;
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.trust-badge-card {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s;
}

.trust-badge-card:hover {
  transform: translateY(-2px);
}

.trust-badge-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.trust-badge-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
}

/* Area Intro (area pages) */
.area-intro-section {
  padding: 48px 0;
  background: #fff;
}

.area-intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.area-intro-content p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* Service section variant (area pages) */
.service-section {
  padding: 48px 0;
  background: var(--bg-light);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.service-section .service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.service-section .service-card:hover {
  transform: translateY(-3px);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  line-height: 1;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.service-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* GNav (for alternative area header pattern) */
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.gnav {
  display: none;
}

.gnav.is-open {
  display: block;
}

.gnav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.header-cta {
  display: none;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 6px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hero-area {
  padding-top: 32px;
}

/* --- RESPONSIVE 768px --- */
@media (min-width: 768px) {
  :root {
    --header-height: 72px;
  }

  .container {
    padding: 0 24px;
  }

  .header-phone {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .nav-menu {
    display: block;
    position: static;
    background: var(--bg-light);
    padding: 0;
    overflow: visible;
    border-top: 1px solid var(--border);
  }

  .nav-list {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
  }

  .nav-item {
    border-bottom: none;
  }

  .nav-link {
    padding: 12px 14px;
    font-size: 0.85rem;
  }

  .header {
    height: auto;
  }

  .header-inner {
    height: var(--header-height);
  }

  /* Hero */
  .hero {
    padding: 64px 0 56px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-sub {
    font-size: 1.1rem;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-stat {
    min-width: 160px;
    padding: 20px 28px;
  }

  .hero-stat-number {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn {
    width: auto;
    min-width: 240px;
  }

  /* Campaign */
  .campaign-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Reasons */
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Pack */
  .pack-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Items */
  .items-grid {
    grid-template-columns: repeat(5, 1fr);
  }

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

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Flow */
  .flow-steps {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    align-items: flex-start;
  }

  .flow-step {
    flex: 1;
    min-width: 160px;
    max-width: 200px;
    margin-bottom: 0;
  }

  .flow-step-arrow {
    transform: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding-top: 40px;
  }

  /* Cases */
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Trust badges */
  .trust-badges-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Section titles */
  .section-title {
    font-size: 1.7rem;
  }

  /* CTA block */
  .cta-block-buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-block-buttons .btn {
    width: auto;
  }

  /* Footer */
  .footer-inner {
    flex-direction: row;
    gap: 48px;
  }

  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
    flex: 1;
  }

  /* Kaitori */
  .kaitori-content {
    flex-direction: row;
    align-items: flex-start;
  }

  .kaitori-image {
    width: 40%;
    flex-shrink: 0;
  }

  /* Exit popup */
  .exit-popup-cta {
    flex-direction: row;
    justify-content: center;
  }
}

/* --- RESPONSIVE 1024px --- */
@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  /* Hero */
  .hero {
    padding: 80px 0 72px;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-stat {
    min-width: 180px;
  }

  /* Reasons */
  .reasons-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Pack */
  .pack-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Items */
  .items-grid {
    grid-template-columns: repeat(8, 1fr);
  }

  /* Cases */
  .cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Section titles */
  .section-title {
    font-size: 1.9rem;
  }

  /* Nav */
  .nav-link {
    padding: 12px 18px;
    font-size: 0.9rem;
  }

  /* Floating CTA - hide on desktop */
  .floating-cta {
    display: none;
  }

  /* Header CTA for area pages */
  .header-cta {
    display: flex;
  }

  /* GNav desktop */
  .gnav {
    display: block;
  }

  .gnav-list {
    flex-direction: row;
  }

  .menu-btn {
    display: none;
  }
}

/* --- ANIMATIONS --- */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(229,57,53,0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(229,57,53,0);
  }
}

/* Scroll margin for sections */
section[id] {
  scroll-margin-top: var(--header-height);
}

/* Bottom padding for floating CTA */
body {
  padding-bottom: 60px;
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }
}
