/* ============================================
   おやサポルーム LP — Warm Redesign
   ============================================ */

/* --- Custom Properties (Brand Guideline Compliant) --- */
:root {
  /* Brand Guideline Colors */
  --logo-green: #99CC99;
  --sage: #8FB09A;
  --sage-dark: #6E9480;
  --sage-light: #D4E4D9;
  --coral: #D9A89E;
  --coral-light: #F0DDD8;
  --beige: #F5EDE3;
  --cream: #FAF7F3;
  --charcoal: #2D2D2D;
  --charcoal-light: #5A5A5A;
  --white: #FFFFFF;
  /* Derived from guideline palette */
  --border: #E0D8CE;

  --ff-heading: "Noto Serif JP", serif;
  --ff-body: "Zen Kaku Gothic New", sans-serif;
  --ff-accent: "Cormorant Garamond", serif;

  --sp-xs: 4px;
  --sp-sm: 8px;
  --sp-md: 16px;
  --sp-lg: 32px;
  --sp-xl: 64px;
  --sp-2xl: 120px;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 24px;

  --shadow-soft: 0 4px 24px rgba(45, 45, 45, 0.06);
  --shadow-hover: 0 8px 40px rgba(45, 45, 45, 0.1);

  --topbar-h: 64px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-body);
  color: var(--charcoal);
  background: var(--beige);
  line-height: 1.9;
  overflow-x: hidden;
  font-weight: 400;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- Container --- */
.oya-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Scroll-Driven Animation --- */
@supports (animation-timeline: view()) {
  .oya-reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: oyaFadeIn linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 35%;
  }

  @keyframes oyaFadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Fallback for browsers without scroll-driven animations */
@supports not (animation-timeline: view()) {
  .oya-reveal {
    opacity: 1;
    transform: none;
  }
}

/* --- Buttons --- */
.oya-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 1.05rem;
  padding: 14px 32px;
  border-radius: var(--r-md);
  transition: background 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.oya-action--fill {
  background: var(--logo-green);
  color: var(--white);
}
.oya-action--fill:hover {
  background: var(--sage);
  box-shadow: var(--shadow-soft);
}

.oya-action--ghost {
  background: transparent;
  color: var(--sage-dark);
  border: 1.5px solid var(--logo-green);
}
.oya-action--ghost:hover {
  background: var(--sage-light);
}

.oya-action--lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.oya-action--full {
  width: 100%;
}

/* ============================================
   Topbar (Navigation)
   ============================================ */
.oya-topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--topbar-h);
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s;
}

.oya-topbar.is-scrolled {
  background: rgba(245, 237, 227, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.oya-topbar-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.oya-topbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--sage-dark);
  transition: opacity 0.3s;
}
.oya-topbar-logo:hover { opacity: 0.7; }

.oya-topbar-logo-img {
  height: 36px;
  width: auto;
}

/* Desktop nav links */
.oya-topbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.oya-topbar-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal-light);
  transition: color 0.3s;
}
.oya-topbar-links a:hover { color: var(--sage-dark); }
.oya-topbar-links a.is-active { color: var(--sage-dark); font-weight: 700; }

.oya-topbar-cta {
  background: var(--logo-green) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: var(--r-md);
  font-weight: 600 !important;
  transition: background 0.3s !important;
}
.oya-topbar-cta:hover { background: var(--sage) !important; }

/* Hamburger */
.oya-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.oya-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 2px;
}

.oya-hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.oya-hamburger.is-active span:nth-child(2) { opacity: 0; }
.oya-hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile overlay */
.oya-overlay {
  position: fixed;
  inset: 0;
  background: rgba(245, 237, 227, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.oya-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.oya-overlay-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.oya-overlay-nav a {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  transition: color 0.3s;
}
.oya-overlay-nav a:hover { color: var(--sage-dark); }

/* ============================================
   Hero (Opener)
   ============================================ */
.oya-opener {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--topbar-h) + 40px) 24px 80px;
  background: var(--beige);
}

/* Organic shape decoration */
.oya-opener-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}
.oya-opener-shape--1 {
  width: 400px;
  height: 400px;
  background: var(--sage-light);
  top: 10%;
  right: -10%;
}
.oya-opener-shape--2 {
  width: 300px;
  height: 300px;
  background: var(--coral-light);
  bottom: 15%;
  left: -8%;
}

.oya-opener-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
}

.oya-opener-label {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--sage-dark);
  margin-bottom: 20px;
}

.oya-opener-title {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  color: var(--charcoal);
}

.oya-opener-accent {
  color: var(--sage);
  position: relative;
}
.oya-opener-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--coral-light);
  z-index: -1;
  border-radius: 4px;
}

.oya-opener-sub {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--charcoal-light);
  line-height: 2;
  margin-bottom: 40px;
}

.oya-opener-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Wave divider */
.oya-wave {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -1px;
}
.oya-wave path { fill: var(--white); }
.oya-wave--beige path { fill: var(--beige); }
.oya-wave--cream path { fill: var(--cream); }

