/* ============================================================
   CSS Variables
   ============================================================ */
:root {
  /* Colors */
  --color-navy: #0B1E3D;
  --color-navy-light: #122A4F;
  --color-cyan: #00B4D8;
  --color-cyan-dark: #0090B0;
  --color-cyan-glow: rgba(0, 180, 216, 0.4);
  --color-bg-light: #F7F8FA;
  --color-bg-gray: #F0F2F5;
  --color-text-dark: #1A1A2E;
  --color-text-light: #E8ECF1;
  --color-white: #FFFFFF;
  --color-placeholder-dark: #1E2D40;
  --color-placeholder-light: #D0D8E4;

  /* Fonts */
  --font-serif: 'Noto Serif JP', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-accent: 'Barlow Condensed', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --section-padding-mobile: 64px 0;
  --container-max: 1080px;
  --container-padding: 0 24px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--color-text-dark);
  background: var(--color-bg-light);
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

strong {
  font-weight: 700;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ============================================================
   Photo Placeholder
   ============================================================ */
.photo-placeholder {
  background: var(--color-placeholder-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}

.photo-placeholder svg {
  opacity: 0.4;
}

.ratio-16-9 {
  aspect-ratio: 16 / 9;
}

.ratio-1-1 {
  aspect-ratio: 1 / 1;
}

.ratio-3-2 {
  aspect-ratio: 3 / 2;
}

/* Light variant */
.section:not(.section-dark) .photo-placeholder,
#voice .photo-placeholder {
  background: var(--color-placeholder-light);
  color: rgba(0, 0, 0, 0.3);
}

#voice .photo-placeholder svg {
  stroke: rgba(0, 0, 0, 0.3);
}

/* ============================================================
   Section Base
   ============================================================ */
.section {
  padding: var(--section-padding);
}

.section-dark {
  background: var(--color-navy);
  color: var(--color-text-light);
}

.section-light {
  background: var(--color-bg-gray);
}

.section-cta {
  background: linear-gradient(135deg, var(--color-cyan-dark) 0%, var(--color-navy) 100%);
  color: var(--color-white);
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 48px;
}

.section-title .title-sub {
  display: block;
  font-size: 0.65em;
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.section-sub {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 48px;
  opacity: 0.85;
  line-height: 1.9;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 6px;
  transition: all 0.3s var(--ease-out);
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-cyan);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(0, 180, 216, 0.25);
}

.btn-primary:hover {
  background: #00C8EF;
  box-shadow: 0 4px 24px var(--color-cyan-glow), 0 0 40px var(--color-cyan-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  border-color: var(--color-cyan);
  color: var(--color-cyan);
  box-shadow: 0 0 24px var(--color-cyan-glow);
  transform: translateY(-2px);
}

.btn-large {
  padding: 20px 48px;
  font-size: 1.1rem;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  background: var(--color-navy);
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
  padding: 80px 0 64px;
}

.hero-circuit-bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(90deg, var(--color-cyan) 1px, transparent 1px),
    linear-gradient(0deg, var(--color-cyan) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 70%);
}

.hero-circuit-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 4px at 180px 120px, var(--color-cyan) 0%, transparent 100%),
    radial-gradient(circle 4px at 540px 240px, var(--color-cyan) 0%, transparent 100%),
    radial-gradient(circle 4px at 300px 360px, var(--color-cyan) 0%, transparent 100%),
    radial-gradient(circle 3px at 660px 180px, var(--color-cyan) 0%, transparent 100%),
    radial-gradient(circle 3px at 420px 60px, var(--color-cyan) 0%, transparent 100%);
  opacity: 0.5;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

/* 上段：キャッチコピー */
.hero-catch {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 4.5vw, 2.6rem);
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-catch span {
  display: block;
}

/* 中段：2カラム */
.hero-mid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.hero-mid-photo {
  width: 100%;
}

.ratio-4-3 {
  aspect-ratio: 4 / 3;
}

.hero-mv {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  opacity: 0.8;
  margin-bottom: 28px;
  line-height: 1.9;
}

.hero-lead-top {
  font-size: 0.95rem;
  line-height: 2;
}

.hero-lead-top p {
  margin-bottom: 16px;
}

.hero-lead-top p:first-child {
  font-style: italic;
  opacity: 0.75;
}

/* 下段：テキスト後半 */
.hero-bottom {
  font-size: 0.95rem;
  line-height: 2;
  margin-bottom: 40px;
}

.hero-bottom p {
  margin-bottom: 16px;
}

.hero-bottom p:last-child {
  margin-bottom: 0;
}

/* CTA */
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 0.82rem;
  opacity: 0.5;
  text-align: center;
}

