:root {
  --navy: #1648CC;
  --navy2: #1240B8;
  --red: #C8102E;
  --red2: #E01535;
  --white: #FFFFFF;
  --off: #F5F6F8;
  --off2: #ECEEF2;
  --gray: #9CA3AF;
  --gray2: #6B7280;
  --dark: #1F2937;
  --text: #111827;
  --green: #06C755;
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; object-fit: cover; }

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

/* ===== STICKY HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #1240B8;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: contain;
}

.logo-text {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

.logo-sub {
  font-size: 9px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  font-weight: 500;
  transition: color .2s;
}

.nav-link:hover { color: #fff; }

.header-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-header-line {
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 6px;
  transition: opacity .2s;
}

.btn-header-tel {
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 6px;
  transition: opacity .2s;
}

.btn-header-line:hover, .btn-header-tel:hover { opacity: .85; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: #1240B8;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../img/hero-bg.png") center bottom / 70% auto no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14,56,168,0.82) 0%, rgba(14,56,168,0.55) 50%, rgba(14,56,168,0.2) 100%);
}

.hero-shape-1 { display: none; }
.hero-shape-2 { display: none; }
.hero-shape-3 { display: none; }

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 5%;
  display: block;
}

.hero-content {
  max-width: 560px;
  margin-left: 0;
  margin-right: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,16,46,0.25);
  border: 1px solid rgba(200,16,46,0.5);
  color: #FFA0AE;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.hero-title {
  color: #fff;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.hero-title em {
  color: var(--red);
  font-style: normal;
  display: block;
}

.hero-sub {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 440px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}

.stat-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius);
  padding: 16px 10px;
  text-align: center;
}

.stat-num {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  display: block;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-line {
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform .15s, opacity .15s;
}

.btn-line:hover { transform: translateY(-1px); opacity: .9; }

.btn-tel {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .15s;
}

.btn-tel:hover { background: rgba(255,255,255,0.17); }

.hero-photo {
  position: relative;
}

.hero-photo-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.hero-photo-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--red);
  color: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 8px 30px rgba(200,16,46,0.4);
}

.hero-photo-badge strong {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.hero-photo-badge span {
  font-size: 10px;
  opacity: .8;
}

/* ===== AREA STRIP ===== */
.area-strip {
  background: #0D38A8;
  padding: 14px 5%;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.area-strip-label {
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}

.area-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.area-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
}

/* ===== SECTION BASE ===== */
.section { padding: 80px 5%; }
.section-alt { background: var(--off); }
.section-navy { background: var(--navy); color: #fff; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-head {
  margin-bottom: 48px;
}

.section-en {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--red);
  display: block;
  margin-bottom: 6px;
}

.section-ja {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.3;
}

.section-navy .section-ja { color: #fff; }
.section-navy .section-en { color: #FF8A9A; }

.section-desc {
  margin-top: 10px;
  font-size: 14px;
  color: var(--gray2);
  max-width: 500px;
  line-height: 1.8;
}

.section-navy .section-desc { color: rgba(255,255,255,0.6); }

/* ===== PAIN ===== */
.pain-section {
  background: #1240B8;
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

.pain-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(200,16,46,0.1);
  border-radius: 50%;
}

.pain-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pain-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 18px;
}

.pain-item strong {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.pain-item p {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  line-height: 1.7;
}

.pain-answer {
  background: var(--red);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pain-answer::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.pain-answer-label {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

.pain-answer h3 {
  color: #fff;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 20px;
}

.pain-answer-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.pain-point {
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pain-point-check {
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
}

/* ===== SERVICE ===== */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--off2);
  transition: transform .2s, box-shadow .2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.service-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.service-card-num {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--red);
  display: block;
  margin-bottom: 8px;
}

.service-card-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 13px;
  color: var(--gray2);
  line-height: 1.8;
}

.service-tag {
  display: inline-block;
  margin-top: 12px;
  background: #FDF0F2;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ===== USP ===== */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.usp-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  border: 1px solid var(--off2);
  transition: transform .2s;
}

.usp-card:hover { transform: translateY(-2px); }

.usp-icon {
  width: 52px;
  height: 52px;
  background: #1648CC;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.usp-icon svg { width: 24px; height: 24px; }

.usp-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.usp-desc {
  font-size: 13px;
  color: var(--gray2);
  line-height: 1.8;
}

/* ===== NUMBERS ===== */
.numbers-section {
  background: #1240B8;
  padding: 70px 5%;
  position: relative;
  overflow: hidden;
}

.numbers-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: rgba(200,16,46,0.12);
  border-radius: 50%;
}

.numbers-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.numbers-title {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  margin-bottom: 12px;
  display: block;
  color: #FF8A9A;
}

.numbers-ja {
  color: #fff;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  margin-bottom: 48px;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.number-box {
  background: rgba(255,255,255,0.06);
  padding: 36px 20px;
  text-align: center;
  transition: background .2s;
}

.number-box:hover { background: rgba(255,255,255,0.1); }

.number-val {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.number-val span {
  font-size: 0.55em;
  color: rgba(255,255,255,0.7);
}

.number-label {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  line-height: 1.5;
}

/* ===== ITEMS ===== */
.items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.item-card {
  background: #fff;
  border: 1px solid var(--off2);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: transform .2s, border-color .2s;
}

.item-card:hover {
  transform: translateY(-3px);
  border-color: #1648CC;
}

.item-emoji {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.item-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

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

.scene-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--off2);
  display: flex;
  transition: transform .2s, box-shadow .2s;
}

.scene-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.scene-photo {
  width: 130px;
  min-height: 140px;
  flex-shrink: 0;
  overflow: hidden;
}

.scene-body {
  padding: 22px 20px;
}

.scene-emoji-big {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}

.scene-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.scene-desc {
  font-size: 12px;
  color: var(--gray2);
  line-height: 1.75;
}

/* ===== CASES ===== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.case-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--off2);
  transition: transform .2s, box-shadow .2s;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.case-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--off2);
  position: relative;
}

.case-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 36px;
}

.case-card-body {
  padding: 20px;
}

.case-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.case-area {
  background: #1648CC;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
}

.case-scene-tag {
  color: var(--gray);
  font-size: 11px;
}

.case-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.5;
}

.case-desc {
  font-size: 12px;
  color: var(--gray2);
  line-height: 1.75;
  margin-bottom: 14px;
}

.case-results {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.case-pill {
  background: var(--off);
  border: 1px solid var(--off2);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 11px;
  color: var(--dark);
}

.case-pill.highlight {
  background: #FDF0F2;
  border-color: #F5C0C8;
  color: var(--red);
}

/* ===== FLOW ===== */
.flow-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.flow-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  position: relative;
}

.flow-item + .flow-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 23px;
  width: 2px;
  height: 28px;
  background: var(--off2);
}

