/* =========================================================
   styles2.css — Sections (Services → Footer)
   ========================================================= */

/* ---------- Services ---------- */
.services { background: var(--surface-warmer); padding: 120px 0; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card {
  position: relative;
  background: var(--surface);
  padding: 32px 28px;
  border-radius: var(--r-card);
  border: 1px solid rgba(170, 146, 100, 0.15);
  transition: all 0.4s cubic-bezier(0.25,0.1,0.25,1);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-gold-light));
  transition: all 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.service-card:hover::before { background: var(--cta-red); }
.service-card .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--brand-gold);
  margin-bottom: 16px;
}
.service-card .ico {
  width: 56px; height: 56px;
  background: var(--surface-warmer);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-gold);
  margin-bottom: 20px;
}
.service-card h4 { margin-bottom: 10px; font-size: 1.1rem; }
.service-card p { font-size: 0.92rem; color: var(--ink-muted); margin-bottom: 20px; }
.service-card .more {
  font-size: 0.82rem;
  color: var(--brand-gold);
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 6px;
}
.service-card:hover .more { color: var(--cta-red); }

.sectors {
  margin-top: 56px;
  text-align: center;
}
.sectors-title {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
}
.sectors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.sector-chip {
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid rgba(170, 146, 100, 0.3);
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
  transition: all 0.2s;
}
.sector-chip:hover { background: var(--brand-gold); color: var(--ink); border-color: var(--brand-gold); }

/* ---------- Process Timeline ---------- */
.process {
  background: var(--ink);
  color: var(--surface-warm);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(170,146,100,0.12), transparent 60%);
  pointer-events: none;
}
.process .container { position: relative; z-index: 1; }
.process .section-head h2 { color: var(--surface-warm); }
.process .section-head .eyebrow { color: var(--brand-gold-light); }
.process-track {
  position: relative;
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .process-track { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-track { grid-template-columns: repeat(4, 1fr); gap: 0; } }
.process-step {
  padding: 28px 20px;
  border-top: 1px solid rgba(170, 146, 100, 0.25);
  position: relative;
}
@media (min-width: 1024px) {
  .process-step { border-top: none; border-left: 1px solid rgba(170, 146, 100, 0.25); padding: 0 24px 0 28px; }
  .process-step:first-child { border-left: none; padding-left: 0; }
}
.process-step .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.5rem;
  color: var(--brand-gold);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}
.process-step h4 {
  color: var(--surface-warm);
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.process-step p {
  color: rgba(251, 247, 239, 0.65);
  font-size: 0.88rem;
}

.process-cta {
  text-align: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(170, 146, 100, 0.2);
}
.process-cta p {
  color: rgba(251, 247, 239, 0.75);
  margin-bottom: 24px;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Mantı Yolculuğu (sticky scroll) ---------- */
.manti {
  position: relative;
  background: var(--ink);
  color: var(--surface-warm);
}
.manti-pin {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}
.manti-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1612 0%, #3D2F22 100%);
}
.manti-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(170, 146, 100, 0.15);
  z-index: 10;
}
.manti-progress .bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-gold-light));
  transition: width 0.1s linear;
}
.manti-counter {
  position: absolute;
  top: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(170, 146, 100, 0.8);
}
.manti-counter b { color: var(--brand-gold-light); font-weight: 600; }

.manti-scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.25,0.1,0.25,1);
  pointer-events: none;
}
.manti-scene.active {
  opacity: 1;
  pointer-events: auto;
}
.manti-scene-bg {
  transform: scale(1.08);
  transition: transform 1.4s cubic-bezier(0.25,0.1,0.25,1);
}
.manti-scene.active .manti-scene-bg {
  transform: scale(1);
}

