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

:root {
  --bg:        #ffffff;
  --bg-alt:    #F7F5F0;
  --text:      #1A1A2E;
  --muted:     #A7A7A7;
  --border:    #BBBBBB;
  --accent:    #B8972A;
  --max-w:     1020px;
  --narrow-w:  680px;
  --font:      -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

/* === Layout === */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.narrow {
  max-width: var(--narrow-w);
}

.section {
  padding: 88px 0;
}

.section.alt {
  background: var(--bg-alt);
}

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

/* === Typography === */
h1 {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

p {
  margin-bottom: 18px;
  color: var(--text);
}

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

.muted {
  color: var(--muted);
  font-style: italic;
}

.hero-seo {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.5;
}

/* === Navigation === */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-name {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 13px 28px;
  background: var(--text);
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1.5px solid var(--text);
  transition: opacity 0.15s ease;
  cursor: pointer;
}

.btn:hover {
  opacity: 0.75;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-outline:hover {
  background: var(--text);
  color: #fff;
  opacity: 1;
}

/* === Hero === */
.hero {
  padding: 100px 0 88px;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 72px;
}

.hero-text {
  flex: 1.25;
}

.hero-text h1 {
  margin-bottom: 22px;
}

.hero-bridge {
  font-size: 0.97rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.65;
}

.hero-sub {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 32px;
  max-width: 460px;
}

.trust-line {
  display: block;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

.trust-line a {
  color: var(--text);
}

.cred-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--bg);
}

.hero-proof {
  margin-top: 28px;
  padding-left: 14px;
  border-left: 2px solid var(--accent);
}

.hero-proof p {
  font-size: 0.88rem;
  font-style: italic;
  color: #444;
  margin-bottom: 6px;
  line-height: 1.65;
}

.hero-proof cite {
  font-size: 0.75rem;
  font-style: normal;
  color: var(--muted);
  font-weight: 600;
}

.hero-image {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-image img {
  width: 240px;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(10%);
}

.img-caption {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
  line-height: 1.55;
}

/* === Grids === */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
  margin-top: 44px;
}

/* === 2-col grid === */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
  margin-top: 44px;
}

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

/* === Situation cards === */
.card {
  border-top: 2px solid var(--accent);
  padding-top: 16px;
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  font-size: 0.9rem;
  color: #444;
}

/* === Offer cards (side-by-side) === */
.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}

.offer-card {
  background: var(--bg);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
}

.offer-card p:last-of-type {
  flex: 1;
}

.offer-card .btn,
.offer-card .btn-outline {
  align-self: flex-start;
  margin-top: 28px;
}

.offer-card--primary {
  border-top: 3px solid var(--accent);
}

.offer-card--secondary {
  background: var(--bg-alt);
  border-top: 3px solid var(--border);
}

@media (max-width: 680px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }
  .offer-card {
    padding: 32px 24px;
  }
  .offer-card .btn,
  .offer-card .btn-outline {
    align-self: stretch;
    text-align: center;
  }
}

/* === Offer sections === */
.label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.offer-meta {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.check-list {
  list-style: none;
  margin: 24px 0 32px;
  border-top: 1px solid var(--border);
}

.check-list li {
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.check-list li::before {
  content: '→';
  color: var(--muted);
  flex-shrink: 0;
}

/* === How it works === */
.step {
  border-top: 2px solid var(--accent);
  padding-top: 16px;
}

.step h3 {
  margin-bottom: 8px;
}

.step p {
  font-size: 0.92rem;
  color: #444;
}

/* === Credibility === */
.cred-grid {
  row-gap: 40px;
}

.cred-item {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.cred-num {
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px !important;
  color: var(--text);
}

.cred-item p:not(.cred-num) {
  font-size: 0.88rem;
  color: #444;
}

/* === Hero situations line === */
.hero-situations {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.6;
}

/* === Situations snap block === */
.situations-snap {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.snap-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.snap-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 48px;
}

.snap-list li {
  font-size: 0.95rem;
  color: var(--text);
  padding-left: 16px;
  position: relative;
}

.snap-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--muted);
}

/* === What happens label === */
.what-happens-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0;
  margin-top: 28px;
}

/* === Testimonials === */
.testimonials {
  row-gap: 40px;
}

.testimonial {
  border-top: 2px solid var(--accent);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial blockquote {
  font-size: 0.93rem;
  line-height: 1.75;
  color: #333;
  font-style: italic;
  quotes: none;
}

.t-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0;
  line-height: 1.5;
  margin-top: auto;
}

.t-author span {
  font-weight: 400;
  color: var(--muted);
}

