/* === Section Utilities === */
.section-dark {
  background: var(--bg-section);
}

.section-header-center {
  text-align: center;
}

.section-header-center .section-label {
  justify-content: center;
}

.section-header {
  margin-bottom: var(--space-7);
}

.section-header h2 {
  margin-top: 0;
}

.section-desc {
  max-width: 600px;
  margin-top: var(--space-4);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

.section-header-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* === Section Background Images === */
.has-bg-img {
  position: relative;
  overflow: hidden;
}

.section-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.section-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.09;
  filter: saturate(0.5) blur(1px);
  transition: opacity 0.6s ease;
}

.has-bg-img > .container {
  position: relative;
  z-index: 1;
}

/* === Services Visual (decorative photo) === */
.services-visual {
  max-width: 520px;
  margin: 0 auto var(--space-8);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-default);
  position: relative;
}

.services-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 11, 22, 0.15) 0%,
    transparent 30%,
    transparent 60%,
    rgba(14, 11, 22, 0.7) 100%
  );
  pointer-events: none;
  transition: background 0.4s ease;
}

.services-visual:hover::after {
  background: linear-gradient(
    180deg,
    rgba(14, 11, 22, 0.05) 0%,
    transparent 30%,
    transparent 60%,
    rgba(14, 11, 22, 0.5) 100%
  );
}

.services-visual img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0.75) saturate(0.85);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.services-visual:hover img {
  filter: brightness(0.85) saturate(1);
  transform: scale(1.03);
}

@media (min-width: 768px) {
  .services-visual {
    max-width: 600px;
    border-radius: 20px;
  }
}

/* === Section Divider Image === */
.section-divider-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.section-divider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35) saturate(0.6);
  transition: transform 8s ease-out, filter 2s ease;
}

.section-divider-img:hover img {
  transform: scale(1.05);
  filter: brightness(0.45) saturate(0.8);
}

.section-divider-img::before,
.section-divider-img::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.section-divider-img::before {
  top: 0;
  height: 55%;
  background: linear-gradient(
    180deg,
    var(--bg-section) 0%,
    rgba(26, 21, 37, 0.85) 25%,
    rgba(26, 21, 37, 0.4) 55%,
    transparent 100%
  );
}

.section-divider-img::after {
  bottom: 0;
  height: 55%;
  background: linear-gradient(
    0deg,
    var(--bg-section) 0%,
    rgba(26, 21, 37, 0.85) 25%,
    rgba(26, 21, 37, 0.4) 55%,
    transparent 100%
  );
}

/* Golden glow line in center */
.section-divider-img .divider-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
  z-index: 2;
}

@media (min-width: 768px) {
  .section-divider-img {
    height: 260px;
  }

  .section-divider-img .divider-glow {
    width: 200px;
  }
}

@media (min-width: 1024px) {
  .section-divider-img {
    height: 320px;
  }

  .section-divider-img .divider-glow {
    width: 280px;
  }
}

/* === Contacts Head Image === */
.contacts-head-img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 1px solid rgba(201, 169, 110, 0.25);
  box-shadow: 0 0 32px rgba(201, 169, 110, 0.12),
              0 0 0 4px rgba(201, 169, 110, 0.04);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.contacts-head-img:hover {
  box-shadow: 0 0 40px rgba(201, 169, 110, 0.18),
              0 0 0 6px rgba(201, 169, 110, 0.06);
  transform: scale(1.05);
}

.contacts-head-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .contacts-head-img {
    width: 100px;
    height: 100px;
  }
}

/* === About === */
.about {
  position: relative;
  overflow: hidden;
}

.about-glow {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(142, 107, 199, 0.05) 0%,
    rgba(201, 169, 110, 0.025) 35%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

/* ── Top: portrait + intro ── */
.about-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  margin-bottom: var(--space-9);
  position: relative;
  z-index: 1;
}

/* Circular portrait with gradient ring + glow */
.about-portrait {
  position: relative;
  width: 160px;
  height: 160px;
  flex-shrink: 0;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  border: 2px solid rgba(201, 169, 110, 0.2);
}

