/* ============================================
   ProjectBlox Marketing Website
   Brand: #FF9601 (orange), #1a1f36 (navy), Inter
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #3a3f47;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #FF9601; text-decoration: none; transition: color .2s; }
a:hover { color: #e88600; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1a1f36;
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.25rem; }

/* --- Container --- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 760px;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-muted { color: #697386; }
.text-small { font-size: 0.875rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  text-decoration: none;
  line-height: 1.4;
}

.btn--primary {
  background: #FF9601;
  color: #fff;
  border-color: #FF9601;
}
.btn--primary:hover {
  background: #e88600;
  border-color: #e88600;
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: #1a1f36;
  border-color: #d0d5dd;
}
.btn--outline:hover {
  border-color: #1a1f36;
  color: #1a1f36;
}

.btn--white {
  background: #fff;
  color: #1a1f36;
  border-color: #fff;
}
.btn--white:hover {
  background: #f5f7fa;
  border-color: #f5f7fa;
  color: #1a1f36;
}

.btn--large {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn--small {
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e3e8ee;
  transition: box-shadow .3s;
}

.nav--scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.nav__logo img {
  height: 36px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__links a {
  color: #3a3f47;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color .2s;
  text-decoration: none;
}

.nav__links a:hover,
.nav__links a.active {
  color: #FF9601;
}

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

.nav__cta .btn { padding: 10px 22px; font-size: 0.875rem; }

.nav__login {
  color: #3a3f47 !important;
  font-weight: 500;
  font-size: 0.9rem;
}
.nav__login:hover { color: #FF9601 !important; }

@media (min-width: 901px) {
  .nav__menu {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: nowrap;
  }
  .nav__links {
    gap: 24px;
    flex-wrap: nowrap;
  }
  .nav__cta {
    flex-wrap: nowrap;
    white-space: nowrap;
  }
}

/* Mobile menu */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1f36;
  margin: 6px 0;
  transition: all .3s;
  border-radius: 2px;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 900px) {
  .nav__toggle { display: block; }

  .nav__menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e3e8ee;
    padding: 24px;
    transform: translateY(-110%);
    transition: transform .3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
  }

  .nav__menu.open {
    transform: translateY(0);
  }

  .nav__links {
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
  }

  .nav__links li { width: 100%; }

  .nav__links a {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid #f0f2f5;
  }

  .nav__cta {
    flex-direction: column;
    width: 100%;
  }

  .nav__cta .btn { width: 100%; text-align: center; }
}

/* --- Hero --- */
.hero {
  padding: 140px 0 80px;
  background: #fff;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #fff8ee;
  border: 1px solid #ffe0a6;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #b36d00;
  margin-bottom: 20px;
}

.hero__title {
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: #697386;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
}

.hero__screenshot {
  background: #f5f7fa;
  border: 1px solid #e3e8ee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.04);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0f2f5 0%, #e3e8ee 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8492a6;
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 900px) {
  .hero { padding: 110px 0 60px; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__visual { order: -1; }
}

/* --- Section defaults --- */
.section {
  padding: 80px 0;
}

.section--gray {
  background: #f8f9fb;
}

.section--dark {
  background: #1a1f36;
  color: #c8cdd5;
}
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #fff;
}

.section__header {
  max-width: 620px;
  margin-bottom: 48px;
}

.section__header.text-center {
  margin-left: auto;
  margin-right: auto;
}

.section__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FF9601;
  margin-bottom: 12px;
}

.section__header h2 {
  margin-bottom: 16px;
}

.section__header p {
  font-size: 1.05rem;
  color: #697386;
}

.section--dark .section__header p {
  color: #9aa3b0;
}

/* --- Pain Points --- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pain-card {
  padding: 32px 28px;
  border: 1px solid #e3e8ee;
  border-radius: 10px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}

.pain-card:hover {
  border-color: #FF9601;
  box-shadow: 0 4px 20px rgba(255, 150, 1, 0.08);
}

.pain-card__number {
  font-size: 0.75rem;
  font-weight: 700;
  color: #FF9601;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.pain-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.pain-card p {
  font-size: 0.9rem;
  color: #697386;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Solution / Overview --- */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.solution-grid--reverse {
  direction: rtl;
}

