﻿/* 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/portfolio-hero-interior-design-showcase.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,.96) 0%,
    rgba(6,13,26,.88) 38%,
    rgba(6,13,26,.52) 68%,
    rgba(6,13,26,.78) 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(10rem, 24vw, 22rem); font-weight: 700;
  line-height: 1; letter-spacing: -.04em; color: var(--blue); opacity: .04;
  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 160px; 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-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;
}
.port-filter-sec {
  background: var(--bg2);
  border-bottom: 1px solid var(--line);
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}

.port-filter-intro {
  text-align: center;
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
}

.port-filter-intro h2 {
  margin: 0.5rem 0 0.85rem;
}

.port-filter-intro h2 em {
  font-style: normal;
  color: var(--blue);
}

.port-filter-desc {
  font-family: var(--fb);
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  color: var(--mute);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.72;
}

.port-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.pf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.2rem;
  background: rgba(6,13,26,.6);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--fb);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--mute);
  cursor: pointer;
  transition: color .22s, background .22s, border-color .22s;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.pf-btn:hover { color: var(--white); border-color: rgba(26,107,218,.4); }
.pf-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }

.pf-cnt {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 1.3rem; height: 1.3rem; border-radius: 50%;
  background: rgba(255,255,255,.12);
  font-size: 0.67rem; font-weight: 600; padding: 0 0.15rem;
}
.pf-btn.active .pf-cnt { background: rgba(255,255,255,.24); }
.port-gallery-sec {
  background: var(--bg);
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.pg-wrap {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
}

.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.pg-item.filter-hidden,
.pg-item.paginate-hidden { display: none; }

@keyframes pgPopIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.pg-item.pg-pop { animation: pgPopIn 0.42s ease forwards; }
.pg-item { position: relative; }

.pg-card {
  width: 100%;
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  padding: 0;
  background: var(--bg3);
  text-align: left;
}

.pg-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(.25,.46,.45,.94);
}

.pg-card:hover img { transform: scale(1.06); }

.pg-cat-chip {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.18rem 0.55rem;
  background: rgba(26,107,218,.8);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  font-family: var(--fb);
  font-size: 0.65rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  z-index: 2;
  pointer-events: none;
}

.pg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(6,13,26,.95) 0%,
    rgba(6,13,26,.3)  45%,
    transparent       100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.pg-card:hover .pg-overlay { opacity: 1; }

.pg-ov-info {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  transform: translateY(10px);
  transition: transform 0.35s cubic-bezier(.22,.61,.36,1);
}
.pg-card:hover .pg-ov-info { transform: none; }

.pg-ov-title {
  font-family: var(--fh);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.pg-ov-tag {
  font-family: var(--fb);
  font-size: 0.68rem;
  color: var(--bl);
  letter-spacing: 0.06em;
}

.pg-ov-arrow {
  position: absolute;
  bottom: 0.9rem;
  right: 0.9rem;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: rgba(26,107,218,.22);
  border: 1px solid rgba(91,154,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.68rem;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .3s, transform .3s, background .3s;
}
.pg-card:hover .pg-ov-arrow { opacity: 1; transform: scale(1); background: var(--blue); }
.pg-loadmore-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}

.pg-loadmore-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 2.8rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--fb);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  transition: background .26s, border-color .26s;
  letter-spacing: 0.05em;
}
.pg-loadmore-btn:hover { background: var(--blue); border-color: var(--blue); }
.pg-loadmore-btn i { font-size: 0.72rem; transition: transform .3s; }
.pg-loadmore-btn:hover i { transform: rotate(90deg); }

.pg-loadmore-meta {
  font-family: var(--fb);
  font-size: 0.78rem;
  color: var(--mute);
  margin: 0;
}
.port-diff-strip {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.port-diff-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.port-diff-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: center;
  padding: 0 clamp(2rem, 5vw, 5rem);
  flex: 1;
}

.port-diff-item strong {
  font-family: var(--fh);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 700;
  color: var(--white);
}

.port-diff-item span {
  font-family: var(--fb);
  font-size: 0.81rem;
  color: var(--mute);
  line-height: 1.5;
}

.port-diff-div {
  width: 1px;
  height: 2.8rem;
  background: var(--line);
  flex-shrink: 0;
}
.pg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9900;
  background: rgba(4,9,18,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.pg-lightbox.open { opacity: 1; pointer-events: auto; }

.pg-lb-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: rgba(26,107,218,.14); border: 1px solid var(--line);
  color: var(--white); font-size: .95rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .22s; z-index: 1;
}
.pg-lb-close:hover { background: var(--blue); }

.pg-lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 3rem; height: 3rem; border-radius: 50%;
  background: rgba(26,107,218,.14); border: 1px solid var(--line);
  color: var(--white); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .22s; z-index: 1;
}
.pg-lb-nav:hover { background: var(--blue); }
.pg-lb-prev { left: 1.25rem; }
.pg-lb-next { right: 1.25rem; }

.pg-lb-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: min(920px, 88vw);
  width: 100%;
  padding: 0 4rem;
}

.pg-lb-body img {
  max-height: 68vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: 4px;
  transition: opacity .22s ease;
  display: block;
}

.pg-lb-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
}

.pg-lb-title {
  font-family: var(--fh);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.pg-lb-tag { font-family: var(--fb); font-size: .75rem; color: var(--bl); letter-spacing: .08em; }
.pg-lb-count { font-family: var(--fb); font-size: .72rem; color: var(--mute); letter-spacing: .06em; }
.pg-tilt-out {
  transition: transform 0.38s cubic-bezier(.25,.46,.45,.94) !important;
}
.port-stats-strip {
  background: var(--bg3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(1.75rem, 3vw, 2.25rem) 0;
}
.port-stats-inner {
  display: flex; align-items: center; justify-content: center;
  max-width: 1100px; margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}
.port-stat-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; flex: 1; gap: 0.25rem; padding: 0 0.75rem;
}
.port-stat-item strong {
  font-family: var(--fh);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700; color: var(--white); line-height: 1;
}
.port-stat-item > span {
  font-family: var(--fb); font-size: 0.72rem;
  color: var(--mute); letter-spacing: 0.1em; text-transform: uppercase;
}
.port-stat-sep { width: 1px; height: 2.25rem; background: var(--line); flex-shrink: 0; }
.port-ba-sec {
  background: var(--bg2); padding: clamp(4rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--line);
}
.port-ba-head { text-align: center; margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.port-ba-head h2 em { font-style: normal; color: var(--blue); }
.port-ba-head > p {
  font-family: var(--fb); font-size: clamp(0.88rem, 1.4vw, 1rem);
  color: var(--mute); max-width: 480px; margin: 0.5rem auto 0;
}
.ba-wrap { position: relative; max-width: 900px; margin: 0 auto; padding: 0 clamp(1rem, 3vw, 2rem); }
.ba-stage { position: relative; }
.ba-slide { display: none; }
.ba-slide.active { display: block; }
.ba-slider {
  position: relative; border-radius: 8px; overflow: hidden;
  user-select: none; touch-action: none; aspect-ratio: 16 / 9;
}
.ba-before, .ba-after { position: absolute; inset: 0; }
.ba-before img, .ba-after img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 3px;
  background: rgba(255,255,255,.9); box-shadow: 0 0 18px rgba(255,255,255,.3);
  z-index: 4; cursor: ew-resize;
  display: flex; align-items: center; justify-content: center; overflow: visible;
}
.ba-handle::before {
  content: ''; flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%;
  background: var(--blue); border: 3px solid rgba(255,255,255,.92);
  box-shadow: 0 4px 24px rgba(0,0,0,.55), 0 0 0 1px rgba(26,107,218,.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 16' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 2L1 8L7 14'/%3E%3Cpath d='M23 2L29 8L23 14'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 26px 14px;
  transition: transform .18s var(--ease);
}
.ba-handle:hover::before { transform: scale(1.1); }
.ba-labels {
  position: absolute; bottom: 1rem; left: 0; right: 0;
  display: flex; justify-content: space-between; padding: 0 1rem;
  z-index: 3; pointer-events: none;
}
.ba-label {
  font-family: var(--fb); font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  background: rgba(6,13,26,.78); color: var(--white); padding: 4px 10px; border-radius: 3px;
}
.ba-caption { text-align: center; font-family: var(--fb); font-size: .82rem; color: var(--mute); margin-top: 1rem; }
.ba-controls { display: flex; align-items: center; justify-content: center; gap: 1.25rem; margin-top: 2rem; }
.ba-prev, .ba-next {
  width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--mute); font-size: .9rem; cursor: pointer; background: none;
  transition: border-color .25s, color .25s, background .25s, transform .2s;
}
.ba-prev:hover, .ba-next:hover {
  border-color: var(--blue); color: var(--white);
  background: rgba(26,107,218,.12); transform: scale(1.08);
}
.ba-count { font-family: var(--fh); font-size: 13px; font-weight: 600; color: var(--mute); letter-spacing: .12em; min-width: 56px; text-align: center; }
@media (max-width: 960px) {
  .port-grid { grid-template-columns: repeat(2,1fr); }
  .ph-content { padding-bottom: 120px; }
}

@media (max-width: 680px) {
  .ph-content { padding: 60px 0 100px; }
  .port-grid { grid-template-columns: 1fr; }
  .port-diff-inner { flex-direction: column; gap: 1.75rem; }
  .port-diff-div { width: 3rem; height: 1px; }
  .port-filter-tabs { gap: 0.4rem; }
  .pf-btn { padding: .4rem .75rem; font-size: .76rem; }
  .pg-lb-body { padding: 0 3.5rem; }
  .pg-lb-prev { left: .5rem; }
  .pg-lb-next { right: .5rem; }
  .port-stats-inner { flex-wrap: wrap; gap: 1.5rem 0; }
  .port-stat-sep { display: none; }
  .port-stat-item { flex: 0 0 50%; }
}

.port-refer {
  padding: 60px 0;
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.port-refer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.port-refer-text { display: flex; flex-direction: column; gap: 8px; }
.port-refer-text .eyebrow { margin-bottom: 0; }
.port-refer-text strong {
  font-family: var(--fh); font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700; color: var(--white); letter-spacing: -.01em;
}
.port-refer-text span { font-size: 14px; color: var(--mute); line-height: 1.65; max-width: 520px; }
@media (max-width: 768px) {
  .port-refer-inner { flex-direction: column; align-items: flex-start; }
}

/* ── Portfolio FAQ ─────────────────────────────── */
.sv-faq {
  padding: 110px 0; background: var(--bg);
  border-top: 1px solid var(--line);
}
.sv-faq-inner {
  display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start;
}
.sv-faq-hd .eyebrow { margin-bottom: 12px; }
.sv-faq-hd h2 { font-size: clamp(1.8rem, 2.8vw, 2.4rem); margin-bottom: 16px; }
.sv-faq-hd h2 em { font-style: normal; color: var(--blue); }
.sv-faq-hd p { font-size: 14.5px; color: var(--mute); line-height: 1.75; margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; gap: 6px; }
.faq-item {
  border: 1px solid var(--line); border-left: 2px solid transparent;
  transition: border-color .3s var(--ease), background .3s;
}
.faq-item.open {
  border-color: rgba(26,107,218,.35); border-left-color: var(--blue);
}
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; background: transparent; border: none; cursor: pointer;
  font-family: var(--fb); font-size: 14px; font-weight: 600; color: var(--white);
  text-align: left; transition: color .2s;
}
.faq-q:hover { color: var(--bl); }
.faq-icon { color: var(--blue); font-size: 12px; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner {
  padding: 0 22px 18px;
  font-size: 13.5px; color: var(--mute); line-height: 1.75;
}
.faq-a-inner a { color: var(--blue); transition: opacity .2s; }
.faq-a-inner a:hover { opacity: .75; }
.faq-item.open .faq-a { max-height: 600px; }
@media (max-width: 1024px) {
  .sv-faq-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .sv-faq-inner { grid-template-columns: 1fr; }
}
