/* ============================================
   Ecold LINK LP - Section-specific Styles
   ============================================ */

/* ---------- HERO ---------- */
.hero {
  padding: 60px 0 90px;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(43, 180, 230, 0.12), transparent 60%),
    radial-gradient(900px 500px at 10% 20%, rgba(255, 206, 40, 0.10), transparent 60%),
    var(--bg);
  overflow: hidden;
}

/* Banner-based hero */
.hero-banner {
  padding: 40px 0 70px;
}
.hero-banner-wrap {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 20px 50px rgba(15, 32, 51, 0.10);
  margin-bottom: 40px;
  background: white;
}
.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}
.hero-banner-badge {
  position: absolute;
  bottom: -18px;
  left: -22px;
  width: 170px;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 10px 22px rgba(15, 32, 51, 0.18));
  animation: hero-badge-bob 3.8s ease-in-out infinite;
  transform-origin: center;
  pointer-events: none;
}
.hero-banner-logo {
  position: absolute;
  top: 8%;
  left: 27%;
  width: 34%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero-banner-logo {
    top: 8%;
    left: 27%;
    width: 34%;
  }
}
@keyframes hero-badge-bob {
  0%, 100% { transform: rotate(-8deg) translateY(0) scale(1); }
  50%      { transform: rotate(-8deg) translateY(-5px) scale(1.03); }
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: white;
  border-radius: 20px;
  padding: 36px 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.hero-actions .hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}
.hero-actions .hero-ctas .btn {
  min-width: 240px;
}

@media (max-width: 900px) {
  .hero-actions {
    padding: 28px 20px;
  }
  .hero-actions .hero-ctas .btn {
    min-width: 0;
    flex: 1 1 100%;
  }
  .hero-banner-badge {
    width: 120px;
    bottom: -12px;
    left: -10px;
  }
}
@media (max-width: 520px) {
  .hero-banner-badge {
    width: 92px;
    bottom: -8px;
    left: -6px;
  }
}

/* ---------- CONSULT BANNER ---------- */
.consult-banner-section {
  padding: 70px 0 20px;
  background: var(--bg);
}
.consult-banner-link {
  display: block;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 32, 51, 0.10);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.consult-banner-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(15, 32, 51, 0.16);
}
.consult-banner-img {
  width: 100%;
  height: auto;
  display: block;
}
.consult-banner-cta {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--brand);
  color: white;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(43, 180, 230, 0.4);
  transition: background 0.16s, transform 0.16s;
}
.consult-banner-link:hover .consult-banner-cta {
  background: var(--brand-dark);
}
.consult-banner-link:hover .arrow {
  transform: translateX(4px);
}
.consult-banner-cta .arrow {
  transition: transform 0.16s ease;
  font-weight: 900;
}

@media (max-width: 640px) {
  .consult-banner-cta {
    right: 12px;
    bottom: 12px;
    padding: 10px 16px;
    font-size: 12px;
  }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(43, 180, 230, 0.10);
  color: var(--brand-deep);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 28px;
  border: 1px solid rgba(43, 180, 230, 0.20);
}
.hero-tagline .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero h1 {
  font-size: clamp(38px, 5.6vw, 68px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.005em;
  margin: 0 0 24px;
  color: var(--ink);
  text-wrap: balance;
}
.hero h1 .design {
  color: var(--brand);
  position: relative;
  display: inline-block;
}
.hero h1 .design::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 12px;
  background: rgba(255, 206, 40, 0.5);
  z-index: -1;
  border-radius: 2px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.9;
  color: var(--ink-2);
  margin: 0 0 36px;
  max-width: 540px;
  text-wrap: pretty;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-meta {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px dashed var(--line);
}
.hero-meta-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 700; color: var(--ink-2);
}
.hero-meta-item .icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent-yellow);
  display: grid; place-items: center;
  color: var(--ink); font-weight: 900;
}
.hero-visual {
  position: relative;
}
.hero-visual img {
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(15, 32, 51, 0.16));
}
.hero-badge {
  position: absolute;
  background: white;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
}
.hero-badge .badge-icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  font-size: 20px;
}
.hero-badge-1 { top: 8%; left: -20px; }
.hero-badge-1 .badge-icon { background: rgba(43, 180, 230, 0.15); color: var(--brand); }
.hero-badge-2 { bottom: 12%; right: -10px; }
.hero-badge-2 .badge-icon { background: rgba(255, 206, 40, 0.20); color: var(--accent-orange); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-badge-1, .hero-badge-2 { display: none; }
}

/* ---------- LOGO STRIP / CREDIBILITY ---------- */
.trust {
  padding: 40px 0;
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 13px; font-weight: 800; letter-spacing: 0.06em; color: var(--muted);
}
.trust-items {
  display: flex; gap: 44px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 700; color: var(--ink-2);
}
.trust-item .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand); color: white;
  display: grid; place-items: center; font-size: 12px; font-weight: 900;
}

/* ---------- VALUE PILLARS (3 icons) ---------- */
.value-pillars {
  padding: 110px 0 100px;
  background:
    radial-gradient(1000px 500px at 20% 0%, rgba(43, 180, 230, 0.07), transparent 60%),
    radial-gradient(900px 500px at 90% 100%, rgba(255, 206, 40, 0.08), transparent 60%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.value-pillars::before {
  content: '';
  position: absolute;
  top: 60px;
  right: -140px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,180,230,0.10), transparent 70%);
  pointer-events: none;
}
.value-pillars::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,206,40,0.10), transparent 70%);
  pointer-events: none;
}
.value-pillars > .container { position: relative; z-index: 1; }

.value-pillars-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 64px;
}
.value-pillars-head .eyebrow {
  display: inline-block;
  color: var(--brand-deep);
  margin-bottom: 18px;
}
.value-pillars-title {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 900;
  line-height: 1.35;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.value-pillars-title .hl-blue {
  color: var(--brand);
  position: relative;
}
.value-pillars-title .hl-blue::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 10px;
  background: rgba(255, 206, 40, 0.45);
  z-index: -1;
  border-radius: 4px;
}
.value-pillars-lead {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--ink-2);
  margin: 0;
}
.sp-only { display: none; }

