/* ============================================================
   index.css — トップページ専用スタイル
============================================================ */

body { background: var(--white); }

/* ════════════ HERO ════════════ */
.hero {
  min-height: 100vh;
  padding: 140px 48px 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* 背景スライドショー */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slide.active { opacity: 1; }

/* ダークオーバーレイ */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,15,35,0.78) 0%, rgba(10,30,60,0.60) 100%);
  z-index: 1;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,233,0.2);
  border: 1px solid rgba(14,165,233,0.35);
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}
.hero-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #38bdf8;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.8vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
  white-space: nowrap;
}
.hero h1 .highlight {
  position: relative;
  color: #7dd3fc;
  display: inline-block;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 6px;
  background: rgba(14,165,233,0.3);
  border-radius: 3px;
  z-index: -1;
}
.hero h1 .highlight-sun { color: var(--sun); }

.hero-lead {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-lead-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  display: block;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.hero .btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* ソーシャルプルーフ */
.hero-record {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 12px 20px;
  backdrop-filter: blur(8px);
}
.hero-record-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.hero-record-num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-record-unit {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-left: 2px;
}
.hero-record-date {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 12px;
}

@media (max-width: 1100px) {
  .hero h1 { font-size: clamp(28px, 5vw, 52px); white-space: nowrap; }
}
@media (max-width: 767px) {
  .hero { padding: 120px 20px 60px; }
  .hero h1 { white-space: normal; font-size: min(7vw, 36px); }
  .hero h1 nobr { white-space: normal; }
}

/* ════════════ BENEFITS ════════════ */
.benefits {
  position: relative;
  padding: 100px 48px;
  overflow: hidden;
}
.benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://sss99.com/nasutech/img/window.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.benefits::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(240,249,255,0.30);
  z-index: 1;
}
.benefits-inner { max-width: 1120px; margin: 0 auto; position: relative; z-index: 2; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.benefits-row2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 26px 20px;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: default;
  text-align: center;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.08); }

