*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0f2438;
  --navy-2: #16324a;
  --accent: #1b8f6b;
  --accent-hover: #167a5b;
  --accent-soft: rgba(27, 143, 107, 0.1);
  --bg: #f6f8f7;
  --bg-alt: #ffffff;
  --card: #ffffff;
  --text: #16232c;
  --text-muted: #57697a;
  --border: #e3e9e6;
  --shadow: 0 8px 28px rgba(15, 36, 56, 0.08);
  --font: "Manrope", "Segoe UI", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
iframe,
video {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.bg-overlay {
  display: none;
}

/* ── Top bar ── */
.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  padding: 8px 40px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.top-bar a {
  color: #ffffff;
  font-weight: 600;
}

.top-bar a:hover {
  color: var(--accent-soft);
}

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s ease;
}

.header.header-scrolled {
  box-shadow: 0 6px 20px rgba(15, 36, 56, 0.08);
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 24px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-header-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-main {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.logo-sub {
  font-size: 10.5px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 56px;
  padding: 72px 40px 84px;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-copy {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 7px 16px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 18px;
  color: var(--navy);
}

.hero-keywords {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--accent);
  max-width: 560px;
  margin-bottom: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 17px 38px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(27, 143, 107, 0.28);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.hero-footer {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 520px;
}

.hero-footer strong {
  color: var(--navy);
}

.hero-privacy {
  line-height: 1.6;
}

.hero-figure {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}

.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(15, 36, 56, 0.05) 0%, rgba(15, 36, 56, 0.55) 100%);
}

.hero-figure-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 13px;
  color: var(--navy);
  font-weight: 700;
  box-shadow: var(--shadow);
}

/* ── Sections shared ── */
.services,
.about,
.photo-section,
.info-section,
.reviews-section,
.articles-section,
.faq-section {
  padding: 84px 40px;
}

.services,
.photo-section,
.reviews-section,
.faq-section {
  background: var(--bg-alt);
}

.about,
.photo-section.alt-bg,
.reviews-section.alt-bg,
.articles-section {
  background: var(--bg);
}

.section-label {
  font-size: 12.5px;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center;
  font-weight: 800;
}

.section-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 16px;
  text-align: center;
  color: var(--navy);
}

.section-desc {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 16px;
  text-align: center;
}

/* ── Services ── */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: left;
  transition: box-shadow 0.2s, transform 0.2s;
  flex: 1 1 280px;
  max-width: 280px;
  box-shadow: 0 2px 10px rgba(15, 36, 56, 0.04);
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── About ── */
.about {
  text-align: center;
}

.about-text {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 20px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin: 36px auto 0;
  max-width: 960px;
}

.about-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.about-feature:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.about-feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: var(--accent-soft);
}

.about-feature p {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.5;
}

/* ── CTA ── */
.cta-section {
  padding: 64px 40px 104px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, #143349 100%);
  color: #fff;
}

.cta-section .section-title {
  color: #fff;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 16px;
}

/* ── Footer ── */
.site-footer {
  padding: 32px 40px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
  color: var(--accent);
}

/* ── Quiz Overlay ── */
.quiz-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: linear-gradient(160deg, #0f2438 0%, #143349 60%, #0f2438 100%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 40px 110px;
  color: #fff;
}

.quiz-overlay.active {
  display: flex;
}

.quiz-question {
  font-size: clamp(21px, 3vw, 30px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 38px;
  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: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 20px 24px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-size: 15px;
  color: #fff;
  text-align: left;
}

.quiz-option:hover {
  background: rgba(255, 255, 255, 0.12);
}

.quiz-option.selected {
  border-color: var(--accent);
  background: rgba(27, 143, 107, 0.22);
}

.quiz-option-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  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(--accent);
}

.quiz-option.selected .quiz-option-radio::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.quiz-input-wrap {
  max-width: 560px;
  width: 100%;
}

.quiz-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  padding: 18px 24px;
  font-size: 18px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
  font-family: var(--font);
}

.quiz-input:focus {
  border-color: var(--accent);
}

.quiz-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.quiz-privacy-note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.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, 36, 56, 0.9), transparent);
}

.quiz-progress-wrap {
  flex: 1;
  max-width: 500px;
}

