/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.6;
  color: #07124a;
}

/* Color Variables */
:root {
  --navy: #07124a;
  --green: #558b2f;
  --green-dark: #4a7a27;
  --orange: #ffa726;
  --orange-dark: #d17b0f;
  --warm-gray: #efede8;
  --gray-300: #bdbdbd;
  --white: #ffffff;
}

/* Utility Classes */
.text-navy {
  color: var(--navy);
}
.text-green {
  color: var(--green);
}
.text-orange {
  color: var(--orange);
}
.text-white {
  color: var(--white);
}

.bg-navy {
  background-color: var(--navy);
}
.bg-green {
  background-color: var(--green);
}
.bg-green-dark {
  background-color: var(--green-dark);
}
.bg-orange {
  background-color: var(--orange);
}
.bg-warm-gray {
  background-color: var(--warm-gray);
}
.bg-white {
  background-color: var(--white);
}

.border-gray-300 {
  border-color: var(--gray-300);
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.min-h-screen {
  min-height: 100vh;
}

/* Typography */
.text-sm {
  font-size: 0.875rem;
}
.text-base {
  font-size: 1rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.text-3xl {
  font-size: 1.875rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.text-6xl {
  font-size: 3.75rem;
}

.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}

.text-center {
  text-align: center;
}
.leading-relaxed {
  line-height: 1.625;
}

/* Spacing */
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-12 {
  margin-bottom: 3rem;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 4rem 0;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0;
  }
}

/* デスクトップは2カラム、スマホは1カラム */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* h1 */
.hero-content h1 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #5d4037;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 2.625rem;
    margin-bottom: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

/* タグライン */
.hero-tagline {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .hero-tagline {
    gap: 0.75rem;
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-tagline {
    gap: 1rem;
    font-size: 1.1rem;
    margin-bottom: 2.925rem;
  }
}

.tag-buyback {
  display: inline-block;
  background: #ec9bb5;
  color: #c2185b;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 10px;
  font-size: 1.3em;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .tag-buyback {
    padding: 0.4rem 1.5rem;
    border-radius: 15px;
    font-size: 1.4em;
  }
}

.tag-disposal {
  display: inline-block;
  background: #b2d8c3;
  color: #2e7d5e;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 10px;
  font-size: 1.3em;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .tag-disposal {
    padding: 0.4rem 1.5rem;
    border-radius: 15px;
    font-size: 1.4em;
  }
}

.tag-text {
  color: #5d4037;
  font-weight: 600;
  white-space: nowrap;
}

/* サブタイトル */
.hero-subtitle {
  font-size: 1.5rem;
  color: #5d4037;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 3.5rem;
    margin-bottom: 5.85rem;
  }
}

.hero-content p {
  font-size: 1.25rem;
  color: #374151;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 6rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  min-width: 200px;
}

/* 画像エリア */
.hero-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* メッセージエリア */
.hero-message {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
  .hero-message {
    padding: 2rem;
    margin-top: 3rem;
  }
}

.hero-message p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #4b5563;
}

@media (min-width: 768px) {
  .hero-message p {
    font-size: 1.05rem;
  }
}

@media (min-width: 1024px) {
  .hero-message p {
    font-size: 1.125rem;
  }
}

/* Contact Buttons Section */
.contact-buttons-section {
  padding: 3rem 0;
  background: #f0f4f0;
}

.contact-buttons-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-btn-icon {
  font-size: 1.5rem;
}

.contact-btn-phone {
  background: #2e7d32;
  color: white;
  border: 2px solid #2e7d32;
}

.contact-btn-phone:hover {
  background: #1b5e20;
  border-color: #1b5e20;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.contact-btn-line {
  background: #d4f4dd;
  color: #2e7d32;
  border: 2px solid #2e7d32;
}