.about-portrait-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  z-index: 1;
  background: conic-gradient(
    from 0deg,
    rgba(201, 169, 110, 0.3),
    rgba(142, 107, 199, 0.15),
    rgba(201, 169, 110, 0.05),
    rgba(142, 107, 199, 0.15),
    rgba(201, 169, 110, 0.3)
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 1px), #000 calc(100% - 1px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 1px), #000 calc(100% - 1px));
  animation: ringRotate 12s linear infinite;
}

@keyframes ringRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.about-portrait-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* Intro text */
.about-intro {
  text-align: center;
  max-width: 560px;
}

.about-intro .section-label {
  justify-content: center;
  margin-bottom: var(--space-4);
}

.about-intro h2 {
  margin-bottom: var(--space-5);
  line-height: 1.2;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold-light) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-intro h2 em {
  font-style: italic;
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
}

.about-intro-text {
  font: 300 15px/1.8 var(--font-body);
  color: var(--text-secondary);
  margin: 0 auto;
  max-width: 480px;
}

/* ── Value cards ── */
.about-values {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-9);
  position: relative;
  z-index: 1;
}

.about-value-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  background: linear-gradient(
    165deg,
    rgba(30, 22, 48, 0.6) 0%,
    rgba(30, 22, 48, 0.35) 100%
  );
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  transition: border-color var(--duration-normal) var(--ease-default),
              transform var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-default);
}

.about-value-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2),
              0 0 0 1px rgba(201, 169, 110, 0.08);
}

/* Icon */
.about-value-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--gold);
  transition: background var(--duration-normal) var(--ease-default),
              border-color var(--duration-normal) var(--ease-default);
}

.about-value-card:hover .about-value-icon {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--border-default);
}

.about-value-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}

.about-value-card h3 {
  font: 500 18px/1.3 var(--font-heading);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  white-space: nowrap;
}

.about-value-card p {
  font: 300 13.5px/1.75 var(--font-body);
  color: var(--text-muted);
  margin: 0;
  flex: 1;
}

/* ── Quote panel ── */
.about-quote-panel {
  position: relative;
  z-index: 1;
}

.about-quote-inner {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: linear-gradient(
    170deg,
    rgba(142, 107, 199, 0.06) 0%,
    rgba(201, 169, 110, 0.04) 50%,
    rgba(30, 22, 48, 0.5) 100%
  );
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
}

.about-quote {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: var(--text-primary);
  margin: 0 auto var(--space-7);
  padding: 0;
  border: none;
  max-width: 540px;
  position: relative;
}

.about-quote::before {
  content: '\201C';
  display: block;
  font-family: var(--font-heading);
  font-size: 56px;
  font-style: normal;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.25;
  margin-bottom: var(--space-4);
  user-select: none;
}

.desktop-br {
  display: none;
}

.about-quote-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}

.about-confidential {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 400 13px/1.4 var(--font-body);
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.about-confidential svg {
  color: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ── Tablet (768px) ── */
@media (min-width: 768px) {
  .about-top {
    flex-direction: row;
    text-align: left;
    gap: var(--space-8);
    align-items: center;
  }

  .about-portrait {
    width: 190px;
    height: 190px;
  }

  .about-intro {
    text-align: left;
    flex: 1;
    max-width: none;
  }

  .about-intro .section-label {
    justify-content: flex-start;
  }

  .about-intro-text {
    margin: 0;
    font-size: 16px;
    max-width: 480px;
  }

  .about-values {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
  }

  .about-value-card h3 {
    font-size: 19px;
  }

  .about-value-card p {
    font-size: 13px;
  }

  .about-quote-inner {
    padding: var(--space-9) var(--space-8);
  }

  .about-quote {
    font-size: 28px;
    max-width: 600px;
  }

  .about-quote::before {
    font-size: 72px;
  }

  .about-quote-footer {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-7);
  }

  .desktop-br {
    display: inline;
  }
}

/* ── Desktop (1024px) ── */
@media (min-width: 1024px) {
  .about-top {
    gap: var(--space-9);
  }

  .about-portrait {
    width: 210px;
    height: 210px;
  }

  .about-intro h2 {
    font-size: 40px;
  }

  .about-intro-text {
    font-size: 17px;
    max-width: 500px;
  }

  .about-values {
    gap: var(--space-6);
  }

  .about-value-card {
    padding: var(--space-7);
  }

  .about-value-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-6);
  }

  .about-value-icon svg {
    width: 24px;
    height: 24px;
  }

  .about-value-card h3 {
    font-size: 21px;
    margin-bottom: var(--space-4);
  }

  .about-value-card p {
    font-size: 13.5px;
    line-height: 1.75;
  }

  .about-quote-inner {
    padding: var(--space-10) var(--space-9);
  }

  .about-quote {
    font-size: 32px;
    max-width: 680px;
    margin-bottom: var(--space-8);
  }

  .about-quote::before {
    font-size: 80px;
  }
}