.bc-sun:hover   { border-color: var(--sun);   }
.bc-coral:hover { border-color: var(--coral); }
.bc-sky:hover   { border-color: var(--sky);   }
.bc-green:hover { border-color: var(--green); }
.bc-violet:hover{ border-color: #8b5cf6; }
.bc-teal:hover  { border-color: #14b8a6; }
.bc-slate:hover { border-color: #64748b; }

.benefit-num {
  font-family: 'Outfit', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; margin-bottom: 14px;
}
.bc-sun    .benefit-num { color: var(--sun);   }
.bc-coral  .benefit-num { color: var(--coral); }
.bc-sky    .benefit-num { color: var(--sky);   }
.bc-green  .benefit-num { color: var(--green); }
.bc-violet .benefit-num { color: #8b5cf6; }
.bc-teal   .benefit-num { color: #14b8a6; }
.bc-slate  .benefit-num { color: #64748b; }

.benefit-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.bc-sun    .benefit-icon { background: var(--sun-lt);   }
.bc-coral  .benefit-icon { background: var(--coral-lt); }
.bc-sky    .benefit-icon { background: var(--sky-lt);   }
.bc-green  .benefit-icon { background: var(--green-lt); }
.bc-violet .benefit-icon { background: #ede9fe; }
.bc-teal   .benefit-icon { background: #ccfbf1; }
.bc-slate  .benefit-icon { background: #f1f5f9; }

.benefit-icon svg { width: 24px; height: 24px; }
.bc-sun    .benefit-icon svg { stroke: var(--sun);   }
.bc-coral  .benefit-icon svg { stroke: var(--coral); }
.bc-sky    .benefit-icon svg { stroke: var(--sky);   }
.bc-green  .benefit-icon svg { stroke: var(--green); }
.bc-violet .benefit-icon svg { stroke: #8b5cf6; }
.bc-teal   .benefit-icon svg { stroke: #14b8a6; }
.bc-slate  .benefit-icon svg { stroke: #64748b; }

.benefit-card h3 { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.benefit-card p  { font-size: 12px; color: var(--muted); line-height: 1.75; }

.benefit-stat {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid var(--border);
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 700;
  text-align: center;
}
.bc-sun    .benefit-stat { color: var(--sun);   }
.bc-coral  .benefit-stat { color: var(--coral); }
.bc-sky    .benefit-stat { color: var(--sky);   }
.bc-green  .benefit-stat { color: var(--green); }
.bc-violet .benefit-stat { color: #8b5cf6; }
.bc-teal   .benefit-stat { color: #14b8a6; }
.bc-slate  .benefit-stat { color: #64748b; }
.benefit-stat span { font-size: 11px; font-weight: 400; color: var(--muted); margin-left: 4px; }

.benefit-card.bc-slate {
  background: var(--bg);
  border-style: dashed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.bc-slate .benefit-icon { margin: 0 auto 16px; }
.bc-slate .benefit-cta {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px; font-weight: 600;
  color: var(--sky-dark);
  background: var(--sky-lt);
  padding: 7px 16px; border-radius: 100px;
  text-decoration: none;
  transition: background 0.15s;
}
.bc-slate .benefit-cta:hover { background: #bae6fd; }

/* ════════════ BEFORE/AFTER ════════════ */
.compare { background: var(--white); padding: 100px 48px; }
.compare-inner { max-width: 1120px; margin: 0 auto; }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}
.compare-col h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 700;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}

.compare-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 4/3;
}
.compare-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.compare-photo:hover img { transform: scale(1.03); }
.compare-photo-label {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 100px;
  letter-spacing: 0.05em;
}
.before .compare-photo-label { background: rgba(220,38,38,0.85); color: #fff; backdrop-filter: blur(4px); }
.after  .compare-photo-label { background: rgba(2,132,199,0.85);  color: #fff; backdrop-filter: blur(4px); }
.before .compare-photo img { filter: saturate(0.75) brightness(0.92); }

.compare-badge { font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 100px; }
.before .compare-badge { background: #fee2e2; color: #dc2626; }
.after  .compare-badge { background: var(--sky-lt); color: var(--sky-dark); }

.compare-items { display: flex; flex-direction: column; gap: 10px; }
.compare-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  font-size: 14px;
}
.before .compare-item { background: #fff5f5; color: #7f1d1d; }
.after  .compare-item { background: #f0f9ff; color: #0c4a6e; }
.ci-icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }

.compare-arrow { display: flex; align-items: center; justify-content: center; align-self: stretch; }
.arrow-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--sky);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(14,165,233,0.3);
}
.arrow-circle svg { width: 24px; height: 24px; stroke: #fff; }

/* 写真 Before/After セット */
.compare-photos-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.compare-photo-set {
  display: grid;
  grid-template-columns: 1fr 36px 1fr;
  gap: 8px;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}
.cps-item { display: flex; flex-direction: column; gap: 8px; }
.cps-img-wrap { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; }
.cps-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.cps-img-wrap:hover img { transform: scale(1.04); }
.cps-badge {
  position: absolute;
  top: 8px; left: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
  letter-spacing: 0.08em;
}
.cps-badge-before { background: rgba(100,100,100,0.80); color: #fff; }
.cps-badge-after  { background: rgba(2,132,199,0.88);  color: #fff; }
.cps-film-tag {
  position: absolute;
  bottom: 8px; right: 8px;
  font-size: 9px; font-weight: 600;
  background: rgba(14,165,233,0.85);
  color: #fff; padding: 3px 8px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.cps-label { font-size: 11px; font-weight: 600; color: var(--muted); text-align: center; letter-spacing: 0.05em; }
.cps-arrow { display: flex; align-items: center; justify-content: center; }
.cps-arrow svg { width: 20px; height: 20px; stroke: var(--sky); flex-shrink: 0; }
.cps-note { text-align: center; font-size: 11px; color: var(--muted); margin-top: 14px; }

/* ════════════ WORKS PREVIEW ════════════ */
.works { background: var(--bg); padding: 100px 48px; }
.works-inner { max-width: 1120px; margin: 0 auto; }
.works-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.works-catch {
  font-size: 14px; color: var(--muted); margin-top: 12px; line-height: 1.8;
}
.works-catch strong { color: var(--sky-dark); font-size: 1.4em; font-weight: 700; }
.works-stats { display: flex; gap: 24px; flex-shrink: 0; }
.works-stats .works-stat + .works-stat { border-left: 1px solid var(--border); padding-left: 24px; }
.works-stat { text-align: center; }
.works-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 40px; font-weight: 700;
  color: var(--sky-dark); line-height: 1; letter-spacing: -0.02em;
}
.works-stat-num span { font-size: 16px; color: var(--sun); margin-left: 3px; }
.works-stat-label { font-size: 11px; color: var(--muted); margin-top: 6px; letter-spacing: 0.04em; }
.works-bottom { text-align: center; margin-top: 36px; }
.see-all {
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 600;
  color: var(--sky-dark);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.15s;
}
.see-all:hover { gap: 12px; }
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* works.html と同じカードスタイル */
.work-card {
  background: var(--white);
  border-radius: var(--r-sm);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 0.5px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
  cursor: pointer;
}
.work-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(15,37,64,0.10); }

.work-card .card-photo { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #d8e4f0; }
.work-card .card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
.work-card:hover .card-photo img { transform: scale(1.04); }
.work-card .placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #d0dde8 0%, #c0ccd8 100%);
  color: #8a9bb0; font-size: 12px; gap: 8px;
}
.work-card .placeholder-icon { width: 40px; height: 40px; opacity: 0.5; }
.work-card .card-tags { position: absolute; top: 10px; left: 10px; display: flex; gap: 5px; flex-wrap: wrap; }
.work-card .tag { font-size: 10px; font-weight: 500; padding: 3px 9px; border-radius: 100px; letter-spacing: 0.02em; }
.work-card .tag-industry { background: rgba(15,37,64,0.82); color: #c8ddf0; backdrop-filter: blur(4px); }
.work-card .tag-film { background: rgba(55,138,221,0.85); color: #fff; backdrop-filter: blur(4px); }
.work-card .card-body { padding: 16px 18px 18px; }
.work-card .card-title { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 6px; line-height: 1.4; }
.work-card .card-meta {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px 12px; margin-bottom: 8px;
}
.work-card .card-meta-item:first-child { grid-column: 1 / -1; }
.work-card .card-meta-item { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.work-card .card-meta-item svg { width: 12px; height: 12px; flex-shrink: 0; }
.work-card .card-desc { font-size: 12px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.work-card .card-detail-hint {
  display: flex; align-items: center; gap: 4px;
  padding-top: 10px; border-top: 1px solid var(--border);
  font-size: 12px; font-weight: 500; color: var(--sky);
  transition: gap 0.2s;
}
.work-card .card-detail-hint svg { width: 14px; height: 14px; transition: transform 0.2s; }
.work-card:hover .card-detail-hint { gap: 7px; }
.work-card:hover .card-detail-hint svg { transform: translateX(2px); }

/* ════════════ FLOW ════════════ */
.flow {
  background: linear-gradient(135deg, #bae6fd 0%, #e0f2fe 50%, #bfdbfe 100%);
  padding: 100px 48px;
  position: relative; overflow: hidden;
}
.flow::before {
  content:'';
  position:absolute; top:-100px; right:-100px;
  width:500px; height:500px;
  border-radius:50%;
  background:rgba(14,165,233,0.08);
  pointer-events:none;
}
.flow-inner { max-width: 1120px; margin: 0 auto; }
.flow .section-kicker { color: var(--sky-dark); }

.flow-steps { display: grid; grid-template-columns: repeat(6,1fr); gap: 0; margin-top: 56px; position: relative; }
.flow-line {
  position: absolute;
  top: 30px;
  left: calc(100%/12); right: calc(100%/12);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,0.5), rgba(14,165,233,0.5), transparent);
}
.flow-step { text-align: center; position: relative; z-index: 1; padding: 0 8px; }
.step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--sky);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--sky-dark);
  box-shadow: 0 4px 14px rgba(14,165,233,0.18);
  transition: background 0.2s, box-shadow 0.2s;
}
.flow-step:hover .step-num { background: var(--sky-lt); box-shadow: 0 6px 20px rgba(14,165,233,0.28); }
.step-name { font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.step-note { font-size: 11px; color: var(--muted); line-height: 1.6; }

.flow-free {
  margin-top: 48px;
  text-align: center;
  background: #fff;
  border: 1.5px solid var(--sky);
  border-radius: var(--r);
  padding: 20px;
  color: var(--ink-mid);
  font-size: 14px;
  box-shadow: 0 4px 16px rgba(14,165,233,0.10);
}
.flow-free strong { color: var(--sky-dark); font-family: 'Outfit', sans-serif; }

/* ════════════ STORY ════════════ */
.story { background: var(--white); padding: 100px 48px; border-top: 1px solid var(--border); }
.story-inner { max-width: 1120px; margin: 0 auto; }

.story-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; color: var(--ink);
  line-height: 1.18; letter-spacing: -0.02em;
  margin-bottom: 56px;
}
.story-hl {
  color: #0284c7; position: relative; display: inline-block;
}
.story-hl::after {
  content: ''; position: absolute; bottom: 2px; left: 0; right: 0;
  height: 6px; background: #e0f2fe; border-radius: 3px; z-index: -1;
}
.story-body { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

.origin-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: 20px; padding: 36px 32px; }
.origin-label { font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.origin-lead { font-size: 17px; font-weight: 500; color: var(--ink); line-height: 1.6; margin-bottom: 18px; border-left: 3px solid var(--sky); padding-left: 18px; }
.origin-text { font-size: 14px; color: var(--muted); line-height: 1.9; }
.origin-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--sky-lt); color: var(--sky-dark); font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 100px; margin-top: 20px; }

.film-card { border-radius: 20px; overflow: hidden; border: 1.5px solid #bae6fd; box-shadow: 0 8px 32px rgba(14,165,233,0.10); }
.film-card-header { background: linear-gradient(135deg, var(--sky) 0%, var(--sky-dark) 100%); padding: 28px 28px 24px; position: relative; overflow: hidden; }
.film-card-header::after { content: ''; position: absolute; top: -40px; right: -40px; width: 150px; height: 150px; border-radius: 50%; background: rgba(255,255,255,0.08); }
.film-badge-b { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.2); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 100px; margin-bottom: 12px; backdrop-filter: blur(4px); }
.film-title-b { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 700; color: #fff; line-height: 1.25; }
.film-sub-b { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 6px; }
.film-body { background: var(--white); padding: 24px 28px 28px; }
.film-points { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.film-point { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: #f0f9ff; border-radius: 10px; }
.fp-icon { width: 32px; height: 32px; border-radius: 8px; background: #e0f2fe; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fp-text { font-size: 13px; color: var(--ink-mid); flex: 1; line-height: 1.45; }
.fp-star { font-size: 13px; color: var(--sun); letter-spacing: -2px; flex-shrink: 0; }
.film-cta-b { width: 100%; padding: 14px; background: var(--sky); color: #fff; border: none; border-radius: 10px; font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; text-decoration: none; display: block; text-align: center; transition: background 0.15s, transform 0.1s; box-shadow: 0 4px 16px rgba(14,165,233,0.28); }
.film-cta-b:hover { background: var(--sky-dark); transform: translateY(-2px); }
.film-note { text-align: center; font-size: 11px; color: var(--muted); margin-top: 10px; }

/* ════════════ PHOTO CAROUSEL ════════════ */
.photo-carousel-wrap {
  overflow: hidden; margin-top: 56px; position: relative;
}
.photo-carousel-wrap::before,
.photo-carousel-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.photo-carousel-wrap::before { left: 0; background: linear-gradient(90deg, rgba(255,255,255,0.6), transparent); }
.photo-carousel-wrap::after  { right: 0; background: linear-gradient(270deg, rgba(255,255,255,0.6), transparent); }
.photo-carousel-track { display: flex; gap: 14px; width: max-content; cursor: grab; user-select: none; }
.photo-carousel-track.dragging { cursor: grabbing; }
.carousel-item { width: 260px; height: 180px; border-radius: 12px; overflow: hidden; flex-shrink: 0; box-shadow: 0 6px 20px rgba(0,0,0,0.10); }
.carousel-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; pointer-events: none; -webkit-user-drag: none; }
.carousel-item:hover img { transform: scale(1.06); }

/* ════════════ WHY ════════════ */
.why { background: var(--white); padding: 100px 48px; }
.why-inner { max-width: 1120px; margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 56px; }
.why-card {
  border-radius: var(--r);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}
.why-card:hover { border-color: var(--sky); transform: translateY(-3px); }
.why-icon { width: 64px; height: 64px; border-radius: 16px; background: var(--sky-lt); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.why-icon svg { width: 30px; height: 30px; stroke: var(--sky-dark); }
.why-card h3 { font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.why-card p  { font-size: 13px; color: var(--muted); line-height: 1.8; }

/* ════════════ CTA ════════════ */
.cta {
  background: linear-gradient(135deg, var(--sky) 0%, #0369a1 100%);
  padding: 100px 48px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta::before {
  content:'';
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-inner { position: relative; z-index: 1; }
.cta h2 { font-family: 'Outfit', sans-serif; font-size: clamp(28px, 4vw, 46px); font-weight: 700; color: #fff; letter-spacing: -0.02em; margin-bottom: 16px; }
.cta p { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 40px; line-height: 1.8; }
.cta-notes { margin-top: 20px; display: flex; align-items: center; justify-content: center; gap: 24px; }
.cta-note { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.7); }
.cta-note svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.7); }

/* ════════════ FOOTER ════════════ */
footer {
  background: var(--ink);
  padding: 60px 48px 36px;
}
.footer-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 10px; margin-bottom: 10px; text-decoration: none; }
.footer-logo .logo-mark { background: var(--sky); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.footer-contact { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.9; }
.footer-links { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px 32px; align-content: start; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: #fff; }
.footer-copy { max-width: 1120px; margin: 24px auto 0; display: flex; justify-content: center; font-size: 12px; color: rgba(255,255,255,0.38); }

/* ════════════ RESPONSIVE ════════════ */
@media (max-width: 1000px) {
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .benefits-row2 { grid-template-columns: repeat(2,1fr); max-width: 100%; }
  .flow-steps { grid-template-columns: repeat(3,1fr); gap: 20px; }
  .flow-line { display: none; }
}
@media (max-width: 1100px) {
  .hero { padding: 100px 20px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .hero-lead { max-width: 100%; }
  .benefits, .compare, .works, .flow, .why, .cta, .story { padding: 64px 20px; }
  .story-body { grid-template-columns: 1fr; gap: 28px; }
  .compare-grid { grid-template-columns: 1fr; gap: 0; }
  .compare-arrow { display: flex; padding: 16px 0; }
  .compare-arrow .arrow-circle { transform: rotate(90deg); }
  .why-grid { grid-template-columns: 1fr; }
  .works-top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .works-stats { align-self: stretch; }
  .works-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-copy { flex-direction: column; gap: 4px; }
  .cta-notes { flex-direction: column; gap: 8px; }
}
@media (max-width: 768px) {
  .compare-photos-wrap { grid-template-columns: 1fr; }
}

/* ── COMPANY ── */
.company {
  background: var(--white);
  padding: 80px 40px;
}
.company-inner {
  max-width: 800px;
  margin: 0 auto;
}
.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  font-size: 14px;
}
.company-table th,
.company-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}
.company-table th {
  width: 160px;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}
.company-table td {
  color: var(--text);
}
.company-table a {
  color: var(--sky);
  text-decoration: none;
}
.company-table a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .company { padding: 60px 20px; }
  .company-table th,
  .company-table td { display: block; width: 100%; padding: 6px 0; border-bottom: none; }
  .company-table th { color: var(--text-muted); font-size: 11px; letter-spacing: 0.05em; padding-top: 16px; border-top: 1px solid var(--border); }
  .company-table tr:first-child th { border-top: none; }
}
@media (max-width: 500px) {
  .works-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-row2 { grid-template-columns: 1fr; max-width: 100%; }
  .flow-steps { grid-template-columns: repeat(2,1fr); }
}
