﻿/* Copyright 2026 HomeOne Interiors. All rights reserved. */
.ph-hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: var(--nav-h);
}
.ph-bg { position: absolute; inset: 0; z-index: 0; }
.ph-bg-img {
  position: absolute; inset: 0;
  background: url('/img/our-process-hero-interior-design.webp') center/cover no-repeat;
  transform: scale(1.07);
  animation: phDrift 24s ease-in-out infinite alternate;
}
@keyframes phDrift {
  from { transform: scale(1.07) translate(0, 0); }
  to   { transform: scale(1.07) translate(-2.5%, -1.2%); }
}
.ph-overlay-1 {
  position: absolute; inset: 0;
  background: linear-gradient(108deg,
    rgba(6,13,26,.97) 0%,
    rgba(6,13,26,.9) 38%,
    rgba(6,13,26,.55) 68%,
    rgba(6,13,26,.8) 100%
  );
}
.ph-overlay-2 {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,13,26,1) 0%, transparent 45%);
}
.ph-overlay-3 {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 60% at 72% 38%, rgba(26,107,218,.14) 0%, transparent 60%);
  animation: phGlowPulse 7s ease-in-out infinite alternate;
}
@keyframes phGlowPulse { from { opacity: .5; } to { opacity: 1; } }
.ph-grain {
  position: absolute; inset: -50%; width: 200%; height: 200%; z-index: 2; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='512' height='512' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .025; animation: grain 8s steps(10) infinite;
}
.ph-beam {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(112deg, transparent 30%, rgba(26,107,218,.055) 50%, transparent 70%);
  animation: phBeamMove 12s ease-in-out infinite alternate;
}
@keyframes phBeamMove {
  from { transform: skewX(-6deg) translateX(-10%); opacity: .3; }
  to   { transform: skewX(-6deg) translateX(10%); opacity: 1; }
}
.ph-scan {
  position: absolute; left: 0; right: 0; height: 1px; z-index: 3; pointer-events: none;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(26,107,218,.35) 25%,
    rgba(26,107,218,.65) 50%,
    rgba(26,107,218,.35) 75%,
    transparent 100%
  );
  animation: phScanMove 8s linear infinite;
}
@keyframes phScanMove {
  0%   { top: 12%; opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 1; }
  100% { top: 88%; opacity: 0; }
}
.ph-ghost-yr {
  position: absolute; right: -4%; bottom: 8%; z-index: 1; pointer-events: none; user-select: none;
  font-family: var(--fh); font-size: clamp(12rem, 28vw, 26rem); font-weight: 700;
  line-height: 1; letter-spacing: -.04em; color: var(--blue); opacity: .045;
  animation: phGhostDrift 20s ease-in-out infinite alternate;
}
@keyframes phGhostDrift {
  from { transform: translate(0, 0) rotate(-1.5deg); }
  to   { transform: translate(-2%, -3%) rotate(-.5deg); }
}
.ph-frame { position: absolute; inset: 24px; z-index: 3; pointer-events: none; }
.ph-corner {
  position: absolute; width: 40px; height: 40px;
  border-color: rgba(26,107,218,.45); border-style: solid;
  transition: width .6s var(--ease), height .6s var(--ease);
}
.ph-hero:hover .ph-corner { width: 56px; height: 56px; }
.ph-corner-tl { top: 0; left: 0; border-width: 1px 0 0 1px; }
.ph-corner-tr { top: 0; right: 0; border-width: 1px 1px 0 0; }
.ph-corner-bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.ph-corner-br { bottom: 0; right: 0; border-width: 0 1px 1px 0; }
.ph-content {
  position: relative; z-index: 5; padding: 80px 0 180px; max-width: 820px;
}
.ph-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: .36em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 48px;
  opacity: 0; animation: phFadeIn .8s var(--ease) .2s forwards;
}
@keyframes phFadeIn { to { opacity: 1; } }
.ph-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0;
  box-shadow: 0 0 12px rgba(26,107,218,.9), 0 0 24px rgba(26,107,218,.5);
  animation: phDotPulse 2.4s ease-in-out infinite;
}
@keyframes phDotPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(26,107,218,.7); }
  50%       { transform: scale(1.6); box-shadow: 0 0 22px rgba(26,107,218,1), 0 0 40px rgba(26,107,218,.4); }
}
.ph-h1 {
  font-size: clamp(4.5rem, 11vw, 10rem); font-weight: 700;
  line-height: .92; letter-spacing: -.04em; margin: 0 0 36px;
}
.ph-h1-row { display: block; overflow: hidden; }
.ph-h1-inner {
  display: block; transform: translateY(115%);
  animation: phRowUp .9s cubic-bezier(.22,.61,.36,1) forwards;
}
.ph-h1-row:nth-child(2) .ph-h1-inner { animation-delay: .11s; }
@keyframes phRowUp { to { transform: translateY(0); } }
.ph-h1-blue { color: var(--blue); }
.ph-desc {
  font-size: 17px; color: var(--mute); line-height: 1.8; max-width: 500px; margin-bottom: 48px;
}
.ph-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.ph-ctas .btn-outline {
  border-color: rgba(255,255,255,.45); color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.08); backdrop-filter: blur(10px);
}
.ph-ctas .btn-outline:hover {
  border-color: rgba(255,255,255,.85); color: var(--white); background: rgba(255,255,255,.16);
}
.ph-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
  border-top: 1px solid rgba(26,107,218,.14);
}
.ph-bottom-inner { display: flex; align-items: stretch; }
.ph-bottom-stats {
  display: flex; width: 100%; background: rgba(6,13,26,.55); backdrop-filter: blur(14px);
}
.ph-bstat {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 18px 12px; border-right: 1px solid rgba(26,107,218,.1); text-align: center;
}
.ph-bstat:last-child { border-right: none; }
.ph-bstat strong { font-family: var(--fh); font-size: 1.35rem; font-weight: 700; color: var(--white); line-height: 1; }
.ph-bstat strong em { font-style: normal; color: var(--blue); font-size: .95em; }
.ph-bstat span { font-size: 9.5px; color: var(--mute); letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; }
.ph-scroll-cue {
  position: absolute; bottom: 90px; right: 44px; z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.ph-scroll-line {
  width: 1px; height: 72px;
  background: linear-gradient(to bottom, rgba(26,107,218,.9), transparent);
  animation: phScrollPulse 2.8s ease-in-out infinite;
}
@keyframes phScrollPulse {
  0%, 100% { transform: scaleY(.2); transform-origin: top; opacity: .3; }
  50%       { transform: scaleY(1); transform-origin: top; opacity: 1; }
}
.ph-scroll-label {
  font-size: 9px; font-weight: 700; letter-spacing: .32em; text-transform: uppercase;
  color: rgba(26,107,218,.55); writing-mode: vertical-rl;
}
.proc-steps-wrap { position: relative; background: var(--bg); }
.proc-track-rail {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom,
    transparent 1%,
    rgba(26,107,218,.55) 4%,
    rgba(26,107,218,.55) 96%,
    transparent 99%
  );
  box-shadow:
    0 0 8px rgba(26,107,218,.5),
    3px 0 18px rgba(26,107,218,.22),
    -3px 0 18px rgba(26,107,218,.14);
  z-index: 2; pointer-events: none;
}