/* ============================================================
   EMPATHY
   ============================================================ */
#empathy {
  background: var(--color-bg-light);
}

.empathy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.empathy-card {
  background: var(--color-white);
  border: 1px solid #E2E6EC;
  border-radius: 8px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.empathy-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.empathy-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-cyan);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  margin-top: 4px;
}

.empathy-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.empathy-closing {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.9;
  color: var(--color-navy);
}

/* ============================================================
   WORK
   ============================================================ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.work-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 180, 216, 0.15);
  border-radius: 10px;
  padding: 32px 28px;
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.work-card:hover {
  border-color: rgba(0, 180, 216, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.work-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.work-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--color-cyan);
}

.work-card p {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.7;
}

.work-card-products {
  margin-bottom: 12px;
}

/* Tech Tags */
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.tech-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1;
  padding: 5px 10px;
  border-radius: 20px;
  background: rgba(0, 180, 216, 0.12);
  color: var(--color-cyan);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* Tools Section */
.work-tools {
  margin-top: 56px;
  margin-bottom: 48px;
}

.work-tools-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-cyan);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.5;
}

.work-tools-sub {
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.75;
  line-height: 1.8;
  margin-bottom: 32px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tool-card {
  background: #1E3A5F;
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tool-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.tool-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(0, 180, 216, 0.15);
  color: var(--color-cyan);
  width: fit-content;
}

.tool-name {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.tool-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.65;
  margin: 0;
}

/* Work Collab Block */
.work-collab {
  margin-top: 48px;
  margin-bottom: 48px;
  padding: 40px 36px;
  border-left: 3px solid var(--color-cyan);
  background: rgba(0, 180, 216, 0.06);
  border-radius: 0 10px 10px 0;
}

.work-collab-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-cyan);
  margin-bottom: 20px;
  line-height: 1.5;
}

.work-collab-body {
  font-size: 0.95rem;
  line-height: 2;
  opacity: 0.88;
}

.work-collab-body p {
  margin-bottom: 12px;
}

.work-collab-body p:last-child {
  margin-bottom: 0;
}

.work-closing {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.9;
}

/* Stat Numbers (reasons heading) */
.stat-number {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.3em;
  color: var(--color-cyan);
}

.stat-unit {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.85em;
  color: var(--color-cyan);
}

/* Reasons Photos */
.reasons-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.reasons-photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

/* ============================================================
   REASONS
   ============================================================ */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.reason-card {
  background: var(--color-white);
  border-radius: 10px;
  padding: 36px 32px;
  position: relative;
  border: 1px solid #E2E6EC;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.reason-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.reason-number {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--color-cyan);
  opacity: 0.25;
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.reason-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--color-navy);
}

.reason-card p {
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 8px;
}

.reason-accent {
  color: var(--color-cyan-dark);
  font-weight: 500;
}

/* ============================================================
   VOICE
   ============================================================ */
#voice {
  background: var(--color-white);
}

.voice-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.voice-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: start;
}

.voice-photo {
  width: 160px;
}

.voice-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.voice-meta {
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
}

.voice-meta strong {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-navy);
}

.voice-meta span {
  font-size: 0.85rem;
  opacity: 0.6;
}

.voice-content blockquote {
  font-size: 0.95rem;
  line-height: 2;
  border-left: 3px solid var(--color-cyan);
  padding-left: 20px;
}

.voice-content blockquote p {
  margin-bottom: 12px;
}

/* ============================================================
   REQUIREMENTS
   ============================================================ */
.requirements-table-wrap {
  margin-bottom: 48px;
  overflow-x: auto;
}

.requirements-table {
  width: 100%;
  border-collapse: collapse;
}

.requirements-table th,
.requirements-table td {
  padding: 18px 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.requirements-table th {
  width: 140px;
  font-weight: 500;
  color: var(--color-cyan);
  white-space: nowrap;
  font-family: var(--font-serif);
}

.requirements-table td {
  color: var(--color-text-light);
}

.welcome-list h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 20px;
  text-align: center;
  color: var(--color-cyan);
}

.welcome-list ul {
  list-style: none;
  max-width: 640px;
  margin: 0 auto;
}

.welcome-list li {
  font-size: 0.95rem;
  line-height: 1.8;
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}

.welcome-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-cyan);
  font-weight: 700;
}

/* ============================================================
   MID CTA
   ============================================================ */
.section-mid-cta {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.12) 0%, rgba(11, 30, 61, 0.08) 100%);
  padding: 48px 0;
  text-align: center;
}

.mid-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mid-cta-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 700;
  color: var(--color-navy);
}

.mid-cta-note {
  font-size: 0.82rem;
  opacity: 0.5;
  color: var(--color-text-dark);
}