/* ============================================
   Section Common — Block
   ============================================ */
.oya-block {
  padding: 100px 0;
}

.oya-block--white { background: var(--white); }
.oya-block--cream { background: var(--cream); }
.oya-block--beige { background: var(--beige); }
.oya-block--sage { background: var(--sage); color: var(--white); }

.oya-heading {
  margin-bottom: 56px;
}

.oya-heading-label {
  font-family: var(--ff-accent);
  font-size: 1rem;
  font-weight: 400;
  color: var(--logo-green);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}

.oya-heading-title {
  font-family: var(--ff-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.oya-heading-sub {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  margin-top: 8px;
  line-height: 1.8;
}

/* ============================================
   Pains (課題) — Zigzag cards
   ============================================ */
.oya-pains-lead {
  max-width: 860px;
  margin-bottom: 48px;
  font-size: 1.05rem;
  color: var(--charcoal-light);
  line-height: 2;
}

.oya-pains-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.oya-pains-list .oya-tile {
  max-width: 620px;
}

.oya-pains-list .oya-tile:nth-child(even) {
  margin-left: 0;
}

.oya-tile {
  background: var(--white);
  border-left: 3px solid var(--coral);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 28px 32px;
  transition: box-shadow 0.3s;
}
.oya-tile:hover {
  box-shadow: var(--shadow-soft);
}

.oya-tile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--coral-light);
  border-radius: var(--r-sm);
  margin-bottom: 12px;
  color: var(--coral);
}
.oya-tile-icon svg { width: 20px; height: 20px; }

.oya-tile h3 {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.oya-tile p {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.9;
}

/* ============================================
   Intro (サービス紹介) — Vertical steps
   ============================================ */
.oya-intro-lead {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--charcoal-light);
  line-height: 2;
}

.oya-intro-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

/* Vertical dotted connector */
.oya-intro-steps::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 48px;
  bottom: 48px;
  width: 2px;
  border-left: 2px dashed var(--border);
}

.oya-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  position: relative;
}

.oya-step-num {
  font-family: var(--ff-accent);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--logo-green);
  line-height: 1;
  min-width: 72px;
  text-align: center;
  position: relative;
  z-index: 1;
  background: var(--cream);
  padding: 8px 0;
}

.oya-step-body h3 {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.oya-step-body p {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.9;
}

/* ============================================
   Strengths (特徴) — Alternating layout
   ============================================ */
.oya-strengths-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.oya-strength {
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 36px 40px;
  border-radius: var(--r-lg);
  transition: box-shadow 0.3s;
}

.oya-strength:nth-child(1) { background: var(--cream); }
.oya-strength:nth-child(2) { background: var(--sage-light); }
.oya-strength:nth-child(3) { background: var(--coral-light); }
.oya-strength:nth-child(4) { background: var(--cream); }

.oya-strength:hover {
  box-shadow: var(--shadow-soft);
}

.oya-strength-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  background: var(--white);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--logo-green);
}
.oya-strength-icon svg { width: 32px; height: 32px; }

.oya-strength-text h3 {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.oya-strength-text p {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.9;
}

/* ============================================
   Counselor (カウンセラー紹介)
   ============================================ */
.oya-counselor {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 40px;
}

.oya-counselor-photo {
  flex-shrink: 0;
  width: 240px;
}

.oya-counselor-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
}

.oya-counselor-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 8px;
}

.oya-counselor-name {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}

.oya-counselor-name-en {
  display: block;
  font-family: var(--ff-accent);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--charcoal-light);
  margin-top: 4px;
}

.oya-counselor-bio {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 2;
}

.oya-counselor-team {
  max-width: 800px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 2;
}

@media (max-width: 768px) {
  .oya-counselor {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .oya-counselor-photo {
    width: 180px;
  }
}

/* ============================================
   Steps (利用の流れ) — Horizontal cards
   ============================================ */
.oya-steps-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  max-width: 640px;
  margin: 0 auto;
}

.oya-flow-card {
  flex: 1;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
  transition: box-shadow 0.3s;
}
.oya-flow-card:hover { box-shadow: var(--shadow-soft); }