/* === Questions === */
.questions {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.questions::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 107, 199, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.questions-header {
  margin-bottom: var(--space-8);
}

.questions-header h2 {
  margin-top: 0;
}

.questions-subtitle {
  max-width: 500px;
  margin-top: var(--space-3);
  font: 300 15px/1.7 var(--font-body);
  color: var(--text-muted);
}

/* Layout: featured left + grid right */
.q-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
  position: relative;
  z-index: 1;
}

/* ── Featured card (gradient border trick) ── */
.q-featured {
  position: relative;
  border-radius: var(--border-radius-lg);
  padding: 1.5px;
  background: linear-gradient(
    160deg,
    rgba(201, 169, 110, 0.35) 0%,
    rgba(142, 107, 199, 0.18) 50%,
    rgba(201, 169, 110, 0.12) 100%
  );
}

.q-featured-inner {
  background: linear-gradient(
    160deg,
    rgba(26, 21, 37, 0.97) 0%,
    rgba(18, 14, 28, 0.99) 100%
  );
  border-radius: calc(var(--border-radius-lg) - 1.5px);
  padding: var(--space-7) var(--space-6);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.q-featured-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 14px;
  font: 600 10px/1 var(--font-body);
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.18);
  border-radius: var(--border-radius-full);
  margin-bottom: var(--space-5);
}

.q-featured-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--gold);
}

.q-featured h3 {
  font: 500 26px/1.2 var(--font-heading);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.q-featured-lead {
  font: 400 15px/1.6 var(--font-heading);
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: var(--space-4);
  opacity: 0.8;
  padding-left: 16px;
  border-left: 2px solid rgba(201, 169, 110, 0.2);
}

.q-featured p:last-of-type {
  font: 300 14px/1.75 var(--font-body);
  color: var(--text-secondary);
  margin: 0;
}

/* ── Question cards ── */
.q-grid {
  display: grid;
  gap: var(--space-3);
}

.q-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: rgba(30, 22, 48, 0.35);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-sm);
  transition: border-color var(--duration-normal) var(--ease-default),
              background var(--duration-normal) var(--ease-default),
              transform var(--duration-normal) var(--ease-smooth);
}

.q-card:hover {
  border-color: var(--border-hover);
  background: rgba(30, 22, 48, 0.55);
  transform: translateX(4px);
}

.q-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(201, 169, 110, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: background var(--duration-normal) var(--ease-default);
}

.q-card:hover .q-card-icon {
  background: rgba(201, 169, 110, 0.1);
}

.q-card-text h3 {
  font: 500 16px/1.3 var(--font-heading);
  color: var(--text-primary);
  margin-bottom: 6px;
}

.q-card-text p {
  font: 300 13px/1.65 var(--font-body);
  color: var(--text-muted);
  margin: 0;
}

/* ── Bottom CTA ── */
.q-bottom {
  text-align: center;
}

.q-bottom-text {
  font: 400 15px/1.5 var(--font-heading);
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}

/* ── Tablet (768px) ── */
@media (min-width: 768px) {
  .questions-header {
    text-align: center;
  }

  .questions-header .section-label {
    justify-content: center;
  }

  .questions-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .q-layout {
    flex-direction: row;
    gap: var(--space-6);
  }

  .q-featured {
    flex: 0 0 44%;
  }

  .q-grid {
    flex: 1;
    gap: var(--space-3);
  }

  .q-featured h3 {
    font-size: 28px;
  }

  .q-featured-lead {
    font-size: 16px;
  }

  .q-featured p:last-of-type {
    font-size: 15px;
  }

  .q-card-text h3 {
    font-size: 17px;
  }

  .q-card-text p {
    font-size: 13.5px;
  }
}

