/* ============================================
   VIVIANE BARBOSA – PSICOTERAPIA ONLINE
   Color Palette: Light Green
   ============================================ */

/* ===== DESIGN TOKENS ===== */
:root {
  --clr-primary: #5A9E6F;
  /* medium green */
  --clr-primary-dark: #3E7A52;
  /* deep green */
  --clr-primary-light: #A8D5B5;
  /* soft green */
  --clr-bg-tint: #F0F9F3;
  /* very light green tint */
  --clr-bg-alt: #E6F4EB;
  /* light green for alternating sections */
  --clr-accent: #B5D9C4;
  /* pastel green accent */
  --clr-text: #1C3529;
  /* dark green-toned text */
  --clr-text-muted: #4D6B5A;
  /* muted green-grey text */
  --clr-white: #FFFFFF;
  --clr-border: #C8E6D2;

  --font-main: 'Poppins', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(90, 158, 111, 0.12);
  --shadow-md: 0 8px 32px rgba(90, 158, 111, 0.18);
  --shadow-lg: 0 20px 60px rgba(90, 158, 111, 0.22);

  --transition: 0.3s ease;

  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--clr-text);
  background: var(--clr-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY UTILITIES ===== */
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--clr-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
  color: var(--clr-white);
  box-shadow: 0 4px 20px rgba(90, 158, 111, 0.4);
}

.btn--primary:hover {
  box-shadow: 0 8px 28px rgba(90, 158, 111, 0.5);
}

.btn--outline {
  background: transparent;
  color: var(--clr-primary-dark);
  border: 2px solid var(--clr-primary);
}

.btn--outline:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.btn--white {
  background: var(--clr-white);
  color: var(--clr-primary-dark);
  box-shadow: var(--shadow-md);
}

.btn--white:hover {
  box-shadow: var(--shadow-lg);
}

.btn-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ===== PHOTO STUBS ===== */
.photo-stub {
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--clr-bg-alt) 0%, var(--clr-accent) 100%);
  border: 2px dashed var(--clr-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.photo-stub::before {
  content: 'SUBSTITUIR FOTO';
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--clr-primary);
  color: var(--clr-white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  opacity: 0.7;
}

.photo-stub__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--clr-primary-dark);
  opacity: 0.5;
}

.photo-stub__inner svg {
  width: 48px;
  height: 48px;
}

.photo-stub__inner span {
  font-size: 0.8rem;
  font-weight: 500;
}

.photo-stub--hero {
  width: 100%;
  height: 520px;
  border-radius: var(--radius-lg);
}

.photo-stub--method {
  width: 100%;
  height: 420px;
}

.photo-stub--about {
  width: 100%;
  height: 460px;
  border-radius: var(--radius-lg);
}



/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--left {
  transform: translateX(-40px);
}

.reveal--right {
  transform: translateX(40px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-text);
  white-space: nowrap;
}

.logo span {
  color: var(--clr-primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  position: relative;
  white-space: nowrap;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-primary);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--clr-primary);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  margin-left: 4px;
  padding: 8px 16px;
  font-size: 0.8rem;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--clr-bg-tint) 0%, var(--clr-bg-alt) 100%);
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 0;
  position: relative;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 80px;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--clr-text);
}

.hero__title span {
  color: var(--clr-primary);
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__cta {
  font-size: 1rem;
  padding: 16px 36px;
}

.hero__image {
  position: relative;
}

.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero__wave svg {
  width: 100%;
  height: 80px;
}

/* ===== PROBLEMS ===== */
.problems {
  padding: 100px 0;
  background: var(--clr-white);
}

.problems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--clr-bg-tint);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.problem-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--clr-primary-light), var(--clr-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.problem-card__icon svg {
  width: 26px;
  height: 26px;
  fill: var(--clr-white);
}

.problem-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--clr-text);
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ===== METHOD ===== */
.method {
  padding: 100px 0;
  background: var(--clr-bg-tint);
  position: relative;
}

.method__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.method__content p {
  color: var(--clr-text-muted);
  margin-bottom: 16px;
}

.method__list {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.method__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--clr-text);
}

.method__list li svg {
  width: 20px;
  height: 20px;
  fill: var(--clr-primary);
  flex-shrink: 0;
}

/* ===== BENEFITS ===== */
.benefits {
  padding: 100px 0;
  background: var(--clr-white);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-md);
  background: var(--clr-bg-tint);
  border: 1px solid var(--clr-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(90, 158, 111, 0.3);
}

.benefit-card__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--clr-white);
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}


/* ===== HOW ONLINE THERAPY WORKS ===== */
.how-online {
  padding: 100px 0;
  background: var(--clr-bg-tint);
}

.how-online__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
}

.how-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.how-step__number {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--clr-primary);
  margin-bottom: 12px;
}

.how-step__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--clr-primary-light) 0%, var(--clr-primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(90, 158, 111, 0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}

.how-step:hover .how-step__icon {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(90, 158, 111, 0.4);
}

.how-step__icon svg {
  width: 32px;
  height: 32px;
  fill: var(--clr-white);
}

.how-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 10px;
}

.how-step p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.how-step__connector {
  flex-shrink: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-primary-light), var(--clr-primary));
  margin-top: 48px;
  border-radius: 2px;
  opacity: 0.5;
}

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

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: var(--clr-white);
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  background: var(--clr-bg-tint);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-item.open {
  box-shadow: var(--shadow-md);
  border-color: var(--clr-primary-light);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-text);
  text-align: left;
  transition: color var(--transition);
}

.faq-item.open .faq-item__question {
  color: var(--clr-primary-dark);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--clr-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}