.proc-step {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.proc-step > .container {
  position: relative; z-index: 5; width: 100%;
}
.proc-step-bg { position: absolute; inset: 0; z-index: 0; }
.proc-step-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  transition: transform 9s ease;
}
.proc-step.is-active .proc-step-img { transform: scale(1); }
.proc-img-01 { background-image: url('/img/process/process-step-01-consultation-interior-design.webp'); }
.proc-img-02 { background-image: url('/img/process/process-step-02-3d-design-visualization.webp'); }
.proc-img-03 { background-image: url('/img/process/process-step-03-material-selection-finishes.webp'); }
.proc-img-04 { background-image: url('/img/process/process-step-04-execution-carpentry-installation.webp'); }
.proc-img-05 { background-image: url('/img/process/process-step-05-handover-movein-ready.webp'); }
.proc-step-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(108deg,
    rgba(6,13,26,.97) 0%,
    rgba(6,13,26,.87) 42%,
    rgba(6,13,26,.62) 65%,
    rgba(6,13,26,.88) 100%
  );
}
.proc-step-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 90% at 50% 50%, transparent 35%, rgba(6,13,26,.65) 100%);
}
.proc-step-fade-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 180px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  z-index: 1; pointer-events: none;
}
.proc-ghost-num {
  position: absolute; z-index: 1;
  font-family: var(--fh);
  font-size: clamp(16rem, 34vw, 32rem);
  font-weight: 700; color: var(--blue);
  opacity: .042; line-height: 1; letter-spacing: -.06em;
  pointer-events: none; user-select: none; top: 50%;
  transform-style: preserve-3d;
  text-shadow:
    18px 12px 0 rgba(26,107,218,.05),
    36px 24px 0 rgba(26,107,218,.03),
    54px 36px 0 rgba(26,107,218,.012);
}
.proc-step--odd .proc-ghost-num {
  right: -5%;
  transform: translateY(-50%) perspective(1600px) rotateY(-18deg) rotateX(7deg);
}
.proc-step--even .proc-ghost-num {
  left: -5%;
  transform: translateY(-50%) perspective(1600px) rotateY(18deg) rotateX(7deg);
}
.proc-step-dot {
  position: absolute; left: 50%; top: 50%; z-index: 10;
  transform: translate(-50%, -50%);
  pointer-events: none;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.proc-dot-inner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(26,107,218,.55); background: var(--bg);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), background .5s, border-color .5s;
}
.proc-step.is-active .proc-dot-inner {
  background: var(--blue); border-color: var(--blue);
  transform: scale(1.55);
  box-shadow: 0 0 0 5px rgba(26,107,218,.2), 0 0 20px rgba(26,107,218,.9), 0 0 44px rgba(26,107,218,.4);
}
.proc-step-inner {
  display: flex; align-items: center;
  padding: 120px 0; width: 100%;
}
.proc-step--odd .proc-step-inner  { justify-content: flex-start; }
.proc-step--even .proc-step-inner { justify-content: flex-end; }
.proc-card {
  width: clamp(300px, 44vw, 520px);
  background: rgba(6,13,26,.74);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(26,107,218,.18);
  padding: 52px 44px; position: relative;
  transition: transform .5s var(--ease), border-color .4s, box-shadow .4s;
}
.proc-card:hover {
  border-color: rgba(26,107,218,.36);
  box-shadow: 0 20px 60px rgba(0,0,0,.45), 0 0 50px rgba(26,107,218,.09);
}
.proc-card::before {
  content: '';
  position: absolute; top: -1px; left: -1px;
  width: 48px; height: 48px;
  border-top: 2px solid rgba(26,107,218,.6);
  border-left: 2px solid rgba(26,107,218,.6);
  pointer-events: none;
  transition: width .5s var(--ease), height .5s var(--ease);
}
.proc-card:hover::before { width: 68px; height: 68px; }
.proc-step--odd .proc-card::after {
  content: '';
  position: absolute; top: 20px; bottom: 20px; right: 0; width: 2px;
  background: linear-gradient(to bottom, transparent, var(--blue) 35%, var(--blue) 65%, transparent);
  opacity: 0; transition: opacity .4s var(--ease);
}
.proc-step--odd .proc-card:hover::after { opacity: .6; }
.proc-step--even .proc-card::after {
  content: '';
  position: absolute; top: 20px; bottom: 20px; left: 0; width: 2px;
  background: linear-gradient(to bottom, transparent, var(--blue) 35%, var(--blue) 65%, transparent);
  opacity: 0; transition: opacity .4s var(--ease);
}
.proc-step--even .proc-card:hover::after { opacity: .6; }

