/* ============================================
   UPROアルバイト - 共通スタイル (common.css)
   ============================================ */

/* --- Reset & Base --- */

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

html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #111111;
  background: #ffffff;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

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

ul { list-style: none; }

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

input, select, textarea { font: inherit; }

/* --- CSS Variables --- */

:root {
  --primary: #FE591C;
  --primary-fg: #ffffff;
  --bg: #ffffff;
  --fg: #111111;
  --secondary: #FFF9E6;
  --muted: #f5f5f5;
  --muted-fg: #666666;
  --accent: #EFF051;
  --border: #e5e5e5;
  --radius: 0.75rem;
}

/* --- Layout --- */

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section-padding { padding: 4rem 0; }

@media (min-width: 1024px) { .section-padding { padding: 6rem 0; } }

/* --- Section Backgrounds --- */

.bg-white { background: var(--bg); }

.bg-dark { background: var(--fg); }

.bg-secondary { background: var(--secondary); }

.bg-muted { background: var(--muted); }

/* --- Section Heading --- */

.section-label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

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

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) { .section-header { margin-bottom: 3.5rem; } }

.section-subtitle {
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted-fg);
}

.text-primary { color: var(--primary); }

.text-white { color: #ffffff; }

.text-muted { color: var(--muted-fg); }

/* --- Site Header --- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 1024px) { .header-inner { padding: 0.75rem 2rem; } }

.site-logo { display: flex; flex-direction: column; }

.site-logo-name {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--fg);
  line-height: 1.2;
}

.site-logo-tagline {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted-fg);
  letter-spacing: 0.05em;
}

/* Desktop Nav */

.desktop-nav { display: none; align-items: center; gap: 1.5rem; }

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-fg);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(102,102,102,0.4);
  transition: color 0.2s;
}

.nav-link:hover { color: var(--fg); text-decoration-color: var(--fg); }

/* Mobile Menu */

.mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: var(--fg);
}

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

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 1rem 1rem 1.5rem;
}

@media (min-width: 768px) { .mobile-menu { display: none !important; } }

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

.mobile-menu-links { display: flex; flex-direction: column; gap: 1rem; }

.mobile-nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted-fg);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* --- Buttons --- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 0.5rem;
  transition: opacity 0.2s, transform 0.2s;
}

.btn:hover { opacity: 0.9; }

.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
}

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

.btn-md { padding: 0.75rem 1.5rem; font-size: 1rem; }

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

.btn-lg:hover { transform: scale(1.02); }

.btn-round { border-radius: 9999px; }

/* --- Hero Section --- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--fg);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.7;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 6rem 1rem 4rem;
}

@media (min-width: 1024px) { .hero-content { padding: 8rem 2rem 6rem; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  margin-bottom: 1.25rem;
}

.hero-badge-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 1024px) { .hero-layout { flex-direction: row; align-items: center; gap: 3rem; } }

.hero-text { flex: 1.2; text-align: center; }

@media (min-width: 1024px) { .hero-text { text-align: left; } }

.hero-heading {
  margin-bottom: 1rem;
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: white;
}

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

@media (min-width: 1024px) { .hero-heading { font-size: 3.25rem; } }

.hero-description {
  margin-bottom: 2rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
}

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

.hero-cta { display: flex; justify-content: center; }

@media (min-width: 1024px) { .hero-cta { justify-content: flex-start; } }

.hero-badge-row { display: flex; justify-content: center; margin-bottom: 1.25rem; }

@media (min-width: 1024px) { .hero-badge-row { justify-content: flex-start; } }

/* Hero Stats */

.hero-stats {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 1024px) { .hero-stats { flex-direction: column; gap: 1rem; } }

.stat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border-radius: 1rem;
  border: 2px solid rgba(254,89,28,0.4);
  background: rgba(254,89,28,0.1);
  padding: 1.5rem 1.25rem;
  backdrop-filter: blur(12px);
  width: 100%;
}

@media (min-width: 640px) { .stat-card { padding: 1.75rem 2rem; } }

@media (min-width: 1024px) { .stat-card {
    flex-direction: row;
    gap: 1rem;
    padding: 1.75rem 2.5rem;
  } }

.stat-value {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
}

@media (min-width: 640px) { .stat-value { font-size: 1.875rem; } }

@media (min-width: 1024px) { .stat-value { font-size: 2.5rem; } }

.stat-label {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
}

@media (min-width: 640px) { .stat-label { font-size: 0.875rem; } }

@media (min-width: 1024px) { .stat-label { margin-top: 0; font-size: 1.125rem; } }

/* --- Client Scroll --- */

.client-section { overflow: hidden; padding: 3rem 0; }

@media (min-width: 1024px) { .client-section { padding: 4rem 0; } }