.solution-grid--reverse > * {
  direction: ltr;
}

.solution__visual {
  background: #f5f7fa;
  border: 1px solid #e3e8ee;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.solution__list {
  list-style: none;
  padding: 0;
  margin-top: 24px;
}

.solution__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: #3a3f47;
}

.solution__list li::before {
  content: "";
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  border-radius: 50%;
  border: 2px solid #FF9601;
  background: #fff8ee;
}

@media (max-width: 900px) {
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .solution-grid--reverse { direction: ltr; }
}

/* --- Video Section --- */
.video-section {
  padding: 80px 0;
  background: #f8f9fb;
}

.video-wrapper {
  position: relative;
  background: #1a1f36;
  border-radius: 12px;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}

.video-wrapper__video {
  display: block;
  width: 100%;
  max-height: 480px;
  border-radius: 12px;
  object-fit: contain;
  background: #1a1f36;
}

.video-wrapper__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 31, 54, 0.6);
  transition: background .3s;
}

.video-wrapper:hover .video-wrapper__overlay {
  background: rgba(26, 31, 54, 0.4);
}

.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #FF9601;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, background .2s;
}

.video-play-btn:hover {
  transform: scale(1.08);
  background: #e88600;
}

.video-play-btn svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  margin-left: 3px;
}

/* --- Target audience --- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.audience-card {
  padding: 28px 24px;
  border: 1px solid #e3e8ee;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  transition: border-color .2s;
}

.audience-card:hover {
  border-color: #FF9601;
}

.audience-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.audience-card p {
  font-size: 0.83rem;
  color: #697386;
}

/* --- Social Proof --- */
.proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 48px 0;
  border-top: 1px solid #e3e8ee;
  border-bottom: 1px solid #e3e8ee;
}

.proof-stat {
  text-align: center;
}

.proof-stat__number {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1f36;
  line-height: 1.2;
}

.proof-stat__label {
  font-size: 0.85rem;
  color: #697386;
  margin-top: 4px;
}

/* --- Pricing Cards --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  border: 1px solid #e3e8ee;
  border-radius: 12px;
  padding: 32px 28px;
  background: #fff;
  position: relative;
  transition: border-color .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: #c8cdd5;
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
}

.pricing-card--popular {
  border-color: #FF9601;
  box-shadow: 0 8px 30px rgba(255, 150, 1, .12);
}

.pricing-card--popular:hover {
  border-color: #FF9601;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #FF9601;
  color: #fff;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 4px;
}

.pricing-card__desc {
  font-size: 0.83rem;
  color: #697386;
  margin-bottom: 20px;
}

.pricing-card__price {
  margin-bottom: 24px;
}

.pricing-card__amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1f36;
  line-height: 1;
}

.pricing-card__period {
  font-size: 0.85rem;
  color: #697386;
  margin-left: 4px;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.875rem;
  color: #3a3f47;
}

.pricing-card__features li::before {
  content: "—";
  color: #c8cdd5;
  font-weight: 500;
  min-width: 16px;
}

.pricing-card--popular .pricing-card__features li::before {
  content: "—";
  color: #FF9601;
}

.pricing-card .btn {
  width: 100%;
}

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-block {
  padding: 28px 0;
  border-bottom: 1px solid #e3e8ee;
}

.feature-block h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.feature-block p {
  font-size: 0.9rem;
  color: #697386;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Module comparison table --- */
.module-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.module-table th,
.module-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #e3e8ee;
}

.module-table thead th {
  font-weight: 700;
  color: #1a1f36;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #f8f9fb;
  position: sticky;
  top: 0;
}

.module-table tbody td:first-child {
  font-weight: 600;
  color: #1a1f36;
}

.module-table .check {
  color: #1a1f36;
  font-weight: 700;
}

.module-table .dash {
  color: #c8cdd5;
}

.table-wrapper {
  overflow-x: auto;
  border: 1px solid #e3e8ee;
  border-radius: 10px;
}

/* --- Security page --- */
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.security-block {
  padding: 32px;
  border: 1px solid #e3e8ee;
  border-radius: 10px;
  background: #fff;
}