.flow-num {
  width: 48px;
  height: 48px;
  background: #1648CC;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.flow-content {
  padding-top: 6px;
}

.flow-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.flow-desc {
  font-size: 13px;
  color: var(--gray2);
  line-height: 1.8;
}

/* ===== CAUTION ===== */
.caution-section {
  background: #FFFBEB;
  border-top: 3px solid #FCD34D;
  padding: 48px 5%;
}

.caution-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}

.caution-icon-wrap {
  text-align: center;
}

.caution-icon {
  width: 80px;
  height: 80px;
  background: #FEF3C7;
  border: 2px solid #FCD34D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 8px;
}

.caution-icon-label {
  font-size: 11px;
  color: #92400E;
  font-weight: 700;
}

.caution-title {
  font-size: 20px;
  font-weight: 900;
  color: #92400E;
  margin-bottom: 16px;
}

.caution-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.caution-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #78350F;
  line-height: 1.7;
}

.caution-check {
  color: #D97706;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--off2);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.faq-q-mark {
  color: var(--red);
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.4;
}

.faq-answer {
  padding: 0 24px 20px 48px;
  font-size: 13px;
  color: var(--gray2);
  line-height: 1.85;
}

/* ===== CTA ===== */
.cta-section {
  background: #1240B8;
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: rgba(200,16,46,0.12);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  color: #fff;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 12px;
}

.cta-title em {
  color: var(--red);
  font-style: normal;
}

.cta-sub {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 36px;
}

.cta-free-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.free-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
}

.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
  margin: 0 auto;
}

.cta-btn-line {
  background: var(--green);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity .2s;
}

.cta-btn-line:hover { opacity: .9; }

.cta-btn-tel {
  background: var(--red);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 18px;
  border-radius: 10px;
  transition: opacity .2s;
}

.cta-btn-tel:hover { opacity: .9; }

.cta-btn-form {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 18px;
  border-radius: 10px;
  transition: background .2s;
}

.cta-btn-form:hover { background: rgba(255,255,255,0.14); }

/* ===== FOOTER ===== */
.footer {
  background: #0A2878;
  padding: 40px 5%;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }

.footer-brand {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.footer-tagline {
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  line-height: 1.7;
}

.footer-nav-title {
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.footer-nav-list a {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  transition: color .2s;
}

.footer-nav-list a:hover { color: #fff; }

.footer-bottom {
  max-width: 1100px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  color: rgba(255,255,255,0.3);
  font-size: 11px;
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--navy);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

/* ===== ADMIN BAR FIX ===== */
body.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { display: none; }
  .pain-inner { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .items-grid { grid-template-columns: repeat(3, 1fr); }
  .scene-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .header-nav { display: none; }
  .header-ctas { display: none; }
  .header-logo {
    width: 100%;
    justify-content: center;
  }
  .logo-img {
    width: 48px;
    height: 48px;
  }
  .logo-text { font-size: 16px; }
  .caution-inner { grid-template-columns: 1fr; }
  .caution-list { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .sticky-cta { display: flex; }
}

@media (max-width: 600px) {
  .section { padding: 56px 5%; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .items-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-btns { flex-direction: column; }
  .hero-stats { gap: 8px; }
  .hero-bg {
    background: url("../img/hero-bg.png") center top / 140% auto no-repeat;
  }
  .hero-bg::after {
    background: linear-gradient(180deg, rgba(14,56,168,0.75) 0%, rgba(14,56,168,0.6) 50%, rgba(14,56,168,0.85) 100%);
  }
  .hero-inner {
    padding: 40px 5%;
  }
  .hero-content {
    max-width: 100%;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
  animation: fadeInUp .6s ease both;
}

.hero-badge { animation-delay: .1s; }
.hero-title { animation-delay: .2s; }
.hero-sub { animation-delay: .3s; }
.hero-stats { animation-delay: .4s; }
.hero-btns { animation-delay: .5s; }
