*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0f1f3d;
  --navy-light: #1a3058;
  --burgundy: #7c2d40;
  --burgundy-hover: #963852;
  --gold: #c9a962;
  --gold-hover: #d4b978;
  --dark: #0f1f3d;
  --dark-card: rgba(26, 48, 88, 0.75);
  --dark-card-hover: rgba(26, 48, 88, 0.9);
  --text: #f4efe6;
  --text-muted: rgba(244, 239, 230, 0.62);
  --border: rgba(201, 169, 98, 0.4);
  --font: "Source Sans 3", system-ui, sans-serif;
  --font-heading: "Playfair Display", Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
iframe,
video {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Background ── */
.bg-overlay {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(8, 18, 38, 0.92) 0%, rgba(15, 31, 61, 0.78) 45%, rgba(26, 48, 88, 0.85) 100%),
    url("/images/hero-bg.webp") center/cover no-repeat fixed;
  z-index: -1;
}

.page-wrap {
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(15, 31, 61, 0.7), transparent);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.header-scrolled {
  background: rgba(15, 31, 61, 0.88);
  box-shadow: 0 4px 24px rgba(15, 31, 61, 0.45);
  backdrop-filter: blur(6px);
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--burgundy);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.2s;
}

.header.header-scrolled .btn-header-cta {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header.header-scrolled .btn-header-cta:hover {
  background: var(--burgundy-hover);
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  color: inherit;
}

.logo:hover {
  opacity: 0.85;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-amp {
  color: var(--gold);
}

.logo-sub {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-phone {
  font-size: 14px;
  color: var(--text-muted);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  padding: 120px 40px 100px;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-content {
  max-width: 640px;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-stat {
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-radius: 12px;
  padding: 22px 24px;
  backdrop-filter: blur(4px);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 6px;
}

.hero-stat span {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.hero-badge {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}

.hero-keywords {
  font-size: clamp(17px, 2.4vw, 21px);
  color: var(--gold);
  max-width: 620px;
  margin-bottom: 12px;
  line-height: 1.45;
  font-weight: 500;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--burgundy);
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: var(--burgundy-hover);
  transform: translateY(-1px);
}

.hero-footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 11px;
  color: var(--text-muted);
  gap: 20px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 169, 98, 0.15);
}

.hero-privacy {
  max-width: 380px;
  text-align: right;
  line-height: 1.5;
}

/* ── Services Section ── */
.services {
  padding: 80px 40px;
  background: rgba(15, 31, 61, 0.55);
  backdrop-filter: blur(4px);
}

.section-label {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.section-desc {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 16px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: var(--border);
  background: var(--dark-card-hover);
  transform: translateY(-2px);
}

.service-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.12);
  border: 1px solid rgba(201, 169, 98, 0.28);
  color: var(--gold);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-body {
  flex: 1;
  min-width: 0;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── About Section ── */
.about {
  padding: 80px 40px;
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 56px);
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.about-copy {
  text-align: left;
}

.about-copy .section-label,
.about-copy .section-title,
.about-copy .section-desc {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.about-copy .section-desc {
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  max-width: none;
}

.about-feature {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  gap: 14px;
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 98, 0.18);
  border-radius: 12px;
  padding: 18px;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.12);
  border: 1px solid var(--border);
  color: var(--gold);
  transition: background 0.2s, transform 0.2s;
}

.about-feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-text {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 16px;
}

.about-feature p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* ── CTA Section ── */
.cta-section {
  padding: 60px 40px 100px;
  text-align: center;
}

.cta-section p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 28px;
  font-size: 16px;
}

/* ── Footer ── */
.site-footer {
  padding: 30px 40px;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Quiz Overlay ── */
.quiz-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background:
    linear-gradient(135deg, rgba(15, 31, 61, 0.92) 0%, rgba(26, 48, 88, 0.88) 100%),
    url("/images/hero-bg.webp") center/cover no-repeat;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 40px 100px;
}

.quiz-overlay.active {
  display: flex;
}

.quiz-question {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 760px;
  width: 100%;
}

@media (max-width: 600px) {
  .quiz-options {
    grid-template-columns: 1fr;
  }
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 8px;
  padding: 20px 24px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-size: 15px;
  color: var(--text);
  text-align: left;
}

.quiz-option:hover {
  background: var(--dark-card-hover);
  border-color: rgba(201, 169, 98, 0.35);
}

.quiz-option.selected {
  border-color: var(--gold);
  background: rgba(201, 169, 98, 0.08);
}

.quiz-option-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(244, 239, 230, 0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.quiz-option.selected .quiz-option-radio {
  border-color: var(--gold);
}

.quiz-option.selected .quiz-option-radio::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.quiz-input-wrap {
  max-width: 560px;
  width: 100%;
}

.quiz-input {
  width: 100%;
  background: rgba(15, 31, 61, 0.6);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 18px 24px;
  font-size: 18px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  font-family: var(--font);
}

.quiz-input:focus {
  border-color: var(--gold);
}

.quiz-input::placeholder {
  color: rgba(244, 239, 230, 0.35);
}

.quiz-privacy-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* ── Quiz Navigation ── */
.quiz-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background: linear-gradient(to top, rgba(15, 31, 61, 0.85), transparent);
}

.quiz-progress-wrap {
  flex: 1;
  max-width: 500px;
}

.quiz-progress-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.quiz-progress-bar {
  height: 3px;
  background: rgba(244, 239, 230, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.quiz-nav-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-back {
  width: 44px;
  height: 44px;
  background: rgba(26, 48, 88, 0.6);
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 6px;
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.btn-back:hover {
  background: rgba(26, 48, 88, 0.85);
}

.btn-back:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.btn-next {
  background: rgba(26, 48, 88, 0.7);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-next:hover {
  background: rgba(26, 48, 88, 0.9);
}

.btn-next.gold {
  background: var(--burgundy);
  color: var(--text);
  border-color: transparent;
}

.btn-next.gold:hover {
  background: var(--burgundy-hover);
}

.btn-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.quiz-enter-hint {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 6px;
}

/* ── Consent checkbox (quiz) ── */
.quiz-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 560px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  cursor: pointer;
}

.quiz-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}

.quiz-consent a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.quiz-consent a:hover {
  color: var(--gold-hover);
}

/* ── Modal (privacy policy) ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(15, 31, 61, 0.8);
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  position: relative;
  background: var(--navy-light);
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 10px;
  max-width: 760px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 48px 40px 40px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(26, 48, 88, 0.6);
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 6px;
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(26, 48, 88, 0.85);
}

.modal-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.modal-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  margin: 24px 0 8px;
}

.modal-content p,
.modal-content li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.modal-content ul {
  padding-left: 20px;
}

.modal-content strong {
  color: var(--text);
  font-weight: 600;
}

/* ── Photo galleries (team / office / gratitude) ── */
.photo-section {
  padding: 80px 40px;
}

.photo-section.alt-bg {
  background: rgba(15, 31, 61, 0.55);
  backdrop-filter: blur(4px);
}

.photo-section .photo-grid,
.photo-section .section-desc,
.photo-section .section-title,
.photo-section .section-label {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1200px;
}

.office-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1200px;
}

.gratitude-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1200px;
}

.photo-card {
  position: relative;
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}

.photo-card:hover {
  border-color: var(--border);
  background: var(--dark-card-hover);
}

.photo-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.photo-card.document img {
  object-fit: contain;
  background: #f4f1ea;
  padding: 8px;
}

.photo-caption {
  padding: 14px 18px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.photo-caption:empty {
  display: none;
}

.photo-caption strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

/* Team: FIO on hover overlay */
.team-grid .photo-card .photo-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 28px 12px 12px;
  background: linear-gradient(to top, rgba(15, 31, 61, 0.92) 0%, rgba(15, 31, 61, 0.55) 55%, transparent 100%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}

.team-grid .photo-card:hover .photo-caption,
.team-grid .photo-card:focus-within .photo-caption {
  opacity: 1;
  visibility: visible;
}

.team-grid .photo-card .photo-caption strong {
  font-size: 13px;
  margin-bottom: 0;
  text-shadow: 0 1px 4px rgba(15, 31, 61, 0.6);
}

/* ── Contacts & company details ── */
.info-section {
  padding: 80px 40px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 8px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.info-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--gold);
  text-align: center;
}

.info-card p,
.info-card li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

.info-card .info-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}

.info-card .info-row:last-child {
  border-bottom: none;
}

.info-card .info-row span:first-child {
  color: var(--text);
  font-weight: 500;
}

.info-card ul {
  list-style: none;
}

.info-card ul li {
  padding-left: 20px;
  position: relative;
}

.info-card ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── Contacts card ── */
.contact-schedule,
.contact-phone,
.contact-addresses-title {
  margin-bottom: 18px;
}

.contact-schedule strong,
.contact-phone strong,
.contact-addresses-title strong {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-phone a {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}

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

.contact-addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
  align-items: stretch;
}

.contact-addresses li {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  min-width: 0;
}

.contact-address-text {
  display: block;
  min-height: 3.6em;
  line-height: 1.8;
  margin-bottom: 4px;
}

.contact-map {
  display: block;
  width: 100%;
  margin-top: auto;
  border-radius: 8px;
  border: 1px solid rgba(201, 169, 98, 0.2);
}

/* ── Reviews carousel ── */
.reviews-section {
  padding: 80px 40px;
}

.reviews-section.alt-bg {
  background: rgba(15, 31, 61, 0.55);
  backdrop-filter: blur(4px);
}

.reviews-section .reviews-carousel,
.reviews-section .section-desc,
.reviews-section .section-title,
.reviews-section .section-label {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-carousel {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews-track {
  display: flex;
  gap: 24px;
  flex: 1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  scroll-snap-align: start;
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, background 0.2s;
}

.review-card:hover {
  border-color: var(--border);
  background: var(--dark-card-hover);
}

.reviews-track.companies .review-card {
  flex: 0 0 calc((100% - 48px) / 3);
}

.reviews-track.clients .review-card {
  flex: 0 0 calc((100% - 72px) / 4);
}

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

.review-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.review-author strong {
  display: block;
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}

.review-author span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.carousel-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(26, 48, 88, 0.6);
  border: 1px solid rgba(201, 169, 98, 0.25);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.carousel-arrow:hover {
  background: rgba(26, 48, 88, 0.85);
}

/* ── Articles carousel ── */
.articles-section {
  padding: 80px 40px;
  background: rgba(15, 31, 61, 0.4);
}

.articles-section .reviews-carousel,
.articles-section .section-desc,
.articles-section .section-title,
.articles-section .section-label {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-track.articles .article-card {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.reviews-track.articles .article-card:hover {
  border-color: var(--border);
  background: var(--dark-card-hover);
  transform: translateY(-2px);
}

.article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.article-card h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 18px 20px 10px;
  color: var(--text);
}

.article-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 20px 16px;
  flex: 1;
}

.article-read-more {
  display: block;
  margin: 0 20px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

/* ── Article pages ── */
.article-page {
  padding: 120px 40px 60px;
  max-width: 820px;
  margin: 0 auto;
}

.article-breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.article-breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.article-breadcrumb a:hover {
  text-decoration: underline;
}

.article-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
}

.article-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.article-hero-figure {
  margin: 0 0 32px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.2);
}

.article-hero-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.article-body h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 32px 0 14px;
  color: var(--text);
}

.article-body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.article-inline-figure {
  margin: 24px 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.2);
}