.contact-btn-line:hover {
  background: #c8f0d4;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

.contact-btn-email {
  background: #d4f4dd;
  color: #2e7d32;
  border: 2px solid #2e7d32;
}

.contact-btn-email:hover {
  background: #c8f0d4;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

@media (max-width: 768px) {
  .contact-buttons-section {
    padding: 2rem 1rem;
  }
  
  .contact-btn {
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
  }
  
  .contact-btn-text {
    font-size: 0.95rem;
  }
}

/* Mission Section */
.mission-section {
  background-color: #f5f1e8;
  padding: 80px 20px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-container {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.hero-title {
  font-size: 28px;
  font-weight: 500;
  color: #2c2c2c;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.badge {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 32px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
}

.badge-orange {
  background-color: #ff8c42;
}

.badge-green {
  background-color: #7cb342;
}

.badge-text {
  font-size: 28px;
  font-weight: 500;
  color: #2c2c2c;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .mission-section {
    padding: 60px 20px;
  }

  .hero-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .badge {
    padding: 12px 24px;
    font-size: 24px;
  }

  .badge-text {
    font-size: 20px;
  }

  .hero-subtitle {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .badge {
    padding: 10px 20px;
    font-size: 20px;
  }

  .badge-text {
    font-size: 18px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-badges {
    gap: 12px;
  }
}

.mission-image {
  display: flex;
  align-items: center;
  justify-content: center;
  order: -1;
}

@media (min-width: 768px) {
  .mission-image {
    order: 0;
  }
}

.mission-image img {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Cost Savings Section */
.cost-savings-section {
  padding: 4rem 0;
  background-color: #fff;
}

.cost-savings-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

/* 案内スタッフ画像 */
.guide-character {
  position: absolute;
  left: 0;
  top: -20px;
  width: 259px;
  height: auto;
  z-index: 5;
}

.guide-character img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (min-width: 768px) {
  .guide-character {
    left: 20px;
    top: -30px;
    width: 317px;
  }
}

@media (max-width: 767px) {
  .guide-character {
    position: relative;
    left: 0;
    top: 0;
    width: 216px;
    margin: 0 auto 1rem;
  }
}

.cost-savings-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.badge {
  padding: 1.35rem 4.5rem;
  border-radius: 14px;
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.badge-pink {
  background-color: #f8bbd0;
  color: #c2185b;
}

.badge-green {
  background-color: #c8e6c9;
  color: #558b2f;
}

.badge-separator {
  font-size: 3.6rem;
  font-weight: 300;
  color: #666;
}

.cost-savings-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  color: #333;
  margin: 0;
}

@media (min-width: 768px) {
  .cost-savings-title {
    font-size: 1.75rem;
  }
}

.cost-savings-banner {
  background: linear-gradient(135deg, #c2185b 0%, #ad1457 100%);
  color: #fff;
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 2rem 0;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .cost-savings-banner {
    font-size: 1.25rem;
  }
}

.cost-diagram-wrapper {
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 2rem 1.5rem 1.5rem;
  background-color: #fff;
}

@media (min-width: 768px) {
  .cost-diagram-wrapper {
    padding: 2.5rem 2rem 2rem;
  }
}

.zero-cost-header {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
  border-bottom: 2px solid #d32f2f;
}

.zero-cost-text {
  font-size: 1rem;
  color: #d32f2f;
  font-weight: 600;
}

@media (min-width: 768px) {
  .zero-cost-text {
    font-size: 1.125rem;
  }
}

.zero-yen {
  font-size: 2.5rem;
  font-weight: 900;
  color: #d32f2f;
  margin: 0 0.25rem;
  display: inline-block;
}

@media (min-width: 768px) {
  .zero-yen {
    font-size: 3.5rem;
  }
}

.cost-savings-diagram {
  max-width: 900px;
  margin: 0 auto;
}

.diagram-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: stretch;
  position: relative;
}

@media (min-width: 768px) {
  .diagram-container {
    grid-template-columns: 1fr 1fr;
    gap: 12rem;
  }
}

.diagram-left {
  background-color: #c8e6c9;
  padding: 1.5rem 1rem;
  border-radius: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  height: 100%;
}

@media (min-width: 768px) {
  .diagram-left {
    padding: 2.5rem 2rem;
    min-height: 250px;
  }
}

.left-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #2e7d32;
  margin: 0 0 0.75rem 0;
}

@media (min-width: 768px) {
  .left-title {
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
  }
}

.left-item {
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  margin: 0.2rem 0;
}

@media (min-width: 768px) {
  .left-item {
    font-size: 1.125rem;
    margin: 0.25rem 0;
  }
}

.left-plus {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2e7d32;
  margin: 0.4rem 0;
}

@media (min-width: 768px) {
  .left-plus {
    font-size: 1.5rem;
    margin: 0.5rem 0;
  }
}

.bottom-dashed-line {
  display: block;
  position: absolute;
  bottom: -8px;
  left: calc(50% - 2.25rem);
  width: 4.5rem;
  height: 20px;
  z-index: 15;
  pointer-events: none;
}

@media (min-width: 768px) {
  .bottom-dashed-line {
    bottom: -10px;
    left: calc(50% - 6rem);
    width: 12rem;
    height: 25px;
  }
}

.diagonal-solid-line {
  display: block;
  position: absolute;
  top: 0;
  left: calc(50% - 2.25rem);
  width: 4.5rem;
  height: 50%;
  z-index: 15;
  pointer-events: none;
}

@media (min-width: 768px) {
  .diagonal-solid-line {
    left: calc(50% - 6rem);
    width: 12rem;
  }
}

.diagram-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 200px;
  height: 100%;
  position: relative;
}

@media (min-width: 768px) {
  .diagram-right {
    min-height: 250px;
  }
}

.right-top {
  background-color: #f8bbd0;
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .right-top {
    padding: 2rem 1.5rem;
  }
}

.buyback-bubble {
  position: absolute;
  top: -10.5px;
  right: -7px;
  background: linear-gradient(135deg, #c2185b 0%, #d81b60 100%);
  color: #fff;
  padding: 0.7rem 0.91rem;
  border-radius: 42px;
  font-size: 0.49rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  box-shadow: 0 4px 12px rgba(194, 24, 91, 0.4);
  min-width: 59.5px;
}

.buyback-bubble::before {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 10.5px;
  width: 0;
  height: 0;
  border-left: 5.6px solid transparent;
  border-right: 5.6px solid transparent;
  border-top: 8.4px solid #d81b60;
  transform: rotate(15deg);
}

@media (min-width: 768px) {
  .buyback-bubble {
    font-size: 0.595rem;
    padding: 0.84rem 1.12rem;
    top: -14px;
    right: -10.5px;
    min-width: 70px;
    border-radius: 49px;
  }
  
  .buyback-bubble::before {
    bottom: -8.4px;
    left: 12.6px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 10.5px solid #d81b60;
    transform: rotate(15deg);
  }
}

.right-title {
  font-size: 1rem;
  font-weight: 700;
  color: #c2185b;
  margin: 0;
}

@media (min-width: 768px) {
  .right-title {
    font-size: 1.5rem;
  }
}

.right-bottom {
  background-color: #c8e6c9;
  padding: 1.5rem 1rem;
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .right-bottom {
    padding: 2rem 1.5rem;
  }
}

.bottom-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #2e7d32;
  margin: 0;
}

@media (min-width: 768px) {
  .bottom-title {
    font-size: 1.5rem;
  }
}

/* キャラクター画像 */
.character-image {
  position: absolute;
  right: 5px;
  bottom: 10px;
  width: 120px;
  height: auto;
  z-index: 10;
}

.character-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (min-width: 768px) {
  .character-image {
    right: 10px;
    bottom: 20px;
    width: 180px;
  }
}

@media (max-width: 767px) {
  .character-image {
    right: 5px;
    bottom: 10px;
    width: 100px;
  }
}

/* Case Studies Section */
.case-studies-section {
  padding: 4rem 0;
  background-color: #f5f5f5;
}

.case-studies-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background-color: #9e9e9e;
  padding: 1rem 2rem;
  margin: 0 0 3rem 0;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .case-studies-title {
    font-size: 1.75rem;
  }
}

.case-study-item {
  background-color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .case-study-item {
    padding: 1rem;
    overflow-x: auto;
  }
}

.case-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.case-icon {
  font-size: 1.5rem;
}

.case-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

@media (min-width: 768px) {
  .case-header h3 {
    font-size: 1.125rem;
  }
}

.case-details {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  min-width: min-content;
}

@media (max-width: 767px) {
  .case-details {
    flex-wrap: nowrap;
    gap: 0.3rem;
    min-width: 520px;
    justify-content: flex-start;
  }
}

.case-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #fefefe;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  padding: 1rem 0.75rem;
  min-width: 140px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .case-box {
    min-width: 110px;
    padding: 0.75rem 0.5rem;
    gap: 0.5rem;
  }
}

.case-box.result-box {
  background: #fff9f0;
  border-color: #d4af37;
}

.case-box.result-box.profit {
  background: #f0fdf4;
  border-color: var(--green);
}

.case-icon-svg {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .case-icon-svg {
    width: 40px;
    height: 40px;
  }
}

.case-icon-svg.money {
  width: 45px;
  height: 45px;
}

@media (max-width: 767px) {
  .case-icon-svg.money {
    width: 35px;
    height: 35px;
  }
}

.case-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
}

.case-line {
  font-size: 0.75rem;
  color: #333;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 767px) {
  .case-line {
    font-size: 0.65rem;
  }
}

.case-divider {
  display: none;
}

.case-cost-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
}