.client-scroll-wrap { position: relative; }

.client-fade-left {
  position: absolute; left: 0; top: 0; z-index: 10;
  width: 4rem; height: 100%;
  background: linear-gradient(to right, var(--secondary), transparent);
  pointer-events: none;
}

.client-fade-right {
  position: absolute; right: 0; top: 0; z-index: 10;
  width: 4rem; height: 100%;
  background: linear-gradient(to left, var(--secondary), transparent);
  pointer-events: none;
}

.client-track {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.client-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  padding: 0.5rem 1.5rem;
  margin: 0 0.75rem;
  border-radius: 0.5rem;
  background: white;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.client-item img {
  max-height: 3rem;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .client-item { height: 5rem; padding: 0.5rem 2rem; }
  .client-item img { max-height: 4rem; max-width: 180px; }
}

/* --- Feature Row (image + text) --- */

.feature-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) { .feature-row { flex-direction: row; gap: 4rem; } .feature-row.reverse { flex-direction: row-reverse; } }

.feature-image {
  position: relative;
  width: 100%;
  max-width: 24rem;
  flex-shrink: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--muted);
}

.feature-image.with-shadow { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1024px) { .feature-image { max-width: 28rem; } }

.feature-body { flex: 1; }

.feature-title {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

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

.feature-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted-fg);
}

.feature-list { display: flex; flex-direction: column; gap: 0.75rem; }

.feature-list-item {
  display: flex;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted-fg);
}

.feature-list-item svg { flex-shrink: 0; margin-top: 0.25rem; color: var(--primary); }

.feature-gap { display: flex; flex-direction: column; gap: 5rem; }

.tag-patent {
  display: inline-block;
  border-radius: 9999px;
  background: rgba(254,89,28,0.1);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
}

/* --- Process Section (dark bg) --- */

.process-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) { .process-steps { flex-direction: row; gap: 0; } }

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 1024px) { .process-step { flex-direction: row; flex: 1; } }

.process-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 1rem;
  background: rgba(255,255,255,0.1);
  padding: 1.5rem;
  backdrop-filter: blur(4px);
  text-align: center;
}

@media (min-width: 1024px) { .process-card { padding: 2rem; } }

.process-card-icon { margin-bottom: 1rem; color: var(--primary); }

.process-card-icon svg { width: 2.5rem; height: 2.5rem; }

.process-card-title {
  margin-bottom: 0.5rem;
  white-space: pre-line;
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.process-card-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
}

/* Arrows */

.arrow-down { color: var(--primary); }

.arrow-down svg { width: 1.5rem; height: 1.5rem; margin: 0.5rem 0; }

.arrow-right { display: none; color: var(--primary); }

.arrow-right svg { width: 1.5rem; height: 1.5rem; margin: 0 1rem; flex-shrink: 0; }

@media (min-width: 1024px) { .arrow-down { display: none; } .arrow-right { display: block; } }

/* Small arrows (for offer section) */

.arrow-down-sm svg { width: 1.25rem; height: 1.25rem; margin: 0.5rem 0; }

.arrow-right-sm svg { width: 1.25rem; height: 1.25rem; margin: 0 0.5rem; }

/* --- Comparison Table --- */

.comparison-table {
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  font-size: 0.875rem;
  border-collapse: collapse;
}

@media (min-width: 1024px) { .comparison-table { font-size: 1rem; } }

.comparison-table th,
.comparison-table td { padding: 1rem; }

.comparison-table thead th {
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

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

.comparison-table thead .col-upro {
  border-radius: 0.5rem 0.5rem 0 0;
  background: var(--primary);
  font-weight: 700;
  color: white;
}

.comparison-table tbody tr { border-top: 1px solid rgba(255,255,255,0.1); }

.comparison-table tbody th {
  text-align: left;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.comparison-table tbody td { text-align: center; color: rgba(255,255,255,0.6); }

.comparison-table tbody .col-upro {
  background: rgba(254,89,28,0.1);
  font-weight: 700;
  color: var(--primary);
}

/* --- Channel Cards --- */

.channel-grid {
  display: grid;
  gap: 1.5rem;
}

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

.channel-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: white;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s;
}

.channel-card:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }

.channel-number {
  margin-bottom: 1rem;
  font-size: 1.875rem;
  font-weight: 900;
  color: rgba(254,89,28,0.2);
}

.channel-title {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.channel-desc {
  margin-bottom: 1rem;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--muted-fg);
}

.channel-tag {
  align-self: flex-start;
  display: inline-block;
  border-radius: 9999px;
  background: rgba(254,89,28,0.1);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
}

/* --- Franchise Steps --- */

.franchise-steps {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) { .franchise-steps { flex-direction: row; gap: 0; } }