.value-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* --- VP CARD --- */
.vp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 24px;
  padding: 36px 30px 30px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(15, 32, 51, 0.04);
  text-decoration: none;
  color: inherit;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  overflow: hidden;
  isolation: isolate;
}
.vp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(43,180,230,0.06), transparent 40%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 260ms ease;
  z-index: -1;
}
.vp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(15, 32, 51, 0.10);
  border-color: rgba(43, 180, 230, 0.35);
}
.vp-card:hover::before { opacity: 1; }
.vp-card:hover .vp-icon-halo { transform: scale(1.08); }

/* Featured (center) card */
.vp-card-featured {
  background:
    linear-gradient(180deg, #FFFDF4 0%, white 100%);
  border: 1px solid rgba(255, 206, 40, 0.55);
  box-shadow: 0 20px 50px rgba(43, 180, 230, 0.14);
  transform: translateY(-14px);
}
.vp-card-featured:hover { transform: translateY(-20px); }
.vp-featured-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 7px 18px;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 2;
}

/* Index (01 / COST) */
.vp-index {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.vp-index-num {
  font-family: var(--font-num);
  font-size: 22px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: 0.02em;
  line-height: 1;
}
.vp-card-featured .vp-index-num { color: var(--brand-deep); }
.vp-index-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}
.vp-index-label {
  font-family: var(--font-num);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--muted);
}

/* Icon wrap */
.vp-icon-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 8px auto 22px;
  display: grid;
  place-items: center;
}
.vp-icon-halo {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 206, 40, 0.28), transparent 62%),
    radial-gradient(circle at 70% 70%, rgba(43, 180, 230, 0.22), transparent 62%),
    #FFFDF4;
  transition: transform 320ms ease;
  z-index: 0;
}
.vp-card-featured .vp-icon-halo {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 206, 40, 0.42), transparent 62%),
    radial-gradient(circle at 70% 70%, rgba(43, 180, 230, 0.30), transparent 62%),
    #FFFCEB;
}
.vp-icon {
  position: relative;
  z-index: 1;
  width: 140px;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(15, 32, 51, 0.10));
}

/* Body */
.vp-body { flex: 1; display: flex; flex-direction: column; text-align: center; }
.vp-kicker {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.vp-card-featured .vp-kicker { color: var(--brand-deep); }
.vp-title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
  margin: 0 0 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.vp-emph {
  color: var(--brand);
  font-size: 32px;
  font-family: var(--font-num);
  letter-spacing: -0.02em;
  padding-right: 2px;
}
.vp-card-featured .vp-emph { color: var(--brand-deep); }
.vp-desc {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-2);
  margin: 0 0 22px;
  text-align: left;
}
.vp-foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.vp-foot-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.vp-foot-val {
  font-family: var(--font-num);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.vp-foot-val small {
  font-size: 12px;
  font-weight: 700;
  margin-left: 2px;
  color: var(--muted);
}
.vp-card-featured .vp-foot-val { color: var(--brand-deep); }

/* Bottom strip */
.value-pillars-strip {
  margin-top: 56px;
  padding: 18px 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2);
  box-shadow: 0 2px 10px rgba(15, 32, 51, 0.04);
}
.vps-check {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  font-size: 11px;
  font-weight: 900;
  margin-right: 6px;
  margin-left: 4px;
}
.vps-sep {
  color: var(--line);
  font-weight: 400;
}

/* Responsive */
@media (max-width: 960px) {
  .value-pillars { padding: 80px 0 70px; }
  .value-pillars-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 440px;
    margin: 0 auto;
  }
  .vp-card-featured { transform: none; }
  .vp-card-featured:hover { transform: translateY(-6px); }
  .sp-only { display: inline; }
  .value-pillars-strip {
    border-radius: 20px;
    justify-content: flex-start;
    padding: 20px 22px;
  }
}
@media (max-width: 520px) {
  .vp-card { padding: 30px 22px 24px; }
  .vp-icon-wrap { width: 140px; height: 140px; }
  .vp-icon { width: 120px; height: 120px; }
  .vp-title { font-size: 20px; }
  .vp-emph { font-size: 28px; }
}

/* ---------- VIDEO SECTION ---------- */
.video-section {
  padding: 70px 0 90px;
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(43, 180, 230, 0.08), transparent 60%),
    radial-gradient(900px 500px at 90% 90%, rgba(255, 206, 40, 0.06), transparent 60%),
    linear-gradient(180deg, #FFFBF0 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.video-section::before {
  content: '';
  position: absolute;
  bottom: -180px;
  right: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,180,230,0.10), transparent 70%);
  pointer-events: none;
}
.video-section > .container { position: relative; z-index: 1; }

.video-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.video-head .eyebrow {
  display: inline-block;
  color: var(--brand-deep);
  margin-bottom: 18px;
}
.video-title {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 900;
  line-height: 1.35;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.video-title .hl-blue {
  color: var(--brand);
  position: relative;
}
.video-title .hl-blue::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 10px;
  background: rgba(255, 206, 40, 0.45);
  z-index: -1;
  border-radius: 4px;
}
.video-lead {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--ink-2);
  margin: 0;
}

/* Frame */
.video-frame {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  padding: 14px;
  background: white;
  border-radius: 24px;
  box-shadow:
    0 30px 80px rgba(15, 32, 51, 0.16),
    0 0 0 1px rgba(43, 180, 230, 0.10);
}
.video-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(43,180,230,0.14), rgba(255,206,40,0.14));
  z-index: -1;
  filter: blur(30px);
}
.video-frame-inner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}
.video-frame-tag {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--ink);
  color: white;
  font-family: var(--font-num);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(15, 32, 51, 0.20);
  z-index: 2;
}
.video-frame-tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #FF4747;
  box-shadow: 0 0 0 3px rgba(255, 71, 71, 0.25);
  animation: video-tag-blink 1.6s ease-in-out infinite;
}
@keyframes video-tag-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