/* ── Desktop (1024px) ── */
@media (min-width: 1024px) {
  .q-layout {
    gap: var(--space-7);
  }

  .q-featured {
    flex: 0 0 42%;
  }

  .q-featured-inner {
    padding: var(--space-8) var(--space-7);
  }

  .q-featured h3 {
    font-size: 32px;
  }

  .q-featured-lead {
    font-size: 17px;
  }

  .q-card {
    padding: var(--space-5) var(--space-6);
  }

  .q-card-text h3 {
    font-size: 18px;
  }

  .q-card-text p {
    font-size: 14px;
  }
}

/* === Services === */
.services {
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.services-header {
  text-align: center;
  margin-bottom: var(--space-9);
}

.services-header .section-label {
  justify-content: center;
}

.services-header h2 {
  margin-top: 0;
}

.services-subtitle {
  max-width: 500px;
  margin: var(--space-4) auto 0;
  font: 300 16px/1.7 var(--font-body);
  color: var(--text-secondary);
}

/* ── Service cards grid ── */
.srv-grid {
  display: grid;
  gap: var(--space-5);
  position: relative;
  z-index: 1;
}

.srv-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--space-7) var(--space-6);
  background: linear-gradient(
    170deg,
    rgba(30, 22, 48, 0.5) 0%,
    rgba(20, 16, 30, 0.6) 100%
  );
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
  transition: border-color var(--duration-normal) var(--ease-default),
              transform var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-default);
  overflow: hidden;
}

.srv-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25),
              0 0 0 1px rgba(201, 169, 110, 0.06);
}

/* Main card special styling */
.srv-card-main {
  border-color: rgba(201, 169, 110, 0.25);
  background: linear-gradient(
    170deg,
    rgba(30, 22, 48, 0.75) 0%,
    rgba(24, 18, 36, 0.85) 100%
  );
}

.srv-card-main:hover {
  border-color: rgba(201, 169, 110, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
              0 0 40px rgba(201, 169, 110, 0.06);
}

.srv-card-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* Popular badge — absolute so it doesn't shift card content */
.srv-popular {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  padding: 5px 14px;
  font: 600 10px/1 var(--font-body);
  color: var(--bg-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gradient-gold);
  border-radius: var(--border-radius-full);
  z-index: 2;
}

/* Card head */
.srv-card-head {
  margin-bottom: var(--space-5);
}

.srv-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(201, 169, 110, 0.07);
  border: 1px solid rgba(201, 169, 110, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: var(--space-5);
  transition: background var(--duration-normal) var(--ease-default),
              border-color var(--duration-normal) var(--ease-default);
}

.srv-card:hover .srv-icon {
  background: rgba(201, 169, 110, 0.12);
  border-color: rgba(201, 169, 110, 0.2);
}

.srv-card-head h3 {
  font: 500 24px/1.2 var(--font-heading);
  color: var(--text-primary);
  margin-bottom: 8px;
}

.srv-format {
  font: 400 13px/1.4 var(--font-body);
  color: var(--gold);
  letter-spacing: 0.03em;
  opacity: 0.7;
}

/* Description */
.srv-desc {
  font: 300 15px/1.8 var(--font-body);
  color: var(--text-primary);
  opacity: 0.75;
  margin-bottom: var(--space-5);
  flex: 1;
}

/* Details (time, location) */
.srv-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-6);
  padding: var(--space-5) 0;
  border-top: 1px solid var(--border-divider);
  border-bottom: 1px solid var(--border-divider);
}

.srv-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 400 13px/1.3 var(--font-body);
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.srv-detail svg {
  color: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
}

/* Price row */
.srv-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: auto;
  padding-top: var(--space-4);
}

.srv-price {
  font: 600 30px/1 var(--font-heading);
  color: var(--gold);
  white-space: nowrap;
}

.srv-price span {
  font-size: 15px;
  font-weight: 400;
  opacity: 0.6;
}

.srv-price-row .btn-primary,
.srv-price-row .btn-secondary {
  padding: 14px 28px;
  font-size: 12px;
  white-space: nowrap;
}