.franchise-step-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: white;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

@media (min-width: 1024px) { .franchise-step-card { padding: 2rem; } }

.franchise-step-icon {
  margin-bottom: 0.75rem;
  display: flex;
  width: 3rem; height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(254,89,28,0.1);
}

.franchise-step-icon svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }

.franchise-step-title { margin-bottom: 0.5rem; font-weight: 700; }

.franchise-step-desc { font-size: 0.875rem; line-height: 1.75; color: var(--muted-fg); }

/* Franchise Diagram */

.franchise-diagram {
  margin-bottom: 2.5rem;
  border-radius: 1rem;
  border: 2px solid #bfdbfe;
  background: #f0f7ff;
  padding: 1.5rem;
  text-align: center;
}

@media (min-width: 1024px) { .franchise-diagram { padding: 2rem; } }

.franchise-diagram-title { margin-bottom: 1rem; font-weight: 700; }

.franchise-diagram-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) { .franchise-diagram-badges { flex-direction: row; justify-content: center; gap: 1rem; } }

.badge-gray {
  display: inline-block;
  border-radius: 0.5rem;
  background: #e5e7eb;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-accent {
  display: inline-block;
  border-radius: 0.5rem;
  background: rgba(239,240,81,0.5);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.franchise-diagram-result {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-fg);
}

/* Check list */

.check-list { display: flex; flex-direction: column; gap: 0.625rem; }

.check-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
}

.check-list-item svg { flex-shrink: 0; margin-top: 2px; color: var(--primary); }

.check-list-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 1024px) { .check-list-center { flex-direction: row; justify-content: center; gap: 1.5rem; } }

/* --- Offer Section --- */

.offer-card {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: white;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.offer-card + .offer-card { margin-top: 2rem; }

.offer-header-dark {
  background: var(--fg);
  padding: 1rem 1.5rem;
}

@media (min-width: 1024px) { .offer-header-dark { padding: 1rem 2rem; } }

.offer-header-primary {
  background: var(--primary);
  padding: 1rem 1.5rem;
}

@media (min-width: 1024px) { .offer-header-primary { padding: 1rem 2rem; } }

.offer-header-title {
  font-size: 1.125rem;
  font-weight: 700;
}

.offer-body { padding: 1.5rem; }

@media (min-width: 1024px) { .offer-body { padding: 2rem; } }

.offer-desc {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted-fg);
}

.offer-desc strong { color: var(--fg); }

.tag-light {
  display: inline-block;
  margin-left: 0.5rem;
  border-radius: 0.25rem;
  background: rgba(255,255,255,0.2);
  padding: 0.125rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: white;
}

/* Matching diagram */

.matching-diagram {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--muted);
  padding: 1.5rem;
}

@media (min-width: 1024px) { .matching-diagram { padding: 2rem; } }

.matching-diagram-title {
  margin-bottom: 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
}

.matching-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) { .matching-flow { flex-direction: row; justify-content: center; gap: 2rem; } }

.matching-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.matching-avatar {
  display: flex;
  width: 3.5rem; height: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
  font-size: 1.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.matching-label { font-size: 0.75rem; font-weight: 700; }

.matching-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  border-radius: 0.75rem;
  background: rgba(254,89,28,0.1);
  padding: 1rem 1.5rem;
}

.matching-center-brand { font-size: 0.875rem; font-weight: 900; letter-spacing: 0.05em; color: var(--primary); }

.matching-center-desc { font-size: 11px; line-height: 1.4; color: var(--muted-fg); text-align: center; }

.store-group { display: flex; gap: 0.75rem; }

.store-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  border-radius: 0.5rem;
  border: 2px solid #00b894;
  background: rgba(0,184,148,0.1);
  padding: 0.75rem 1rem;
}

.store-item-emoji { font-size: 1.125rem; }

.store-item-name { font-size: 0.75rem; font-weight: 700; }

.matching-legend {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.matching-legend-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #00b894;
}

.matching-legend-text { font-size: 0.75rem; color: var(--muted-fg); }

/* Direct offer steps */

.direct-steps {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) { .direct-steps { flex-direction: row; gap: 0; } }

.direct-step-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0.75rem;
  background: var(--muted);
  padding: 1.25rem;
}

.direct-step-title { margin-bottom: 0.25rem; font-size: 0.875rem; font-weight: 700; }

.direct-step-desc { text-align: center; font-size: 0.75rem; line-height: 1.75; color: var(--muted-fg); }

/* Fair box */

.fair-box {
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  border-left: 4px solid var(--primary);
  background: var(--secondary);
  padding: 1.25rem;
}

.fair-box-title { margin-bottom: 0.5rem; font-size: 0.875rem; font-weight: 700; }

