/* Trevor Finch — Review Landing Page
   Palette: brand blue #0a92cb, gold accent #fdb022 */

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; }

body {
  background: #f2f4f7;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #101828;
  -webkit-font-smoothing: antialiased;
}

a { color: #0a92cb; text-decoration: none; }
a:hover { color: #0876a3; }

img { display: block; }

/* ---------- Layout ---------- */
.page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 0 12px;
  background: #f2f4f7;
}

.card {
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  min-height: 100vh;
}

/* ---------- Header ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid #eaecf0;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  z-index: 10;
}

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

.brand__logo { width: 34px; height: 34px; object-fit: contain; }

.brand__text { display: flex; flex-direction: column; line-height: 1.1; }

.brand__name {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #101828;
}

.brand__tagline { font-size: 11px; color: #667085; font-weight: 500; }

/* ---------- Hero ---------- */
.hero { padding: 32px 24px 28px; }

.hero__title {
  font-size: 30px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: #101828;
}

.hero__lead {
  font-size: 16px;
  line-height: 1.6;
  color: #475467;
  margin: 0 0 22px;
}

.hero__lead p { margin: 0 0 16px; }
.hero__lead p:last-child { margin-bottom: 0; }

.hero__photo {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eaecf0;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06);
  aspect-ratio: 4 / 3;
  background: #f2f4f7;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

/* ---------- Buttons ---------- */
.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  background: #0a92cb;
  color: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.08),
              0 0 0 1px rgba(10, 146, 203, 0.4) inset;
  transition: background 0.15s ease, transform 0.12s ease;
}

.cta-button:hover {
  background: #0876a3;
  color: #fff;
  transform: translateY(-1px);
}

.cta-button__star { color: #fdefc7; }

.cta-primary { padding: 0 24px 8px; }

/* ---------- Tips ---------- */
.tips {
  padding: 34px 24px 30px;
  margin-top: 20px;
  border-top: 1px solid #eaecf0;
}

.tips__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: #101828;
}

.tips__intro {
  font-size: 15px;
  line-height: 1.55;
  color: #667085;
  margin: 0 0 24px;
}

.tips__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.tip { display: flex; gap: 14px; align-items: flex-start; }

.tip__number {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #e7f5fb;
  border: 1px solid #bee6f5;
  color: #0876a3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.tip__body { padding-top: 1px; }

.tip__heading {
  margin: 0 0 3px;
  font-weight: 600;
  font-size: 16px;
  color: #101828;
}

.tip__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: #667085;
}

.tips__note {
  margin-top: 24px;
  padding: 14px 16px;
  background: #f9fafb;
  border: 1px solid #eaecf0;
  border-radius: 12px;
}

.tips__note p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #667085;
}

/* ---------- Testimonials ---------- */
.reviews {
  padding: 32px 24px 8px;
  border-top: 1px solid #eaecf0;
}

.reviews__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  color: #101828;
}

.reviews__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review {
  border: 1px solid #eaecf0;
  border-radius: 14px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.review__stars {
  color: #fdb022;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.review__quote {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.55;
  color: #344054;
}

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

.review__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
}

.review__meta { line-height: 1.25; }

.review__name { font-weight: 600; font-size: 14px; color: #101828; }

.review__detail { font-size: 12.5px; color: #98a2b3; }

/* Avatar colours */
.avatar--blue   { background: #0a92cb; }
.avatar--purple { background: #7f56d9; }
.avatar--green  { background: #12b76a; }
.avatar--orange { background: #f79009; }

/* ---------- Final CTA ---------- */
.final-cta { padding: 28px 24px 34px; }

.final-cta__card {
  border: 1px solid #bee6f5;
  background: #e7f5fb;
  border-radius: 16px;
  padding: 26px 22px;
  text-align: center;
}

.final-cta__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: #101828;
}

.final-cta__text {
  font-size: 14.5px;
  line-height: 1.5;
  color: #475467;
  margin: 0 0 18px;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 22px 24px 30px;
  border-top: 1px solid #eaecf0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer img { width: 28px; height: 28px; object-fit: contain; }

.site-footer span { font-size: 13px; color: #98a2b3; }
