/* ============================================================
   CONSUMER REVIEW — Landing Page Styles
   Font: Inter (Google Fonts)
   ============================================================ */

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

:root {
  --color-text:        #1a1a1a;
  --color-text-body:   #2c2c2c;
  --color-text-light:  #555555;
  --color-text-muted:  #888888;
  --color-border:      #e0e0e0;
  --color-bg:          #ffffff;
  --color-bg-section:  #fafafa;
  --color-green:       #4caf50;
  --color-green-dark:  #388e3c;
  --color-blue:        #1a73e8;
  --color-badge-bg:    #f0f7ff;
  --color-badge-text:  #1565c0;
  --font:              'Inter', Arial, sans-serif;
  --max-width:         720px;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

a {
  color: var(--color-blue);
  text-decoration: underline;
}

a:hover {
  opacity: 0.8;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ── Site Header ── */
.site-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-header__logo svg {
  width: 169px;
  height: 52px;
  min-width: 169px;
}

/* ── Page Container ── */
.page-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Article Header ── */
.article-header {
  padding-top: 28px;
  padding-bottom: 16px;
}

.article-title {
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--color-text);
  margin-bottom: 20px;
}

/* ── Author Row ── */
.author-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-byline {
  font-size: 13px;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.author-byline strong {
  font-weight: 700;
  color: var(--color-text);
}

.author-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--color-badge-bg);
  color: var(--color-badge-text);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}

.author-badge svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.article-meta {
  text-align: right;
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.7;
}

.article-meta__status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: var(--color-text);
}

.article-meta__status svg {
  width: 14px;
  height: 14px;
}

/* ── Hero Image ── */
.hero-image {
  margin-bottom: 12px;
}

.hero-image img {
  width: 100%;
  border-radius: 4px;
}

/* ── Reading Bar ── */
.reading-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  color: var(--color-text-muted);
  padding: 10px 0 24px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 24px;
}

.reading-bar__item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.reading-bar__item svg {
  width: 14px;
  height: 14px;
}

/* ── Article Body ── */
.article-body p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--color-text-body);
  margin-bottom: 16px;
}

.article-body h2 {
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-text);
  margin: 32px 0 14px;
}

/* ── CTA Box ── */
.cta-box {
  position: relative;
  border: 2px dashed #b0bec5;
  border-radius: 24px;
  background: var(--color-bg-section);
  padding: 60px 56px 44px;
  margin: 56px 0 0;
  text-align: center;
}

.cta-box__arrow {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 63px;
  height: 80px;
  pointer-events: none;
}

.cta-box__arrow img {
  width: 100%;
  height: 100%;
}

.cta-box__text {
  padding: 0 80px;
  text-align: left;
}

.cta-box__title {
  font-size: clamp(20px, 3.5vw, 26px);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 22px;
}

.cta-box__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.cta-box__steps li {
  font-size: 14.5px;
  color: var(--color-text);
  line-height: 1.5;
}

.cta-box__map-heading {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
  text-align: center;
}

.cta-box__map {
  width: 100%;
  max-width: 480px;
  margin: 0 auto 28px;
}

.cta-box__map img {
  width: 100%;
}

/* ── CTA Button ── */
.cta-button {
  display: block;
  width: 100%;
  background: var(--color-green);
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1px;
  padding: 17px 24px;
  border-radius: 5px;
  margin-bottom: 14px;
  transition: background 0.2s ease;
}

.cta-button:hover {
  background: var(--color-green-dark);
  color: #ffffff;
  text-decoration: none;
  opacity: 1;
}

/* ── Trust Badges ── */
.cta-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-trust__item {
  font-size: 12.5px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.cta-trust__item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Site Footer ── */
.site-footer {
  margin-top: 60px;
  padding: 20px;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-section);
}

.site-footer__disclaimer {
  max-width: var(--max-width);
  margin: 0 auto 14px;
  font-size: 11.5px;
  color: #aaaaaa;
  line-height: 1.6;
  text-align: center;
}

.site-footer__links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
  list-style: none;
}

.site-footer__links a {
  font-size: 12px;
  color: var(--color-text-muted);
  text-decoration: none;
}

.site-footer__links a:hover {
  text-decoration: underline;
}

.site-footer__copy {
  text-align: center;
  font-size: 11.5px;
  color: #bbbbbb;
}

/* ── Responsive: Mobile ── */
@media (max-width: 540px) {
  .author-row {
    flex-direction: column;
    gap: 8px;
  }

  .article-meta {
    text-align: left;
  }

  .cta-box {
    padding: 36px 24px 32px;
  }

  .cta-box__text {
    padding: 0;
  }
}
