/* ============================================
   不動産売却比較ナビ - 東急リバブル特集ページ
   style.css
   ============================================ */

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

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  color: #1e293b;
  background-color: #f8fafc;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

table {
  border-collapse: collapse;
}

.font-serif {
  font-family: 'Noto Serif JP', 'Yu Mincho', 'Hiragino Mincho ProN', serif;
}

/* ============================================
   Utility Classes
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .header-inner {
    padding: 14px;
  }
}

@media (min-width: 768px) {
  .header-inner {
    padding: 16px;
  }
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (min-width: 640px) {
  .header-logo {
    gap: 8px;
  }
}

.header-logo-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .header-logo-icon {
    width: 32px;
    height: 32px;
  }
}

.header-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-logo-text {
  font-weight: 700;
  font-size: 0.875rem;
  color: #1e293b;
}

@media (min-width: 640px) {
  .header-logo-text {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .header-logo-text {
    font-size: 1.25rem;
  }
}

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

@media (min-width: 640px) {
  .header-right {
    gap: 12px;
  }
}

@media (min-width: 768px) {
  .header-right {
    gap: 16px;
  }
}

.header-nav {
  display: none;
  gap: 24px;
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
}

.header-nav a {
  font-size: 0.875rem;
  color: #475569;
}

.header-nav a:hover {
  color: #047857;
}

/* PR badge */
.pr-badge {
  position: absolute;
  top: 60px;
  right: 12px;
  z-index: 40;
  background-color: #f97316;
  color: #fff;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (min-width: 640px) {
  .pr-badge {
    top: 70px;
    right: 14px;
    padding: 5px 14px;
    font-size: 0.8125rem;
  }
}

@media (min-width: 768px) {
  .pr-badge {
    top: 80px;
    right: 16px;
    padding: 6px 16px;
    font-size: 0.875rem;
  }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.5;
}

.btn svg {
  margin-right: 8px;
  flex-shrink: 0;
}

.btn-orange {
  background-color: #f97316;
  color: #fff;
}

.btn-orange:hover {
  background-color: #ea580c;
}

.btn-green {
  background-color: #059669;
  color: #fff;
}

.btn-green:hover {
  background-color: #047857;
}

.btn-emerald {
  background-color: #059669;
  color: #fff;
}

.btn-emerald:hover {
  background-color: #047857;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.125rem;
  font-weight: 700;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-header {
  background-color: #f97316;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .btn-header {
    padding: 8px 14px;
    font-size: 0.875rem;
    gap: 6px;
  }
}

@media (min-width: 768px) {
  .btn-header {
    padding: 8px 16px;
    gap: 8px;
  }
}

.btn-header:hover {
  background-color: #ea580c;
}

.btn-header svg {
  width: 14px;
  height: 14px;
}

@media (min-width: 640px) {
  .btn-header svg {
    width: 16px;
    height: 16px;
  }
}

/* ============================================
   Badge
   ============================================ */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid;
}

.badge-emerald {
  background-color: #ecfdf5;
  color: #047857;
  border-color: #a7f3d0;
}

.badge-white {
  background-color: #fff;
  color: #047857;
  border-color: #a7f3d0;
  font-size: 1rem;
  padding: 8px 24px;
}

/* ============================================
   Cards
   ============================================ */

.card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card-header {
  padding: 24px 24px 0;
}

