/* ============================================
   DigiGrow Pre-Call Nurture Page — v2
   Light, clean, honest, verifiable.
   ============================================ */

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

:root {
  --bg: #f8f9fa;
  --bg-white: #ffffff;
  --bg-subtle: #f0f2f5;
  --text: #212b32;
  --text-secondary: #505a64;
  --text-light: #6b7280;
  --navy: #0B154F;
  --blue: #2567FF;
  --teal: #00B87A;
  --teal-hover: #009E6A;
  --amber: #F5A623;
  --green: #00703C;
  --red-soft: #DC4A4A;
  --border: #d8dde0;
  --border-light: #e8ecef;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.08);
}

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

body {
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

h1 { font-size: 28px; font-weight: 600; line-height: 1.3; color: var(--navy); }
h2 { font-size: 22px; font-weight: 600; line-height: 1.3; color: var(--navy); margin-bottom: 24px; }
h3 { font-size: 17px; font-weight: 600; color: var(--navy); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }

.btn--primary {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.btn--primary:hover { background: var(--teal-hover); border-color: var(--teal-hover); }

.btn--secondary {
  background: var(--bg-white);
  color: var(--text);
  border-color: var(--border);
}
.btn--secondary:hover { border-color: var(--text-secondary); }

.btn--sm { padding: 10px 20px; font-size: 14px; }

/* ============================================
   GREETING / HEADER
   ============================================ */
.greeting {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  padding: 40px 0 48px;
}

.logo { margin-bottom: 32px; }

.greeting__content {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.greeting__text { flex: 1; }

.greeting__text h1 { margin-bottom: 8px; }

.greeting__details {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.call-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}

.call-card__row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
}
.call-card__row:not(:last-child) {
  border-bottom: 1px solid var(--border-light);
}

.call-card__label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

.call-card__value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.greeting__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.greeting__reschedule {
  font-size: 14px;
  color: var(--text-light);
}

.greeting__person {
  text-align: center;
  min-width: 160px;
}

.greeting__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 3px solid var(--border-light);
}

.greeting__person-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.greeting__person-role {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.greeting__linkedin {
  font-size: 13px;
  font-weight: 500;
}

/* ============================================
   WHAT TO EXPECT
   ============================================ */
.expect {
  padding: 56px 0;
}

.expect__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.expect__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px;
}

.expect__number {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  margin-top: 2px;
}

.expect__item strong {
  display: block;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 2px;
}

.expect__item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.expect__reassurance {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
}

.expect__reassurance p {
  font-size: 15px;
  color: var(--text);
  margin: 0;
}

/* ============================================
   PROOF
   ============================================ */
.proof {
  padding: 56px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.proof__subheading {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 16px;
  margin-top: 32px;
}
.proof__subheading:first-of-type { margin-top: 0; }

/* Portfolio */
.portfolio {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.portfolio__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.portfolio__info strong {
  display: block;
  font-size: 16px;
  color: var(--navy);
}

.portfolio__meta {
  font-size: 13px;
  color: var(--text-light);
}

.portfolio__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
}

.portfolio__links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  min-width: 180px;
}

.portfolio__link {
  font-size: 14px;
  font-weight: 500;
}

.portfolio__link--reviews {
  font-size: 13px;
  color: var(--text-light);
}
.portfolio__link--reviews:hover { color: var(--blue); }

/* Reviews */
.reviews {
  margin-top: 16px;
}

.reviews__widget {
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  margin-bottom: 12px;
}

.reviews__placeholder {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.reviews__verify {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 56px 0;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid var(--border-light);
}

.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}
.faq__item summary:hover { color: var(--navy); }
.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--text-light);
  transition: transform 0.2s;
}
.faq__item[open] summary::after {
  content: '−';
}

.faq__item p {
  padding: 0 0 18px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   FOOTER / ABOUT
   ============================================ */
.about-footer {
  padding: 48px 0 24px;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

.about {
  margin-bottom: 32px;
}

.about__person {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.about__photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.about__person strong {
  display: block;
  font-size: 16px;
  color: var(--navy);
}

.about__person span {
  font-size: 14px;
  color: var(--text-light);
}

.about__bio {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.about__contact {
  font-size: 15px;
}

.about__phone {
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.about__phone:hover { text-decoration: underline; }

/* Verify block */
.verify {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 32px;
}

.verify__heading {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 10px;
}

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

.verify__list li {
  padding: 4px 0;
}

.verify__list a {
  font-size: 14px;
  font-weight: 500;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
  z-index: 100;
}

.sticky-cta__phone {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.sticky-cta__phone:hover { text-decoration: underline; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 640px) {
  body { font-size: 16px; }
  h1 { font-size: 24px; }
  h2 { font-size: 20px; }

  .greeting__content {
    flex-direction: column-reverse;
    gap: 24px;
  }

  .greeting__person {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }
  .greeting__photo {
    width: 64px;
    height: 64px;
    margin: 0;
  }

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

  .portfolio__item {
    flex-direction: column;
    align-items: flex-start;
  }
  .portfolio__links {
    align-items: flex-start;
    min-width: auto;
  }

  .sticky-cta { display: flex; }
  body { padding-bottom: 64px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