.oya-flow-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--logo-green);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--ff-accent);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.oya-flow-role {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: var(--r-sm);
  display: inline-block;
  margin-bottom: 10px;
}
.oya-flow-role--juku     { color: #5B7E3D; background: #E8F0DE; }
.oya-flow-role--parent   { color: #B07828; background: #FBF0DC; }
.oya-flow-role--counselor{ color: #7B5EA7; background: #EDE6F5; }
.oya-flow-role--office   { color: var(--sage-dark); background: var(--sage-light); }

.oya-flow-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.oya-flow-card p {
  font-size: 0.92rem;
  color: var(--charcoal-light);
  line-height: 1.8;
}

/* Arrow between cards */
.oya-flow-arrow {
  display: flex;
  justify-content: center;
  color: var(--border);
  font-size: 1.2rem;
  flex-shrink: 0;
  transform: rotate(90deg);
}

/* ============================================
   Cost (料金) — Card style
   ============================================ */
.oya-cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 840px;
  margin: 0 auto;
}

.oya-cost-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
  border-top: 3px solid var(--logo-green);
  transition: box-shadow 0.3s;
}
.oya-cost-card:hover { box-shadow: var(--shadow-soft); }

.oya-cost-card-label {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.oya-cost-card-desc {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  margin-bottom: 16px;
}

.oya-cost-amount {
  font-family: var(--ff-accent);
  font-size: 2rem;
  font-weight: 600;
  color: var(--sage-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.oya-cost-unit {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

.oya-cost-payer {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--charcoal-light);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.oya-cost-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--charcoal-light);
}

/* ============================================
   QA (FAQ) — details/summary
   ============================================ */
.oya-qa-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.oya-qa-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.3s;
}
.oya-qa-item:hover { border-color: var(--sage-light); }
.oya-qa-item[open] { border-color: var(--logo-green); }

.oya-qa-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  list-style: none;
  user-select: none;
  transition: color 0.3s;
}
.oya-qa-item summary::-webkit-details-marker { display: none; }
.oya-qa-item summary::marker { display: none; content: ''; }

.oya-qa-item summary:hover { color: var(--sage-dark); }

.oya-qa-toggle {
  font-size: 1.2rem;
  color: var(--charcoal-light);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.oya-qa-item[open] .oya-qa-toggle {
  transform: rotate(45deg);
}

.oya-qa-answer {
  padding: 0 24px 20px;
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 2;
}

/* ============================================
   Inquiry (お問い合わせ)
   ============================================ */
.oya-inquiry-inner {
  max-width: 600px;
  margin: 0 auto;
}

.oya-inquiry-intro {
  text-align: center;
  margin-bottom: 40px;
}

.oya-inquiry-intro h3 {
  font-family: var(--ff-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
}

.oya-inquiry-intro p {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

.oya-inquiry-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}
.oya-inquiry-email svg {
  color: var(--charcoal-light);
  flex-shrink: 0;
}
.oya-inquiry-email a {
  color: var(--sage-dark);
}
.oya-inquiry-email a:hover { text-decoration: underline; }

/* Form */
.oya-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.oya-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.oya-field label {
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.oya-req {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--coral);
  background: var(--coral-light);
  padding: 2px 6px;
  border-radius: var(--sp-xs);
}

.oya-field input,
.oya-field textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1.5px solid var(--border);
  background: transparent;
  color: var(--charcoal);
  font-size: 1rem;
  font-family: var(--ff-body);
  outline: none;
  transition: border-color 0.3s;
}

.oya-field input:focus,
.oya-field textarea:focus {
  border-bottom-color: var(--logo-green);
}

.oya-field input::placeholder,
.oya-field textarea::placeholder {
  color: var(--charcoal-light);
  opacity: 0.4;
}

.oya-field textarea {
  resize: vertical;
  min-height: 100px;
}

.oya-submit {
  margin-top: 12px;
}
.oya-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.oya-form-result {
  padding: 16px;
  border-radius: var(--r-sm);
  font-size: 1rem;
  line-height: 1.6;
}
.oya-form-result--ok {
  background: rgba(143, 176, 154, 0.15);
  color: var(--sage-dark);
  border: 1px solid var(--sage-light);
}
.oya-form-result--err {
  background: var(--coral-light);
  color: #b75d4f;
  border: 1px solid var(--coral);
}

/* ============================================
   Footer
   ============================================ */
.oya-footer {
  background: var(--sage-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 32px;
}

.oya-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

.oya-footer-logo-img {
  height: 32px;
  width: auto;
  margin-bottom: 8px;
}

.oya-footer-tagline {
  font-size: 0.75rem;
  opacity: 0.5;
  margin-top: 4px;
}

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

.oya-footer-links a {
  font-size: 0.88rem;
  transition: color 0.3s;
}
.oya-footer-links a:hover { color: #fff; }

.oya-footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.4;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .oya-hamburger { display: flex; }
  .oya-topbar-links { display: none; }

  .oya-strength { flex-direction: column !important; text-align: center; padding: 28px 24px; }
  .oya-strength-icon { margin: 0 auto; }

  .oya-cost-grid { grid-template-columns: 1fr; max-width: 400px; }
}

@media (max-width: 768px) {
  .oya-block { padding: 72px 0; }
  .oya-heading { margin-bottom: 40px; }

  .oya-pains-list { max-width: 100%; }
  .oya-pains-list .oya-tile:nth-child(even) { margin-left: 0; }

  .oya-intro-steps::before { left: 28px; }
  .oya-step-num { min-width: 56px; font-size: 1.8rem; }

  .oya-footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .oya-footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .oya-opener-actions { flex-direction: column; align-items: center; }
  .oya-action { width: 100%; justify-content: center; }
  .oya-opener-title { font-size: 1.6rem; }
}