/* Note */
.srv-note {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  max-width: 640px;
  margin: var(--space-8) auto 0;
  padding: var(--space-5) var(--space-6);
  text-align: left;
  background: linear-gradient(135deg, rgba(30, 22, 48, 0.4) 0%, rgba(20, 16, 30, 0.3) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
}

.srv-note svg {
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.srv-note p {
  font: 300 14px/1.7 var(--font-body);
  color: var(--text-muted);
  margin: 0;
}

/* ── Tablet (768px) ── */
@media (min-width: 768px) {
  .srv-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
  }

  .srv-card {
    padding: var(--space-7);
  }

  .srv-card-head h3 {
    font-size: 24px;
  }

  .srv-desc {
    font-size: 14.5px;
  }

  .srv-price {
    font-size: 26px;
  }

  .srv-price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  .srv-price-row .btn-primary,
  .srv-price-row .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ── Desktop (1024px) ── */
@media (min-width: 1024px) {
  .srv-grid {
    gap: var(--space-6);
  }

  .srv-card {
    padding: var(--space-8) var(--space-7);
  }

  .srv-card-head h3 {
    font-size: 26px;
  }

  .srv-desc {
    font-size: 15px;
  }

  .srv-price {
    font-size: 30px;
  }
}

/* === Process / Steps === */
.process-section {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.process-header {
  text-align: center;
  margin-bottom: var(--space-9);
}

.process-header .section-label {
  justify-content: center;
}

.process-header h2 {
  margin-top: 0;
}

.process-subtitle {
  max-width: 440px;
  margin: var(--space-3) auto 0;
  font: 300 16px/1.7 var(--font-body);
  color: var(--text-secondary);
}

/* Steps grid: 1 col mobile, 2 col tablet, 4 col desktop */
.steps-grid {
  display: grid;
  gap: var(--space-5);
  counter-reset: step;
}

.step-card {
  position: relative;
  padding: var(--space-7) var(--space-6);
  background: linear-gradient(
    170deg,
    rgba(30, 22, 48, 0.45) 0%,
    rgba(20, 16, 30, 0.5) 100%
  );
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
  transition: border-color var(--duration-normal) var(--ease-default),
              transform var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-default);
  overflow: hidden;
}

.step-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

/* Large faded number in background */
.step-num {
  position: absolute;
  top: var(--space-4);
  right: var(--space-5);
  font: 700 64px/1 var(--font-heading);
  color: var(--gold);
  opacity: 0.06;
  user-select: none;
  pointer-events: none;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(201, 169, 110, 0.07);
  border: 1px solid rgba(201, 169, 110, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: var(--space-5);
  transition: background var(--duration-normal) var(--ease-default);
}

.step-card:hover .step-icon {
  background: rgba(201, 169, 110, 0.12);
}

.step-card h3 {
  font: 500 20px/1.3 var(--font-heading);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.step-card p {
  font: 300 14px/1.75 var(--font-body);
  color: var(--text-secondary);
  margin: 0;
}

/* Step arrows (hidden on mobile, shown on desktop) */
.step-arrow {
  display: none;
}

/* Process CTA */
.process-cta {
  text-align: center;
  margin-top: var(--space-8);
}

.process-cta-text {
  font: 400 16px/1.5 var(--font-heading);
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}

/* ── Tablet (768px) ── */
@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }

  .step-card h3 {
    font-size: 22px;
  }

  .step-card p {
    font-size: 15px;
  }

  .step-num {
    font-size: 80px;
  }
}

/* ── Desktop (1024px) ── */
@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0 var(--space-3);
    align-items: stretch;
  }

  .step-card {
    padding: var(--space-7) var(--space-6);
    display: flex;
    flex-direction: column;
  }

  .step-card p {
    margin-top: auto;
  }

  .step-num {
    font-size: 72px;
  }

  .step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    opacity: 0.3;
  }
}

/* === Trust / Stats === */
.trust-section {
  background: var(--bg-primary);
  overflow: hidden;
  position: relative;
}

/* Horizontal banner with dividers */
.trust-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6) var(--space-4);
  padding: var(--space-8) var(--space-6);
  background: linear-gradient(
    135deg,
    rgba(30, 22, 48, 0.5) 0%,
    rgba(20, 16, 30, 0.4) 100%
  );
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
  position: relative;
}

