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

:root {
  --blue:       #2563EB;
  --blue-dark:  #1D4ED8;
  --blue-light: #EFF6FF;
  --navy:       #0F172A;
  --text:       #1E293B;
  --text-sub:   #64748B;
  --border:     #E2E8F0;
  --bg:         #F8FAFC;
  --white:      #FFFFFF;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(15,23,42,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  line-height: 1.8;
  background: var(--white);
  font-size: 16px;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all .2s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue-light); }
.btn-lg { padding: 16px 36px; font-size: 17px; border-radius: 10px; }

/* ===== SECTION COMMONS ===== */
.section-inner { max-width: 1080px; margin: 0 auto; padding: 96px 24px; }
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-lead {
  font-size: 16px;
  color: var(--text-sub);
  margin-bottom: 48px;
  line-height: 1.9;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-logo { flex-shrink: 0; display: flex; align-items: center; }
.logo-img { height: 22px; width: auto; display: block; }
.header-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.header-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sub);
  transition: color .15s;
}
.header-nav a:hover { color: var(--blue); }
.header-cta { padding: 8px 20px; font-size: 13px; margin-left: 8px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #EEF3FB;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('lp_background_image/hero-bg.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
/* 左からの白ベール：左側のコピーを可読にしつつ、右側のイラストを見せる */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(238,243,251,0.97) 0%,
    rgba(238,243,251,0.90) 38%,
    rgba(238,243,251,0.55) 66%,
    rgba(238,243,251,0.10) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}
.hero-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}
.badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .04em;
}
.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: -.01em;
  /* 日本語の語中改行を防ぎ、<wbr> の位置でのみ折り返す */
  word-break: keep-all;
  overflow-wrap: break-word;
}
.hero-title-accent {
  color: var(--blue);
}
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-sub);
  margin-bottom: 40px;
  line-height: 1.9;
}
.pc-br { display: inline; }
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-cta .btn-outline {
  color: var(--blue);
  border-color: var(--blue);
  background: rgba(255,255,255,.7);
}
.hero-cta .btn-outline:hover { background: var(--blue-light); }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 32px;
  box-shadow: var(--shadow);
  display: inline-flex;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.stat-unit { font-size: 18px; font-weight: 700; color: var(--blue); }
.stat-label {
  font-size: 12px;
  color: var(--text-sub);
  margin-top: 6px;
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== CLIENTS ===== */
.clients {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.clients-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.clients-label {
  font-size: 12px;
  color: var(--text-sub);
  font-weight: 700;
  letter-spacing: .08em;
  white-space: nowrap;
}
.clients-logos {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}
.client-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-sub);
}

/* ===== PROBLEMS ===== */
.problems { background: var(--white); }
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.problem-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.problem-icon {
  font-size: 32px;
  font-weight: 900;
  color: var(--border);
  margin-bottom: 16px;
  line-height: 1;
}
.problem-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.problem-text { font-size: 14px; color: var(--text-sub); line-height: 1.8; }

/* ===== SOLUTION ===== */
.solution { background: var(--blue-light); }
.solution .section-title { text-align: center; }
.solution .section-lead { text-align: center; color: var(--text-sub); }
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.solution-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
}
.solution-icon { width: 40px; margin-bottom: 20px; }
.solution-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.solution-text { font-size: 14px; color: var(--text-sub); line-height: 1.85; }

/* ===== FEATURES ===== */
.features { background: var(--white); }
.features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 36px 40px;
  border-bottom: 1px solid var(--border);
}
.feature-item:last-child { border-bottom: none; }
.feature-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--blue-light);
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
}
.feature-body { flex: 1; }
.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-text { font-size: 15px; color: var(--text-sub); line-height: 1.85; }

/* ===== FLOW ===== */
.flow {
  position: relative;
  background: var(--bg) url('lp_background_image/hero-bg.png') center / cover no-repeat;
  overflow: hidden;
}
.flow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248,250,252,.90) 0%, rgba(248,250,252,.84) 100%);
}
.flow .section-inner { position: relative; z-index: 1; }
.flow-steps { margin-top: 48px; }
.flow-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.flow-arrow {
  text-align: center;
  font-size: 24px;
  color: var(--blue);
  padding: 8px 0;
  line-height: 1;
}
.flow-step-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--blue);
  background: var(--blue-light);
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
}
.flow-step-body { flex: 1; }
.flow-step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.flow-step-text { font-size: 14px; color: var(--text-sub); line-height: 1.85; margin-bottom: 8px; }
.flow-step-period {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
}