/* Animated entries inside active scene (Ken Burns + stagger) */
.manti-scene [data-anim] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.25,0.1,0.25,1), transform 0.7s cubic-bezier(0.25,0.1,0.25,1);
}
.manti-scene.active [data-anim] {
  opacity: 1;
  transform: none;
}
.manti-scene.active [data-anim="1"] { transition-delay: 0.15s; }
.manti-scene.active [data-anim="2"] { transition-delay: 0.30s; }
.manti-scene.active [data-anim="3"] { transition-delay: 0.45s; }
.manti-scene.active [data-anim="4"] { transition-delay: 0.60s; }
.manti-scene.active [data-anim="5"] { transition-delay: 0.75s; }
.manti-scene.active [data-anim="6"] { transition-delay: 0.90s; }
.manti-scene-bg {
  position: absolute; inset: 0;
  background-position: center;
  background-size: cover;
  filter: brightness(0.5);
}
.manti-scene-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,22,18,0.4) 0%, rgba(26,22,18,0.85) 100%);
}
.manti-scene-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 0 32px;
}
.manti-scene .label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  color: var(--brand-gold);
  margin-bottom: 24px;
  text-transform: uppercase;
  padding: 6px 18px;
  border: 1px solid rgba(170,146,100,0.4);
  border-radius: var(--r-pill);
}
.manti-scene h3 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--surface-warm);
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
}
.manti-scene p {
  color: rgba(251, 247, 239, 0.78);
  font-size: 1.05rem;
  max-width: 48ch;
  margin: 0 auto;
}
.manti-stage-icon {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--brand-gold);
  margin-bottom: 12px;
}

.manti-final-cta {
  margin-top: 32px;
  display: inline-flex;
}

/* ---------- Manti scroll hint ---------- */
.manti-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.manti-hint.show { opacity: 1; }
.manti-hint-inner {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(26,22,18,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(170,146,100,0.35);
  border-radius: var(--r-pill);
  color: var(--brand-gold-light);
}
.manti-hint-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.manti-hint-arrow {
  color: var(--brand-gold);
  animation: hintBounce 1.6s ease-in-out infinite;
}
@keyframes hintBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---------- Manti dot nav ---------- */
.manti-dots {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 768px) {
  .manti-dots { right: 16px; gap: 14px; }
}
.manti-dots li {
  display: flex; align-items: center;
  justify-content: flex-end;
  gap: 12px;
  cursor: pointer;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251,247,239,0.45);
  transition: color 0.3s;
}
.manti-dots li b {
  font-weight: 600;
  font-family: var(--font-sans);
  display: none;
}
@media (min-width: 768px) {
  .manti-dots li b { display: inline; }
}
.manti-dots li span {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(170,146,100,0.5);
  background: transparent;
  transition: all 0.3s;
  flex-shrink: 0;
}
.manti-dots li:hover { color: var(--brand-gold-light); }
.manti-dots li:hover span { border-color: var(--brand-gold); }
.manti-dots li.active {
  color: var(--brand-gold-light);
}
.manti-dots li.active span {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 4px rgba(170,146,100,0.18);
}

/* ---------- Manti meta row ---------- */
.manti-meta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  font-size: 0.82rem;
  color: rgba(251,247,239,0.7);
  letter-spacing: 0.02em;
}
.manti-meta b {
  color: var(--brand-gold);
  font-weight: 600;
}
.manti-meta .dot-sep {
  color: var(--brand-gold);
  opacity: 0.5;
}

/* ---------- Manti CTA scene ---------- */
.manti-scene-cta .manti-scene-bg {
  filter: brightness(0.3) saturate(0.6);
}
.manti-scene-cta .manti-scene-bg::after {
  background: linear-gradient(135deg, rgba(26,22,18,0.92) 0%, rgba(61,47,34,0.85) 100%);
}
.manti-cta-inner { max-width: 820px; }
.manti-cta-inner .label {
  background: var(--brand-gold);
  color: var(--ink);
  border-color: var(--brand-gold);
  font-weight: 700;
}
.manti-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0 32px;
  padding: 24px 16px;
  background: rgba(170,146,100,0.08);
  border-top: 1px solid rgba(170,146,100,0.25);
  border-bottom: 1px solid rgba(170,146,100,0.25);
}
.manti-cta-stat .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--brand-gold);
  line-height: 1;
  display: block;
}
.manti-cta-stat .num small {
  font-size: 0.5em;
  font-style: normal;
  margin-left: 2px;
  opacity: 0.8;
}
.manti-cta-stat .lbl {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(251,247,239,0.7);
  margin-top: 8px;
}
.manti-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.manti-cta-foot {
  margin-top: 24px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(251,247,239,0.55);
  letter-spacing: 0.02em;
}
.manti-cta-foot span { display: inline-flex; align-items: center; gap: 4px; }

