/* --- Apple-inspired Modern Design System --- */
:root {
  /* Color Palette - Refining tones around the brand color */
  --brand: #E10080; /* Vibrant accent */
  --brand-light: #fce5f3; /* Light tint for highlights */
  --ink: #1c1c1e; /* Apple's near-black */
  --ink-secondary: #6e6e73; /* Secondary text */
  --bg: #ffffff; /* Pure white background */
  --muted: #f5f5f7; /* Off-white for section separation */
  --border: #d2d2d7; /* Subtle borders */
  
  /* Typography */
  --font-sans: "SF Pro JP", "Hiragino Kaku Gothic ProN", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  
  /* Layout & Components */
  --radius-lg: 28px; /* Large radius for prominent cards */
  --radius-md: 18px; /* Medium radius for standard components */
  --radius-sm: 12px; /* Small radius for inputs/buttons */
  --shadow: 0 20px 48px rgba(0, 0, 0, 0.08); /* Softer, deeper shadow */
  --max-width: 1100px;
  --header-height: 60px;
}

/* --- Base & Reset --- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  margin: 0;
  padding: 0;
  padding-top: var(--header-height);
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.7;
  font-size: 1rem; /* 16px */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Typography & Layout --- */
.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* Increased vertical spacing for an airy feel */
section { padding: 120px 0; } 

h1, h2, h3, h4 { font-weight: 600; /* Apple uses 600 for Semibold */ line-height: 1.2; letter-spacing: -0.01em; margin: 0; color: var(--ink); }

/* Typographic Scale */
h1 { font-size: 3.5rem; /* 56px */ }
h2 { font-size: 2.5rem; /* 40px */ text-align: center; margin-bottom: 80px; }
h3 { font-size: 1.75rem; /* 28px */ margin-bottom: 20px; }
h4 { font-size: 1.25rem; /* 20px */ }

p { margin: 0 0 20px; color: var(--ink-secondary); }
.lead { font-size: 1.25rem; /* 20px */ color: var(--ink); font-weight: 400; margin-bottom: 48px; max-width: 780px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.text-center { text-align: center; }

/* --- Header & Navigation (Minimalist & Glassmorphism) --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* Translucent background (Apple's "glassmorphism") */
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

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

.logo a { text-decoration: none; }
.logo-text {
  color: var(--ink); /* Using ink color for sophistication */
  font-size: 1.25rem; /* 20px */
  font-weight: 600;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.main-nav a {
  color: var(--ink-secondary);
  text-decoration: none;
  font-size: 0.875rem; /* 14px */
  font-weight: 400;
  transition: color 0.2s ease;
}
.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
}

/* Navigation CTA Button */
.nav-cta { margin-left: 8px; }
.reservation-btn {
  display: inline-flex;
  background: var(--brand);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem; /* 14px */
  transition: opacity 0.3s ease;
}
.reservation-btn:hover {
  opacity: 0.9;
}

/* Hamburger Menu (Mobile) */
.hamburger-menu {
  display: none;
  width: 28px;
  height: 20px;
  position: relative;
  cursor: pointer;
}
.hamburger-menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.hamburger-menu span:nth-child(1) { top: 0; }
.hamburger-menu span:nth-child(2) { top: 9px; }
.hamburger-menu span:nth-child(3) { top: 18px; }
.hamburger-menu.open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.hamburger-menu.open span:nth-child(2) { opacity: 0; }
.hamburger-menu.open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* --- Components --- */

/* Buttons */
.btn { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  padding: 16px 36px; 
  border-radius: var(--radius-sm); 
  font-weight: 600; 
  border: none; 
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1.0); 
  font-size: 1rem; /* 16px */
  cursor: pointer; 
  text-decoration: none;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(225, 0, 128, 0.2); }

.btn-secondary { background: var(--muted); color: var(--ink); }
.btn-secondary:hover { background: #e5e5e9; }

/* ナビゲーション内のボタンの色を確実に白にする */
.main-nav .reservation-btn {
    color: #fff;
}

/* Cards */
.card { 
  background: var(--bg); 
  border-radius: var(--radius-lg); 
  box-shadow: var(--shadow); 
  padding: 48px; 
  border: 1px solid var(--border);
}

/* Hero Section */
.hero { 
  padding: 100px 0; 
  background: var(--bg);
}

.hero-layout {
    display: flex;
    align-items: center;
    gap: 64px;
}

.hero-content {
    flex: 1;
    max-width: 600px; 
}

.hero-image-container {
    flex: 1;
    text-align: center;
    max-width: 50%; 
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg); 
    box-shadow: var(--shadow); 
    display: block;
}