.article-inline-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.article-cta-text {
  margin-top: 28px;
  padding: 20px;
  background: rgba(26, 48, 88, 0.4);
  border-radius: 8px;
  border: 1px solid rgba(201, 169, 98, 0.2);
}

.article-cta-link {
  color: var(--gold);
  font-weight: 600;
}

.article-related {
  margin-top: 36px;
  padding: 24px;
  background: rgba(26, 48, 88, 0.35);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 8px;
}

.article-related-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.article-related-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.article-related-list a {
  color: var(--gold);
  text-decoration: none;
  font-size: 16px;
}

.article-related-list a:hover {
  text-decoration: underline;
}

.article-site-links {
  margin-top: 28px;
  padding: 20px 24px;
  background: rgba(26, 48, 88, 0.3);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 8px;
}

.article-site-links-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.article-site-links ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px 16px;
}

.article-site-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
}

.article-site-links a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .reviews-track.articles .article-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 600px) {
  .reviews-track.articles .article-card {
    flex: 0 0 100%;
  }

  .article-page {
    padding: 100px 40px 40px;
  }
}

@media (max-width: 900px) {
  .reviews-track.companies .review-card,
  .reviews-track.clients .review-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 600px) {
  .reviews-track.companies .review-card,
  .reviews-track.clients .review-card {
    flex: 0 0 100%;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

/* ── FAQ ── */
.faq-section {
  padding: 80px 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 8px;
  padding: 4px 24px;
  transition: border-color 0.2s, background 0.2s;
}

.faq-item:hover {
  border-color: var(--border);
  background: var(--dark-card-hover);
}

.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 36px 20px 0;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.faq-item > summary::-webkit-details-marker {
  display: none;
}

.faq-item > summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 18px;
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.2s;
}

.faq-item[open] > summary::after {
  content: "\2212";
}

.faq-answer {
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-answer a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-answer a:hover {
  color: var(--text);
}

.faq-related {
  margin-top: 10px;
  font-size: 14px;
}

/* ── Footer legal note ── */
.footer-legal {
  padding: 20px 40px 0;
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: center;
  opacity: 0.7;
}

/* ── Success Page ── */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.15);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 32px;
}