/* ===== PRICE ===== */
.price { background: var(--white); }
.price .section-title { text-align: center; }
.price .section-lead { text-align: center; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}
.price-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  background: var(--white);
}
.price-card--popular {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(37,99,235,.15);
}
.price-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-plan-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.price-target {
  font-size: 12px;
  color: var(--text-sub);
  margin-bottom: 20px;
}
.price-amount {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 24px;
}
.price-num { font-size: 40px; font-weight: 900; }
.price-num--small { font-size: 28px; }
.price-suffix { font-size: 18px; }
.price-list {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-list li {
  font-size: 14px;
  color: var(--text-sub);
  padding-left: 20px;
  position: relative;
}
.price-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.price-card .btn { width: 100%; }
.price-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-sub);
  margin-top: 32px;
  line-height: 2;
}

/* ===== CREDIBILITY ===== */
.cred-section {
  position: relative;
  overflow: hidden;
}
.cred-section--dark {
  background: var(--navy);
}
.cred-section--dark::before {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,.15) 0%, transparent 70%);
  pointer-events: none;
}
.cred-section--light {
  background: var(--bg);
}
.cred-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 24px;
}
.cred-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  color: rgba(255,255,255,.35);
  margin-bottom: 10px;
}
.cred-heading {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.3;
}

/* メディア掲載 */
.cred-media-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cred-media-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: background .2s, border-color .2s;
}
.cred-media-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(37,99,235,.5);
}
.cred-media-body {
  flex: 1;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cred-media-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cred-media-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #60A5FA;
  background: rgba(37,99,235,.3);
  padding: 3px 10px;
  border-radius: 100px;
  flex-shrink: 0;
}
.cred-media-source {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  font-weight: 500;
}
.cred-media-ttl {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.6;
}
.cred-media-desc {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  flex: 1;
}
.cred-media-arrow {
  font-size: 12px;
  font-weight: 700;
  color: #60A5FA;
  letter-spacing: .04em;
  transition: gap .15s;
}
.cred-media-thumb {
  width: 220px;
  flex-shrink: 0;
  overflow: hidden;
}
.cred-media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.cred-media-card:hover .cred-media-thumb img {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .cred-media-card { flex-direction: column; }
  .cred-media-thumb { width: 100%; height: 180px; }
}

/* 登壇 */
.cred-talk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.cred-talk-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.cred-talk-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.cred-talk-card:hover img { transform: scale(1.04); }
.cred-talk-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.75) 0%, rgba(15,23,42,.1) 55%, transparent 100%);
}
.cred-talk-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px 18px;
  z-index: 1;
}
.cred-talk-date {
  font-size: 11px;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  display: block;
  margin-bottom: 4px;
}
.cred-talk-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 4px;
}
.cred-talk-org {
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

/* スライダー */
.slider-wrap {
  overflow: hidden;
  padding-bottom: 48px;
  cursor: grab;
  user-select: none;
}
.slider-wrap:active { cursor: grabbing; }

.slider-track {
  display: flex;
  gap: 32px;
  width: max-content;
  padding: 0 40px;
  will-change: transform;
}

.slide-card {
  flex-shrink: 0;
  width: 320px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, background .2s;
  display: flex;
  flex-direction: column;
}
.slide-card:hover {
  border-color: rgba(37,99,235,.55);
  background: rgba(255,255,255,.1);
}
.slide-img-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.slide-card:hover .slide-img { transform: scale(1.04); }

.slide-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.slide-date {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  letter-spacing: .05em;
}
.slide-ttl {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.88);
  line-height: 1.65;
  flex: 1;
}
.slide-arrow {
  font-size: 16px;
  color: rgba(255,255,255,.25);
  align-self: flex-end;
  transition: color .15s, transform .15s;
}
.slide-card:hover .slide-arrow {
  color: #60A5FA;
  transform: translate(2px, -2px);
}

@media (max-width: 768px) {
  .cred-media-grid,
  .cred-talk-grid { grid-template-columns: 1fr; }
  .slide-card { width: 260px; }
}