.case-label {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.3;
  text-align: center;
}

@media (max-width: 767px) {
  .case-label {
    font-size: 0.65rem;
  }
}

.case-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
}

@media (max-width: 767px) {
  .case-value {
    font-size: 1rem;
  }
}

.case-value.green {
  color: var(--green);
}

.case-value.profit-text {
  color: var(--green);
  font-size: 1.35rem;
}

@media (max-width: 767px) {
  .case-value.profit-text {
    font-size: 1.1rem;
  }
}

.case-minus {
  font-size: 2rem;
  font-weight: 700;
  color: #d32f2f;
  text-align: center;
  padding: 0 0.5rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .case-minus {
    font-size: 1.5rem;
    padding: 0 0.25rem;
  }
}

.case-equals {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  padding: 0 0.5rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .case-equals {
    font-size: 1.5rem;
    padding: 0 0.25rem;
  }
}

/* Process Flow Section */
.process-flow-section {
  padding: 4rem 0;
  background-color: #f9f9f9;
}

.process-header {
  background: linear-gradient(135deg, #c2185b 0%, #ad1457 100%);
  padding: 2rem;
  margin-bottom: 3rem;
  border-radius: 8px;
  text-align: center;
}

.process-header h2 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .process-header h2 {
    font-size: 1.75rem;
  }
}