/* ============================================================
   CONTACT CTA
   ============================================================ */
.section-cta .section-title {
  margin-bottom: 24px;
}

.cta-body {
  text-align: center;
  font-size: 1.05rem;
  line-height: 2;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-body p {
  margin-bottom: 16px;
}

/* CTA Highlight - 職場見学への誘導 */
.cta-highlight {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.7;
  color: var(--color-white);
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.18), rgba(0, 180, 216, 0.06));
  border: 1px solid rgba(0, 180, 216, 0.45);
  border-radius: 12px;
  padding: 28px 24px;
  max-width: 760px;
  margin: 0 auto 36px;
  letter-spacing: 0.02em;
}

.cta-highlight strong {
  color: #00b4d8;
  font-size: 1.25em;
  border-bottom: 3px solid rgba(0, 180, 216, 0.6);
  padding: 0 4px 2px;
}

.cta-highlight-sub {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: 0.01em;
}

/* Hero内に置いた場合の上下マージン調整 */
.hero-cta-highlight {
  margin-top: 28px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .cta-highlight {
    font-size: 1.25rem;
    padding: 22px 18px;
  }
  .cta-highlight-sub {
    font-size: 0.85rem;
  }
}

/* CTA Columns Layout */
.cta-columns {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto 32px;
  align-items: stretch;
}

/* CTA Cards */
.cta-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: 12px;
  padding: 36px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.cta-card-icon {
  font-size: 2rem;
  line-height: 1;
}

.cta-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-white);
}

.cta-card-desc {
  font-size: 0.88rem;
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 4px;
}

/* Phone card */
.cta-card-phone .cta-card-title {
  font-size: 1.05rem;
}

.cta-card-phone .cta-card-desc {
  font-size: 0.82rem;
}

.cta-phone-number {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.04em;
  display: block;
}

.cta-phone-hours {
  font-size: 0.78rem;
  opacity: 0.55;
}

/* Hero phone button */
.btn-phone {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.cta-note {
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.6;
  line-height: 1.8;
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  display: none;
}

@media (max-width: 767px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-navy);
    border-top: 1px solid rgba(0, 180, 216, 0.2);
    padding: 8px 12px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    gap: 8px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  }

  .sticky-cta.is-hidden {
    display: none;
  }
}

.sticky-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 8px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-sans);
  text-align: center;
  transition: opacity 0.2s;
}

.sticky-cta-btn:hover {
  opacity: 0.85;
}

.sticky-cta-phone {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--color-white);
}

.sticky-cta-mail {
  background: var(--color-cyan);
  color: var(--color-white);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.5);
  padding: 48px 0;
  text-align: center;
  font-size: 0.85rem;
  line-height: 2;
  border-top: 1px solid rgba(0, 180, 216, 0.15);
}

.footer-company {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.footer-url a {
  color: var(--color-cyan);
  transition: opacity 0.3s;
}

.footer-url a:hover {
  opacity: 0.7;
}

.footer-copy {
  margin-top: 16px;
  font-family: var(--font-accent);
  letter-spacing: 0.05em;
}

/* ============================================================
   Scroll Animations
   ============================================================ */
.scroll-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.scroll-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero staggered fade-up */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 768px) {
  .section {
    padding: var(--section-padding-mobile);
  }

  #hero {
    padding: 48px 0 40px;
  }

  .hero-catch {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }

  .hero-mid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
  }

  .hero-mv {
    aspect-ratio: 16 / 9;
  }

  .hero-bottom {
    margin-bottom: 32px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
  }

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

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

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

  .work-tools-sub br {
    display: none;
  }

  .reasons-photos {
    gap: 8px;
  }

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

  .voice-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .voice-photo {
    width: 120px;
    margin: 0 auto;
  }

  .voice-content blockquote {
    text-align: left;
  }

  .voice-meta {
    justify-content: center;
  }

  .requirements-table th {
    width: 100px;
    font-size: 0.85rem;
  }

  .requirements-table td {
    font-size: 0.88rem;
  }

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

  .cta-card {
    padding: 28px 20px;
  }

  .btn-large {
    padding: 18px 32px;
    font-size: 1rem;
  }

  /* Offset body for sticky bar */
  body {
    padding-bottom: 72px;
  }

  .section-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .hero-catch {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 1.25rem;
    margin-bottom: 32px;
  }

  .reason-card {
    padding: 28px 24px;
  }

  .work-card {
    padding: 24px 20px;
  }

  .work-collab {
    padding: 28px 20px;
  }

  .work-collab-title {
    font-size: 1.1rem;
  }

  .work-collab-body br {
    display: none;
  }
}