.proc-card-badge {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.proc-card-n {
  font-family: var(--fh); font-size: 3.2rem; font-weight: 700;
  color: var(--blue); opacity: .14; line-height: 1; letter-spacing: -.04em;
  transition: opacity .3s;
}
.proc-card:hover .proc-card-n { opacity: .3; }
.proc-card-divider {
  width: 1px; height: 32px; background: rgba(26,107,218,.25); flex-shrink: 0;
}
.proc-card-phase {
  font-size: 10px; font-weight: 700; letter-spacing: .32em;
  text-transform: uppercase; color: var(--blue);
}
.proc-card-title {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 700; color: var(--white);
  line-height: 1.1; letter-spacing: -.02em; margin-bottom: 18px;
}
.proc-card-title em { font-style: normal; color: var(--blue); }
.proc-card-desc {
  font-size: 15px; color: var(--mute); line-height: 1.8; margin-bottom: 16px;
}
.proc-card-list { list-style: none; padding: 0; margin: 0 0 20px; }
.proc-card-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--mute); line-height: 1.7;
  padding: 6px 0; border-bottom: 1px solid rgba(26,107,218,.07);
}
.proc-card-list li:last-child { border-bottom: none; }
.proc-card-list li::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0; margin-top: 7px;
  box-shadow: 0 0 6px rgba(26,107,218,.55);
}
.proc-card-dur {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue); border: 1px solid rgba(26,107,218,.28);
  padding: 7px 14px; border-radius: 2px;
}
.proc-card-dur i { font-size: 11px; }
.proc-diff { padding: 100px 0; background: var(--bg2); position: relative; overflow: hidden; }
.proc-diff::before {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(26,107,218,.06) 0%, transparent 70%);
  pointer-events: none;
}
.proc-diff-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.proc-diff-left .eyebrow { margin-bottom: 16px; }
.proc-diff-left h2 { margin-bottom: 24px; }
.proc-diff-left h2 em { font-style: normal; color: var(--blue); }
.proc-diff-left p { font-size: 16px; color: var(--mute); line-height: 1.8; margin-bottom: 36px; }
.proc-diff-right { border-top: 1px solid var(--line); }
.proc-diff-item {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 32px 0; border-bottom: 1px solid var(--line);
  transition: padding-left .3s var(--ease);
}
.proc-diff-item:hover { padding-left: 10px; }
.proc-diff-n {
  font-family: var(--fh); font-size: 2.8rem; font-weight: 700;
  color: var(--blue); opacity: .12; line-height: 1;
  flex-shrink: 0; min-width: 56px;
  transition: opacity .3s;
}
.proc-diff-item:hover .proc-diff-n { opacity: .28; }
.proc-diff-body { flex: 1; }
.proc-diff-body h3 { font-size: 1.15rem; color: var(--white); margin-bottom: 8px; }
.proc-diff-body p { font-size: 14px; color: var(--mute); line-height: 1.75; }
.proc-diff-badge {
  display: inline-block; margin-top: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue); border: 1px solid rgba(26,107,218,.3); padding: 5px 12px; border-radius: 2px;
}
.proc-gantt { padding: 100px 0; background: var(--bg); }
.gantt-head { text-align: center; margin-bottom: 60px; }
.gantt-head .eyebrow { margin-bottom: 12px; }
.gantt-head h2 { margin-bottom: 16px; }
.gantt-head h2 em { font-style: normal; color: var(--blue); }
.gantt-head p { font-size: 15px; color: var(--mute); max-width: 520px; margin: 0 auto; line-height: 1.75; }
.gantt-wrap { max-width: 940px; margin: 0 auto; }
.gantt-chart {
  width: 100%; border: 1px solid var(--line);
  background: var(--bg2); padding: 32px; border-radius: 2px;
}
.gantt-headers {
  display: grid; grid-template-columns: 150px 1fr;
  gap: 12px; margin-bottom: 16px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.gantt-label-col {
  font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--mute);
}
.gantt-week-cols {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px;
}
.gantt-week-cols span {
  font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mute); text-align: center; opacity: .65;
}
.gantt-row {
  display: grid; grid-template-columns: 150px 1fr;
  gap: 12px; align-items: center; margin-bottom: 10px;
}
.gantt-row:last-child { margin-bottom: 0; }
.gantt-phase { font-size: 12px; font-weight: 600; color: var(--white); opacity: .72; }
.gantt-cells {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 3px; height: 34px; align-items: center; position: relative;
}
.gantt-cells::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to right,
    rgba(26,107,218,.04) 0px,
    rgba(26,107,218,.04) 1px,
    transparent 1px,
    transparent calc(100% / 7)
  );
  pointer-events: none;
}
.gantt-bar {
  grid-row: 1; height: 26px; position: relative; border-radius: 3px;
  background: linear-gradient(to bottom, rgba(26,107,218,.88) 0%, rgba(26,107,218,.55) 100%);
  border-top: 1px solid rgba(255,255,255,.2);
  box-shadow:
    0 4px 14px rgba(26,107,218,.32),
    0 8px 24px rgba(26,107,218,.14),
    inset 0 1px 0 rgba(255,255,255,.14);
  transform-origin: left center; transform: scaleX(0);
  transition: transform .7s cubic-bezier(.22,.61,.36,1);
  display: flex; align-items: center; overflow: hidden;
}
.gantt-bar::after {
  content: '';
  position: absolute; bottom: -4px; left: 2px; right: -2px; height: 4px;
  background: rgba(26,107,218,.28); border-radius: 0 0 2px 2px;
  clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
}
.gantt-bar-label {
  font-size: 8.5px; font-weight: 700; letter-spacing: .08em;
  color: rgba(255,255,255,.75); padding: 0 10px; white-space: nowrap;
}
.gantt-bar--consultation { grid-column: 1 / 2; }
.gantt-bar--design       { grid-column: 1 / 3; }
.gantt-bar--procurement  { grid-column: 2 / 4; }
.gantt-bar--installation { grid-column: 3 / 6; }
.gantt-bar--finishing    { grid-column: 5 / 7; }
.gantt-bar--handover     { grid-column: 7 / 8; }
.gantt-bar.gantt-bar--in { transform: scaleX(1); }
.gantt-bar--design.gantt-bar--in      { transition-delay: .1s; }
.gantt-bar--procurement.gantt-bar--in { transition-delay: .2s; }
.gantt-bar--installation.gantt-bar--in { transition-delay: .3s; }
.gantt-bar--finishing.gantt-bar--in   { transition-delay: .4s; }
.gantt-bar--handover.gantt-bar--in    { transition-delay: .5s; }

