@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Shippori+Mincho:wght@500;700;800&display=swap');

/* ==========================================
   DESIGN SYSTEM VARIABLES
   ========================================== */
:root {
  --primary-green: #1b4d3e;       /* Deep Forest Green */
  --primary-green-light: #2d6a54; /* Medium Green */
  --primary-green-bg: #f2f7f5;    /* Very Soft Green for sections */
  --accent-gold: #c59d5f;         /* Elegant Gold */
  --accent-gold-light: #dfc599;   /* Light Gold */
  --accent-gold-dark: #a67f43;    /* Deep Gold */
  --bg-cream: #faf8f5;            /* Soft Cream/Beige */
  --bg-white: #ffffff;
  --text-dark: #2c3531;           /* Charcoal with green undertone */
  --text-muted: #6b7773;
  --border-color: #e5eae7;
  
  --font-serif: 'Shippori Mincho', 'Noto Serif JP', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px rgba(27, 77, 62, 0.06);
  --shadow-lg: 0 20px 40px rgba(27, 77, 62, 0.12);
  --shadow-gold: 0 10px 20px rgba(197, 157, 95, 0.15);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius: 12px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul, ol {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.4;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.section-padding {
  padding: 100px 0;
}

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

.badge-gold {
  display: block;
  width: fit-content;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: var(--bg-white);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.text-center .badge-gold {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.2rem;
  color: var(--primary-green);
  margin-bottom: 20px;
  position: relative;
  display: block;
  width: fit-content;
}

.text-center .section-title {
  margin-left: auto;
  margin-right: auto;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-gold);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 15px auto 60px;
  line-height: 1.6;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  transition: var(--transition-normal);
  cursor: pointer;
  border: none;
  font-size: 1.05rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
  color: var(--bg-white);
  box-shadow: 0 8px 20px rgba(27, 77, 62, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(27, 77, 62, 0.3);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: var(--bg-white);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(197, 157, 95, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-outline:hover {
  background-color: var(--primary-green);
  color: var(--bg-white);
}

/* ==========================================
   HEADER
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition-normal);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-green);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--accent-gold-dark);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

.nav-link:hover {
  color: var(--accent-gold);
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.nav-cta-btn {
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50px;
  gap: 4px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-green);
  margin: 5px 0;
  transition: var(--transition-fast);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.hero:hover .hero-bg-image {
  transform: scale(1.05);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 60%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}

.hero-container-overlay {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-content {
  max-width: 700px;
}

.hero-tag {
  display: inline-block;
  background-color: var(--accent-gold);
  color: var(--bg-white);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-title-main {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 7.5vw, 3.8rem);
  color: var(--bg-white);
  line-height: 1.4;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.9);
}

.hero-title-sub {
  display: block;
  font-size: clamp(1.2rem, 5.5vw, 2rem);
  color: var(--accent-gold-light);
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.05em;
}

.hero-title-primary {
  display: inline-block;
  letter-spacing: 0.02em;
}

.hero-description {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--bg-white);
  margin-bottom: 36px;
  line-height: 1.8;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
}

.btn-hero-outline {
  background: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
}

.btn-hero-outline:hover {
  background-color: var(--bg-white);
  color: var(--primary-green);
}

/* ==========================================
   AREA BANNER
   ========================================== */
.area-banner {
  background-color: var(--primary-green);
  color: var(--bg-white);
  padding: 24px 0;
  text-align: center;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-md);
}

.area-banner-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.area-banner-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold-light);
  letter-spacing: 0.1em;
}

.area-list {
  display: flex;
  gap: 20px;
  font-size: 1.1rem;
  font-weight: 700;
}

.area-item {
  position: relative;
}

.area-item:not(:last-child)::after {
  content: '|';
  margin-left: 20px;
  color: rgba(255, 255, 255, 0.3);
}

/* ==========================================
   WORRIES SECTION (完全オーダーメイド)
   ========================================== */
.worries {
  background-color: var(--bg-white);
}

.worries-intro {
  margin-bottom: 50px;
}

.worries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.worry-card {
  background-color: var(--bg-cream);
  border-radius: var(--border-radius);
  padding: 30px 20px;
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.worry-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.worry-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 16px;
}

.worry-text {
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
}

.solution-banner {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
  color: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--accent-gold);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.solution-banner-content {
  position: relative;
  z-index: 2;
}

.solution-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--accent-gold-light);
  letter-spacing: 0.05em;
}