.trust-banner-item {
  text-align: center;
  padding: var(--space-3) 0;
}

.trust-number {
  font: 600 36px/1 var(--font-heading);
  color: var(--gold);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}

.trust-label {
  font: 400 13px/1.4 var(--font-body);
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.trust-divider {
  display: none;
}

/* Quote */
.trust-quote {
  text-align: center;
  max-width: 680px;
  margin: var(--space-8) auto 0;
  padding: var(--space-7) var(--space-6);
  position: relative;
  font: italic 400 17px/1.75 var(--font-heading);
  color: var(--text-primary);
  opacity: 0.85;
  background: linear-gradient(
    170deg,
    rgba(142, 107, 199, 0.04) 0%,
    rgba(201, 169, 110, 0.03) 50%,
    rgba(30, 22, 48, 0.4) 100%
  );
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
}

.trust-quote-mark {
  font: 600 28px/1 var(--font-heading);
  color: var(--gold);
  opacity: 0.5;
  vertical-align: middle;
}

.trust-quote cite {
  display: block;
  margin-top: var(--space-5);
  font: 500 14px/1 var(--font-body);
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ── Tablet (768px) ── */
@media (min-width: 768px) {
  .trust-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: var(--space-8) var(--space-7);
  }

  .trust-banner-item {
    flex: 1;
    padding: 0 var(--space-6);
  }

  .trust-divider {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, transparent, var(--border-default), transparent);
    flex-shrink: 0;
  }

  .trust-number {
    font-size: 42px;
    margin-bottom: var(--space-3);
  }

  .trust-label {
    font-size: 14px;
  }

  .trust-quote {
    font-size: 20px;
    padding: var(--space-8);
  }
}

/* ── Desktop (1024px) ── */
@media (min-width: 1024px) {
  .trust-number {
    font-size: 48px;
  }

  .trust-banner {
    padding: var(--space-9) var(--space-8);
  }

  .trust-quote {
    font-size: 22px;
  }
}

/* === Reviews === */
.reviews-section {
  overflow: hidden;
}

.swiper {
  padding: var(--space-4) 0 var(--space-6);
  overflow: visible;
}

.swiper-slide .card.review-card {
  background: linear-gradient(160deg, rgba(30, 22, 48, 0.65) 0%, rgba(20, 16, 30, 0.5) 100%);
  border-color: transparent;
  background-clip: padding-box;
  position: relative;
}

.swiper-slide .card.review-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(201, 169, 110, 0.2) 0%, rgba(142, 107, 199, 0.1) 50%, rgba(201, 169, 110, 0.06) 100%);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--duration-normal) ease;
}

.swiper-slide .card.review-card:hover::before {
  opacity: 1;
}

.review-card {
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  font: 600 16px/1 var(--font-heading);
  color: var(--gold);
  flex-shrink: 0;
}

.review-author {
  display: block;
  font: 600 14px/1.2 var(--font-body);
  color: var(--text-primary);
}

.review-city {
  display: block;
  font: 400 12px/1.2 var(--font-body);
  color: var(--text-muted);
  margin-top: 2px;
}

.review-date {
  margin-left: auto;
  font: 400 12px/1 var(--font-body);
  color: var(--text-muted);
  white-space: nowrap;
}

.review-stars {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: var(--space-3);
}

.review-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  flex: 1;
}

.swiper-pagination {
  margin-top: var(--space-5);
  position: relative !important;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--text-muted);
  opacity: 0.3;
  transition: all var(--duration-fast) ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* === FAQ === */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-divider);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  text-align: left;
  font: 500 15px/1.4 var(--font-body);
  color: var(--text-primary);
  cursor: pointer;
  transition: color var(--duration-fast) ease;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  stroke-width: 1.5;
  flex-shrink: 0;
  transition: transform var(--duration-normal) var(--ease-default);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
}

.faq-answer-inner {
  padding-bottom: var(--space-5);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.faq-item.active {
  background: rgba(26, 21, 37, 0.6);
  border-radius: var(--border-radius-sm);
  padding: 0 var(--space-5);
  margin-bottom: var(--space-2);
  border-bottom: none;
}

@media (min-width: 768px) {
  .faq-question {
    font-size: 16px;
  }

  .faq-answer-inner {
    font-size: 15px;
  }
}

/* === Contacts === */
/* === Contacts === */
.contacts-section {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.contacts-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mystic);
  pointer-events: none;
}