.hero .lead {
    margin-left: 0;
    margin-right: 0;
}
.hero .badge { 
  display: inline-block; 
  font-size: 0.875rem; /* 14px */
  font-weight: 600; 
  color: var(--brand); 
  background: var(--brand-light);
  padding: 8px 20px; 
  border-radius: 999px; 
  margin-bottom: 24px; 
}
.hero h1 {
    margin-bottom: 32px;
}
.cta-row { 
  display: flex; 
  align-items: center; 
  justify-content: flex-start;
  gap: 24px; 
  flex-wrap: wrap; 
}

/* Search Simulation Section */
#search-simulation {
    background-color: var(--muted);
}
.search-form {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 48px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.search-input {
    flex-grow: 1;
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 1rem;
}
.search-button {
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    background-color: var(--ink);
    color: white;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}
.search-note {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--ink);
}


/* Summary Section (Service Overview) */
#summary {
    background-color: var(--bg);
    padding: 120px 0;
}

#summary .card {
    border: none;
    padding: 64px;
    box-shadow: none;
    background-color: var(--muted); /* Using muted background for the content container */
    border-radius: var(--radius-lg);
}

#summary h2 {
    font-size: 2.5rem;
    margin-bottom: 48px;
}

#summary .section-lead {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 64px;
    font-size: 1.125rem;
    color: var(--ink-secondary);
}

.service-features {
    max-width: 900px;
    margin: 0 auto;
}

.service-features h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 64px;
}

.feature-list {
    list-style-type: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.feature-number {
    background-color: var(--brand);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.5rem;
    margin: 0 0 12px;
}

.feature-content p {
    margin: 0;
}


/* Problems Section */
#problems {
    background-color: var(--muted);
}
.problems-card { 
  max-width: 720px; 
  margin: 0 auto 48px; 
  padding: 64px; 
  background-color: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.problems-card ul { padding: 0; margin: 0; list-style: none; display: grid; gap: 24px; }
.problems-card li { padding-left: 40px; position: relative; font-size: 1.125rem; color: var(--ink); }
.problems-card li::before { 
    content: '✕'; /* Using a cross for problems */
    color: #FF453A; /* Apple's System Red */
    font-weight: bold;
    position: absolute; 
    left: 0; 
    font-size: 1.5rem;
}
.solution { font-size: 1.75rem; /* 28px */ font-weight: 600; color: var(--ink); text-align: center; }

/* Strengths Section */
#strengths {
    background-color: var(--bg);
}
.strengths-grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 32px; 
}
.strength-card {
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: none;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.strength-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.strength-card h3 { 
  color: var(--brand); 
  font-size: 1.5rem; /* 24px */
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.strength-card p { margin: 0; font-size: 1rem; }

/* KPIs Section */
#kpis {
    padding-top: 0; /* Connects visually with the strengths section */
    background-color: var(--bg);
}
.kpis-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 32px; 
  text-align: center; 
}
.kpi {
    background-color: var(--muted);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: none;
    border: none;
}
.kpi strong { font-size: 3rem; /* 48px */ display: block; color: var(--brand); font-weight: 700; }
.kpi span { font-size: 1rem; color: var(--ink-secondary); }

/* Merits Section */
#merits {
    background-color: var(--muted);
}
#merits .card {
    background-color: var(--bg);
    padding: 64px;
}
.merits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.merit-col h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 32px;
}
.merit-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; }
.merit-col li { position: relative; padding-left: 36px; font-size: 1rem; color: var(--ink); }
.merit-col li::before { position: absolute; left: 0; font-weight: 700; font-size: 1.25rem; }
/* Using Apple System Colors for Pros/Cons */
.pros li::before { content: '✓'; color: #30D158; /* System Green */ }
.cons li::before { content: '✕'; color: #FF453A; /* System Red */ }
.merit-note { font-size: 0.875rem; text-align: center; margin-top: 48px; color: var(--ink-secondary); }

/* Pricing Section */
#plans {
    background-color: var(--bg);
}
.pricing-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 32px; 
  align-items: stretch;
}
.plan { 
  display: flex; 
  flex-direction: column; 
  text-align: center; 
  padding: 40px 32px;
  border-radius: var(--radius-md);
  box-shadow: none;
  border: 1px solid var(--border);
  position: relative; /* 追加 */
}

.plan h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}
.plan .audience { font-size: 1rem; color: var(--ink-secondary); margin-bottom: 32px; }
.plan .price { font-size: 2.5rem; font-weight: 700; margin: 16px 0; color: var(--ink); 
white-space: nowrap; 
}
.plan .price span { font-size: 1rem; font-weight: normal; color: var(--ink-secondary); }