.solution-desc {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.staff-assurance-card {
  margin: 36px auto 0;
  max-width: 920px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: flex-start;
  background-color: var(--bg-cream);
  border: 1px solid var(--border-color);
  border-left: 6px solid var(--accent-gold);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 32px;
  text-align: left;
}

.staff-assurance-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--primary-green);
  background-color: var(--bg-white);
  border: 1px solid var(--accent-gold-light);
  box-shadow: var(--shadow-sm);
}

.staff-assurance-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent-gold-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.staff-assurance-title {
  color: var(--primary-green);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin-bottom: 14px;
}

.staff-assurance-title span {
  display: inline;
}

.staff-assurance-text {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.9;
}

.staff-assurance-text + .staff-assurance-text {
  margin-top: 10px;
}

/* ==========================================
   STAFF SECTION
   ========================================== */
.staff-section {
  background-color: var(--primary-green-bg);
}

.staff-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.staff-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.staff-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.staff-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(27, 77, 62, 0.95));
  padding: 40px 30px 30px;
  color: var(--bg-white);
}

.staff-overlay-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--accent-gold-light);
  margin-bottom: 8px;
}

.staff-content-text {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 40px;
  line-height: 1.9;
}

.staff-ranks-container {
  margin-top: 30px;
}

.staff-ranks-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--primary-green);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.staff-ranks-title::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 24px;
  background-color: var(--accent-gold);
}

.ranks-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rank-row {
  display: flex;
  background-color: var(--bg-white);
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  align-items: center;
  gap: 20px;
}

.rank-badge {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 4px;
  min-width: 100px;
  text-align: center;
  color: var(--bg-white);
}