/* Decorative manti journey scene visuals (gradient + svg) */
.manti-illust {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Gallery ---------- */
.gallery { background: var(--surface); padding: 120px 0; }
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}
.gallery-filter {
  padding: 8px 20px;
  border-radius: var(--r-pill);
  background: transparent;
  border: 1px solid rgba(170,146,100,0.3);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.2s;
}
.gallery-filter:hover { border-color: var(--brand-gold); }
.gallery-filter.active { background: var(--brand-gold); color: var(--ink); border-color: var(--brand-gold); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  position: relative;
  border-radius: var(--r-img);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  transition: opacity 0.4s, transform 0.4s;
}
.gallery-item.tall { aspect-ratio: 3 / 4; grid-row: span 1; }
@media (min-width: 1024px) {
  .gallery-item.tall { grid-row: span 2; aspect-ratio: 1 / 2; }
  .gallery-item.wide { grid-column: span 2; aspect-ratio: 2 / 1; }
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0.1,0.25,1);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .meta {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(180deg, transparent 50%, rgba(26,22,18,0.85));
  opacity: 0;
  transition: opacity 0.3s;
  color: #fff;
}
.gallery-item:hover .meta { opacity: 1; }
.gallery-item .meta .cat {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-gold-light);
  margin-bottom: 4px;
}
.gallery-item .meta .name { font-family: var(--font-serif); font-size: 1.15rem; }
.gallery-item.hidden { display: none; }

/* ---------- Stats ---------- */
.stats {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  color: var(--surface-warm);
}
.stats-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.stats::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(138,117,73,0.94), rgba(170,146,100,0.92));
}
.stats .container { position: relative; z-index: 2; }
.stats .section-head { color: #fff; }
.stats .section-head h2 { color: #fff; }
.stats .section-head .eyebrow { color: rgba(255,254,249,0.85); }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
  margin-top: 56px;
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item {
  text-align: center;
  padding: 24px 16px;
  border: 1px solid rgba(255,254,249,0.18);
  border-radius: var(--r-card);
  background: rgba(26,22,18,0.18);
  backdrop-filter: blur(6px);
}
.stat-item .ico {
  width: 48px; height: 48px;
  background: rgba(255,254,249,0.12);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.stat-item .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  color: #fff;
  line-height: 1;
  font-weight: 400;
}
.stat-item .num .suffix { font-size: 0.6em; opacity: 0.8; }
.stat-item .label {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(255,254,249,0.85);
  margin-top: 12px;
  text-wrap: balance;
}

/* ---------- Certificates ---------- */
.certs { background: var(--surface-warm); padding: 120px 0; }
.certs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) { .certs-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .certs-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.cert-card {
  background: var(--surface);
  border: 1px solid rgba(170,146,100,0.25);
  border-radius: var(--r-card);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}
.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--brand-gold);
}
.cert-thumb {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--surface-warmer);
  border-radius: var(--r-img);
  margin-bottom: 16px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cert-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cert-thumb.placeholder {
  background: linear-gradient(135deg, var(--surface-warmer), var(--surface-soft));
  position: relative;
}
.cert-thumb.placeholder::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 2px dashed rgba(170,146,100,0.4);
  border-radius: var(--r-img);
}
.cert-thumb.placeholder svg {
  width: 48px; height: 48px;
  color: var(--brand-gold);
  opacity: 0.6;
}
.cert-card .code {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 4px;
}
.cert-card h4 {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.cert-card .desc {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-bottom: 12px;
  min-height: 36px;
}
.cert-card .view {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-gold);
  letter-spacing: 0.02em;
}
.cert-card.upcoming {
  border-style: dashed;
  opacity: 0.7;
}

.certs-foot {
  text-align: center;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(170,146,100,0.2);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26,22,18,0.92);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 90vh; max-width: 90vw; border-radius: var(--r-img); }
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  color: #fff;
  font-size: 1.5rem;
  background: rgba(255,255,255,0.1);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Reference Projects ---------- */
.projects { background: var(--surface-warmer); padding: 120px 0; }
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 56px;
}
@media (min-width: 768px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .projects-grid { grid-template-columns: repeat(3, 1fr); } }

