#hero {
  position: relative;
  min-height: 100vh;
}
.hero-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 45fr 55fr;
  align-items: center;
  gap: 24px;
  padding: 72px clamp(24px, 5vw, 80px) 0;
  overflow: hidden;
  background: var(--bg);
}
.hero-content {
  padding: 80px 0 80px clamp(64px, 10vw, 160px);
  position: relative;
  z-index: 2;
  transform: translateY(-8%);
  text-align: center;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--accent);
}
.hero-heading { margin-bottom: 30px; font-size: clamp(24px, 3.4vw, 72px); }
.hero-heading-bob { display: block; animation: hero-bob 4.5s ease-in-out infinite; }
.h-roman  { display: block; white-space: nowrap; }
.h-italic { display: block; white-space: nowrap; }
@keyframes hero-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.72;
  margin-bottom: 42px;
  margin-inline: auto;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat-num {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--line);
  flex-shrink: 0;
}
.hero-visual {
  position: relative;
  will-change: transform;
  width: 80%;
  margin-left: 20%;
}
.hero-img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.hero-video {
  width: 100%;
  height: auto;
  display: block;
}
.hero-card {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 13px;
  padding: 20px 24px;
  border: 1px solid rgba(232,232,232,.7);
  box-shadow: var(--shadow);
}
.hero-card-num {
  font-family: var(--font-sans);
  font-size: 34px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-card-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-tag {
  position: absolute;
  top: 28px;
  right: -18px;
  background: rgba(44,44,44,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-tag-text {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  white-space: nowrap;
}
.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  opacity: .7;
}
.scroll-cue span {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-cue-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: cue-pulse 2.2s ease-in-out infinite;
}
@keyframes cue-pulse {
  0%, 100% { opacity: .5; transform: scaleY(1); transform-origin: top; }
  60%       { opacity: 1; transform: scaleY(1.15); transform-origin: top; }
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.t-card {
  background: var(--bg);
  border-radius: var(--r-card);
  padding: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
}
.t-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.t-rating {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: .02em;
  margin-bottom: 18px;
}
.t-quote {
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 22px;
  flex: 1;
}
.t-rule {
  width: 30px;
  height: 1px;
  background: var(--line);
  margin-bottom: 16px;
}
.t-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .02em;
}
.t-meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.proc-card {
  background: var(--bg);
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.proc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}
.proc-card-img {
  position: relative;
  display: block;
  aspect-ratio: 5 / 2;
  overflow: hidden;
  background: var(--bg-mist);
  cursor: pointer;
}
.proc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center;
  transition: transform .4s ease;
}
.proc-card-img:hover img {
  transform: scale(1.06);
}
.proc-card:nth-child(1) .proc-card-img img { object-position: center 70%; }
.proc-card:nth-child(2) .proc-card-img img { object-position: center 55%; }
.proc-card:nth-child(4) .proc-card-img img { object-position: center 33%; transform: scale(1.35); }
.proc-card:nth-child(5) .proc-card-img img { object-position: center 94%; }
.proc-card-ph {
  width: 100%;
  height: 100%;
}
.proc-card:nth-child(1) .proc-card-ph { background: linear-gradient(148deg, #d4e4ec 0%, #8ab5c9 100%); }
.proc-card:nth-child(2) .proc-card-ph { background: linear-gradient(148deg, #e8f2f7 0%, #6a9ab0 100%); }
.proc-card:nth-child(3) .proc-card-ph { background: linear-gradient(148deg, #dde8ee 0%, #7aa5bb 100%); }
.proc-card:nth-child(4) .proc-card-ph { background: linear-gradient(148deg, #b8cdd8 0%, #5a8aa0 100%); }
.proc-card:nth-child(5) .proc-card-ph { background: linear-gradient(148deg, #c8dae3 0%, #6a9ab0 100%); }
.proc-card:nth-child(6) .proc-card-ph { background: linear-gradient(148deg, #e0ecf3 0%, #8ab5c9 100%); }
.proc-card-body {
  display: block;
  padding: 18px 20px 20px;
  cursor: pointer;
}
.proc-card-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 7px;
  line-height: 1.25;
  transition: color var(--ease);
}
.proc-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 8px;
  transition: color var(--ease);
}
.proc-card-ideal {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  transition: color var(--ease);
}
.proc-card-ideal strong { color: var(--text); font-weight: 500; transition: color var(--ease); }
.proc-card-body:hover .proc-card-title,
.proc-card-body:hover .proc-card-desc,
.proc-card-body:hover .proc-card-ideal,
.proc-card-body:hover .proc-card-ideal strong {
  color: var(--accent);
}
.proc-more {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-light);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 28px 36px;
}
.proc-more-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 540px;
}
.proc-more-text strong { color: var(--text); font-weight: 500; }

#showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(56px, 7vw, 112px);
}
.showcase-copy {
  flex: 0 1 clamp(380px, 35vw, 640px);
}
.showcase-copy > p {
  font-size: 17px;
  line-height: 1.76;
  margin: 20px 0 12px;
}
.showcase-copy > p + p { margin-top: 0; margin-bottom: 36px; }
.showcase-visual {
  position: relative;
  aspect-ratio: 3 / 2;
  flex: 0 1 936px;
}
.showcase-img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.showcase-img-fill {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 70% 65% at 45% 50%, rgba(106,154,176,.65) 0%, transparent 62%),
    linear-gradient(158deg, #d4e4ec 0%, #b8cdd8 42%, #6a9ab0 100%);
}
.showcase-badge {
  position: absolute;
  top: 26px;
  right: 26px;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid rgba(232,232,232,.6);
  text-align: right;
}
.showcase-badge-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}
.showcase-badge-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-top: 5px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  margin-top: clamp(40px, 5vw, 56px);
}
.steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line) 8%, var(--line) 92%, transparent);
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 14px;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: background var(--ease), color var(--ease);
}
.step:hover .step-num {
  background: var(--accent);
  color: var(--bg);
}
.step-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}
.step-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

#cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(106,154,176,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-inner h2 { color: var(--bg); margin-bottom: 16px; }
.cta-inner p {
  font-size: 17px;
  color: rgba(255,255,255,.5);
  margin-bottom: 42px;
}

.carousel-disclaimer {
  text-align: center;
  font-size: 11.5px;
  letter-spacing: .07em;
  color: var(--muted);
  opacity: .65;
  margin-bottom: 56px;
}
.carousel-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  margin-bottom: 64px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.carousel-wrap::-webkit-scrollbar { display: none; }
.carousel-wrap.dragging { cursor: grabbing; user-select: none; }
.carousel-track {
  display: flex;
  gap: 14px;
  width: max-content;
}
.carousel-slide { flex: 0 0 220px; }
.result-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-mist);
  border: 1px solid var(--line);
  transform: translateZ(0);
  backface-visibility: hidden;
  cursor: zoom-in;
}
.result-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform .4s ease;
}
.result-card:hover img {
  transform: scale(1.08);
}
.result-ph { width: 100%; height: 100%; }
.carousel-slide:nth-child(3n+1) .result-ph { background: linear-gradient(148deg, #d4e4ec 0%, #8ab5c9 100%); }
.carousel-slide:nth-child(3n+2) .result-ph { background: linear-gradient(148deg, #e8f2f7 0%, #6a9ab0 100%); }
.carousel-slide:nth-child(3n)   .result-ph { background: linear-gradient(148deg, #b8cdd8 0%, #5a8aa0 100%); }
.result-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 14px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 100%);
  pointer-events: none;
}
.result-tag-proc {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-lt);
  margin-bottom: 4px;
}
.result-tag-title {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

.reviews-extra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height .65s ease, opacity .45s ease, margin-top .65s ease;
}
.reviews-extra.open {
  max-height: 1400px;
  opacity: 1;
  margin-top: 20px;
}
.reviews-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.reviews-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--r-btn);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  padding: 13px 28px;
  transition: border-color var(--ease), color var(--ease), transform var(--ease);
}
.reviews-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

#faq {
  padding: 0;
  position: relative;
  overflow: hidden;
}
.faq-bg-img {
  position: absolute;
  top: 50%;
  left: 0;
  width: auto;
  height: max(80%, 28vw);
  display: block;
  transform: translateY(-50%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}
.faq-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 28%, rgba(255,255,255,.88) 50%, #ffffff 66%);
  z-index: 1;
  pointer-events: none;
}
.faq-content-right {
  position: relative;
  z-index: 2;
  margin-left: 50%;
  width: 50%;
  padding: clamp(56px, 7vw, 91px) clamp(24px, 5vw, 80px);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child {
  border-top: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1;
}
.faq-item.open .faq-icon {
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(45deg);
}
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .42s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
}
.faq-a p {
  padding-bottom: 22px;
  font-size: 15.5px;
  line-height: 1.75;
}