.success-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
}

.success-text {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ── Loading ── */
.loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(244, 239, 230, 0.25);
  border-top-color: var(--text);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn-next.loading .loading-spinner {
  display: inline-block;
}

.btn-next.loading .btn-text {
  display: none;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .header {
    padding: 14px 16px;
  }

  .logo-main {
    font-size: 13px;
  }

  .logo-sub {
    font-size: 10px;
  }

  .btn-header-cta {
    font-size: 12px;
    padding: 8px 12px;
    white-space: nowrap;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 96px 16px 24px;
    min-height: auto;
    text-align: left;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-side {
    order: 3;
  }

  .hero-footer {
    position: static;
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 24px;
    text-align: left;
  }

  .hero-privacy {
    text-align: left;
    max-width: 100%;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-copy .section-label,
  .about-copy .section-title,
  .about-copy .section-desc {
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .services,
  .about,
  .cta-section,
  .photo-section,
  .photo-section.alt-bg,
  .info-section,
  .reviews-section,
  .reviews-section.alt-bg,
  .faq-section {
    padding: 48px 16px;
    text-align: center;
  }

  .cta-section {
    padding-bottom: 64px;
  }

  .section-title {
    font-size: clamp(20px, 5.5vw, 26px);
  }

  .section-desc {
    font-size: 14px;
    margin-bottom: 28px;
    max-width: 100%;
  }

  .about-text {
    font-size: 14px;
    max-width: 100%;
  }

  /* Services: 1 column */
  .services-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    max-width: 100%;
  }

  .service-card {
    flex: none;
    width: 100%;
    max-width: 100%;
    padding: 24px 20px;
  }

  .service-card h3 {
    font-size: 16px;
  }

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

  /* About features: 1 column, centered */
  .about-features {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

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

  /* All photo grids: 1 column, centered */
  .photo-grid,
  .team-grid,
  .office-grid,
  .gratitude-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .team-grid .photo-card,
  .office-grid .photo-card,
  .gratitude-grid .photo-card {
    height: 220px;
    width: 100%;
  }

  .team-grid .photo-card img,
  .office-grid .photo-card img,
  .gratitude-grid .photo-card img {
    width: 100%;
    height: 100%;
  }

  /* Team names always visible under photo on mobile */
  .team-grid .photo-card {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .team-grid .photo-card img {
    height: 220px;
    flex-shrink: 0;
  }

  .team-grid .photo-card .photo-caption {
    position: static;
    opacity: 1;
    visibility: visible;
    background: transparent;
    padding: 10px 8px;
    pointer-events: auto;
  }

  .team-grid .photo-card .photo-caption strong {
    font-size: 13px;
    text-shadow: none;
  }

  /* Contacts / requisites: 1 column */
  .info-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 100%;
  }

  .info-card h3 {
    font-size: 16px;
  }

  .info-card .info-row {
    grid-template-columns: 1fr;
    gap: 2px;
    text-align: left;
  }

  .contact-addresses {
    grid-template-columns: 1fr;
  }

  .contact-address-text {
    min-height: 0;
    text-align: left;
  }

  .contact-map {
    height: 200px;
  }

  .contact-phone a {
    font-size: 18px;
  }

  /* Reviews: full-width cards */
  .reviews-section .reviews-carousel,
  .reviews-section .section-desc,
  .reviews-section .section-title,
  .reviews-section .section-label,
  .photo-section .photo-grid,
  .photo-section .section-desc,
  .photo-section .section-title,
  .photo-section .section-label {
    max-width: 100%;
  }

  .reviews-track.companies .review-card,
  .reviews-track.clients .review-card {
    flex: 0 0 100%;
  }

  .review-card {
    padding: 20px;
  }

  .review-text {
    font-size: 13px;
  }

  .faq-list {
    max-width: 100%;
    text-align: left;
  }

  .faq-item > summary {
    font-size: 14px;
    padding: 16px 28px 16px 0;
  }

  .faq-answer {
    font-size: 13px;
  }

  .cta-section p {
    font-size: 14px;
    max-width: 100%;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
    padding: 24px 16px;
    justify-content: center;
  }

  .footer-legal {
    padding: 16px 16px 0;
    font-size: 10px;
  }

  .quiz-overlay {
    padding: 24px 16px 120px;
  }

  .quiz-question {
    font-size: clamp(18px, 5vw, 24px);
  }

  .quiz-option {
    padding: 16px;
    font-size: 14px;
  }

  .modal-box {
    padding: 36px 16px 24px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 88px 14px 150px;
  }

  .team-grid .photo-card img {
    height: 400px;
  }

  .office-grid .photo-card,
  .gratitude-grid .photo-card {
    height: 200px;
  }

  .photo-grid,
  .team-grid,
  .office-grid,
  .gratitude-grid {
    max-width: 100%;
  }

  .faq-item {
    padding: 4px 14px;
  }

  .quiz-nav {
    padding: 16px 16px;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .quiz-nav-buttons {
    justify-content: flex-end;
  }
}

/* ── Bot honeypot (hidden from users, visible to bots) ── */
.bot-honeypot-wrap {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