.faq-item__icon svg {
  width: 20px;
  height: 20px;
  fill: var(--clr-primary);
  transition: transform var(--transition);
}

.faq-item.open .faq-item__icon {
  background: var(--clr-primary);
}

.faq-item.open .faq-item__icon svg {
  fill: var(--clr-white);
  transform: rotate(180deg);
}

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

.faq-item.open .faq-item__answer {
  max-height: 300px;
  padding: 0 28px 22px;
}

.faq-item__answer p {
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--clr-border);
  padding-top: 16px;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--clr-white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__content p {
  color: var(--clr-text-muted);
  margin-bottom: 16px;
}

.about__credentials {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.credential svg {
  width: 22px;
  height: 22px;
  fill: var(--clr-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.credential strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.credential span {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 400px;
  height: 400px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 auto 36px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--clr-text);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand .logo {
  color: var(--clr-white);
  font-size: 1.1rem;
}

.footer__brand p {
  font-size: 0.85rem;
  margin-top: 10px;
  line-height: 1.7;
}

.footer__hours strong,
.footer__contact strong {
  display: block;
  color: var(--clr-white);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer__hours p,
.footer__contact a {
  font-size: 0.85rem;
  display: block;
  margin-bottom: 6px;
}

.footer__contact a:hover {
  color: var(--clr-primary-light);
}

.footer__bottom {
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* Pulse animation on float button */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  background: #25D366;
  animation: pulse-ring 2.5s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }

  80% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* ===== NAV ACTIVE LINK ===== */
.nav__link--active {
  color: var(--clr-primary);
  font-weight: 600;
}

.nav__link--active::after {
  width: 100%;
}

/* ===== BLOG HERO ===== */
.blog-hero {
  min-height: 40vh;
  background: linear-gradient(160deg, var(--clr-bg-tint) 0%, var(--clr-bg-alt) 100%);
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 0;
  position: relative;
  text-align: center;
}

.blog-hero__inner {
  padding-bottom: 80px;
}

.blog-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--clr-text);
  margin-bottom: 16px;
}

.blog-hero__title span {
  color: var(--clr-primary);
}

.blog-hero__sub {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== BLOG PAGE ===== */
.blog-page {
  padding: 80px 0 100px;
  background: var(--clr-white);
}

.blog-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ===== FULL BLOG POST CARD ===== */
.blog-post-card {
  background: var(--clr-bg-tint);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-post-card__image {
  position: relative;
}

.blog-post-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--clr-primary);
  color: var(--clr-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.photo-stub--blog {
  width: 100%;
  height: 220px;
  border-radius: 0;
  border: none;
}

.photo-stub--blog-sm {
  width: 100%;
  height: 180px;
  border-radius: 0;
  border: none;
}

.blog-post-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-post-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-bottom: 12px;
}

.blog-post-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.4;
  margin-bottom: 14px;
}

.blog-post-card__excerpt {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}

.blog-post-card__btn {
  align-self: flex-start;
  padding: 10px 22px;
  font-size: 0.88rem;
}

/* ===== BLOG PREVIEW SECTION (main page) ===== */
.blog-preview {
  padding: 100px 0;
  background: var(--clr-bg-tint);
}

.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

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

/* ===== BLOG CARD (main page preview) ===== */
.blog-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  transition: transform var(--transition), box-shadow var(--transition);
  color: inherit;
  text-decoration: none;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card__image {
  position: relative;
}

.blog-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--clr-primary);
  color: var(--clr-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.blog-card__body {
  padding: 20px 22px 24px;
}

.blog-card__meta {
  display: block;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-bottom: 8px;
}

.blog-card__title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.45;
  margin-bottom: 14px;
}

.blog-card__read {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-primary);
  transition: color var(--transition);
}

.blog-card:hover .blog-card__read {
  color: var(--clr-primary-dark);
}

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

  .how-online__steps {
    flex-wrap: wrap;
    justify-content: center;
  }

  .how-step {
    flex: 0 0 calc(50% - 24px);
    min-width: 200px;
  }

  .how-step__connector:nth-child(4) {
    display: none;
  }

  .blog-page__grid,
  .blog-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--clr-white);
    padding: 16px 24px 24px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--clr-border);
  }

  .nav.open {
    display: flex;
  }

  .nav__link {
    padding: 12px 0;
    border-bottom: 1px solid var(--clr-border);
    width: 100%;
  }

  .nav__cta {
    margin: 16px 0 0;
    width: 100%;
    justify-content: center;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 60px;
  }

  .hero__sub {
    margin: 0 auto 36px;
  }

  .hero__cta {
    margin: 0 auto;
  }

  .hero__image {
    order: -1;
  }

  .photo-stub--hero {
    height: 300px;
  }

  .problems__grid {
    grid-template-columns: 1fr 1fr;
  }

  .method__inner,
  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image {
    order: -1;
  }

  .photo-stub--method,
  .photo-stub--about {
    height: 280px;
  }

  .benefits__grid {
    grid-template-columns: 1fr 1fr;
  }


  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .how-online__steps {
    flex-direction: column;
    align-items: center;
  }

  .how-step {
    flex: unset;
    width: 100%;
    max-width: 400px;
  }

  .how-step__connector {
    width: 2px;
    height: 32px;
    margin-top: 0;
  }

  .faq-item__question {
    padding: 18px 20px;
    font-size: 0.92rem;
  }

  .faq-item__answer {
    padding: 0 20px;
  }

  .faq-item.open .faq-item__answer {
    padding: 0 20px 18px;
  }
}

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

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .blog-page__grid,
  .blog-preview__grid {
    grid-template-columns: 1fr;
  }
}