/* HERO */
.hero {
  background: linear-gradient(135deg, var(--forest-900) 0%, var(--forest-800) 60%, #1a4a38 100%);
  padding: 6rem 0 5rem;
  overflow: hidden;
}

.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.hero__content {
  color: var(--white);
}
.hero__content .badge { margin-bottom: 1.5rem; }
.hero__content h1 { font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 1.25rem; }
.hero__content p { font-size: 1.05rem; color: rgba(255,255,255,.78); max-width: 460px; margin-bottom: 2rem; line-height: 1.7; }

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

.hero__trust { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.hero__trust span { font-size: .82rem; color: rgba(255,255,255,.5); }
.hero__logos { display: flex; gap: .5rem; flex-wrap: wrap; }

.hero__img-wrap { position: relative; }
.hero__img { width: 100%; border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,.5); display: block; height: 400px; object-fit: cover; object-position: top; }

.hero__stat-badge {
  position: absolute;
  display: flex; align-items: center; gap: .5rem;
  background: var(--white); border-radius: var(--radius-md);
  padding: .65rem 1rem; box-shadow: var(--shadow-md);
  font-size: .82rem; font-weight: 500; color: var(--charcoal);
}
.hero__stat-badge svg { color: var(--forest-700); flex-shrink: 0; }
.hero__stat-badge strong { color: var(--forest-900); font-weight: 700; }
.hero__stat-badge--1 { top: -14px; right: 20px; }
.hero__stat-badge--2 { bottom: 20px; left: -14px; }

.brand-pill {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.7);
  padding: .25rem .75rem; border-radius: var(--radius-pill); font-size: .78rem; font-weight: 500;
}

/* STATS BAR */
.stats-bar {
  background: var(--forest-800);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.stats-bar__inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }

.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: .5rem 2.5rem; border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-item__num   { font-size: 1.75rem; font-weight: 800; color: var(--amber-400); line-height: 1; }
.stat-item__label { font-size: .78rem; color: rgba(255,255,255,.55); margin-top: .25rem; }
@media (max-width: 600px) { .stat-item { padding: .5rem 1.25rem; border-right: none; } }

/* BENEFITS */
.benefit-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.benefit-card p  { color: var(--gray-600); font-size: .93rem; line-height: 1.65; }
.benefit-card--dark { background: var(--forest-800); border-color: var(--forest-700); }
.benefit-card--dark h3 { color: var(--white); }
.benefit-card--dark p { color: rgba(255,255,255,.7); }

/* SHOWCASE */
.showcase__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.showcase--reverse .showcase__inner { direction: rtl; }
.showcase--reverse .showcase__inner > * { direction: ltr; }

.showcase__visual {
  position: relative;
}
.showcase__visual img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block; }

.showcase__content .badge { margin-bottom: .85rem; }
.showcase__content h2 { font-size: 1.9rem; margin-bottom: .85rem; line-height: 1.25; }
.showcase__content p  { color: var(--gray-600); line-height: 1.75; margin-bottom: 1rem; }

.showcase__list {
  list-style: none; display: flex; flex-direction: column; gap: .6rem;
}
.showcase__list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .92rem; color: var(--gray-700); }

@media (max-width: 860px) { .showcase__inner { grid-template-columns: 1fr; direction: ltr !important; } }

.check { color: var(--forest-700); font-weight: 700; flex-shrink: 0; }

/* ANALYTICS CARD */
.analytics-card {
  position: absolute; bottom: -20px; right: -16px;
  background: var(--white); border-radius: var(--radius-md); padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg); min-width: 220px;
}
.analytics-card__title { font-size: .8rem; font-weight: 700; color: var(--charcoal); margin-bottom: .85rem; text-transform: uppercase; letter-spacing: .04em; }
@media (max-width: 860px) { .analytics-card { position: static; margin-top: 1rem; } }

.analytics-bar {
  display: flex; align-items: center; gap: .6rem; margin-bottom: .6rem;
}
.analytics-bar:last-child { margin-bottom: 0; }
.analytics-bar__label { font-size: .72rem; color: var(--gray-600); width: 68px; flex-shrink: 0; }
.analytics-bar__track { flex: 1; height: 6px; background: var(--gray-200); border-radius: 99px; overflow: hidden; }
.analytics-bar__fill { height: 100%; background: var(--forest-700); border-radius: 99px; transition: width 1s ease; }
.analytics-bar__fill--amber { background: var(--amber-500); }
.analytics-bar__fill--green { background: var(--green-500); }
.analytics-bar__pct { font-size: .72rem; font-weight: 600; color: var(--charcoal); width: 36px; text-align: right; }

/* TESTIMONIALS */
.testimonial__stars { color: var(--amber-500); font-size: 1rem; margin-bottom: .75rem; }
.testimonial__text  { color: var(--gray-600); font-size: .93rem; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: .75rem; }
.testimonial__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--forest-700); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.testimonial__name { font-weight: 700; font-size: .9rem; color: var(--charcoal); }
.testimonial__role { font-size: .8rem; color: var(--gray-600); }