/* Embed area (16:9) */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  cursor: pointer;
  overflow: hidden;
}
.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 380ms ease, filter 380ms ease;
}
.video-embed:hover .video-thumb {
  transform: scale(1.04);
  filter: brightness(0.85);
}
.video-embed::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 40%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

/* Play button */
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 92px;
  height: 92px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  z-index: 2;
  display: grid;
  place-items: center;
}
.video-play-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform 260ms ease, background 260ms ease;
}
.video-play-ring::before,
.video-play-ring::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  animation: video-play-pulse 2.4s ease-out infinite;
}
.video-play-ring::after { animation-delay: 1.2s; }
@keyframes video-play-pulse {
  0%   { transform: scale(1);   opacity: 0.9; }
  100% { transform: scale(1.5); opacity: 0;   }
}
.video-play-icon {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: white;
  display: grid;
  place-items: center;
  color: var(--brand);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.30);
  transition: transform 200ms ease, box-shadow 200ms ease;
  z-index: 1;
}
.video-play-icon svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
  transition: color 200ms ease;
}
.video-embed:hover .video-play-icon {
  transform: scale(1.08);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.40);
}
.video-embed:hover .video-play-icon svg { color: var(--brand-deep); }
.video-embed:hover .video-play-ring { background: rgba(255, 255, 255, 0.30); }

/* Caption inside player */
.video-caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  pointer-events: none;
}
.video-caption-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  background: var(--accent-yellow);
  color: var(--ink);
  border-radius: 6px;
  font-family: var(--font-num);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.20);
}
.video-caption-text {
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Playing state — iframe swapped in */
.video-embed.playing .video-thumb,
.video-embed.playing .video-play,
.video-embed.playing .video-caption {
  display: none;
}
.video-embed.playing::after { display: none; }
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .video-section { padding: 50px 0 70px; }
  .video-head { margin-bottom: 36px; }
  .video-frame { padding: 8px; border-radius: 18px; }
  .video-frame-inner { border-radius: 12px; }
  .video-play { width: 72px; height: 72px; }
  .video-play-icon { width: 50px; height: 50px; }
  .video-play-icon svg { width: 22px; height: 22px; }
  .video-caption { left: 12px; bottom: 12px; }
  .video-caption-text { font-size: 12px; }
}

/* ---------- SLACK SUPPORT (image-based) ---------- */
.slack-support {
  padding: 40px 0 100px;
  background:
    radial-gradient(900px 500px at 90% 10%, rgba(43, 180, 230, 0.06), transparent 60%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.slack-hero-wrap {
  display: flex;
  justify-content: center;
}
.slack-hero-img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
}

/* ---------- FEATURES OVERVIEW (9 icons) ---------- */
.features-overview {
  padding: 100px 0 80px;
  background: #FFFFFF;
  position: relative;
}
.fo-header {
  text-align: center;
  margin-bottom: 60px;
}
.fo-header .section-lead {
  max-width: 640px;
  margin: 20px auto 0;
}
.fo-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.fo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: none;
  transition: transform 200ms ease;
}
.fo-card:hover {
  transform: translateY(-4px);
}
.fo-icon {
  width: 100%;
  max-width: 160px;
  height: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 200ms ease;
}
.fo-card:hover .fo-icon {
  transform: scale(1.04);
}
/* 勤怠(8番目) と 請求(9番目) は元画像のマージンが少ないため、他のアイコンと視覚サイズを揃えるため縮小 */
.fo-grid .fo-card:nth-child(8) .fo-icon,
.fo-grid .fo-card:nth-child(9) .fo-icon {
  max-width: 128px;
}

/* CTA */
.fo-cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}
.fo-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 44px;
  background: var(--brand-blue, #1E7BC6);
  color: white;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(29, 111, 203, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  position: relative;
}
.fo-cta-btn:hover {
  transform: translateY(-2px);
  background: #1868AE;
  box-shadow: 0 14px 34px rgba(29, 111, 203, 0.36);
}
.fo-cta-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 180ms ease;
}
.fo-cta-btn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .features-overview { padding: 70px 0 60px; }
  .fo-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .fo-icon { max-width: 110px; }
  .fo-cta { margin-top: 40px; }
  .fo-cta-btn { padding: 15px 32px; font-size: 15px; }
}
@media (max-width: 520px) {
  .fo-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}

/* Responsive */
@media (max-width: 900px) {
  .slack-support { padding: 30px 0 70px; }
}


/* ---------- HERO FEATURE CARDS (3-up illustrated, image only) ---------- */
.hero-feature-cards {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 4px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
}
.hfc-card {
  display: block;
  transition: transform 240ms ease, filter 240ms ease;
}
.hfc-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(15, 32, 51, 0.08));
  transition: filter 240ms ease;
}
.hfc-card:hover {
  transform: translateY(-4px);
}
.hfc-card:hover img {
  filter: drop-shadow(0 14px 28px rgba(15, 32, 51, 0.14));
}

/* Hide legacy hero-meta if still rendered elsewhere */
.hero-actions .hero-meta { display: none; }

/* Responsive */
@media (max-width: 900px) {
  .hero-feature-cards {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    padding-top: 20px;
  }
}
@media (max-width: 520px) {
  .hero-feature-cards { gap: 8px; }
}

/* ---------- NEWS / お知らせ ---------- */
.news {
  padding: 90px 0 100px;
  background:
    linear-gradient(180deg, var(--bg) 0%, #FFFBF0 100%);
  position: relative;
}
.news::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(43, 180, 230, 0.10) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  background-position: 0 0;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.35), transparent 60%);
  pointer-events: none;
}
.news > .container { position: relative; z-index: 1; }