/* ===== PROFILE ===== */
.profile { background: var(--white); }
.profile-inner {
  display: flex;
  gap: 56px;
  align-items: center;
}
.profile-photo {
  flex-shrink: 0;
  width: 340px;
}
.profile-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.profile-body { flex: 1; }
.profile-name {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 900;
  color: var(--navy);
  margin: 8px 0 4px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.profile-name-en {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sub);
  letter-spacing: .08em;
}
.profile-role {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 22px;
}
.profile-text {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.95;
  margin-bottom: 16px;
}
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.profile-tags span {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-sub);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
}

/* ===== WORKS ===== */
.works { background: var(--bg); }
.works .section-inner { padding-bottom: 32px; }
.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
/* スライダー内の事例カード */
.works-track .work-card {
  width: 360px;
  flex-shrink: 0;
}
.work-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.work-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.work-img-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg);
}
.work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.work-card:hover .work-img { transform: scale(1.03); }
.work-body { padding: 24px 28px 28px; }
.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.work-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  padding: 3px 10px;
  border-radius: 100px;
}
.work-tag--sample {
  color: #7C3AED;
  background: #F5F3FF;
}
.work-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.5;
}
.work-meta {
  font-size: 12px;
  color: var(--text-sub);
  margin-bottom: 10px;
}
.work-text {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.85;
  margin-bottom: 0;
}
.work-voice {
  margin-top: 14px;
  font-size: 13px;
  color: var(--navy);
  font-style: italic;
  border-left: 3px solid var(--blue);
  padding-left: 12px;
  line-height: 1.7;
}
/* 事例カードをリンク化 */
a.work-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
a.work-card .work-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.work-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  transition: gap .15s;
}
.work-card:hover .work-link { gap: 9px; }
.work-tag--design {
  color: #fff;
  background: var(--blue);
}

@media (max-width: 768px) {
  .works-grid { grid-template-columns: 1fr; }
  .works-track .work-card { width: 280px; }
  .profile-inner { flex-direction: column; gap: 28px; align-items: flex-start; }
  .profile-photo { width: 100%; max-width: 320px; margin: 0 auto; }
}

/* ===== FAQ ===== */
.faq { background: var(--bg); }
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item[open] { border-color: var(--blue); }
.faq-q {
  list-style: none;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--blue);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] .faq-q::after { content: '−'; }
.faq-a {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.9;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ===== CONTACT ===== */
.contact {
  position: relative;
  background: #0F172A url('lp_background_image/accent-bg.png') center / cover no-repeat;
  text-align: center;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,.93) 0%, rgba(30,58,95,.86) 100%);
}
.contact .section-inner { position: relative; z-index: 1; padding: 96px 24px; }
.contact .section-label { color: rgba(255,255,255,.5); }
.contact-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 16px;
}
.contact-lead {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  margin-bottom: 48px;
  line-height: 2;
}
.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.contact-actions .btn-outline:hover { background: rgba(255,255,255,.1); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.5);
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-brand {
  flex: 1;
  min-width: 260px;
}
.footer-logo-img { height: 30px; width: auto; display: block; }
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.9;
  margin: 14px 0 24px;
}
.footer-cta { padding: 11px 26px; font-size: 14px; }
.footer-cols {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}
.footer-col-ttl {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255,255,255,.9);
  margin-bottom: 16px;
}
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-list a {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  transition: color .15s;
}
.footer-list a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-copy {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 24px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-nav { display: none; }
  .hero-inner { padding: 100px 20px 64px; }
  .hero-title { font-size: 24px; line-height: 1.55; }
  .hero-bg { background-position: center top; }
  .hero-bg::after {
    background: linear-gradient(180deg,
      rgba(238,243,251,0.92) 0%,
      rgba(238,243,251,0.86) 55%,
      rgba(238,243,251,0.80) 100%);
  }
  .hero-stats { flex-direction: column; gap: 0; }
  .stat { padding: 16px 32px; }
  .stat-divider { width: 80%; height: 1px; }
  .problems-grid,
  .solution-grid,
  .price-grid { grid-template-columns: 1fr; }
  .feature-item { flex-direction: column; gap: 12px; padding: 24px 20px; }
  .feature-num { font-size: 32px; width: auto; }
  .flow-step { flex-direction: column; gap: 16px; padding: 24px 20px; }
  .clients-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 36px; }
  .footer-cols { gap: 48px; }
  .pc-br { display: none; }
}