.project-card {
  background: var(--surface);
  border-radius: var(--r-card);
  padding: 28px;
  border: 1px solid rgba(170,146,100,0.18);
  position: relative;
  transition: all 0.3s;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.project-card .tag {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--surface-warmer);
  color: var(--brand-gold-dark);
  font-weight: 600;
}
.project-card .tag.active { background: var(--success); color: #fff; }
.project-card .loc {
  font-size: 0.78rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 6px;
}
.project-card h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 16px;
  padding-right: 80px;
  line-height: 1.3;
}
.project-card .meta-row {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px dashed rgba(170,146,100,0.2);
}
.project-card .meta-row .value {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brand-gold);
  font-size: 1rem;
}
.project-card .meta-row .lbl {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin-bottom: 2px;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--surface-warm);
  padding: 120px 0;
  position: relative;
}
.test-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
}
@media (min-width: 768px) { .test-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .test-grid { grid-template-columns: repeat(3, 1fr); } }
.test-card {
  background: var(--surface);
  padding: 32px 28px;
  border-radius: var(--r-card);
  border: 1px solid rgba(170,146,100,0.18);
  position: relative;
}
.test-card .quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 0.7;
  color: var(--brand-gold);
  opacity: 0.5;
  margin-bottom: 12px;
}
.test-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 24px;
}
.test-card .who {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(170,146,100,0.15);
}
.test-card .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface-warmer);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  color: var(--brand-gold);
  font-weight: 500;
  flex-shrink: 0;
}
.test-card .who .nm { font-weight: 600; color: var(--ink); font-size: 0.92rem; }
.test-card .who .ps { font-size: 0.78rem; color: var(--ink-muted); }

/* ---------- FAQ ---------- */
.faq { background: var(--surface-warmer); padding: 120px 0; }
.faq-list {
  max-width: 800px;
  margin: 56px auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(170,146,100,0.25);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  font-family: var(--font-sans);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--brand-gold-dark); }
.faq-q .plus {
  width: 32px; height: 32px;
  border: 1px solid var(--brand-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-gold);
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s, color 0.3s;
  font-size: 1.2rem;
  font-weight: 300;
}
.faq-item.open .plus {
  background: var(--brand-gold);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 24px; }
.faq-a p { color: var(--ink-soft); max-width: 65ch; }

/* ---------- Quote Form ---------- */
.quote {
  background: var(--ink);
  color: var(--surface-warm);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(170,146,100,0.18), transparent 60%);
}
.quote .container { position: relative; z-index: 1; }
.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) { .quote-grid { grid-template-columns: 1.3fr 1fr; gap: 80px; } }

.quote-head h2 { color: var(--surface-warm); margin-bottom: 16px; }
.quote-head .eyebrow { color: var(--brand-gold-light); display: block; margin-bottom: 16px; }
.quote-head p { color: rgba(251,247,239,0.75); margin-bottom: 24px; max-width: 56ch; }

.quote-form {
  background: rgba(255,254,249,0.04);
  border: 1px solid rgba(170,146,100,0.22);
  border-radius: var(--r-card);
  padding: 32px;
  backdrop-filter: blur(8px);
}
.quote-form .step-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}
.step-bar .step {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(170,146,100,0.22);
  transition: background 0.3s;
}
.step-bar .step.active { background: var(--brand-gold); }
.step-bar .step.done { background: var(--brand-gold-dark); }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-gold-light);
  margin-bottom: 8px;
  font-weight: 600;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(26,22,18,0.4);
  border: 1px solid rgba(170,146,100,0.3);
  border-radius: var(--r-btn);
  color: var(--surface-warm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand-gold);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field input::placeholder { color: rgba(251,247,239,0.4); }

.radio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.radio-item {
  position: relative;
}
.radio-item input { position: absolute; opacity: 0; }
.radio-item label {
  display: block;
  padding: 14px 12px;
  background: rgba(26,22,18,0.4);
  border: 1px solid rgba(170,146,100,0.25);
  border-radius: var(--r-btn);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--surface-warm);
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
  cursor: pointer;
  transition: all 0.2s;
}
.radio-item input:checked + label {
  background: var(--brand-gold);
  color: var(--ink);
  border-color: var(--brand-gold);
}