.news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--ink);
  position: relative;
}
.news-head::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 80px;
  height: 2px;
  background: var(--brand);
}
.news-head-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.news-head-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #EAF6FC;
}
.news-head-icon svg { width: 26px; height: 26px; }
.news-head-title {
  font-size: 28px;
  font-weight: 900;
  margin: 0;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.news-head-sub {
  font-family: var(--font-num);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.14em;
  padding-bottom: 4px;
}
.news-head-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent-orange);
  color: white;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.30);
}
.news-head-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.36);
}
.news-head-more .arrow { font-size: 13px; }

/* News Banners */
.news-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

/* Image banner variant */
.news-banner-img {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(25, 111, 159, 0.10);
  line-height: 0;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.news-banner-img img {
  display: block;
  width: 100%;
  height: auto;
}
.news-banner-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(25, 111, 159, 0.18);
}
.news-banner-img:focus-visible {
  outline: 3px solid #0b95d1;
  outline-offset: 3px;
}
@media (max-width: 720px) {
  .news-banners--images { grid-template-columns: 1fr; }
}
.news-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 12px;
  align-items: center;
  border-radius: 20px;
  padding: 28px 26px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease;
  min-height: 180px;
}
.news-banner:hover {
  transform: translateY(-4px);
}
.news-banner-doc {
  background:
    radial-gradient(circle at 85% 15%, rgba(43,180,230,0.15), transparent 55%),
    linear-gradient(135deg, #EAF6FC 0%, #FFFFFF 100%);
  border: 1.5px solid rgba(43, 180, 230, 0.30);
  box-shadow: 0 6px 20px rgba(15, 32, 51, 0.05);
}
.news-banner-doc:hover {
  box-shadow: 0 14px 32px rgba(43, 180, 230, 0.20);
  border-color: var(--brand);
}
.news-banner-seminar {
  background:
    radial-gradient(circle at 10% 90%, rgba(255,206,40,0.22), transparent 55%),
    linear-gradient(135deg, #1E3A5F 0%, #0B5E7F 100%);
  color: white;
  border: 1.5px solid rgba(255,206,40,0.35);
  box-shadow: 0 6px 20px rgba(11, 94, 127, 0.20);
}
.news-banner-seminar:hover {
  box-shadow: 0 16px 34px rgba(11, 94, 127, 0.32);
}

.nb-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
}
.nb-eyebrow {
  font-family: var(--font-num);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--brand-deep);
  text-transform: uppercase;
}
.nb-eyebrow-yellow { color: var(--accent-yellow); }
.nb-title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.4;
  margin: 0;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.nb-title-light { color: white; }