#about {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}
.about-visual {
  position: relative;
  height: clamp(520px, 72vh, 780px);
}
.about-img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  display: block;
}
.about-img-fill {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 70% 65% at 45% 50%, rgba(106,154,176,.65) 0%, transparent 62%),
    linear-gradient(158deg, #d4e4ec 0%, #b8cdd8 42%, #6a9ab0 100%);
}
.about-copy > p {
  font-size: 17px;
  line-height: 1.76;
  margin: 20px 0 12px;
}
.about-copy > p + p { margin-top: 0; margin-bottom: 0; }
.about-copy > p:last-of-type { margin-bottom: 36px; }
.about-pointers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.about-pointer { display: flex; flex-direction: column; gap: 5px; }
.about-pointer-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 9px;
}
.about-pointer-title::before {
  content: '';
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--accent);
  flex-shrink: 0;
}
.about-pointer-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 25px;
}

@media (max-width: 1080px) {
  #about { grid-template-columns: 1fr; }
  .about-copy { order: -1; }
  .about-visual { height: auto; aspect-ratio: 4 / 5; }
  #hero { min-height: auto; }
  .hero-stage {
    position: relative;
    height: auto;
    grid-template-columns: 42fr 58fr;
    gap: 16px;
    padding: 88px clamp(20px, 4vw, 48px) 40px;
    align-items: center;
  }
  .hero-content {
    transform: none;
    padding: 0;
  }
  .hero-heading { font-size: clamp(20px, 3.6vw, 40px); }
  .h-roman, .h-italic { white-space: normal; }
  .hero-visual { width: 100%; margin-left: 0; }
  .scroll-cue { display: none; }
  .testimonials, .services { grid-template-columns: 1fr; }
  #showcase { flex-direction: column; gap: 28px; }
  .showcase-copy { flex-basis: auto; }
  .showcase-visual {
    aspect-ratio: 3 / 2;
    flex-basis: auto;
    width: 100%;
  }
  .showcase-badge {
    top: auto;
    right: 14px;
    bottom: 14px;
    background: rgba(255,255,255,.45);
    padding: 6px 9px;
    border-radius: 8px;
  }
  .showcase-badge-text { font-size: 10px; }
  .showcase-badge-sub { font-size: 7px; margin-top: 2px; }
  .faq-content-right { margin-left: 0; width: 100%; }
  .faq-overlay { background: rgba(255,255,255,.94); }
}

@media (max-width: 900px) {
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero-stage {
    grid-template-columns: 1fr;
    padding: 88px clamp(24px, 5vw, 80px) 60px;
    align-items: start;
  }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
}

@media (max-width: 860px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 32px 0; }
  .steps::before { display: none; }
}

@media (max-width: 560px) {
  .about-pointers { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr; }
  .proc-more { flex-direction: column; align-items: flex-start; gap: 20px; padding: 20px; }
}

@media (max-width: 540px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .step:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
}