.process-container {
  display: flex;
  gap: 0;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.process-sidebar {
  display: flex;
  flex-direction: column;
  width: 90px;
  background: linear-gradient(180deg, #c2185b 0%, #c2185b 50%, #558b2f 50%, #558b2f 100%);
}

.sidebar-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.5rem;
  padding: 2rem 0;
}

.buyback-item {
  background-color: #c2185b;
}

.disposal-item {
  background-color: #558b2f;
}

.process-steps {
  flex: 1;
  padding: 2rem;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  background: white;
  border: 2px solid #e0e0e0;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.buyback-step {
  border-left: 5px solid #c2185b;
}

.disposal-step {
  border-left: 5px solid #558b2f;
}

.step-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5f5f5;
}

.buyback-step .step-icon {
  color: #c2185b;
}

.disposal-step .step-icon {
  color: #558b2f;
}

.step-icon svg {
  width: 32px;
  height: 32px;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #333;
}

.buyback-step h3 {
  color: #c2185b;
}

.disposal-step h3 {
  color: #558b2f;
}

.step-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.phone-box {
  background: #fff;
  border: 2px solid #c2185b;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.phone-label {
  font-size: 0.85rem;
  color: #666;
}

.phone-number {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: #c2185b;
  text-decoration: none;
}

.phone-number svg {
  width: 28px;
  height: 28px;
}

.cancel-note {
  color: #d32f2f;
  font-size: 0.85rem;
}

.process-note {
  margin-top: 2rem;
  padding: 1rem;
  text-align: center;
}