.nb-title-em {
  color: var(--brand);
  font-size: 30px;
  font-family: var(--font-num);
  letter-spacing: -0.02em;
  padding-right: 2px;
}
.nb-title-em-yellow {
  color: var(--accent-yellow);
  font-family: var(--font-jp);
  font-size: 26px;
  padding-right: 4px;
  text-shadow: 0 1px 0 rgba(0,0,0,0.15);
}
.nb-slash {
  color: var(--accent-yellow);
  font-weight: 800;
  font-size: 14px;
  margin: 0 2px;
  display: inline-block;
  transform: translateY(-1px);
}
.nb-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 4px;
  padding: 8px 16px;
  background: var(--brand);
  color: white;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
  transition: transform 200ms ease;
}
.nb-cta .arrow { font-size: 12px; }
.news-banner-doc:hover .nb-cta { background: var(--brand-dark); }
.nb-cta-light {
  background: var(--accent-yellow);
  color: var(--ink);
}
.news-banner-seminar:hover .nb-cta-light { background: #FFD84D; }

/* Banner visuals */
.nb-visual {
  position: relative;
  height: 100%;
  min-height: 130px;
}
.nb-visual-doc { display: grid; place-items: center; }
.nb-doc-stack {
  position: relative;
  width: 110px;
  height: 140px;
}
.nb-doc {
  position: absolute;
  border-radius: 10px;
  background: white;
  box-shadow: 0 8px 20px rgba(15, 32, 51, 0.15);
  border: 1px solid var(--line);
}
.nb-doc-3 {
  width: 80px; height: 110px;
  top: 22px; left: -14px;
  background: #E4EAF0;
  transform: rotate(-10deg);
  box-shadow: 0 4px 10px rgba(15, 32, 51, 0.08);
}
.nb-doc-2 {
  width: 88px; height: 118px;
  top: 14px; left: 8px;
  background: #F1F5F9;
  transform: rotate(-4deg);
  box-shadow: 0 6px 14px rgba(15, 32, 51, 0.10);
}
.nb-doc-1 {
  width: 96px; height: 126px;
  top: 6px; left: 28px;
  background: white;
  transform: rotate(4deg);
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nb-doc-head {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  margin-bottom: 4px;
}
.nb-doc-line {
  height: 5px;
  border-radius: 3px;
  background: #E4EAF0;
}
.nb-doc-line.short { width: 55%; }
.nb-doc-badge {
  position: absolute;
  bottom: -8px;
  right: -8px;
  background: var(--accent-orange);
  color: white;
  font-family: var(--font-num);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 10px rgba(245, 166, 35, 0.35);
}

.nb-visual-seminar {
  display: grid;
  place-items: center;
}
.nb-sem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  width: 130px;
  height: 130px;
  transform: rotate(-4deg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.nb-sem-tile {
  background-size: cover;
  background-position: center;
  position: relative;
}
.nb-sem-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
}
.nb-sem-tile-1 { background: linear-gradient(135deg, #F5A623, #FFCE28); }
.nb-sem-tile-2 { background: linear-gradient(135deg, #2BB4E6, #1A9BC9); }
.nb-sem-tile-3 { background: linear-gradient(135deg, #B67AD6, #8E5AB0); }
.nb-sem-tile-4 { background: linear-gradient(135deg, #93C846, #6BA636); }
.nb-sem-badge {
  position: absolute;
  right: -6px;
  top: -6px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--accent-yellow);
  color: var(--ink);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  transform: rotate(6deg);
  padding: 4px;
  line-height: 1;
}
.nb-sem-badge-date {
  font-family: var(--font-num);
  font-size: 22px;
  font-weight: 900;
  display: block;
}
.nb-sem-badge-date small {
  font-size: 12px;
  font-weight: 800;
}
.nb-sem-badge-label {
  display: block;
  font-size: 9.5px;
  font-weight: 800;
  margin-top: 3px;
  letter-spacing: 0.05em;
}

/* News List */
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 32, 51, 0.04);
}
.news-item {
  display: grid;
  grid-template-columns: 110px 128px 1fr;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px dashed var(--line);
  transition: background 180ms ease;
}
.news-item:last-child { border-bottom: none; }
.news-item:hover { background: #FBFDFE; }
.news-date {
  font-family: var(--font-num);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.news-tag {
  display: inline-grid;
  place-items: center;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  color: white;
  letter-spacing: 0.02em;
  white-space: nowrap;
  min-width: 108px;
}
.news-tag-seminar { background: var(--accent-orange); }
.news-tag-update  { background: var(--brand); }
.news-tag-news    { background: var(--ink-2); }
.news-tag-media   { background: var(--accent-purple); }
.news-title {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.65;
  color: var(--ink);
  text-decoration: none;
  transition: color 180ms ease;
}
.news-title:hover {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Responsive */
@media (max-width: 900px) {
  .news { padding: 70px 0 80px; }
  .news-head { flex-wrap: wrap; }
  .news-head-title { font-size: 24px; }
  .news-banners {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .news-banner { padding: 24px 22px; min-height: 160px; }
  .nb-title { font-size: 19px; }
  .nb-title-em { font-size: 26px; }
  .news-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 20px;
  }
  .news-date { font-size: 12px; }
}
@media (max-width: 520px) {
  .news-head-sub { display: none; }
  .news-banner { grid-template-columns: 1.3fr 1fr; }
  .nb-doc-stack { width: 90px; height: 120px; transform: scale(0.85); }
  .nb-sem-grid { width: 100px; height: 100px; }
  .nb-sem-badge { width: 62px; height: 62px; }
  .nb-sem-badge-date { font-size: 18px; }
}

/* ---------- PROBLEM (Before / After) ---------- */
.problem {
  background: #10233A;
  color: #E6EEF6;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.problem::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 90% 20%, rgba(43, 180, 230, 0.12), transparent 60%),
    radial-gradient(500px 400px at 10% 80%, rgba(182, 122, 214, 0.10), transparent 60%);
  pointer-events: none;
}
.problem .eyebrow { color: var(--accent-yellow); }
.problem .eyebrow::before { background: var(--accent-yellow); }
.problem .section-title { color: white; }
.problem-lead {
  color: #B7C4D3;
  font-size: 17px;
  max-width: 720px;
  line-height: 1.9;
  margin-bottom: 70px;
}
.problem-lead strong { color: white; }
.problem-quote {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin: 40px 0;
  padding-left: 24px;
  border-left: 4px solid var(--accent-yellow);
  line-height: 1.7;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.problem-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  backdrop-filter: blur(10px);
}
.problem-card .num {
  font-family: var(--font-num);
  font-size: 48px;
  font-weight: 900;
  color: rgba(255, 206, 40, 0.35);
  line-height: 1;
  margin-bottom: 12px;
}
.problem-card h3 {
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 12px;
  color: white;
  line-height: 1.5;
}
.problem-card p {
  font-size: 14px;
  color: #A9B8C8;
  line-height: 1.85;
  margin: 0;
}

.problem-answer {
  background: linear-gradient(135deg, var(--brand) 0%, #4CC5F0 100%);
  border-radius: 24px;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  box-shadow: 0 30px 80px rgba(43, 180, 230, 0.4);
}
.problem-answer .icon {
  width: 72px; height: 72px;
  background: white; border-radius: 20px;
  display: grid; place-items: center;
  font-size: 32px;
  flex-shrink: 0;
}
.problem-answer h3 {
  font-size: 24px; font-weight: 900; color: white;
  margin: 0 0 6px; line-height: 1.5;
}
.problem-answer p {
  font-size: 14px; color: rgba(255, 255, 255, 0.9);
  margin: 0; line-height: 1.7;
}

@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr; }
  .problem-answer { grid-template-columns: 1fr; text-align: center; padding: 36px 28px; }
}

/* ---------- OVERVIEW / WHAT IS ---------- */
.overview {
  background: white;
  padding: 140px 0;
}
.overview-hero {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 80px;
}
.overview-hero .section-lead { margin: 0 auto; }
.overview-image-wrap {
  background: linear-gradient(180deg, var(--bg-blue) 0%, transparent 100%);
  border-radius: 32px;
  padding: 40px;
  text-align: center;
}
.overview-image-wrap img { max-width: 100%; margin: 0 auto; }

/* ---------- DIFFERENTIATORS (6 pillars) ---------- */
.pillars {
  padding: 140px 0;
  background: var(--bg);
  position: relative;
}
.pillars-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.pillars-header .kicker {
  font-family: var(--font-num);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 12px;
}
@media (max-width: 860px) {
  .pillars-header { grid-template-columns: 1fr; gap: 20px; }
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.pillar {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  overflow: hidden;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.pillar-num {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 18px;
}
.pillar-num .n {
  font-family: var(--font-num);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--brand);
  letter-spacing: -0.02em;
}
.pillar-num .of {
  font-family: var(--font-num);
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
}
.pillar h3 {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
  margin: 0 0 14px;
  color: var(--ink);
}
.pillar h3 .highlight { color: var(--brand); }
.pillar p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.9;
  margin: 0 0 16px;
}
.pillar-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--bg-cream);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-orange);
}

/* pillar variants */
.pillar-hero {
  grid-column: span 2;
  background: linear-gradient(135deg, #0B5E7F 0%, #10233A 100%);
  color: white;
  border-color: transparent;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.pillar-hero h3 { color: white; font-size: 32px; line-height: 1.4; }
.pillar-hero p { color: rgba(255, 255, 255, 0.85); font-size: 15.5px; }
.pillar-hero .pillar-num .n { color: var(--accent-yellow); font-size: 72px; }
.pillar-hero .pillar-num .of { color: rgba(255, 255, 255, 0.6); }
.pillar-hero .pillar-tag { background: rgba(255, 206, 40, 0.2); color: var(--accent-yellow); }
.pillar-hero-visual {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  padding: 28px;
  font-family: 'JetBrains Mono', 'Menlo', monospace;
  font-size: 13px;
}
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  color: white;
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 1.6;
}
.check-list .cross,
.check-list .check {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 900;
  margin-top: 2px;
}
.check-list .cross { background: rgba(255, 100, 100, 0.20); color: #FF8888; }
.check-list .check { background: rgba(43, 180, 230, 0.25); color: #7ED8FF; }

@media (max-width: 860px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-hero { grid-column: span 1; grid-template-columns: 1fr; padding: 36px 28px; }
}

/* ---------- FLOW (integrated flow) ---------- */
.flow {
  padding: 140px 0;
  background: linear-gradient(180deg, white 0%, var(--bg-blue) 100%);
}
.flow-header { text-align: center; margin-bottom: 80px; }
.flow-header .section-lead { margin: 0 auto; }

.flow-diagram {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: stretch;
  margin-bottom: 60px;
}
.flow-step {
  background: white;
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.2s;
}
.flow-step:hover { transform: translateY(-4px); }
.flow-step .step-num {
  font-family: var(--font-num);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--brand);
  margin-bottom: 8px;
}
.flow-step .step-icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  display: grid; place-items: center;
  margin: 0 auto 14px;
  font-size: 24px;
}
.flow-step h4 {
  font-size: 15px; font-weight: 900;
  margin: 0 0 6px;
  color: var(--ink);
}
.flow-step p {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}
.flow-step + .flow-step::before {
  content: "→";
  position: absolute;
  left: -14px; top: 50%;
  transform: translateY(-50%);
  color: var(--brand);
  font-weight: 900;
  font-size: 18px;
}
.flow-step.s1 .step-icon { background: rgba(43, 180, 230, 0.15); color: var(--brand); }
.flow-step.s2 .step-icon { background: rgba(255, 206, 40, 0.20); color: var(--accent-orange); }
.flow-step.s3 .step-icon { background: rgba(182, 122, 214, 0.20); color: var(--accent-purple); }
.flow-step.s4 .step-icon { background: rgba(147, 200, 70, 0.20); color: var(--accent-green); }
.flow-step.s5 .step-icon { background: rgba(245, 138, 165, 0.20); color: var(--accent-pink); }

.flow-callout {
  background: white;
  border: 2px dashed var(--brand);
  border-radius: 20px;
  padding: 24px 32px;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}
.flow-callout .em { color: var(--brand); }

@media (max-width: 860px) {
  .flow-diagram { grid-template-columns: repeat(2, 1fr); }
  .flow-step + .flow-step::before { display: none; }
}

/* ---------- FEATURES (screenshots showcase) ---------- */
.features {
  padding: 140px 0;
  background: white;
}
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 130px;
}
.feature-block:last-child { margin-bottom: 0; }
.feature-block.reverse .feature-visual { order: -1; }
.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.feature-tag.t1 { background: rgba(43, 180, 230, 0.12); color: var(--brand); }
.feature-tag.t2 { background: rgba(255, 206, 40, 0.20); color: #C08800; }
.feature-tag.t3 { background: rgba(182, 122, 214, 0.15); color: var(--accent-purple); }
.feature-tag.t4 { background: rgba(147, 200, 70, 0.20); color: #5F8A20; }

.feature-block h3 {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.4;
  margin: 0 0 20px;
  color: var(--ink);
  text-wrap: balance;
}
.feature-block p {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.9;
  margin: 0 0 24px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 14.5px;
  color: var(--ink-2);
  border-bottom: 1px dashed var(--line);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--brand);
  color: white;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 900;
  margin-top: 3px;
}

.feature-visual {
  position: relative;
}
.feature-visual img {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(15, 32, 51, 0.12));
}
.feature-visual.circle-bg {
  padding: 40px;
}
.feature-visual.circle-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(43, 180, 230, 0.12), transparent 65%);
  border-radius: 50%;
  z-index: -1;
}

@media (max-width: 860px) {
  .feature-block { grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px; }
  .feature-block.reverse .feature-visual { order: 0; }
}

/* ---------- BENEFITS ---------- */
.benefits {
  padding: 140px 0;
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
}
.benefits::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(43, 180, 230, 0.08);
  filter: blur(20px);
}
.benefits-header { text-align: center; margin-bottom: 70px; position: relative; }
.benefits-header .section-lead { margin: 0 auto; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.benefit-card {
  background: white;
  border-radius: 24px;
  padding: 36px 32px;
  border: 1px solid var(--line);
  transition: transform 0.2s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  display: grid; place-items: center;
  margin-bottom: 24px;
  font-size: 26px;
}
.benefit-card h4 {
  font-size: 19px;
  font-weight: 900;
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.5;
}
.benefit-card p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.85;
  margin: 0 0 16px;
}
.benefit-stat {
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.benefit-stat .num {
  font-family: var(--font-num);
  font-size: 32px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}
.benefit-stat .label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.benefit-card:nth-child(1) .benefit-icon { background: rgba(43, 180, 230, 0.15); color: var(--brand); }
.benefit-card:nth-child(2) .benefit-icon { background: rgba(255, 206, 40, 0.20); color: var(--accent-orange); }
.benefit-card:nth-child(3) .benefit-icon { background: rgba(147, 200, 70, 0.20); color: var(--accent-green); }
.benefit-card:nth-child(4) .benefit-icon { background: rgba(182, 122, 214, 0.20); color: var(--accent-purple); }
.benefit-card:nth-child(5) .benefit-icon { background: rgba(245, 138, 165, 0.20); color: var(--accent-pink); }
.benefit-card:nth-child(6) .benefit-icon { background: rgba(43, 180, 230, 0.15); color: var(--brand); }

@media (max-width: 860px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ---------- SEMINAR (研修) ---------- */
.seminar {
  padding: 140px 0;
  background: white;
}
.seminar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.seminar-visual {
  background: linear-gradient(135deg, var(--brand) 0%, #4CC5F0 100%);
  border-radius: 32px;
  padding: 60px 48px;
  color: white;
  position: relative;
  overflow: hidden;
}
.seminar-visual::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
}
.seminar-visual::after {
  content: "";
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255, 206, 40, 0.20);
}
.seminar-visual h3 {
  font-size: 36px; font-weight: 900;
  line-height: 1.5;
  margin: 0 0 20px;
  position: relative;
  color: white;
}
.seminar-visual p {
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
  position: relative;
  color: rgba(255, 255, 255, 0.92);
}
.seminar-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  position: relative;
}
.seminar-topics span {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.20);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

@media (max-width: 860px) {
  .seminar-inner { grid-template-columns: 1fr; gap: 40px; }
  .seminar-visual { padding: 40px 28px; }
  .seminar-visual h3 { font-size: 26px; }
}

/* ---------- PRICING ---------- */
.pricing {
  padding: 140px 0;
  background: var(--bg);
}
.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-header .section-lead { margin: 0 auto; }

/* ---- Pricing (Simple visual — square tiles) ---- */
.pricing-simple {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1040px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.ps-tile {
  flex: 1 1 340px;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 32px;
  transition: transform 220ms ease, box-shadow 220ms ease;
  position: relative;
  overflow: hidden;
}
.ps-tile:hover {
  transform: translateY(-6px);
}
.ps-tile-initial {
  background: linear-gradient(135deg, #1D6FCB 0%, #2E85E0 100%);
  color: white;
  box-shadow: 0 22px 55px rgba(29, 111, 203, 0.28);
}
.ps-tile-initial:hover {
  box-shadow: 0 30px 68px rgba(29, 111, 203, 0.35);
}
.ps-tile-monthly {
  background: #E8F1FB;
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(29, 111, 203, 0.10);
}
.ps-tile-monthly:hover {
  box-shadow: 0 24px 56px rgba(29, 111, 203, 0.18);
}
.ps-tile-label {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  color: inherit;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.ps-tile-tax {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  opacity: 0.85;
}
.ps-tile-monthly .ps-tile-label { color: #1D4E8C; }
.ps-tile-value {
  font-size: clamp(64px, 9vw, 118px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  font-family: var(--font-num);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.ps-tile-value-free {
  font-family: inherit;
  letter-spacing: 0.06em;
  font-size: clamp(72px, 10vw, 130px);
}
.ps-tile-num {
  font-family: var(--font-num);
}
.ps-tile-yen {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 900;
  font-family: inherit;
  margin-left: 4px;
}

/* Plus operator */
.ps-op {
  font-family: var(--font-num);
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  flex-shrink: 0;
  padding: 0 4px;
}

/* Extra support notice */
.pricing-extra {
  max-width: 1040px;
  margin: 44px auto 0;
}
.pe-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  background: white;
  border: 1px dashed rgba(29,111,203,0.35);
  border-radius: 16px;
}
.pe-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(29,111,203,0.08);
  color: #1D6FCB;
  border-radius: 12px;
}
.pe-icon svg { width: 22px; height: 22px; }
.pe-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pe-copy strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.pe-copy span {
  font-size: 12.5px;
  color: var(--muted);
}
.pe-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, background 180ms ease;
}
.pe-btn:hover {
  transform: translateY(-2px);
  background: #1D6FCB;
}

@media (max-width: 900px) {
  .pricing { padding: 90px 0; }
  .pricing-simple {
    flex-direction: column;
    gap: 20px;
  }
  .ps-tile { flex-basis: auto; width: 100%; max-width: 380px; }
  .ps-op { padding: 0; }
  .pe-inner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 22px;
  }
}

.pricing-hero {
  background: linear-gradient(135deg, #10233A 0%, #0B5E7F 100%);
  border-radius: 32px;
  padding: 60px;
  color: white;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.pricing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(400px 300px at 90% 100%, rgba(255, 206, 40, 0.15), transparent 60%);
  pointer-events: none;
}
.pricing-hero h3 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.4;
  margin: 0 0 20px;
  color: white;
  position: relative;
}
.pricing-hero .highlight { color: var(--accent-yellow); }
.pricing-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.85;
  margin: 0;
  position: relative;
}
.pricing-hero-numbers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
}
.price-callout {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
}
.price-callout .label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.10em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}
.price-callout .value {
  font-family: var(--font-num);
  font-size: 44px;
  font-weight: 800;
  color: var(--accent-yellow);
  line-height: 1;
}
.price-callout .value small {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-left: 6px;
}
.price-callout .note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.plan {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan.featured {
  border: 2px solid var(--brand);
  box-shadow: 0 20px 50px rgba(43, 180, 230, 0.15);
}
.plan.featured::before {
  content: "おすすめ";
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: white;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 999px;
}
.plan-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 6px;
}
.plan-tagline {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.plan-price .num {
  font-family: var(--font-num);
  font-size: 44px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.plan-price .unit {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}
.plan-price-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 28px;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.plan-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--ink-2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px dashed var(--line);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .pricing-hero { grid-template-columns: 1fr; padding: 40px 28px; gap: 30px; }
  .pricing-plans { grid-template-columns: 1fr; }
}

/* ---------- SEMINARS ---------- */
.seminars-section {
  padding: 80px 20px 100px;
  background: #F9F9F7;
}
.seminars-header {
  text-align: center;
  margin-bottom: 44px;
}
.seminars-title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: #F58231;
  letter-spacing: 0.04em;
}
.seminars-lead {
  margin: 0;
  color: #607386;
  font-size: 15.5px;
  line-height: 1.8;
}
.seminars-grid {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  justify-content: center;
}

.seminar-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  background: white;
  border: 1px dashed var(--line);
  border-radius: 16px;
  font-size: 14px;
}
.seminar-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(15, 32, 51, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
  display: flex;
  flex-direction: column;
}
.seminar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(15, 32, 51, 0.12);
}
.seminar-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.seminar-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #EEF3F7;
  overflow: hidden;
}
.seminar-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.seminar-visual-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #B8C4D0;
}
.seminar-visual-placeholder svg { width: 56px; height: 56px; }
.seminar-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  background: #4A6AC7;
  color: white;
  font-size: 12px;
  font-weight: 800;
  border-radius: 4px;
  letter-spacing: 0.06em;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
}
.seminar-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.seminar-title-txt {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.65;
  color: #18324a;
  letter-spacing: 0.01em;
  text-wrap: pretty;
  /* Clamp to 3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.seminar-event {
  margin-top: auto;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid #EEF2F5;
}
.seminar-event-label {
  flex-shrink: 0;
  padding: 3px 10px;
  background: #FFE28C;
  color: #6B4B00;
  font-size: 11px;
  font-weight: 800;
  border-radius: 3px;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.seminar-event-lines {
  font-size: 12.5px;
  color: #4A5B6E;
  line-height: 1.7;
  font-weight: 600;
  font-family: var(--font-num), inherit;
  letter-spacing: 0.01em;
}
.seminars-cta {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}
.seminars-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 52px;
  background: #F58231;
  color: white;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(245, 130, 49, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.seminars-btn:hover {
  transform: translateY(-2px);
  background: #E27222;
  box-shadow: 0 16px 34px rgba(245, 130, 49, 0.40);
}
.seminars-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}
.seminars-btn:hover svg {
  transform: translateX(4px);
}
@media (max-width: 900px) {
  .seminars-section { padding: 60px 16px 80px; }
  .seminars-grid { grid-template-columns: 1fr; gap: 20px; }
  .seminars-btn { padding: 15px 36px; font-size: 15px; }
}

/* ---------- CTA ---------- */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--brand) 0%, #7DD3F5 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.15), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(255, 206, 40, 0.20), transparent 40%);
}
.cta-section h2 {
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 900;
  line-height: 1.4;
  margin: 0 0 20px;
  color: white;
  position: relative;
  text-wrap: balance;
}
.cta-section p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.85;
  position: relative;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.cta-section .btn-primary {
  background: var(--accent-yellow);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.cta-section .btn-primary:hover {
  background: #FFDC5B;
  transform: translateY(-2px);
}
.cta-section .btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}
.cta-section .btn-outline:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: white;
  color: white;
}