.rank-platina { background: linear-gradient(135deg, #e5e9f0, #a3b1c6); color: #1b4d3e; font-weight: 800; border: 1px solid #ffffff; }
.rank-gold   { background: linear-gradient(135deg, #d4af37, #aa7c11); }
.rank-silver { background: linear-gradient(135deg, #bdc3c7, #95a5a6); }
.rank-bronze { background: linear-gradient(135deg, #cd7f32, #965a1f); }
.rank-senior { background: linear-gradient(135deg, #57606f, #2f3542); }

.rank-desc-wrapper {
  flex: 1;
}

.rank-age {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-green);
  margin-bottom: 2px;
}

.rank-requirements {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================
   SERVICES SECTION (Tabs)
   ========================================== */
.services-section {
  background-color: var(--bg-white);
}

.tabs-container {
  margin-top: 40px;
}

.section-official-cta {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.official-page-btn {
  gap: 10px;
  min-width: 280px;
}

.official-page-btn svg {
  flex: 0 0 auto;
}

.tabs-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.tab-btn {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 50px;
  border: 2px solid var(--primary-green);
  background-color: var(--bg-white);
  color: var(--primary-green);
  cursor: pointer;
  transition: var(--transition-normal);
}

.tab-btn:hover {
  background-color: var(--primary-green-bg);
}

.tab-btn.active {
  background-color: var(--primary-green);
  color: var(--bg-white);
  box-shadow: 0 8px 24px rgba(27, 77, 62, 0.15);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Housekeeping (家事代行) Grid */
.housekeeper-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background-color: var(--bg-cream);
  border-radius: var(--border-radius);
  padding: 30px 24px;
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  background-color: var(--bg-white);
  box-shadow: var(--shadow-md);
}

.service-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--primary-green-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-green);
  border: 1px dashed var(--accent-gold);
  transition: var(--transition-fast);
}

.service-card:hover .service-icon-circle {
  background-color: var(--primary-green);
  color: var(--bg-white);
}

.service-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--primary-green);
  font-weight: 700;
  margin-bottom: 10px;
}

.service-desc-detail {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Housekeeper (家政婦) Layout */
.housewife-categories {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.category-block {
  background-color: var(--bg-cream);
  border-radius: 20px;
  padding: 48px;
  border: 1px solid var(--border-color);
}

.category-header {
  margin-bottom: 30px;
  border-bottom: 2px solid var(--accent-gold);
  padding-bottom: 12px;
}

.category-title {
  font-size: 1.6rem;
  color: var(--primary-green);
  font-family: var(--font-serif);
}

.housewife-services-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.list-item-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid var(--accent-gold);
  font-weight: 700;
  font-size: 0.95rem;
}

.list-item-card::before {
  content: '✓';
  color: var(--primary-green);
  font-weight: 900;
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing-section {
  background-color: var(--bg-cream);
}

.pricing-table-wrapper {
  background-color: var(--bg-white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  margin-top: 30px;
  overflow-x: auto;
}

.pricing-plan-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--primary-green);
  margin-bottom: 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.pricing-plan-title span {
  font-size: 1rem;
  background-color: var(--accent-gold);
  color: var(--bg-white);
  padding: 2px 12px;
  border-radius: 4px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  min-width: 600px;
}

.pricing-table th, .pricing-table td {
  border: 1px solid var(--border-color);
  padding: 20px;
  text-align: center;
}

.pricing-table th {
  background-color: var(--primary-green-bg);
  color: var(--primary-green);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
}

.pricing-table th.price-row-header {
  background-color: var(--primary-green);
  color: var(--bg-white);
  font-weight: 700;
}

.pricing-table td.price-cell {
  background-color: var(--bg-white);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.pricing-table td.price-cell > span:not(.price-value),
.price-value span {
  font-size: 1.6rem;
  color: var(--accent-gold-dark);
}

.price-value {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  white-space: nowrap;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  min-width: 8.5em;
}

.pricing-table tr:hover td.price-cell {
  background-color: rgba(197, 157, 95, 0.05);
}

.pricing-notes-card {
  background-color: var(--bg-cream);
  border-radius: 10px;
  padding: 24px 30px;
  border-left: 5px solid var(--accent-gold);
}

.pricing-notes-title {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-green);
}

.pricing-notes-list {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ==========================================
   CUSTOMER VOICES
   ========================================== */
.testimonials {
  background-color: var(--bg-white);
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.testimonial-card {
  background-color: var(--bg-cream);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold-light);
}

.customer-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.customer-photo-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 3px solid var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.customer-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customer-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--primary-green);
  font-weight: 700;
  margin-bottom: 6px;
}

.customer-info-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.customer-plan-tag {
  display: inline-block;
  background-color: var(--accent-gold-light);
  color: #5c431b;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 4px;
  margin-top: 10px;
}

.customer-feedback-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.speech-bubble {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 24px;
  position: relative;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.speech-bubble::before {
  content: '';
  position: absolute;
  top: 40px;
  left: -12px;
  border-width: 12px 12px 12px 0;
  border-style: solid;
  border-color: transparent var(--bg-white) transparent transparent;
}

.speech-bubble-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.timeline-usage-wrapper {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.timeline-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.timeline-chart {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  height: 44px;
}

.timeline-segment {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--bg-white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0 4px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.timeline-segment.color-1 { background-color: #3b7a57; }
.timeline-segment.color-2 { background-color: #4f9d72; }
.timeline-segment.color-3 { background-color: #c59d5f; }
.timeline-segment.color-4 { background-color: #a67f43; }

.timeline-segment-label {
  font-size: 0.8rem;
}

.timeline-segment-time {
  font-size: 0.7rem;
  opacity: 0.9;
}

/* ==========================================
   WORKFLOW SECTION
   ========================================== */
.workflow {
  background-color: var(--primary-green-bg);
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.workflow-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: var(--accent-gold-light);
  z-index: 1;
}

.workflow-step-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 30px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.workflow-step-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
}

.step-number-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: var(--bg-white);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -50px auto 20px;
  border: 4px solid var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.step-icon-img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  color: var(--primary-green);
  opacity: 0.85;
}

.step-title-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--primary-green);
  font-weight: 700;
  margin-bottom: 12px;
}

.step-desc-detail {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
  background-color: var(--bg-white);
}

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

.faq-item {
  border-radius: var(--border-radius);
  background-color: var(--bg-cream);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-weight: 700;
  font-size: 1.05rem;
}

.faq-q-indicator {
  color: var(--accent-gold-dark);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-right: 16px;
}

.faq-question-text {
  flex: 1;
  color: var(--primary-green);
}

.faq-icon-arrow {
  width: 14px;
  height: 8px;
  transition: transform var(--transition-normal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  background-color: var(--bg-white);
  border-top: 0 solid var(--border-color);
}

.faq-answer-inner {
  padding: 24px 30px 24px 62px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-dark);
  position: relative;
}

.faq-answer-inner::before {
  content: 'A';
  position: absolute;
  left: 30px;
  top: 20px;
  color: var(--primary-green);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
}

.faq-item.active {
  border-color: var(--primary-green-light);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  border-top: 1px solid var(--border-color);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
  background-color: var(--primary-green-bg);
  position: relative;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-main-heading {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--primary-green);
  margin-bottom: 24px;
}

.contact-description-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card-method {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 24px 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 24px;
  border-left: 5px solid var(--accent-gold);
}

.contact-method-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-green-bg);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-method-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-method-value-tel {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1.2;
}

.contact-method-value-hours {
  font-size: 0.9rem;
  color: var(--text-dark);
}

.contact-form-card {
  background-color: var(--bg-white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field-wrapper {
  margin-bottom: 24px;
}

.form-field-label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-field-label span.req {
  color: #d93838;
  font-size: 0.8rem;
  margin-left: 6px;
}

.input-field-text {
  width: 100%;
  padding: 14px 20px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-family: var(--font-sans);
  font-size: 1rem;
  background-color: var(--bg-cream);
  transition: var(--transition-fast);
}

.input-field-text:focus {
  outline: none;
  border-color: var(--primary-green-light);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(45, 106, 84, 0.1);
}

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

.radio-card-option {
  border: 1px solid var(--border-color);
  background-color: var(--bg-cream);
  border-radius: 8px;
  padding: 14px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  font-weight: 700;
}

.radio-card-option input {
  display: none;
}

.radio-card-option.selected {
  border-color: var(--primary-green);
  background-color: var(--primary-green-bg);
  color: var(--primary-green);
  box-shadow: 0 0 0 2px var(--primary-green);
}

.form-privacy-consent-wrapper {
  margin: 30px 0;
  text-align: center;
}

.checkbox-label-consent {
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-submit-form {
  width: 100%;
  border-radius: 8px;
  font-size: 1.1rem;
  padding: 18px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 35px 0 20px;
  border-top: none;
}

.footer-container-compact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  margin-bottom: 15px;
}

.footer-info-compact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.footer-address-compact {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-address-compact p {
  margin-bottom: 2px;
}

.footer-links-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.footer-link-compact-anchor {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: var(--transition-fast);
}

.footer-link-compact-anchor:hover {
  color: var(--accent-gold-light);
}

.footer-copyright-compact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ==========================================
   LINE & WEB Reservation Buttons
   ========================================== */
.btn-line {
  background-color: #06C755;
  color: var(--bg-white) !important;
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.2);
}

.btn-line:hover {
  background-color: #05b54c;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(6, 199, 85, 0.3);
}

.btn-web-reservation {
  background-color: #B8960C;
  color: var(--bg-white) !important;
  box-shadow: 0 4px 12px rgba(184, 150, 12, 0.2);
}

.btn-web-reservation:hover {
  background-color: #9e800a;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(184, 150, 12, 0.3);
}

.btn-official-site {
  background: linear-gradient(135deg, #ffffff, #f7efe1);
  color: var(--primary-green) !important;
  border: 2px solid var(--accent-gold-light);
  box-shadow: 0 8px 22px rgba(223, 197, 153, 0.2);
}

.btn-official-site:hover {
  background: linear-gradient(135deg, #ffffff, #fff8ed);
  color: var(--primary-green) !important;
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(223, 197, 153, 0.28);
}

.btn-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Sticky Footer CTA (Mobile Only) */
.sticky-footer-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 16px;
  display: none;
  z-index: 9999;
}

.sticky-cta-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.sticky-cta-btn {
  padding: 12px !important;
  font-size: 0.9rem !important;
  border-radius: 30px !important;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: none !important;
  min-width: 0;
  white-space: nowrap;
  line-height: 1.2;
}

.sticky-cta-btn svg {
  flex-shrink: 0;
}

.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: var(--bg-white);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast), background var(--transition-fast);
  z-index: 9998;
}

.floating-contact.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-contact:hover {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
  transform: translateY(-2px);
}

.floating-contact svg {
  width: 24px;
  height: 24px;
}

.copyright-text {
  letter-spacing: 0.05em;
}

/* ==========================================
   RESPONSIVE LAYOUTS
   ========================================== */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 12px;
  }
  .nav-link {
    font-size: 0.85rem;
  }
  .nav-cta-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  .hero {
    padding: 120px 0 80px;
    min-height: auto;
  }
  .hero-content {
    padding-right: 0;
    text-align: center;
    margin: 0 auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .worries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .staff-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .staff-image {
    height: 380px;
  }
  .testimonial-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .customer-profile {
    flex-direction: row;
    text-align: left;
    gap: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
  }
  .customer-photo-circle {
    margin-bottom: 0;
    width: 100px;
    height: 100px;
  }
  .speech-bubble::before {
    top: -12px;
    left: 40px;
    border-width: 0 12px 12px 12px;
    border-color: transparent transparent var(--bg-white) transparent;
  }
  .workflow-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
  .workflow-steps::before {
    display: none;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  .section-title {
    font-size: 1.8rem;
  }
  #contact .section-subtitle {
    font-size: 1rem;
  }
  .header-container {
    height: 70px;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-cream);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transition: var(--transition-normal);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-menu .nav-cta-btn {
    width: 100%;
    padding: 12px;
    font-size: 0.95rem;
    box-sizing: border-box;
    justify-content: center;
  }
  .menu-toggle {
    display: block;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .tabs-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 30px;
  }
  .tab-btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 1.1rem;
  }
  .section-official-cta {
    margin-top: 32px;
  }
  .official-page-btn {
    width: min(100%, 360px);
    min-width: 0;
    padding-left: 22px;
    padding-right: 22px;
  }
  .worries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .staff-assurance-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 22px;
    text-align: center;
  }
  .staff-assurance-icon {
    margin: 0 auto;
  }
  .housewife-services-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-block {
    padding: 24px;
  }
  .pricing-table-wrapper {
    padding: 20px;
    overflow-x: visible;
  }
  .pricing-plan-title {
    flex-direction: column;
    gap: 8px;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .pricing-table {
    display: block;
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 24px;
  }
  .pricing-table thead {
    display: none;
  }
  .pricing-table tbody {
    display: grid;
    gap: 16px;
  }
  .pricing-table tr {
    display: block;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
  }
  .pricing-table th,
  .pricing-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    border: 0;
    padding: 14px 16px;
    text-align: right;
  }
  .pricing-table th.price-row-header {
    justify-content: center;
    text-align: center;
    border-radius: 0;
    font-size: 1.05rem;
  }
  .pricing-table td.price-cell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(8.5em, max-content);
    font-size: 1rem;
    border-bottom: 1px solid var(--border-color);
  }
  .pricing-table td.price-cell:last-child {
    border-bottom: 0;
  }
  .pricing-table td.price-cell::before {
    content: attr(data-label);
    color: var(--primary-green);
    font-size: 0.88rem;
    font-weight: 700;
    text-align: left;
  }
  .pricing-table td.price-cell .price-value {
    justify-self: end;
    min-width: 8.5em;
    text-align: right;
  }
  .pricing-table td.price-cell .price-value span {
    font-size: 1.35rem;
  }
  .workflow-steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .workflow-step-card {
    padding-top: 40px;
  }
  .step-number-circle {
    margin-top: -60px;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form-card {
    padding: 24px;
  }
  .footer-container-compact {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding-bottom: 16px;
    margin-bottom: 12px;
  }
  .footer-info-compact {
    align-items: center;
  }
  .footer-links-compact {
    justify-content: center;
    gap: 8px 16px;
  }
  .footer-link-compact-anchor {
    font-size: 0.85rem;
  }
  .footer-address-compact {
    font-size: 0.8rem;
  }
  .footer-copyright-compact {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Sticky CTA active on mobile */
  .sticky-footer-cta {
    display: block;
  }
  body {
    padding-bottom: 75px; /* Prevent body content overlap with sticky footer */
  }
  .floating-contact {
    right: 16px;
    bottom: 92px;
    width: 44px;
    height: 44px;
  }
  .floating-contact svg {
    width: 21px;
    height: 21px;
  }
}

@media (max-width: 480px) {
  .hero-title-main {
    word-break: keep-all;
    overflow-wrap: break-word;
    line-height: 1.4;
  }
  .hero-description {
    line-height: 1.7;
  }
  #contact .section-subtitle {
    font-size: 0.94rem;
    line-height: 1.75;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .hero-cta-group .btn,
  .contact-methods .btn {
    min-width: 0;
    padding-left: 18px !important;
    padding-right: 18px !important;
    font-size: clamp(0.92rem, 4.2vw, 1rem) !important;
    gap: 6px !important;
    white-space: nowrap;
  }
  .hero-cta-group .btn svg,
  .contact-methods .btn svg {
    width: 20px;
    height: 20px;
    margin-right: 0 !important;
    flex: 0 0 auto;
  }
  .tab-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  .official-page-btn {
    font-size: 0.95rem;
    padding-left: 18px;
    padding-right: 18px;
  }
  .pricing-plan-title {
    font-size: 1.08rem;
  }
  .area-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    font-size: 1rem;
  }
  .area-item:not(:last-child)::after {
    display: none;
  }
  .worries-grid {
    grid-template-columns: 1fr;
  }
  .staff-assurance-card {
    padding: 24px 18px;
  }
  .staff-assurance-title {
    line-height: 1.5;
  }
  .staff-assurance-title span {
    display: block;
  }
  .staff-assurance-text {
    text-align: left;
    font-size: 0.95rem;
  }
  .housewife-services-list {
    grid-template-columns: 1fr;
  }
  .pricing-table th,
  .pricing-table td {
    white-space: normal;
  }
  .pricing-table-wrapper {
    padding: 16px;
  }
  .pricing-notes-card {
    padding: 20px;
  }
  .testimonials-grid {
    gap: 32px;
  }
  .testimonial-card {
    padding: 24px 16px;
    gap: 20px;
  }
  .customer-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 12px;
  }
  .customer-photo-circle {
    margin-bottom: 12px;
  }
  .speech-bubble {
    padding: 16px;
    margin-bottom: 16px;
  }
  .speech-bubble::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .timeline-usage-wrapper {
    padding: 16px 12px;
  }
  .timeline-chart {
    height: auto;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
  }
  .timeline-segment {
    width: 100% !important;
    padding: 12px;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .timeline-segment:last-child {
    border-bottom: none;
  }
  .radio-group-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 375px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero-cta-group .btn,
  .contact-methods .btn {
    padding-left: 14px !important;
    padding-right: 14px !important;
    font-size: clamp(0.84rem, 4vw, 0.95rem) !important;
    letter-spacing: 0;
  }
  .contact-methods {
    gap: 18px !important;
  }
  .sticky-footer-cta {
    padding: 8px 10px;
  }
  .sticky-cta-container {
    gap: 8px;
  }
  .sticky-cta-btn {
    min-width: 0;
    padding: 10px 6px !important;
    font-size: clamp(0.72rem, 3.7vw, 0.82rem) !important;
    gap: 4px;
    white-space: nowrap;
  }
  .sticky-cta-btn svg {
    width: 15px;
    height: 15px;
    margin-right: 0 !important;
  }
}

@media (max-width: 340px) {
  .sticky-cta-container {
    gap: 6px;
  }
  .sticky-cta-btn {
    padding-left: 4px !important;
    padding-right: 4px !important;
    font-size: 0.7rem !important;
  }
  .sticky-cta-btn svg {
    width: 14px;
    height: 14px;
  }
}