.security-block h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.security-block p {
  font-size: 0.9rem;
  color: #697386;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .security-grid { grid-template-columns: 1fr; }
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1f36;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  color: #1a1f36;
  transition: border-color .2s, box-shadow .2s;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #FF9601;
  box-shadow: 0 0 0 3px rgba(255, 150, 1, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-info__item {
  margin-bottom: 28px;
}

.contact-info__item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-info__item p {
  font-size: 0.9rem;
  color: #697386;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

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

.faq-item {
  border-bottom: 1px solid #e3e8ee;
}

.faq-item:first-child {
  border-top: 1px solid #e3e8ee;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1f36;
  transition: color .2s;
}

.faq-question:hover {
  color: #FF9601;
}

.faq-question__icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  position: relative;
  transition: transform .3s;
}

.faq-question__icon::before,
.faq-question__icon::after {
  content: "";
  position: absolute;
  background: #697386;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.faq-question__icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-question__icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-question__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}

.faq-answer__inner {
  padding-bottom: 20px;
  font-size: 0.9rem;
  color: #697386;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

/* --- CTA Section --- */
.cta-section {
  padding: 80px 0;
  background: #1a1f36;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-section p {
  color: #9aa3b0;
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  padding: 60px 0 32px;
  background: #fff;
  border-top: 1px solid #e3e8ee;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand p {
  font-size: 0.875rem;
  color: #697386;
  margin-top: 16px;
  max-width: 280px;
}

.footer__heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1a1f36;
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
  padding: 0;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.875rem;
  color: #697386;
  transition: color .2s;
}

.footer__links a:hover {
  color: #FF9601;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid #e3e8ee;
  font-size: 0.8rem;
  color: #8492a6;
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  color: #8492a6;
  font-size: 0.8rem;
}

.footer__bottom-links a:hover { color: #FF9601; }

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* --- Page Header (inner pages) --- */
.page-header {
  padding: 120px 0 48px;
  background: #f8f9fb;
  border-bottom: 1px solid #e3e8ee;
}

.page-header h1 {
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.1rem;
  color: #697386;
  max-width: 560px;
}

.page-header.text-center p {
  margin-left: auto;
  margin-right: auto;
}

/* --- About page --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

.about-value h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.about-value p {
  font-size: 0.85rem;
  color: #697386;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
}

/* --- NL Badge --- */
.nl-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #fff;
  border: 1px solid #e3e8ee;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1f36;
}

.nl-flag {
  font-size: 1.4rem;
  line-height: 1;
}

/* --- Testimonial --- */
.testimonial {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 0;
}

.testimonial blockquote {
  font-size: 1.15rem;
  font-style: italic;
  color: #3a3f47;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.9rem;
  color: #697386;
  font-weight: 600;
}

/* --- Misc --- */
.divider {
  border: none;
  height: 1px;
  background: #e3e8ee;
  margin: 0;
}

.highlight-orange {
  color: #FF9601;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  background: #f5f7fa;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #697386;
}

/* --- Legal content (privacy, terms) --- */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 1.2rem;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-top: 24px;
  border-top: 1px solid #e3e8ee;
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-size: 1rem;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p {
  margin-bottom: 12px;
  color: #3a3f47;
  font-size: 0.92rem;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 6px;
  font-size: 0.92rem;
  color: #3a3f47;
}

.legal-content a {
  color: #FF9601;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1f36;
  color: #c8cdd5;
  z-index: 1000;
  padding: 16px 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner__inner p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.cookie-banner__inner a {
  color: #FF9601;
  text-decoration: underline;
}

.cookie-banner__actions {
  flex-shrink: 0;
}

.btn--small {
  padding: 8px 20px;
  font-size: 0.82rem;
}

@media (max-width: 600px) {
  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* --- Screenshot Lightbox Trigger --- */
.lightbox-trigger {
  display: block;
  cursor: zoom-in;
  position: relative;
}

.lightbox-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.lightbox-trigger:hover img {
  transform: scale(1.02);
}

/* --- Lightbox Modal --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, .85);
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity .25s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .4);
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: .8;
  transition: opacity .2s;
  z-index: 1;
}

.lightbox__close:hover {
  opacity: 1;
}

/* --- Animations (subtle) --- */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
}
