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

:root {
  --navy: #1B2D4F;
  --white: #FFFFFF;
  --gray-bg: #F7F8FA;
  --terracotta: #D4663A;
  --terracotta-hover: #C05A30;
  --text: #1A1A1A;
  --text-sub: #666666;
  --border: #E0E0E0;
  --font-ja: 'Noto Sans JP', sans-serif;
  --font-en: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-ja);
  color: var(--text);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

/* ========== CONTAINER ========== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-weight: 700;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  border-radius: 6px;
}

.logo-mark--white {
  background: var(--white);
  color: var(--navy);
}

.logo-text {
  font-size: 20px;
  color: var(--navy);
  letter-spacing: 1px;
}

.logo-img {
  height: 32px;
  width: auto;
}

.logo-text--white {
  color: var(--white);
}

.nav-desktop {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}

.nav-desktop a {
  color: var(--text);
  transition: color 0.2s;
}

.nav-desktop a:hover {
  color: var(--terracotta);
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 16px 24px;
  gap: 16px;
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile a {
  font-size: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  font-family: var(--font-ja);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 48px;
  font-size: 16px;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.btn-primary:hover {
  background: var(--terracotta-hover);
  border-color: var(--terracotta-hover);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
  margin-top: 72px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,45,79,0.92) 0%, rgba(27,45,79,0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 40px 24px;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== SECTIONS ========== */
.section {
  padding: 100px 0;
}

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

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

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

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.section-title--white {
  color: var(--white);
}

.section-subtitle {
  font-size: 18px;
  text-align: center;
  color: var(--text-sub);
  margin-bottom: 24px;
  line-height: 1.8;
}

.section-subtitle--white {
  color: rgba(255,255,255,0.8);
}

.section-desc {
  font-size: 16px;
  text-align: center;
  color: var(--text-sub);
  max-width: 700px;
  margin: 0 auto 56px;
  line-height: 2;
}

.section-note {
  font-size: 15px;
  text-align: center;
  color: var(--text-sub);
  margin-top: 48px;
  line-height: 1.8;
}

/* ========== CARDS ========== */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  transition: box-shadow 0.3s;
}

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

/* Problem cards */
.card-icon {
  margin-bottom: 20px;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.5;
  color: var(--navy);
}

.card-text {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.8;
}

/* Merit cards */
.merit-card {
  text-align: center;
}

.merit-icon {
  margin-bottom: 16px;
}

.merit-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--terracotta);
}

.merit-list {
  text-align: left;
}

.merit-list li {
  font-size: 15px;
  color: var(--text);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.merit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}

/* Service cards */
.service-card {
  padding: 44px 36px;
  border-top: 4px solid var(--terracotta);
}

.service-card--doc {
  border-top-color: var(--navy);
}

.service-label {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.service-label--doc {
  color: var(--navy);
}

.service-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-list li {
  font-size: 15px;
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--text);
}

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

.service-card--doc .service-list li::before {
  color: var(--navy);
}

.service-bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
}

/* ========== FLOW ========== */
.flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
}

.flow-step {
  text-align: center;
  flex: 1;
  max-width: 280px;
  padding: 0 20px;
}

.flow-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.flow-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.flow-text {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
}

.flow-line {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin-top: 28px;
  flex-shrink: 0;
}

.center-cta {
  text-align: center;
  margin-top: 48px;
}

/* ========== MESSAGE ========== */
.message-layout {
  display: flex;
  gap: 56px;
  align-items: center;
  margin-top: 48px;
}

.message-photo {
  flex-shrink: 0;
  width: 280px;
}

.message-photo-placeholder {
  width: 280px;
  height: 340px;
  background: var(--gray-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-sub);
  font-size: 14px;
  border: 2px dashed var(--border);
}

.message-photo-img {
  width: 280px;
  height: 380px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
}

.message-text {
  flex: 1;
}

.message-text p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 20px;
  color: var(--text);
}

.message-signature {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.message-company {
  font-size: 13px;
  color: var(--text-sub);
}

.message-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

/* ========== MEDIA ========== */
.media-card {
  text-align: center;
  padding: 44px 36px;
}

.media-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.media-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.media-name {
  font-size: 15px;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 16px;
}

.media-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ========== CAREERS ========== */
.career-card {
  background: var(--white);
  text-align: center;
}

.career-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
  border-radius: 20px;
  padding: 4px 16px;
  margin-bottom: 16px;
}

.career-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.career-text {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 20px;
}

.careers-note {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-top: 32px;
}

/* ========== COMPANY TABLE ========== */
.company-table {
  width: 100%;
  max-width: 720px;
  margin: 48px auto 0;
  border-collapse: collapse;
}

.company-table tr {
  border-bottom: 1px solid var(--border);
}

.company-table th {
  width: 140px;
  padding: 20px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  vertical-align: top;
}