.form-buttons {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 24px;
}
.form-step { display: none; }
.form-step.active { display: block; }

.trust-capsule {
  margin-top: 24px;
  padding: 20px;
  background: rgba(170,146,100,0.08);
  border: 1px solid rgba(170,146,100,0.2);
  border-radius: var(--r-card);
}
.trust-capsule h5 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-gold-light);
  margin-bottom: 12px;
  font-family: var(--font-sans);
  display: flex; align-items: center; gap: 8px;
}
.trust-capsule .badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.trust-capsule .badge {
  font-size: 0.7rem;
  text-align: center;
  padding: 6px;
  background: rgba(26,22,18,0.4);
  border: 1px solid rgba(170,146,100,0.2);
  border-radius: 4px;
  color: var(--brand-gold-light);
  font-weight: 600;
}
.trust-capsule p { font-size: 0.82rem; color: rgba(251,247,239,0.7); margin: 0; }

.contact-alt {
  margin-top: 24px;
  display: grid;
  gap: 8px;
}
.contact-alt a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: rgba(255,254,249,0.04);
  border: 1px solid rgba(170,146,100,0.18);
  border-radius: var(--r-card);
  font-size: 0.9rem;
  color: var(--surface-warm);
  transition: all 0.2s;
}
.contact-alt a:hover {
  background: rgba(170,146,100,0.12);
  border-color: var(--brand-gold);
}
.contact-alt a .ico {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(170,146,100,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-gold);
}
.contact-alt a strong { display: block; font-size: 0.95rem; color: var(--surface-warm); }
.contact-alt a small { display: block; font-size: 0.78rem; color: rgba(251,247,239,0.6); }

/* ---------- Footer ---------- */
.footer {
  background: #100D0A;
  color: var(--surface-warm);
  padding-top: 64px;
}
.footer-cert-band {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(170,146,100,0.18);
}
.footer-cert-band .lbl {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-right: 16px;
}
.footer-cert-band .badge {
  font-size: 0.78rem;
  padding: 6px 14px;
  border: 1px solid rgba(170,146,100,0.25);
  border-radius: var(--r-pill);
  color: rgba(251,247,239,0.65);
  font-weight: 500;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 64px 0;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; } }

.footer-brand .logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.footer-logo-img {
  height: 52px;
  width: auto;
}
.footer-brand p {
  color: rgba(251,247,239,0.65);
  font-size: 0.9rem;
  max-width: 36ch;
  margin-bottom: 20px;
}
.footer-brand .socials { display: flex; gap: 8px; }
.footer-brand .socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(170,146,100,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-gold);
  transition: all 0.2s;
}
.footer-brand .socials a:hover {
  background: var(--brand-gold);
  color: var(--ink);
  border-color: var(--brand-gold);
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 0.92rem;
  color: rgba(251,247,239,0.7);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--brand-gold); }
.footer-col .contact-line {
  font-size: 0.88rem;
  color: rgba(251,247,239,0.7);
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-col .contact-line .ico {
  color: var(--brand-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(170,146,100,0.15);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(251,247,239,0.55);
}
.footer-bottom .links { display: flex; gap: 24px; flex-wrap: wrap; }

/* ---------- Sticky widgets ---------- */
.fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  display: flex; flex-direction: column;
  gap: 10px;
}
.fab-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-cta);
  transition: transform 0.2s;
}
.fab-btn:hover { transform: scale(1.08); }
.fab-wa { background: #25D366; color: #fff; }
.fab-up { background: var(--ink); color: var(--brand-gold); border: 1px solid var(--brand-gold); }

/* Mobile bottom bar */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  display: flex;
  z-index: 95;
  border-top: 2px solid var(--brand-gold);
}
@media (min-width: 768px) { .mobile-bar { display: none; } }
.mobile-bar a {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--surface-warm);
  letter-spacing: 0.04em;
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  border-right: 1px solid rgba(170,146,100,0.15);
}
.mobile-bar a:last-child { border-right: none; }
.mobile-bar a.primary { background: var(--cta-red); }
.mobile-bar a svg { color: var(--brand-gold); }
.mobile-bar a.primary svg { color: #fff; }

@media (max-width: 767px) {
  body { padding-bottom: 64px; }
  .fab { bottom: 80px; right: 16px; }
}