.card-content {
  padding: 0 24px 24px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

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

.card-icon-orange {
  background-color: #fff7ed;
}

.card-icon-orange svg {
  color: #f97316;
}

.card-icon-emerald {
  background-color: #ecfdf5;
}

.card-icon-emerald svg {
  color: #059669;
}

.card-icon-slate {
  background-color: #f1f5f9;
}

.card-icon-slate svg {
  color: #475569;
}

/* Card with colored border */
.card-bordered-emerald {
  border: 2px solid #a7f3d0;
}

.card-bordered-green {
  border: 2px solid #bbf7d0;
}

.card-bordered-blue {
  border: 2px solid #bfdbfe;
  background-color: rgba(239, 246, 255, 0.3);
}

.card-bordered-green-light {
  border: 2px solid #bbf7d0;
  background-color: rgba(240, 253, 244, 0.3);
}

.card-bordered-purple {
  border: 2px solid #e9d5ff;
  background-color: rgba(250, 245, 255, 0.3);
}

/* Card small icon */
.card-icon-sm {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-icon-sm svg {
  width: 24px;
  height: 24px;
}

.card-icon-sm-blue {
  background-color: #dbeafe;
}

.card-icon-sm-blue svg {
  color: #2563eb;
}

.card-icon-sm-green {
  background-color: #dcfce7;
}

.card-icon-sm-green svg {
  color: #16a34a;
}

.card-icon-sm-purple {
  background-color: #f3e8ff;
}

.card-icon-sm-purple svg {
  color: #9333ea;
}

.card-icon-sm-emerald {
  background-color: #d1fae5;
}

.card-icon-sm-emerald svg {
  color: #059669;
}

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

.hero {
  padding: 64px 16px;
  background-color: #fff;
}

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

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1e293b;
  line-height: 1.3;
}

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

.hero-title .text-emerald {
  color: #047857;
}

.hero-image {
  margin-bottom: 32px;
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
}

.hero-image img {
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  width: 100%;
}

.hero-text {
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 32px;
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

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

/* ============================================
   Sections
   ============================================ */

.section {
  padding: 64px 16px;
}

.section-white {
  background-color: #fff;
}

.section-slate {
  background-color: #f8fafc;
}

.section-emerald {
  background-color: #ecfdf5;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1e293b;
  line-height: 1.4;
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: #475569;
  max-width: 768px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-image {
  max-width: 896px;
  margin: 0 auto;
  width: 100%;
}

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

.section-divider {
  width: 64px;
  height: 4px;
  background-color: #059669;
  margin: 0 auto 32px;
}

/* ============================================
   Grid Layouts
   ============================================ */

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

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

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

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

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

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

.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.step-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  margin-right: 16px;
  flex-shrink: 0;
}

.step-number-emerald {
  background-color: #047857;
}

.step-number-green {
  background-color: #16a34a;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
}

.step-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1e293b;
}

.step-text {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ============================================
   Two-column info boxes
   ============================================ */

.info-box {
  padding: 24px;
  border-radius: 8px;
}

.info-box-emerald {
  background-color: #ecfdf5;
}

.info-box-orange {
  background-color: #fff7ed;
}

.info-box-green {
  background-color: #f0fdf4;
}

.info-box-gray {
  background-color: #f9fafb;
}

.info-box-slate {
  background-color: #f8fafc;
}

.info-box-blue {
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
}

.info-box-title {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.info-box-title-emerald {
  color: #047857;
}

.info-box-title-orange {
  color: #c2410c;
}

.info-box-subtitle {
  font-size: 1.125rem;
  margin-bottom: 16px;
}

.info-box-subtitle-emerald {
  color: #059669;
}

.info-box-subtitle-orange {
  color: #ea580c;
}

/* ============================================
   List items with icons
   ============================================ */

.list-icon {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-icon-item {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
}

.list-icon-item-start {
  display: flex;
  align-items: flex-start;
  font-size: 1.125rem;
}

.list-icon-item svg,
.list-icon-item-start svg {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  flex-shrink: 0;
}

.list-icon-item-start svg {
  margin-top: 2px;
}

.icon-green {
  color: #16a34a;
}

.icon-red {
  color: #ef4444;
}

.icon-emerald {
  color: #059669;
}

.icon-orange {
  color: #ea580c;
}

.icon-blue {
  color: #2563eb;
}

/* ============================================
   Cost table section
   ============================================ */

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

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

.cost-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
}

.cost-item:last-child {
  border-bottom: none;
}

.cost-value {
  font-weight: 600;
}

.cost-highlight {
  background-color: #d1fae5;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.cost-highlight-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: #047857;
  margin-bottom: 8px;
}

.cost-highlight-text {
  font-size: 1.125rem;
  color: #059669;
}

.cost-note {
  font-size: 0.875rem;
  color: #475569;
  margin-top: 12px;
}

/* ============================================
   Warning box
   ============================================ */

.warning-box {
  background-color: #fffbeb;
  border-left: 4px solid #fbbf24;
  padding: 24px;
  margin-bottom: 24px;
}

.warning-box-inner {
  display: flex;
  align-items: flex-start;
}

.warning-box-icon {
  margin-right: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

.warning-box-icon svg {
  width: 24px;
  height: 24px;
  color: #d97706;
}

.warning-box-title {
  font-weight: 600;
  color: #92400e;
  margin-bottom: 8px;
}

.warning-box-text {
  font-size: 1.125rem;
  color: #b45309;
}

.warning-box-text strong {
  font-weight: 700;
}

/* ============================================
   Inquiry Strategy
   ============================================ */

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

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

.strategy-title {
  font-weight: 600;
  margin-bottom: 12px;
}

.strategy-title-emerald {
  color: #047857;
}

.strategy-title-orange {
  color: #c2410c;
}

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

.strategy-list-item {
  display: flex;
  align-items: flex-start;
  font-size: 0.875rem;
  color: #475569;
}

.strategy-list-item svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  flex-shrink: 0;
  margin-top: 2px;
}

.strategy-list-item strong {
  font-weight: 700;
}

/* ============================================
   Check points box
   ============================================ */

.checkpoint-title {
  font-weight: 600;
  margin-bottom: 8px;
}

.checkpoint-title-blue {
  color: #1d4ed8;
}

.checkpoint-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.checkpoint-list li {
  font-size: 0.875rem;
  color: #2563eb;
}

/* ============================================
   Mediation contract table
   ============================================ */

.mediation-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.mediation-table thead th {
  padding: 12px;
  font-weight: 600;
  text-align: center;
  color: #fff;
}

.mediation-table thead th:first-child {
  background-color: #334155;
  border: 1px solid #475569;
  text-align: left;
}

.mediation-table thead th:not(:first-child) {
  background-color: #475569;
  border: 1px solid #64748b;
  font-size: 0.75rem;
  line-height: 1.4;
}

.mediation-table tbody td {
  padding: 12px;
  border: 1px solid #cbd5e1;
  text-align: center;
  background-color: #fff;
}

.mediation-table tbody td:first-child {
  background-color: #f1f5f9;
  font-weight: 700;
  color: #475569;
  text-align: left;
}

.table-circle {
  color: #ef4444;
  font-size: 1.25rem;
  font-weight: 700;
}

.table-cross {
  color: #94a3b8;
  font-size: 1.25rem;
  font-weight: 700;
}

.table-note {
  font-size: 0.75rem;
  color: #475569;
  margin-top: 4px;
}

.table-overflow {
  overflow-x: auto;
}

.table-footnote {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 12px;
}

/* ============================================
   Tokyu Livable Section
   ============================================ */

.tokyu-section {
  padding: 64px 16px;
  background-color: #ecfdf5;
}

.tokyu-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.tokyu-logo img {
  height: 80px;
}

@media (min-width: 768px) {
  .tokyu-logo img {
    height: 120px;
  }
}

.tokyu-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1e293b;
  line-height: 1.4;
}

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

.tokyu-title .text-emerald {
  color: #047857;
}

.tokyu-card {
  background: #fff;
  border: 1px solid #a7f3d0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 24px;
}

.tokyu-card-title {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: #047857;
  margin-bottom: 16px;
}

.tokyu-card-title svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.tokyu-card-text {
  color: #475569;
  line-height: 1.7;
}

/* Recommendation box */
.recommend-box {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #a7f3d0;
}

.recommend-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #1e293b;
  margin-bottom: 24px;
}

.recommend-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.recommend-check {
  width: 24px;
  height: 24px;
  background-color: #f97316;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.recommend-check svg {
  width: 12px;
  height: 12px;
  color: #fff;
}

.recommend-item-title {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

.recommend-item-text {
  font-size: 0.875rem;
  color: #475569;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
  padding: 64px 16px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.cta-inner {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1e293b;
  line-height: 1.4;
}

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

.cta-title .text-emerald {
  color: #047857;
}

.cta-text {
  font-size: 1.125rem;
  color: #475569;
  margin-bottom: 40px;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .cta-text {
    font-size: 1.25rem;
  }
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #059669;
  color: #fff;
  padding: 24px 40px;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 32px;
}

.cta-button:hover {
  background-color: #047857;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-button svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 0.875rem;
  color: #475569;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-feature svg {
  width: 20px;
  height: 20px;
  color: #059669;
}

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

.site-footer {
  background-color: #1e293b;
  color: #fff;
  padding: 48px 16px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.footer-logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-desc {
  color: #cbd5e1;
  font-size: 1rem;
}

.footer-links {
  margin-bottom: 24px;
}

.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: #cbd5e1;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #10b981;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 32px;
  text-align: center;
  font-size: 0.875rem;
  color: #94a3b8;
}

/* ============================================
   SVG Icons coloring
   ============================================ */

.text-white svg {
  color: #fff;
}

/* ============================================
   Misc Spacing & Typography
   ============================================ */

.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mt-3 { margin-top: 12px; }
.mt-8 { margin-top: 32px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }

.text-lg { font-size: 1.125rem; }
.text-base { font-size: 1rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }

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

.leading-relaxed { line-height: 1.7; }

.text-slate-600 { color: #475569; }
.text-slate-800 { color: #1e293b; }
.text-emerald-700 { color: #047857; }
.text-emerald-600 { color: #059669; }
.text-green-600 { color: #16a34a; }
.text-green-700 { color: #047857; }
.text-orange-700 { color: #c2410c; }
.text-orange-600 { color: #ea580c; }
.text-blue-700 { color: #1d4ed8; }
.text-blue-800 { color: #1e40af; }
.text-purple-800 { color: #6b21a8; }
.text-amber-800 { color: #92400e; }

.rounded-lg { border-radius: 8px; }

/* Preparation card */
.prep-card {
  border: 2px solid #bbf7d0;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.prep-card-header {
  padding: 24px 24px 0;
}

.prep-card-icon {
  width: 48px;
  height: 48px;
  background-color: #dcfce7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.prep-card-icon svg {
  width: 24px;
  height: 24px;
  color: #16a34a;
}

.prep-card-content {
  padding: 0 24px 24px;
}

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

.prep-list-item {
  display: flex;
  align-items: flex-start;
  font-size: 1rem;
}

.prep-list-item svg {
  width: 16px;
  height: 16px;
  color: #16a34a;
  margin-right: 8px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Large company vs local cards */
.company-card {
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.company-card-emerald {
  border: 2px solid #a7f3d0;
}

.company-card-green {
  border: 2px solid #bbf7d0;
}

.company-card-header {
  padding: 24px 24px 0;
}

.company-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.company-card-icon-emerald {
  background-color: #d1fae5;
}

.company-card-icon-emerald svg {
  width: 24px;
  height: 24px;
  color: #059669;
}

.company-card-icon-green {
  background-color: #dcfce7;
}

.company-card-icon-green svg {
  width: 24px;
  height: 24px;
  color: #16a34a;
}

.company-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.company-card-content {
  padding: 0 24px 24px;
}

.merit-title {
  font-weight: 600;
  color: #16a34a;
  margin-bottom: 8px;
}

.merit-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.merit-list-item {
  display: flex;
  align-items: flex-start;
  font-size: 0.875rem;
}

.merit-list-item svg {
  width: 16px;
  height: 16px;
  color: #16a34a;
  margin-right: 8px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Responsive helpers */
@media (max-width: 767px) {
  .hide-mobile {
    display: none;
  }
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none;
  }
}