/* CTA */
.cta-section h2 { font-size: 2.25rem; margin-bottom: .75rem; }
.cta-section p  { color: rgba(255,255,255,.72); margin-bottom: 2rem; }
.cta-section__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 860px) { .hero__inner { grid-template-columns: 1fr; } .hero__visual { display: none; } .hero__content h1 { font-size: 2.25rem; } }

/* ============================================================
   HOW IT WORKS (3-step process)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.step { position: relative; text-align: center; padding: 0 .5rem; }
.step__num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--forest-900); color: var(--amber-400);
  font-weight: 800; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; box-shadow: var(--shadow-md);
}
.step h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.step p { color: var(--gray-600); font-size: .93rem; line-height: 1.65; }
.step:not(:last-child)::after {
  content: ''; position: absolute; top: 27px; left: calc(50% + 45px);
  width: calc(100% - 90px); height: 2px;
  background: repeating-linear-gradient(90deg, var(--gray-200) 0 7px, transparent 7px 14px);
}
@media (max-width: 700px) { .steps { grid-template-columns: 1fr; gap: 2rem; } .step:not(:last-child)::after { display: none; } }

/* ============================================================
   USE CASES (built for every kind of sender)
   ============================================================ */
.usecases { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .usecases { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .usecases { grid-template-columns: 1fr; } }
.usecase { padding: 1.75rem; }
.usecase .icon-box { width: 48px; height: 48px; margin-bottom: 1rem; }
.usecase .icon-box svg { width: 22px; height: 22px; }
.usecase h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.usecase p { color: var(--gray-600); font-size: .89rem; line-height: 1.6; }
.usecase__tag { display: inline-block; margin-top: 1rem; font-size: .82rem; font-weight: 600; color: var(--forest-700); }

/* ============================================================
   MORE FEATURES (icon + text rows)
   ============================================================ */
.feature-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem 2.5rem; }
@media (max-width: 900px) { .feature-mini-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .feature-mini-grid { grid-template-columns: 1fr; } }
.feature-mini { display: flex; gap: 1rem; align-items: flex-start; }
.feature-mini .icon-box { width: 46px; height: 46px; margin-bottom: 0; }
.feature-mini .icon-box svg { width: 22px; height: 22px; }
.feature-mini h3 { font-size: 1rem; margin-bottom: .35rem; }
.feature-mini p { color: var(--gray-600); font-size: .88rem; line-height: 1.6; }

/* ============================================================
   INTEGRATIONS STRIP
   ============================================================ */
.logos-strip { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.logo-pill {
  background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-md);
  padding: .7rem 1.4rem; font-size: .9rem; font-weight: 600; color: var(--charcoal);
  box-shadow: var(--shadow-sm); transition: border-color 150ms, box-shadow 150ms, transform 150ms;
}
.logo-pill:hover { border-color: var(--amber-400); box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* ============================================================
   RESULTS BAND (forest, big numbers)
   ============================================================ */
.result-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
@media (max-width: 600px) { .result-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; } }
.result__num { font-size: 2.75rem; font-weight: 800; color: var(--amber-400); line-height: 1; }
.result__label { font-size: .92rem; color: rgba(255,255,255,.72); margin-top: .6rem; line-height: 1.4; }

/* ============================================================
   FAQ (home — mirrors pricing accordion)
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; }
.faq-item__question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.5rem; background: none; border: none; text-align: left; font-size: .97rem; font-weight: 600; color: var(--charcoal); cursor: pointer; gap: 1rem; transition: background 150ms; }
.faq-item__question:hover { background: var(--gray-50); }
.faq-item__chevron { flex-shrink: 0; transition: transform 250ms; color: var(--gray-400); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 300ms ease; }
.faq-item__answer p { padding: 0 1.5rem; color: var(--gray-600); font-size: .93rem; line-height: 1.7; }
.faq-item.open { border-color: var(--amber-400); }
.faq-item.open .faq-item__chevron { transform: rotate(180deg); }
.faq-item.open .faq-item__answer { max-height: 260px; }
.faq-item.open .faq-item__answer p { padding-bottom: 1.25rem; }

/* ============================================================
   NEWSLETTER SIGNUP BAND
   ============================================================ */
.newsletter__inner { max-width: 620px; margin: 0 auto; text-align: center; }
.newsletter__inner h2 { font-size: 1.9rem; margin-bottom: .65rem; }
.newsletter__inner > p { color: var(--gray-600); }
.newsletter__form { display: flex; gap: .75rem; margin-top: 1.5rem; }
.newsletter__form input {
  flex: 1; padding: .85rem 1.25rem; border: 2px solid var(--gray-200);
  border-radius: var(--radius-pill); font-size: .95rem; font-family: inherit; color: var(--charcoal); background: var(--white);
}
.newsletter__form input:focus { outline: none; border-color: var(--amber-400); }
.newsletter__note { font-size: .8rem; color: var(--gray-600); margin-top: .9rem; }
.newsletter__success { display: none; align-items: center; justify-content: center; gap: .6rem; margin-top: 1.5rem; color: var(--forest-700); font-weight: 600; }
.newsletter__success svg { color: var(--forest-700); }
@media (max-width: 520px) { .newsletter__form { flex-direction: column; } }