.quiz-progress-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.quiz-progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.quiz-nav-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-back {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.btn-back:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-back:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.btn-next {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 30px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-next:hover {
  background: rgba(255, 255, 255, 0.24);
}

.btn-next.gold {
  background: var(--accent);
  color: #fff;
}

.btn-next.gold:hover {
  background: var(--accent-hover);
}

.btn-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.quiz-enter-hint {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: 6px;
}

.quiz-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 560px;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  cursor: pointer;
}

.quiz-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

.quiz-consent a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.quiz-consent a:hover {
  color: #fff;
}

/* ── Modal (privacy policy) ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(15, 36, 56, 0.55);
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  max-width: 760px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 48px 40px 40px;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover {
  background: var(--border);
}

.modal-content h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--navy);
}

.modal-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  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: 700;
}

/* ── Photo galleries ── */
.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: 22px;
  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(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 10px rgba(15, 36, 56, 0.04);
}

.photo-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.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(--navy);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

/* Team: name always visible below photo (accessible on all devices) */
.team-grid .photo-card .photo-caption {
  position: static;
  background: var(--card);
  border-top: 1px solid var(--border);
}

/* ── Contacts & company details ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 8px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 2px 10px rgba(15, 36, 56, 0.04);
}

.info-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--navy);
  text-align: left;
}

.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: 9px 0;
  border-bottom: 1px solid var(--border);
}

.info-card .info-row:last-child {
  border-bottom: none;
}

.info-card .info-row span:first-child {
  color: var(--navy);
  font-weight: 600;
}

.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(--accent);
}

.contact-schedule,
.contact-phone,
.contact-addresses-title {
  margin-bottom: 18px;
}

.contact-schedule strong,
.contact-phone strong,
.contact-addresses-title strong {
  display: block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-phone a {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.2s;
}

.contact-phone a:hover {
  color: var(--accent);
}

.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: 12px;
  border: 1px solid var(--border);
}

/* ── Reviews carousel ── */
.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(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 10px rgba(15, 36, 56, 0.04);
}

.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.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(--accent);
  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(--navy);
  font-weight: 700;
}

.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: var(--card);
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(15, 36, 56, 0.06);
}

.carousel-arrow:hover {
  background: var(--accent-soft);
}

/* ── Articles carousel ── */
.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(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 10px rgba(15, 36, 56, 0.04);
}

.reviews-track.articles .article-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.article-card h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin: 18px 20px 10px;
  color: var(--navy);
}

.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: 700;
  color: var(--accent);
}

/* ── Article pages ── */
.article-page {
  padding: 56px 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(--accent);
  text-decoration: none;
}

.article-breadcrumb a:hover {
  text-decoration: underline;
}

.article-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--navy);
}

.article-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.article-hero-figure {
  margin: 0 0 32px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.article-hero-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.article-body h2 {
  font-size: 21px;
  font-weight: 700;
  margin: 32px 0 14px;
  color: var(--navy);
}

.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: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.article-inline-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.article-cta-text {
  margin-top: 28px;
  padding: 20px;
  background: var(--accent-soft);
  border-radius: 14px;
  border: 1px solid var(--border);
}

.article-cta-link {
  color: var(--accent);
  font-weight: 700;
}

.article-related {
  margin-top: 36px;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.article-related-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--navy);
}

.article-related-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.article-related-list a {
  color: var(--accent);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.article-related-list a:hover {
  text-decoration: underline;
}

.article-site-links {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.article-site-links-title {
  font-size: 14px;
  font-weight: 700;
  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(--navy);
  text-decoration: none;
  font-size: 15px;
}

.article-site-links a:hover {
  color: var(--accent);
}

@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: 40px 20px 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-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 4px 24px;
  transition: box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(15, 36, 56, 0.04);
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 36px 20px 0;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.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(--accent);
  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(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-answer a:hover {
  color: var(--navy);
}

.faq-related {
  margin-top: 10px;
  font-size: 14px;
}

/* ── Footer legal note ── */
.footer-legal {
  padding: 24px 40px 0;
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: center;
  opacity: 0.8;
  background: var(--bg-alt);
}

/* ── 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: var(--accent-soft);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 32px;
  color: var(--accent);
}

.success-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--navy);
}

.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(255, 255, 255, 0.3);
  border-top-color: #fff;
  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;
}

/* ── Bot honeypot ── */
.bot-honeypot-wrap {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px 56px;
  }

  .hero-figure {
    aspect-ratio: 16 / 10;
    order: -1;
  }

  .about-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .top-bar {
    padding: 8px 16px;
    font-size: 11px;
    gap: 14px;
  }

  .header {
    padding: 12px 16px;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .logo-main {
    font-size: 13px;
  }

  .logo-sub {
    font-size: 9px;
  }

  .btn-header-cta {
    font-size: 12px;
    padding: 9px 14px;
    white-space: nowrap;
  }

  .hero {
    padding: 36px 16px 48px;
    text-align: center;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-badge,
  .hero-footer {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title {
    font-size: clamp(22px, 6vw, 28px);
  }

  .hero-subtitle,
  .hero-keywords {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-primary {
    font-size: 15px;
    padding: 15px 26px;
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .services,
  .about,
  .cta-section,
  .photo-section,
  .photo-section.alt-bg,
  .info-section,
  .reviews-section,
  .reviews-section.alt-bg,
  .faq-section,
  .articles-section {
    padding: 44px 16px;
    text-align: center;
  }

  .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-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    max-width: 100%;
  }

  .service-card {
    flex: none;
    width: 100%;
    max-width: 100%;
    padding: 22px 20px;
    text-align: left;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .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: auto;
    width: 100%;
  }

  .team-grid .photo-card img,
  .office-grid .photo-card img,
  .gratitude-grid .photo-card img {
    width: 100%;
    height: 220px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
  }

  .info-card {
    padding: 24px 20px;
  }

  .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-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) {
  .team-grid .photo-card img {
    height: 260px;
  }

  .office-grid .photo-card,
  .gratitude-grid .photo-card {
    height: auto;
  }

  .office-grid .photo-card img,
  .gratitude-grid .photo-card img {
    height: 220px;
  }

  .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;
  }
}