.fair-box-desc { font-size: 0.875rem; line-height: 1.75; color: var(--muted-fg); }

.check-list-row { display: flex; flex-direction: column; gap: 0.625rem; }

@media (min-width: 1024px) { .check-list-row { flex-direction: row; gap: 1.5rem; } }

/* --- Flow / Timeline --- */

.timeline { display: flex; flex-direction: column; gap: 1.5rem; }

@media (min-width: 1024px) { .timeline { gap: 0; } }

.timeline-item { position: relative; display: flex; gap: 1.5rem; }

@media (min-width: 1024px) { .timeline-item { gap: 2rem; } }

.timeline-marker { display: flex; flex-direction: column; align-items: center; }

.timeline-number {
  display: flex;
  width: 3rem; height: 3rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  font-size: 1.125rem;
  font-weight: 900;
  color: white;
}

.timeline-line {
  margin: 0.25rem 0;
  width: 2px;
  flex: 1;
  background: rgba(255,255,255,0.1);
}

.timeline-body { padding-bottom: 2rem; }

.timeline-body:last-child { padding-bottom: 0; }

.timeline-step-label {
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.timeline-step-title {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
}

.timeline-step-desc {
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
}

/* --- News --- */

.news-list { max-width: 56rem; margin: 0 auto; }

.news-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

@media (min-width: 1024px) { .news-item { flex-direction: row; align-items: baseline; gap: 2rem; } }

.news-item:first-child { border-top: 1px solid var(--border); }

.news-date {
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-fg);
}

.news-link {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.75;
  transition: color 0.2s;
}

.news-link:hover { color: var(--primary); }

.news-link svg { flex-shrink: 0; margin-top: 2px; opacity: 0; transition: opacity 0.2s; }

.news-link:hover svg { opacity: 1; }

.news-text { font-size: 0.875rem; line-height: 1.75; }

/* --- Contact Form --- */

.contact-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

.form-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: white;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

@media (min-width: 1024px) { .form-card { padding: 2rem; } }

.form-card-title { margin-bottom: 1.5rem; font-size: 1.125rem; font-weight: 700; }

.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.form-required {
  border-radius: 0.25rem;
  background: var(--primary);
  padding: 0.125rem 0.375rem;
  font-size: 10px;
  font-weight: 700;
  color: white;
}

.form-input {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: white;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder { color: var(--muted-fg); }

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(254,89,28,0.15);
}

.form-input + .form-input { margin-top: 0.5rem; }

textarea.form-input { resize: vertical; }

.form-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.form-checkbox {
  margin-top: 0.25rem;
  width: 1rem; height: 1rem;
  border-radius: 0.25rem;
  accent-color: var(--primary);
}

.form-checkbox-label { font-size: 0.875rem; color: var(--muted-fg); }

.form-checkbox-label a { color: var(--primary); text-decoration: underline; }

.btn-submit {
  width: 100%;
  border-radius: 9999px;
  background: var(--primary);
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-submit:hover { opacity: 0.9; }

.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.email-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: white;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.email-card-title { margin-bottom: 1rem; font-size: 1.125rem; font-weight: 700; }

.email-row { display: flex; align-items: center; gap: 0.75rem; }

.email-row svg { color: var(--primary); }

.email-address { font-size: 0.875rem; font-weight: 500; color: var(--primary); text-decoration: underline; }

.email-hours { margin-top: 0.75rem; font-size: 0.875rem; color: var(--muted-fg); }

.email-hours strong { color: var(--fg); }

/* --- Footer --- */

.site-footer { background: var(--fg); color: white; }

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1rem;
}

@media (min-width: 1024px) { .footer-inner { padding: 4rem 2rem; } }

.footer-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1024px) { .footer-layout { flex-direction: row; gap: 4rem; } }

.footer-brand { flex: 1; }

.footer-logo { margin-bottom: 1.5rem; font-size: 1.875rem; font-weight: 900; letter-spacing: -0.025em; }

.footer-company-name { margin-bottom: 0.5rem; font-weight: 700; }

.footer-company-desc {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
}

.footer-info { display: flex; flex-direction: column; gap: 0.375rem; font-size: 0.875rem; color: rgba(255,255,255,0.7); }

.footer-info-label { font-weight: 700; color: rgba(255,255,255,0.9); }

.footer-nav {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .footer-nav {
    flex-direction: row;
    gap: 3rem;
  }
}

.footer-nav-list { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; }

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

.footer-nav-link:hover { color: white; }

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

.footer-copyright { font-size: 0.875rem; color: rgba(255,255,255,0.5); }

/* --- FAQ Page --- */

/* --- Utility --- */

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

.hidden { display: none; }

.mb-8 { margin-bottom: 2rem; }