.plan ul { 
  list-style: none; 
  padding: 0; 
  margin: 48px 0; 
  text-align: left; 
  font-size: 1rem; 
  flex-grow: 1; /* Pushes button to the bottom */
  display: grid; 
  gap: 16px; 
}
.plan li { position: relative; padding-left: 28px; }
.plan li::before { content: '・'; position: absolute; left: 0; color: var(--brand); font-weight: bold; }

/* Highlighted Plan */
.plan.standard { 
  border: 2px solid var(--brand); 
  box-shadow: 0 0 0 8px var(--brand-light);
}

/* 人気バッジのスタイル追加 */
.popular-badge {
    position: absolute;
    top: -15px; /* カードの上辺から少し上に配置 */
    left: 50%;
    transform: translateX(-50%); /* 中央揃え */
    background-color: var(--brand);
    color: white;
    padding: 8px 24px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 999px; /* 角丸 */
    box-shadow: 0 4px 12px rgba(225, 0, 128, 0.2);
    white-space: nowrap;
}

.plan-note {
    font-size: 1rem;
    color: var(--ink-secondary);
    margin-top: 48px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Support Section */
#support {
    background-color: var(--muted);
}
#support .card {
    background: none;
    box-shadow: none;
    border: none;
    padding: 0;
}
.support-list { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 32px; 
  list-style: none; 
  padding: 0; 
}
.support-list li { 
  background: var(--bg); 
  padding: 40px; 
  border-radius: var(--radius-md); 
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.support-list strong { 
  display: block;
  color: var(--brand); 
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.support-list p {
    margin: 0;
}

.option-label {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--ink-secondary);
    margin-left: 8px;
}

/* Flow Section */
#flow {
    background-color: var(--bg);
}
.flow-steps { 
  counter-reset: step-counter; 
  list-style: none; 
  padding: 0; 
  max-width: 900px; 
  margin: 0 auto; 
  display: grid; 
  gap: 32px; 
}
.flow-steps li { 
  background: var(--bg); 
  padding: 32px 40px; 
  border-radius: var(--radius-md); 
  display: flex; 
  align-items: center; 
  gap: 32px; 
  border: 1px solid var(--border);
}
.flow-steps li::before { 
  counter-increment: step-counter; 
  content: counter(step-counter); 
  background: var(--brand); 
  color: #fff; 
  font-weight: bold; 
  border-radius: 50%; 
  width: 48px; 
  height: 48px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0; 
  font-size: 1.25rem; 
}
.flow-steps strong {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 8px;
}
.flow-steps p {
    margin: 0;
}

/* FAQ Section */
#faq {
    background-color: var(--muted);
}
.faq-container { max-width: 860px; margin: 0 auto; display: grid; gap: 20px; }
details { 
  background: var(--bg); 
  border: 1px solid var(--border); 
  border-radius: var(--radius-md); 
  padding: 24px 32px; 
}
summary { 
  cursor: pointer; 
  font-weight: 600; 
  display: flex; 
  align-items: center; 
  list-style: none; 
  font-size: 1.125rem;
}
summary::before { 
  content: 'Q.'; 
  color: var(--brand); 
  font-size: 1.5rem; 
  font-weight: 700; 
  margin-right: 16px; 
}
summary::-webkit-details-marker { display: none; }
details[open] summary {
    margin-bottom: 16px;
}
details p {
    padding-left: 48px; /* Align answer with the question text */
}

/* Application Form Section */
#apply {
    background-color: var(--bg);
}
.form-container { max-width: 860px; margin: 0 auto; }
#apply .card {
    padding: 80px 64px;
    border-radius: var(--radius-lg);
}
#apply h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

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

label { font-weight: 600; font-size: 1rem; display: block; margin-bottom: 12px; color: var(--ink); }
input, select, textarea { 
  width: 100%; 
  padding: 16px 20px; 
  border: 1px solid var(--border); 
  border-radius: var(--radius-sm); 
  background: var(--bg); 
  font: inherit; 
  font-size: 1rem; 
  transition: border-color 0.2s, box-shadow 0.2s; 
}
input:focus, select:focus, textarea:focus { 
  border-color: var(--brand); 
  box-shadow: 0 0 0 4px var(--brand-light); 
  outline: none; 
}
textarea {
    min-height: 150px;
    resize: vertical;
}
.form-note { font-size: 0.875rem; color: var(--ink-secondary); text-align: center; margin-top: 24px; }

/* * * ▼▼▼▼▼ ここからフッターの修正 ▼▼▼▼▼ 
 * */

.partner-footer {
  background: #1c1c1e;
  padding: 80px 0 40px;
  /* 変更: 基本の文字色を明るいグレーに */
  color: #f5f5f7; 
}

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