/* ---------- CONTACT FORM ---------- */
.contact {
  padding: 140px 0;
  background: white;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h3 {
  font-size: 20px;
  font-weight: 900;
  margin: 32px 0 12px;
  color: var(--ink);
}
.contact-info p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.9;
  margin: 0;
}
.contact-highlights {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.contact-highlights li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-highlights li:last-child { border-bottom: none; }
.contact-highlights .icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(43, 180, 230, 0.12);
  color: var(--brand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 900;
}
.contact-highlights .text strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 2px;
}
.contact-highlights .text span {
  font-size: 13px;
  color: var(--muted);
}

.form-card {
  background: var(--bg);
  border-radius: 24px;
  padding: 44px;
  border: 1px solid var(--line);
}
.form-tabs {
  display: flex;
  gap: 8px;
  background: white;
  padding: 6px;
  border-radius: 999px;
  margin-bottom: 32px;
  border: 1px solid var(--line);
}
.form-tab {
  flex: 1;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.16s;
}
.form-tab.active {
  background: var(--brand);
  color: white;
}
.form-grid {
  display: grid;
  gap: 18px;
}
.form-row {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-field label .req {
  color: #E85A5A;
  margin-left: 4px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: white;
  transition: border-color 0.16s, box-shadow 0.16s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(43, 180, 230, 0.15);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-submit {
  margin-top: 12px;
  width: 100%;
  padding: 18px;
  font-size: 16px;
}
.form-consent {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 12px;
}
.form-consent a { color: var(--brand); text-decoration: underline; }

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-card { padding: 32px 24px; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: #10233A;
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand img {
  width: 48px; height: 48px; border-radius: 12px;
  margin-bottom: 16px;
}
.footer-brand h4 {
  font-size: 20px; font-weight: 900; color: white;
  margin: 0 0 12px;
}
.footer-brand p {
  font-size: 13px; line-height: 1.85;
  color: rgba(255, 255, 255, 0.6); margin: 0;
}
.footer-col h5 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.10em;
  color: white;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.16s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 12px; color: rgba(255, 255, 255, 0.5); }
.footer-legal {
  display: flex; gap: 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Tweaks panel ---------- */
.tweak-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 300px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(15, 32, 51, 0.20);
  padding: 24px;
  z-index: 1000;
  font-family: var(--font-jp);
  display: none;
}
.tweak-panel.open { display: block; }
.tweak-panel h4 {
  font-size: 14px;
  font-weight: 900;
  margin: 0 0 4px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tweak-panel .close {
  cursor: pointer;
  color: var(--muted);
  font-size: 20px;
  background: none;
  border: none;
}
.tweak-section {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.tweak-section:first-of-type { margin-top: 12px; padding-top: 0; border-top: none; }
.tweak-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 8px;
  display: block;
}
.tweak-options {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.tweak-swatch {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.16s;
}
.tweak-swatch.active {
  border-color: var(--ink);
  transform: scale(1.1);
}
.tweak-btn {
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: all 0.16s;
}
.tweak-btn.active {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}
.tweak-btn:hover:not(.active) {
  border-color: var(--brand);
}
.tweak-btn-grid {
  display: grid;
  gap: 6px;
}