.contacts-card {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.contacts-card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contacts-card-inner {
  position: relative;
  border: 1px solid var(--border-default);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(201, 169, 110, 0.04) 0%, rgba(142, 107, 199, 0.02) 50%, rgba(14, 11, 22, 0.4) 100%);
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Head */
.contacts-head {
  text-align: center;
}

.contacts-head .section-label {
  justify-content: center;
  margin-bottom: 12px;
}

.contacts-head h2 {
  font-size: 28px;
  margin: 0;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold-light) 70%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Urgency block */
.contacts-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(74, 222, 128, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: var(--border-radius-full);
  font: 400 14px/1.3 var(--font-body);
  color: var(--text-secondary);
}

.contacts-urgency strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* CTA area */
.contacts-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contacts-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 28px;
  border-radius: var(--border-radius-full);
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.14) 0%, rgba(201, 169, 110, 0.06) 100%);
  border: 1px solid rgba(201, 169, 110, 0.3);
  font: 500 15px/1 var(--font-body);
  letter-spacing: 0.02em;
  color: var(--gold-light);
  text-decoration: none;
  transition: background 0.25s ease,
              border-color 0.25s ease,
              box-shadow 0.25s ease,
              transform 0.25s ease;
}

.contacts-wa-btn:hover {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.22) 0%, rgba(201, 169, 110, 0.1) 100%);
  border-color: rgba(201, 169, 110, 0.5);
  box-shadow: 0 4px 32px rgba(201, 169, 110, 0.12);
  transform: translateY(-2px);
}

/* Shimmer on contacts WA button */
.contacts-wa-btn {
  position: relative;
  overflow: hidden;
}

.contacts-wa-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.12) 45%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.12) 55%,
    transparent 60%
  );
  transform: skewX(-20deg);
  animation: btnShimmer 4s infinite 3s;
  pointer-events: none;
}

.contacts-wa-btn svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.contacts-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 400 14px/1 var(--font-body);
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.contacts-phone svg {
  opacity: 0.5;
  flex-shrink: 0;
}

.contacts-phone:hover {
  color: var(--gold);
}

/* Divider */
.contacts-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-default) 20%, var(--border-default) 80%, transparent 100%);
}

/* Details grid */
.contacts-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.contacts-detail {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contacts-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border-default);
  background: rgba(201, 169, 110, 0.03);
  color: var(--gold);
  flex-shrink: 0;
}

.contacts-detail-icon svg {
  opacity: 0.6;
}

.contacts-detail-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contacts-detail-title {
  font: 400 10px/1 var(--font-body);
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contacts-detail-text {
  font: 500 14px/1.2 var(--font-body);
  color: var(--text-primary);
}

/* Tablet */
@media (min-width: 768px) {
  .contacts-card {
    max-width: 520px;
  }

  .contacts-card-inner {
    padding: 44px 48px;
    gap: 32px;
  }

  .contacts-head h2 {
    font-size: 32px;
  }

  .contacts-details {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .contacts-detail {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .contacts-detail-body {
    align-items: center;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .contacts-card {
    max-width: 580px;
  }

  .contacts-card-inner {
    padding: 48px 56px;
  }
}

/* === Footer === */
.footer {
  padding: 32px 0 24px;
  border-top: 1px solid var(--border-divider);
}

.footer-compact {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--gold);
  transition: opacity var(--duration-fast) var(--ease-default);
}

.footer-logo-link:hover {
  opacity: 0.8;
}

.footer-logo-link svg {
  opacity: 0.6;
}

.footer-logo-link span {
  font: 500 20px/1 var(--font-heading);
  letter-spacing: 0.03em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.footer-nav a {
  font: 400 13px/1 var(--font-body);
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color var(--duration-fast) var(--ease-default);
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--border-divider);
}

.footer-copy {
  font: 400 12px/1 var(--font-body);
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.footer-disclaimer {
  font: 400 11px/1.4 var(--font-body);
  color: var(--text-muted);
  opacity: 0.5;
  max-width: 420px;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-disclaimer {
    text-align: right;
  }
}