.gantt-note {
  text-align: center; font-size: 12px; color: var(--mute);
  margin-top: 24px; opacity: .6; line-height: 1.6;
}
.proc-faq { padding: 100px 0; background: var(--bg2); }
.proc-faq-inner {
  display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start;
}
.proc-faq-hd .eyebrow { margin-bottom: 12px; }
.proc-faq-hd h2 { margin-bottom: 20px; }
.proc-faq-hd h2 em { font-style: normal; color: var(--blue); }
.proc-faq-hd p { font-size: 15px; color: var(--mute); line-height: 1.75; margin-bottom: 28px; }
.proc-faq-hd a { font-size: 13px; }

.proc-faq .faq-item { border-top: 1px solid var(--line); transition: border-color .3s; }
.proc-faq .faq-item:last-child { border-bottom: 1px solid var(--line); }
.proc-faq .faq-item.open { border-top-color: rgba(26,107,218,.35); }
.proc-faq .faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 20px 0; text-align: left;
  font-family: var(--fh); font-size: 1rem; font-weight: 600; color: var(--white);
  transition: color .3s;
}
.proc-faq .faq-q:hover { color: var(--bl); }
.proc-faq .faq-item.open .faq-q { color: var(--bl); }
.proc-faq .faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid rgba(26,107,218,.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--blue);
  transition: background .3s, transform .4s var(--ease);
}
.proc-faq .faq-item.open .faq-icon {
  background: rgba(26,107,218,.12); transform: rotate(45deg);
}
.proc-faq .faq-a {
  overflow: hidden; max-height: 0;
  transition: max-height .4s cubic-bezier(.25,.46,.45,.94);
}
.proc-faq .faq-item.open .faq-a { max-height: 400px; }
.proc-faq .faq-a-inner {
  padding-bottom: 20px; font-size: 14px; color: var(--mute); line-height: 1.8;
}
.proc-faq .faq-a-inner a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.proc-faq .faq-a-inner a:hover { color: var(--bl); }
@media (max-width: 1024px) {
  .ph-h1 { font-size: clamp(3.8rem, 12vw, 7rem); }
  .ph-ghost-yr { font-size: clamp(8rem, 22vw, 18rem); opacity: .035; }
  .ph-scroll-cue { display: none; }
  .proc-ghost-num { font-size: clamp(12rem, 26vw, 22rem); }
  .proc-card { width: clamp(280px, 60vw, 520px); }
  .proc-diff-inner { grid-template-columns: 1fr; gap: 40px; }
  .proc-faq-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .ph-h1 { font-size: clamp(3.2rem, 15vw, 5rem); letter-spacing: -.02em; }
  .ph-content { padding-bottom: 200px; }
  .ph-ghost-yr { display: none; }
  .ph-corner { width: 22px; height: 22px; }
  .ph-frame { inset: 14px; }
  .ph-bottom-inner { flex-direction: column; }
  .ph-bottom-stats { flex-wrap: wrap; }
  .ph-bstat { flex: 0 0 50%; border-bottom: 1px solid rgba(26,107,218,.1); }

  .proc-track-rail { display: none; }
  .proc-step-dot { display: none; }
  .proc-ghost-num { display: none; }
  .proc-step { min-height: auto; padding: 72px 0; display: block; }
  .proc-step-inner { padding: 0; }
  .proc-step--odd .proc-step-inner,
  .proc-step--even .proc-step-inner { justify-content: flex-start; }
  .proc-card {
    width: 100%;
    backdrop-filter: none; -webkit-backdrop-filter: none;
    background: rgba(6,13,26,.95);
  }
  .proc-card::before { width: 32px; height: 32px; }
  .proc-step--odd .proc-card::after,
  .proc-step--even .proc-card::after { display: none; }
  .proc-step-overlay {
    background: linear-gradient(to bottom,
      rgba(6,13,26,.98) 0%,
      rgba(6,13,26,.92) 100%
    );
  }

  .gantt-wrap { overflow-x: auto; }
  .gantt-chart { min-width: 520px; padding: 20px 16px; }
}