.footer-column h3,
.footer-column h4 {
  font-size: 1.125rem;
  /* 変更: 見出しを純粋な白に */
  color: #ffffff;
  margin-bottom: 24px;
}

.footer-column p {
  margin: 0 0 16px;
  font-size: 0.875rem;
  /* 変更: 本文の文字色を少し明るく */
  color: #d2d2d7; 
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.footer-link-list a {
  /* 変更: リンク色を白に */
  color: #ffffff;
  text-decoration: none;
  /* 変更: ホバーエフェクトを色から透明度に */
  transition: opacity 0.3s ease;
  font-size: 0.875rem;
}

.footer-link-list a:hover {
  /* 変更: ホバー時に少し透明にする */
  opacity: 0.75;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  /* 変更: お問い合わせ項目の色を調整 */
  color: #d2d2d7;
}

.footer-contact-item a {
  /* 変更: お問い合わせリンクの色を白に */
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.footer-contact-item a:hover {
  opacity: 0.75;
}

.footer-contact-item i {
  /* 変更なしでも良いが、明示的に指定 */
  color: #d2d2d7;
}

.footer-cta {
  display: inline-flex;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  background: #424245;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  margin-top: 8px; /* 少し上に余白を追加 */
}

.footer-cta:hover {
  background: #535357;
}

.footer-social-links {
  display: flex;
  gap: 24px;
  font-size: 1.5rem;
}

.footer-social-links a {
  color: #ffffff;
  transition: opacity 0.3s ease;
}

.footer-social-links a:hover {
  opacity: 0.8;
}

.footer-bottom {
  margin-top: 80px;
  border-top: 1px solid #424245;
  padding-top: 40px;
  text-align: center;
  font-size: 0.875rem;
  /* 変更: コピーライトなど重要度の低い情報を少し暗めのグレーに */
  color: #a0a0a5;
}

.footer-note {
  font-size: 0.75rem;
  /* 上記 .footer-bottom の色を継承 */
}
/* * * ▲▲▲▲▲ ここまでフッターの修正 ▲▲▲▲▲
 * */

/* Back to top */
.back-to-top {
  position: fixed;
  right: 32px;
  bottom: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 15px 30px rgba(225, 0, 128, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top a {
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
}

/* --- Responsive Design --- */

@media (max-width: 1100px) {
  .wrap, .header-container { padding: 0 32px; }
}

@media (max-width: 1024px) {
  .hero-layout {
      flex-direction: column-reverse; 
      text-align: center;
      gap: 48px;
  }
  
  .hero-content {
      max-width: 100%;
  }

  .hero-image-container {
      max-width: 100%;
      width: 100%;
  }
  
  .hero-image {
      width: 100%;
      max-width: 450px;
      margin: 0 auto;
  }

  .cta-row {
      justify-content: center; 
  }

  .hero .lead {
      margin-left: auto;
      margin-right: auto;
  }
  /* Mobile Navigation Activation */
  .hamburger-menu { display: block; }
  
  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999; /* 他の要素より手前に表示させる */
    height: calc(100vh - var(--header-height)); /* 高さを画面いっぱいに確保 */
    background: var(--bg);
    padding: 48px 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    overflow-y: auto;
  }
  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .main-nav a {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--ink);
  }
  .nav-cta { width: 100%; margin-left: 0; margin-top: 24px; }
  .reservation-btn { width: 100%; justify-content: center; padding: 16px; font-size: 1.125rem; }

  /* Layout Adjustments */
  .strengths-grid, .kpis-grid, .pricing-grid, .merits-grid, .support-list {
      grid-template-columns: 1fr;
  }

  .footer-columns {
      grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  section { padding: 96px 0; }
  h1 { font-size: 2.75rem; /* 44px */ }
  h2 { font-size: 2rem; /* 32px */ margin-bottom: 64px; }
  
  .card { padding: 48px; }
  #summary .card { padding: 48px !important; }
  
  .feature-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 24px;
  }
  .feature-content h4, .feature-content p {
      text-align: center;
  }

  .form-row {
      grid-template-columns: 1fr;
      gap: 32px;
  }
  
  #apply .card {
      padding: 64px 40px;
  }
  
  .footer-columns {
      grid-template-columns: 1fr;
      gap: 64px;
  }
}

@media (max-width: 520px) {
  .wrap, .header-container { padding: 0 20px; }
  h1 { font-size: 2.25rem; /* 36px */ }
  
  .hero { padding: 120px 0 96px; }
  .cta-row { flex-direction: column; gap: 20px; width: 100%; }
  .btn { width: 100%; }
  
  .card, #summary .card, .problems-card, #apply .card { padding: 40px 24px !important; }
  
  .search-form {
      flex-direction: column;
      gap: 16px;
  }
  
  .flow-steps li {
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
  }
}