.company-table td {
  padding: 20px 16px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
}

.company-table a {
  color: var(--terracotta);
}

/* ========== CTA / CONTACT FORM ========== */
.cta-block {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-text {
  font-size: 15px;
  color: var(--text-sub);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-form {
  text-align: left;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.required {
  font-size: 11px;
  color: var(--terracotta);
  margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font-ja);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}

.form-group textarea {
  resize: vertical;
}

.form-submit {
  text-align: center;
  margin-top: 32px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0 32px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-weight: 700;
}

.footer-nav {
  display: flex;
  gap: 24px;
  font-size: 13px;
}

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

.footer-nav a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  font-size: 14px;
  font-family: var(--font-en);
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ========== PAGE HERO (sub pages) ========== */
.page-hero {
  margin-top: 72px;
  background: var(--navy);
  padding: 100px 24px 80px;
  text-align: center;
}

.page-hero-label {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.page-hero-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

/* ========== NAV ACTIVE ========== */
.nav-active {
  color: var(--terracotta) !important;
}

/* ========== PMVV (Company page) ========== */
.pmvv-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.pmvv-label {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.pmvv-statement {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 32px;
  line-height: 1.4;
}

.pmvv-desc {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 2;
}

/* ========== SERVICE DETAIL ========== */
.service-detail {
  max-width: 760px;
  margin: 0 auto;
}

.service-detail-label {
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.service-detail-label--doc {
  color: var(--navy);
}

.service-detail-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.5;
}

.service-detail-desc {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 2;
  margin-bottom: 32px;
}

.check-list {
  margin-bottom: 32px;
}

.check-list li {
  font-size: 15px;
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text);
  line-height: 1.6;
}

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

.check-list--doc li::before {
  color: var(--navy);
}

.service-detail-result {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 2;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ========== FLOW VERTICAL ========== */
.flow-vertical {
  max-width: 640px;
  margin: 48px auto 0;
}

.flow-step-v {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.flow-step-v:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.flow-step-content {
  flex: 1;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 640px;
  margin: 48px auto 0;
}

.faq-item {
  font-size: 16px;
  padding: 20px 0 20px 32px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  position: relative;
  line-height: 1.6;
}

.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 28px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}

/* ========== STATS ROW ========== */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.stat-unit {
  font-family: var(--font-ja);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--text-sub);
  margin-top: 8px;
}

/* ========== TEAM ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

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

.team-photo {
  margin-bottom: 16px;
}

.team-photo-img {
  width: 160px;
  height: 200px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 12px;
}

.team-photo-placeholder {
  width: 160px;
  height: 200px;
  background: var(--gray-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-sub);
  font-size: 13px;
  border: 2px dashed var(--border);
  margin: 0 auto;
}

.team-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
}

/* ========== RECORD CARDS ========== */
.record-card {
  padding: 28px 24px;
}

.record-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  border-radius: 4px;
  padding: 2px 10px;
  margin-bottom: 12px;
}

.record-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.record-detail {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 4px;
}

.record-text {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.7;
}

/* ========== PRIVACY ========== */
.privacy-content {
  max-width: 720px;
  margin: 0 auto;
}

.privacy-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 12px;
}

.privacy-content p {
  font-size: 15px;
  color: var(--text);
  line-height: 2;
  margin-bottom: 16px;
}

.privacy-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.privacy-content li {
  font-size: 15px;
  color: var(--text);
  line-height: 2;
  list-style: disc;
}

/* ========== EARLY PARTNER ========== */
.early-partner {
  text-align: center;
}

.early-partner-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: var(--terracotta);
  border-radius: 24px;
  padding: 8px 24px;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

/* ========== LEGAL NOTE ========== */
.legal-note {
  font-size: 9px;
  color: #aaa;
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== FADE IN ANIMATION ========== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========== SP ONLY ========== */
.sp-only {
  display: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .nav-desktop {
    gap: 20px;
    font-size: 13px;
  }

  .footer-nav {
    gap: 16px;
    font-size: 12px;
  }
}

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

  .header-inner .btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .sp-only {
    display: inline;
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .section-desc {
    font-size: 14px;
  }

  .cards-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cards-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Flow */
  .flow {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .flow-line {
    width: 2px;
    height: 32px;
    margin: 0;
  }

  .flow-step {
    max-width: 100%;
  }

  /* Message */
  .message-layout {
    flex-direction: column;
    gap: 32px;
  }

  .message-photo {
    width: 200px;
    margin: 0 auto;
  }

  .message-photo-placeholder {
    width: 200px;
    height: 240px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }

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

  .service-card {
    padding: 32px 24px;
  }

  .company-table th {
    display: block;
    width: 100%;
    padding-bottom: 4px;
  }

  .company-table td {
    display: block;
    padding-top: 0;
    padding-bottom: 20px;
  }
}
