/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
  font-size: 1.0625rem; /* 17px — more readable for 50+ adults */
  color: #333;
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ===== FOCUS STYLES — keyboard & assistive device navigation ===== */
:focus-visible {
  outline: 3px solid #e94560;
  outline-offset: 3px;
  border-radius: 3px;
}

.faq-question:focus-visible {
  outline-offset: -3px;
  border-radius: 0;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.5px;
}

.top-bar span.emoji {
  font-size: 1rem;
}

.top-bar .bar-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
  text-align: center;
  padding: 50px 20px 60px;
}

.hero h1 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 2.4rem;
  line-height: 1.25;
  max-width: 820px;
  margin: 0 auto 20px;
}

.hero .subtitle {
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto 12px;
  color: #ddd;
  line-height: 1.7;
}

.hero .meta {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 30px;
  font-style: italic;
}

.hero-image-wrapper {
  max-width: 340px;
  margin: 0 auto 35px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== CTA BUTTON ===== */
.cta-btn {
  display: inline-block;
  background: #e94560;
  color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  border: none;
  box-shadow: 0 4px 20px rgba(233, 69, 96, 0.4);
}

.cta-btn:hover {
  background: #d63651;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(233, 69, 96, 0.55);
}

.cta-btn .play-icon {
  margin-right: 8px;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 70px 20px;
}

.section-inner {
  max-width: 780px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 14px;
  color: #1a1a2e;
  line-height: 1.3;
}

.section-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
  font-size: 1rem;
  font-style: italic;
}

/* ===== SILENT REASON SECTION ===== */
.silent-reason {
  background: #fafafa;
}

.silent-reason p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  color: #333;
}

.silent-reason p strong {
  color: #1a1a2e;
}

.silent-reason p:last-of-type {
  margin-bottom: 35px;
}

.silent-reason .cta-wrapper {
  text-align: center;
}

/* ===== PHASES SECTION ===== */
.phases {
  background: #fff;
}

.phases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.phase-card {
  background: #fefefe;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 24px 18px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.phase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.phase-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.phase-card:nth-child(1) .phase-badge { background: #b45309; }
.phase-card:nth-child(2) .phase-badge { background: #c2410c; }
.phase-card:nth-child(3) .phase-badge { background: #dc2626; }
.phase-card:nth-child(4) .phase-badge { background: #991b1b; }

.phase-card h3 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.phase-card .phase-desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 14px;
  line-height: 1.5;
}

.phase-card ul {
  list-style: none;
  margin-bottom: 18px;
}

.phase-card ul li {
  font-size: 0.95rem;
  color: #444;
  padding: 3px 0;
  padding-left: 16px;
  position: relative;
}

.phase-card ul li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #e94560;
  font-size: 0.6rem;
  top: 6px;
}

.damage-bar-bg {
  background: #ddd;
  border-radius: 6px;
  height: 10px;
  overflow: hidden;
  margin-bottom: 6px;
}

.damage-bar-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 1s ease;
}

.phase-card:nth-child(1) .damage-bar-fill { width: 25%; background: #b45309; }
.phase-card:nth-child(2) .damage-bar-fill { width: 50%; background: #c2410c; }
.phase-card:nth-child(3) .damage-bar-fill { width: 75%; background: #dc2626; }
.phase-card:nth-child(4) .damage-bar-fill { width: 100%; background: #991b1b; }

.damage-label {
  font-size: 0.875rem;
  color: #555;
  font-weight: 600;
}

.phases .cta-wrapper {
  text-align: center;
}

/* ===== DISCOVERY SECTION ===== */
.discovery {
  background: #f5f5f0;
}

.discovery-card {
  background: #fff;
  border-radius: 16px;
  padding: 50px 40px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.discovery-card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.8;
}

.discovery-card p strong {
  color: #1a1a2e;
}

.discovery-card .highlight-text {
  background: linear-gradient(120deg, rgba(233, 69, 96, 0.1) 0%, rgba(233, 69, 96, 0.05) 100%);
  padding: 20px;
  border-left: 4px solid #e94560;
  border-radius: 0 8px 8px 0;
  margin: 25px 0;
  font-style: italic;
  color: #333;
  text-align: left;
}

.discovery-card .discovery-note {
  color: #555;
  font-style: italic;
  font-size: 1rem;
}

.discovery-card .cta-wrapper {
  margin-top: 30px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background: #fafafa;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 35px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: 'Merriweather', Georgia, serif;
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1rem;
  color: #1a1a2e;
}

.testimonial-location {
  font-size: 0.9rem;
  color: #666;
}

.testimonial-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 18px;
  flex-grow: 1;
}

.testimonial-text strong {
  color: #1a1a2e;
}

.testimonial-result {
  align-self: flex-start;
  background: #f0faf0;
  border: 1px solid #b3e6b3;
  color: #2d7a2d;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 7px 14px;
  border-radius: 20px;
}

.testimonials-note {
  background: linear-gradient(120deg, rgba(233, 69, 96, 0.08) 0%, rgba(233, 69, 96, 0.04) 100%);
  border-left: 4px solid #e94560;
  padding: 22px 24px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 32px;
}

.testimonials-note p {
  color: #1a1a2e;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.testimonials .cta-wrapper {
  text-align: center;
}

/* ===== FAQ SECTION ===== */
.faq {
  background: #fff;
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

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

.faq-question:hover {
  background: #fafafa;
}

.faq-question .toggle-icon {
  font-size: 1.4rem;
  color: #555;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question .toggle-icon {
  transform: rotate(45deg);
  color: #e94560;
}

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

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
}

/* ===== BOTTOM CTA ===== */
.bottom-cta {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}

.bottom-cta h2 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 2rem;
  max-width: 620px;
  margin: 0 auto 16px;
  line-height: 1.3;
}

.bottom-cta p {
  color: #ccc;
  max-width: 600px;
  margin: 0 auto 35px;
  font-size: 1rem;
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 28px 20px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.footer-links a {
  color: #bbb;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #e94560;
}

.footer .copyright {
  color: #999;
  font-size: 0.875rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .phases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .phases-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .discovery-card {
    padding: 30px 22px;
  }

  .testimonial-card {
    padding: 22px 20px;
  }

  .cta-btn {
    padding: 16px 30px;
    font-size: 1rem;
  }

  .bottom-cta h2 {
    font-size: 1.6rem;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}