.process-note p {
  font-size: 0.75rem;
  color: #d32f2f;
  margin: 0.5rem 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .process-note p {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .process-container {
    flex-direction: column;
  }
  
  .process-sidebar {
    flex-direction: row;
    width: 100%;
    height: 80px;
  }
  
  .sidebar-item {
    writing-mode: horizontal-tb;
    letter-spacing: 0.2rem;
  }
  
  .process-steps {
    padding: 1.5rem 1rem;
  }
  
  .process-step {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .step-icon {
    width: 50px;
    height: 50px;
  }
  
  .step-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .step-content h3 {
    font-size: 1.15rem;
  }
  
  .phone-number {
    font-size: 1.5rem;
  }
  
  .phone-number svg {
    width: 24px;
    height: 24px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background-color: #f5f5f5;
}

.faq-header {
  background: linear-gradient(135deg, #e8a5c0 0%, #dda3c0 100%);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.faq-header-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #333;
  margin: 0;
  line-height: 1.6;
}

.faq-header-image {
  flex-shrink: 0;
  width: 312px;
  height: 234px;
}

.faq-header-image svg,
.faq-header-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .faq-header-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .faq-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .faq-header-image {
    width: 234px;
    height: 171.6px;
  }
  
  .faq-header-content h2 {
    font-size: 1.35rem;
  }
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.faq-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-hidden {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #d81b60;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0.5rem 0 0 0;
  line-height: 1.6;
}

.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #fffbf0;
}

.faq-a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #f5d7a1;
  color: #8b6914;
  font-size: 1.5rem;
  font-weight: 700;
}

.faq-answer p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin: 0.5rem 0 0 0;
}

.faq-more {
  text-align: center;
  margin-top: 3rem;
}

.faq-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #d81b60 0%, #c2185b 100%);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(216, 27, 96, 0.3);
  transition: all 0.3s ease;
}

.faq-more-btn:hover {
  background: linear-gradient(135deg, #c2185b 0%, #ad1457 100%);
  box-shadow: 0 6px 16px rgba(216, 27, 96, 0.4);
  transform: translateY(-2px);
}

.faq-more-btn svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 767px) {
  .faq-question,
  .faq-answer {
    padding: 1rem;
    gap: 0.75rem;
  }
  
  .faq-q,
  .faq-a {
    width: 35px;
    height: 35px;
    min-width: 35px;
    font-size: 1.25rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-answer p {
    font-size: 0.9rem;
  }
  
  .faq-more-btn {
    font-size: 1rem;
    padding: 0.875rem 2rem;
  }
  
  .faq-more-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* Services Section */
.services-section {
  padding: 4rem 0;
  background-color: var(--warm-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon.primary {
  background-color: rgba(85, 139, 47, 0.1);
  color: var(--green);
}

.service-icon.accent {
  background-color: rgba(255, 167, 38, 0.1);
  color: var(--orange);
}

.service-icon svg {
  width: 2rem;
  height: 2rem;
}

.service-card h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.service-card p {
  color: #6b7280;
  line-height: 1.75;
  font-size: 1.125rem;
}

/* Features Section */
.features-section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: 1rem;
  padding: 2rem;
  transition: border-color 0.3s;
}

.feature-card:hover {
  border-color: var(--green);
}

.feature-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(85, 139, 47, 0.2);
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--green);
  margin-top: 0.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.feature-card p {
  color: #6b7280;
  line-height: 1.75;
}

.features-extra {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-extra {
    grid-template-columns: repeat(2, 1fr);
  }
}

.free-services, .why-free {
  border-radius: 1rem;
  padding: 2rem;
}

.free-services {
  background-color: rgba(85, 139, 47, 0.05);
  border: 2px solid rgba(85, 139, 47, 0.2);
}

.free-services h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1.5rem;
}

.free-services ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.free-services li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.free-services li svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--green);
  flex-shrink: 0;
}

.free-services li span {
  font-size: 1.125rem;
}

.why-free {
  background-color: rgba(255, 167, 38, 0.05);
  border: 2px solid rgba(255, 167, 38, 0.2);
}

.why-free h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 1rem;
}

.why-free p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #374151;
}