.t-toggle {
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.t-toggle:hover {
  opacity: 0.7;
}

.t-full {
  margin-top: 16px;
  margin-bottom: 4px;
}

.t-full blockquote {
  font-size: 0.88rem;
  line-height: 1.75;
  color: #444;
  font-style: italic;
  quotes: none;
}

.t-full blockquote p {
  margin-bottom: 12px;
}

.t-full blockquote p:last-child {
  margin-bottom: 0;
}

.t-highlight {
  background: rgba(184, 151, 42, 0.15);
  padding: 1px 3px;
}

/* === Final CTA === */
.final-cta h2 {
  margin-bottom: 16px;
}

.final-cta > .container > p {
  max-width: 460px;
  margin: 0 auto 28px;
  color: #444;
}

.final-cta .btn {
  margin-bottom: 0;
}

/* === Footer === */
footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-inner p {
  font-size: 0.82rem;
  margin-bottom: 0;
  color: var(--muted);
}

.footer-inner a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-inner a:hover {
  color: var(--text);
}

/* === Responsive: tablet === */
@media (max-width: 820px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
  }
}

/* === Responsive: mobile === */
@media (max-width: 680px) {

  /* Layout */
  .section {
    padding: 52px 0;
  }

  /* Hero */
  .hero {
    padding: 48px 0 52px;
  }

  .hero-inner {
    flex-direction: column-reverse;
    gap: 28px;
  }

  .hero-image img {
    width: 160px;
    height: 200px;
  }

  .hero-sub {
    max-width: 100%;
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .hero-situations {
    font-size: 0.97rem;
  }

  /* Typography */
  h2 {
    margin-bottom: 20px;
  }

  h3 {
    font-size: 0.97rem;
    line-height: 1.35;
  }

  /* Grids */
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 28px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 28px;
  }

  .snap-list {
    grid-template-columns: 1fr;
  }

  /* Buttons — full width on mobile for easy tapping */
  .btn {
    display: block;
    text-align: center;
    width: 100%;
  }

  .btn-outline {
    width: 100%;
    text-align: center;
    display: block;
  }

  /* Nav button stays compact */
  .btn.btn-sm {
    display: inline-block;
    width: auto;
  }

  /* Credibility */
  .cred-num {
    font-size: 1.25rem;
  }

  .cred-grid {
    row-gap: 20px;
  }

  /* Offer */
  .check-list {
    margin: 14px 0 24px;
  }

  /* Final CTA */
  .final-cta > .container > p {
    max-width: 100%;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  /* Nav — no sticky on mobile, wastes vertical space */
  nav {
    position: static;
  }
}

/* === Section intro text === */
.section-intro {
  font-size: 1rem;
  color: #555;
  margin-bottom: 32px;
  max-width: 600px;
}

/* === How it works — vertical steps list === */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.steps-list .step {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.steps-list .step:last-child {
  border-bottom: 1px solid var(--border);
}

.steps-list .step h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.steps-list .step p {
  font-size: 0.9rem;
  color: #444;
  margin: 0;
}

/* === Vision / Mission === */
.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--bg-alt);
  border-left: 3px solid var(--accent);
}

.vm-item .label {
  display: block;
  margin-bottom: 6px;
}

.vm-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .vision-mission {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* === Testimonial carousel === */
.testimonial-carousel {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 52px;
}

.carousel-track {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.carousel-track .testimonial {
  display: none;
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}

.carousel-track .testimonial.active {
  display: flex;
  flex-direction: column;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s;
}

.carousel-dot.active {
  background: var(--accent);
}

.carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, color 0.15s;
  flex-shrink: 0;
}

.carousel-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.carousel-prev { left: 0; }
.carousel-next { right: 0; }

@media (min-width: 641px) {
  /* min-height reserves space for up to 2 lines of role text so all names align */
  .carousel-track .testimonial .t-author {
    min-height: 4rem;
  }
}

@media (max-width: 640px) {
  .testimonial-carousel { padding: 0 40px; }
  .carousel-track .testimonial {
    flex: 0 0 100%;
  }
}

.t-linkedin {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.t-linkedin:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* === Repeat CTA === */
.cta-repeat {
  padding-top: 40px;
  padding-bottom: 40px;
}

.values-grid {
  margin-top: 0;
}

/* === FAQ accordion === */
.faq-item {
  border-top: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

details[open] .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
  min-height: 0;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 10px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* === UX improvements === */

/* 4: Line-length guard on long-form prose */
.problem p,
.about p {
  max-width: 66ch;
}

/* 5: Section fade-in (respects prefers-reduced-motion) */
@media (prefers-reduced-motion: no-preference) {
  .js-loaded .section {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s ease, transform 0.45s ease;
  }
  .js-loaded .section.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Nav shadow on scroll */
nav.scrolled {
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.07);
}

/* 6: Nav CTA prominence after hero scrolls away */
.nav-inner .btn-sm {
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.nav-btn-prominent {
  background-color: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent) !important;
}

/* 7: Focus visible — gold accent ring, no browser default */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
:focus:not(:focus-visible) {
  outline: none;
}
