/* ---- Hero ---- */
.hero-cinematic {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--bg);
}
.hero-cinematic__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--bg-2);
}
.hero-cinematic__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(1.05);
  transform: scale(1.02);
}
.hero-cinematic__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(253, 248, 243, 0.96) 0%, rgba(253, 248, 243, 0.88) 42%, rgba(253, 248, 243, 0.55) 72%, rgba(253, 248, 243, 0.35) 100%),
    linear-gradient(0deg, rgba(253, 248, 243, 1) 0%, transparent 40%);
}
.hero-cinematic__inner { position: relative; z-index: 2; max-width: 640px; }
.hero-cinematic__title {
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--text);
}
.hero-cinematic__lead {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-cinematic__actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* ---- Help section ---- */
.section-help { padding: 96px 0; background: var(--bg); }
.help-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.help-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.25s, box-shadow 0.25s;
}
.help-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.help-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
}
.help-card h3 {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 10px;
}
.help-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ---- Stats ---- */
.stats-cinematic {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-cinematic__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.stat-block__num {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-block__label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.stat-block__desc { font-size: 0.85rem; color: var(--muted); line-height: 1.5; max-width: 200px; margin: 0 auto; }

/* ---- About ---- */
.section-about { padding: 96px 0; background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-copy h2 { margin-bottom: 24px; }
.about-copy p { color: var(--muted); line-height: 1.75; margin-bottom: 16px; font-size: 0.98rem; }
.about-copy .btn { margin-top: 12px; }
.about-visual {
  min-height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(rgba(253, 248, 243, 0.2), rgba(253, 248, 243, 0.4)),
    url("https://images.unsplash.com/photo-1593113598332-cd288d649433?w=1200&q=70") center/cover no-repeat,
    var(--bg-2);
  display: grid;
  place-items: center;
  padding: 40px;
}
.about-visual__text {
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--text);
  max-width: 16ch;
  line-height: 1.25;
  font-family: var(--font-display);
}

/* ---- Services ---- */
.section-services-detail { padding: 96px 0; background: var(--bg-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(139, 154, 93, 0.35); }
.service-img { aspect-ratio: 16/10; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.95); transition: transform 0.4s; }
.service-card:hover .service-img img { transform: scale(1.04); }
.service-body { padding: 24px; }
.service-body h3 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  color: var(--text);
}
.service-body p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 14px; }
.service-link { font-weight: 700; font-size: 0.85rem; color: var(--accent); transition: color 0.2s; }
.service-link:hover { color: var(--accent-2); }

/* ---- How it works ---- */
.section-how { padding: 96px 0; background: var(--bg); }
.steps-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.steps-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
}
.steps-list { display: flex; flex-direction: column; gap: 16px; }
.step-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-n {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: rgba(139, 154, 93, 0.12);
  padding: 6px 10px;
  border-radius: 8px;
}
.step-row h4 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.step-row p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ---- Team ---- */
.section-band { padding: 80px 0; background: var(--bg-2); }
.section-band--alt { background: var(--bg); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-photo { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.95); }
.team-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 6px 10px;
  border-radius: 999px;
}
.team-body { padding: 22px; }
.team-body h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 4px; }
.team-role { display: block; font-size: 0.78rem; font-weight: 700; color: var(--gold); margin-bottom: 12px; }
.team-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ---- Reviews ---- */
.section-reviews { background: var(--bg) !important; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.review-top { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.review-top img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.review-top strong { display: block; font-size: 0.95rem; font-weight: 800; }
.review-top span { font-size: 0.78rem; color: var(--muted); }
.review-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ---- Offices ---- */
.section-offices { padding: 96px 0; background: var(--bg-2); border-top: 1px solid var(--border); }
.offices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.office-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, transform 0.25s;
}
.office-card:hover { border-color: rgba(139, 154, 93, 0.35); transform: translateY(-3px); }
.office-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(139, 154, 93, 0.12);
  border: 1px solid rgba(139, 154, 93, 0.25);
  display: grid;
  place-items: center;
  color: var(--gold);
}
.office-card__icon svg { width: 22px; height: 22px; }
.office-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.office-addr { font-size: 0.88rem; color: var(--muted); line-height: 1.55; margin-bottom: 10px; }
.office-hours { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); }

/* ---- Security / Why app ---- */
.section-security { padding: 96px 0; background: var(--bg); border-top: 1px solid var(--border); }
.security-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.security-intro h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 800; letter-spacing: -0.01em; margin: 12px 0 16px; line-height: 1.15; }
.security-intro p { color: var(--muted); line-height: 1.7; margin-bottom: 24px; max-width: 36ch; }
.security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.security-item {
  padding: 22px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.security-num { display: block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 10px; }
.security-item h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.security-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }

/* ---- FAQ ---- */
#faq { padding: 96px 0; background: var(--bg); }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
}
.faq-q .chev { transition: transform 0.25s; color: var(--gold); }
.faq-item.is-open .chev { transform: rotate(180deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease; }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; padding: 0 22px 20px; font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ---- Contact CTA ---- */
#contact { padding: 96px 0; background: var(--bg-2); }
.cta-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  display: grid;
  place-items: center;
}
.cta-photo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.85);
}
.cta-photo-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  padding: 40px;
  color: #fff;
}
.cta-photo-inner h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: 14px; }
.cta-photo-inner p { font-size: 1rem; line-height: 1.7; margin-bottom: 24px; opacity: 0.92; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---- CTA box ---- */
.cta-box-section { padding: 48px 0 80px; background: var(--bg); }
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 36px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.cta-box h2 { font-size: clamp(1.1rem, 2.2vw, 1.65rem); font-weight: 800; letter-spacing: -0.01em; max-width: 24ch; line-height: 1.2; }

@media (max-width: 960px) {
  .help-grid { grid-template-columns: 1fr 1fr; }
  .stats-cinematic__grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .steps-visual, .security-layout { grid-template-columns: 1fr; }
  .services-grid, .team-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 280px; }
  .hero-cinematic { min-height: 88vh; }
  .hero-cinematic__inner { max-width: 100%; }
}

@media (max-width: 720px) {
  .help-grid, .stats-cinematic__grid, .services-grid, .team-grid, .reviews-grid, .security-grid { grid-template-columns: 1fr; }
  .cta-box { flex-direction: column; align-items: center; text-align: center; padding: 32px 24px; }
  .cta-box h2 { max-width: 100%; }
  .cta-box .btn { width: 100%; max-width: 320px; }
  .cta-photo-inner { padding: 24px; }
  .hero-cinematic__actions { justify-content: center; }
  .hero-cinematic__actions .btn { width: 100%; max-width: 320px; }
  .logo-tagline { display: none; }
}
