/* ==========================================================================
   Agape Virtual Assistant Solutions — stylesheet
   ========================================================================== */

:root {
  --navy: #1a2456;
  --navy-dark: #10173a;
  --navy-soft: #f0f2fa;
  --red: #c0392b;
  --gold: #c8963e;
  --gold-light: #e6c07e;
  --orange: #e07a3f;
  --orange-light: #f3a468;
  --bg: #ffffff;
  --bg-alt: #f7f7f9;
  --text: #23263a;
  --text-light: #5c6072;
  --border: #e6e6ec;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 12px 30px -14px rgba(16, 23, 58, 0.25);
  --container: 1180px;
  --font-head: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
  --bar-h: 40px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.5em;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-lg { width: 30px; height: 30px; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 20px -8px rgba(192, 57, 43, 0.55);
}
.btn-primary:hover { background: #a52f21; }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); }
.btn-lg { padding: 15px 30px; font-size: 1rem; }

/* Section basics ----------------------------------------------------------*/
section { padding: 88px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-sub { color: var(--text-light); font-size: 1.05rem; }
.eyebrow {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  margin: 0 0 10px;
}
.gradient-heading {
  background: linear-gradient(90deg, var(--red) 0%, var(--orange) 60%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Promo banner --------------------------------------------------------------*/
.site-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4em;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 110;
  height: var(--bar-h);
  background: var(--navy);
  color: #fff;
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  padding: 0 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.site-banner:hover { background: var(--navy-dark); }
.site-banner-cta {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: underline;
  flex-shrink: 0;
}

/* Header ------------------------------------------------------------------*/
.site-header {
  position: sticky;
  top: var(--bar-h);
  margin-top: var(--bar-h);
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark { height: 100px; width: auto; }
.brand-word {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-word small {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-light);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a:not(.btn) {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}
.main-nav a:not(.btn):hover { color: var(--red); }
.main-nav a:not(.btn).is-active { color: var(--red); }
.nav-cta { padding: 11px 22px; font-size: 0.88rem; }
.nav-social { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 0.95rem; color: var(--text); }
.nav-social .icon { width: 19px; height: 19px; }
.nav-social:hover { color: var(--red); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  cursor: pointer;
  padding: 6px;
}

/* Hero ----------------------------------------------------------------- */
.hero {
  padding-top: 72px;
  padding-bottom: 72px;
  background: linear-gradient(180deg, var(--navy-soft) 0%, #fff 100%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 800;
}
.hero .lead {
  font-size: 1.08rem;
  color: var(--text-light);
  max-width: 52ch;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero-price {
  color: var(--navy);
  font-size: 0.95rem;
}
.review-video-trigger {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding: 16px 30px 16px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.review-video-trigger:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -14px rgba(16, 23, 58, 0.35);
}
.review-video-thumb {
  position: relative;
  width: 100px;
  height: 156px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: #000;
}
.review-video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.review-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 23, 58, 0.35);
  color: #fff;
}
.review-video-play::before {
  content: "";
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.55;
  animation: review-video-pulse 2.2s ease-out infinite;
}
.review-video-play svg {
  position: relative;
  display: block;
  box-sizing: content-box;
  background: var(--red);
  border-radius: 50%;
  padding: 15px 14px 15px 17px;
  box-shadow: 0 6px 16px -4px rgba(0, 0, 0, 0.5);
}
@keyframes review-video-pulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}
.review-video-label strong { display: block; color: var(--navy); font-size: 1.15rem; }
.review-video-label span { font-size: 0.92rem; color: var(--text-light); }
.hero-art {
  position: relative;
  min-height: 380px;
}
.hero-blob {
  position: absolute;
  inset: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 14px 18px;
  width: 230px;
}
.hero-card svg { color: var(--gold); }
.hero-card strong { display: block; font-size: 0.92rem; color: var(--navy); }
.hero-card span { font-size: 0.78rem; color: var(--text-light); }
.card-1 { top: 6%; right: 0; }
.card-2 { top: 42%; left: -4%; }
.card-3 { bottom: 4%; right: 8%; }

/* Benefits ----------------------------------------------------------------*/
.benefits { padding: 64px 0; background: var(--bg-alt); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.benefit { text-align: center; }
.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  margin-bottom: 16px;
}
.benefit h3 { font-size: 1.05rem; margin-bottom: 6px; }
.benefit p { color: var(--text-light); font-size: 0.92rem; margin: 0; }

/* Services ----------------------------------------------------------------*/
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--navy-soft);
  color: var(--navy);
  margin-bottom: 16px;
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 14px; }
.service-card ul li {
  padding: 6px 0;
  border-top: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.92rem;
}
.service-card ul li:first-child { border-top: none; }

.service-card-featured {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  border-color: var(--gold);
}
.service-card-featured-head {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 260px;
}
.service-card-featured-head .service-icon { margin-bottom: 0; flex-shrink: 0; }
.service-card-featured-head h3 { margin: 4px 0 0; }
.service-card-featured-list {
  flex: 2 1 380px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 24px;
}
.service-card-featured-list li:nth-child(-n+2) { border-top: none; }

.calls-block {
  margin-top: 56px;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px;
  color: #fff;
}
.calls-title { color: #fff; text-align: center; margin-bottom: 28px; font-size: 1.3rem; }
.calls-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.calls-col {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 24px;
}
.calls-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  margin-bottom: 12px;
}
.calls-col h4 { color: #fff; margin-bottom: 10px; font-size: 1rem; }
.calls-col ul li {
  padding: 5px 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Imagine ------------------------------------------------------------------*/
.imagine { background: var(--bg-alt); text-align: center; }
.imagine h2 { max-width: 620px; margin: 0 auto 40px; font-size: 1.7rem; }
.imagine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.imagine-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px 20px;
}
.imagine-item svg { color: var(--red); margin-bottom: 12px; }
.imagine-item p { margin: 0; font-weight: 600; color: var(--navy); font-size: 0.95rem; }

/* Pricing -------------------------------------------------------------- */
.price-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #2b3a86 100%);
  border-radius: var(--radius);
  color: #fff;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.price-banner-amount { display: flex; align-items: baseline; gap: 8px; }
.price-banner-amount span { font-size: 3rem; font-weight: 800; font-family: var(--font-head); color: var(--gold-light); }
.price-banner-amount small { font-size: 1rem; color: rgba(255, 255, 255, 0.85); }
.price-banner-points { display: flex; flex-direction: column; gap: 6px; }
.price-banner-points li { display: flex; align-items: center; gap: 8px; font-size: 0.92rem; }
.price-banner-points svg { color: var(--gold-light); width: 18px; height: 18px; }
.price-banner-trial {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  white-space: nowrap;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.plan-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.plan-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.plan-price { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.plan-price span { font-size: 0.95rem; font-weight: 500; color: var(--text-light); }
.plan-desc { color: var(--text-light); font-size: 0.92rem; }
.plan-card ul { margin-bottom: 24px; flex-grow: 1; }
.plan-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.92rem;
  border-top: 1px solid var(--border);
}
.plan-card ul li:first-child { border-top: none; }
.plan-card ul svg { color: var(--red); width: 18px; height: 18px; }
.plan-teams-label { font-weight: 600; color: var(--navy); font-size: 0.9rem; margin-bottom: 4px; }
.plan-teams li { font-size: 0.86rem; }
.plan-cta { justify-content: center; width: 100%; }
.plan-featured {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  position: relative;
  transform: scale(1.03);
}
.plan-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  align-self: flex-start;
}

/* Industries --------------------------------------------------------------*/
.industries { background: var(--bg-alt); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.industry {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.92rem;
}
.industry svg { color: var(--gold); }
.industry-more { justify-content: center; color: var(--text-light); background: transparent; border-style: dashed; }

/* Trust ---------------------------------------------------------------- */
.trust { padding: 56px 0; background: var(--navy); color: #fff; }
.trust-title { text-align: center; font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; letter-spacing: 0.03em; margin-bottom: 32px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  font-weight: 600;
  font-size: 0.92rem;
}
.trust-item svg { color: var(--gold-light); }

/* About teaser ----------------------------------------------------------- */
.about-teaser { background: linear-gradient(180deg, #fff 0%, var(--navy-soft) 100%); }
.about-teaser-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about-teaser-copy .eyebrow { color: var(--orange); }
.about-teaser-copy h2 { font-size: 1.9rem; margin-bottom: 16px; }
.about-teaser-copy p { color: var(--text-light); font-size: 1.05rem; max-width: 52ch; margin-bottom: 24px; }
.about-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.about-value {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 16px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}
.about-value svg { color: var(--orange); flex-shrink: 0; }

/* Testimonials --------------------------------------------------------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 32px;
  margin: 0;
}
.stars { display: flex; gap: 4px; color: var(--gold); margin-bottom: 16px; }
.stars svg { width: 18px; height: 18px; }
.testimonial-card blockquote {
  margin: 0 0 16px;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
}
.testimonial-card figcaption { color: var(--text-light); font-size: 0.9rem; font-weight: 600; }

/* CTA / Contact ---------------------------------------------------------- */
.cta-contact { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); color: #fff; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-copy h2 { color: #fff; font-size: 1.9rem; }
.cta-copy p { color: rgba(255, 255, 255, 0.82); font-size: 1.05rem; }
.cta-links { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.cta-link { display: flex; align-items: center; gap: 10px; font-weight: 600; color: #fff; }
.cta-link svg { color: var(--gold-light); }
.cta-action { display: flex; flex-direction: column; gap: 14px; min-width: 220px; }

/* Footer ------------------------------------------------------------------*/
.site-footer { background: var(--navy-dark); color: rgba(255, 255, 255, 0.75); padding: 56px 0 28px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.brand-footer .brand-word { color: #fff; }
.brand-footer .brand-word small { color: rgba(255, 255, 255, 0.6); }
.brand-footer .brand-mark { height: 112px; width: auto; background: #fff; border-radius: 16px; padding: 12px 18px; }
.footer-tagline { color: var(--gold-light); font-weight: 600; margin: 0; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 0.9rem; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-contact { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; font-size: 0.9rem; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-social { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; color: rgba(255, 255, 255, 0.75); }
.footer-social svg { color: var(--gold-light); }
.footer-social:hover { color: var(--gold-light); }
.footer-copy { font-size: 0.8rem; color: rgba(255, 255, 255, 0.45); margin: 12px 0 0; }
.footer-glory { font-size: 0.8rem; color: var(--gold-light); font-weight: 600; font-style: italic; margin: 6px 0 0; }

/* Floating promo video ------------------------------------------------- */
.promo-video {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  width: 180px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}
.promo-video-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.promo-video-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(16, 23, 58, 0.65);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}
.promo-video-close:hover { background: rgba(16, 23, 58, 0.9); }
.promo-video-close .icon { width: 16px; height: 16px; stroke-width: 2.4; }

/* Client review video modal -------------------------------------------- */
body.no-scroll { overflow: hidden; }
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal[hidden] { display: none; }
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 23, 58, 0.85);
}
.video-modal-dialog {
  position: relative;
  z-index: 1;
}
.video-modal-media {
  display: block;
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #000;
}
.video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(16, 23, 58, 0.65);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}
.video-modal-close:hover { background: rgba(16, 23, 58, 0.9); }
.video-modal-close .icon { width: 18px; height: 18px; stroke-width: 2.4; }

/* About page ------------------------------------------------------------- */
.about-hero {
  padding-top: 64px;
  padding-bottom: 64px;
  background: linear-gradient(180deg, var(--navy-soft) 0%, #fff 100%);
  text-align: center;
}
.about-hero .eyebrow { color: var(--orange); }
.about-hero h1 { font-size: clamp(2.1rem, 4vw, 2.9rem); margin-bottom: 20px; }
.about-hero p { max-width: 640px; margin: 0 auto 28px; color: var(--text-light); font-size: 1.08rem; }
.about-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.impact { text-align: center; background: var(--bg-alt); }
.impact .container { max-width: 760px; }
.impact p { font-size: 1.15rem; color: var(--text); line-height: 1.7; margin: 0; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  margin-bottom: 16px;
}
.why-item p { margin: 0; font-weight: 600; color: var(--navy); font-size: 0.95rem; }

.recap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.recap-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.recap-card h3 { margin-bottom: 16px; }
.recap-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.recap-chip {
  background: var(--navy-soft);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 999px;
}
.recap-price { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.recap-price span { font-size: 1rem; font-weight: 500; color: var(--text-light); }
.recap-card p.recap-desc { color: var(--text-light); margin-bottom: 24px; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .imagine-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .plan-featured { transform: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { min-height: 320px; order: -1; }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 28px;
    gap: 18px;
    display: none;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .nav-cta { align-self: flex-start; }
  .calls-grid { grid-template-columns: 1fr; }
  .cta-inner { justify-content: center; text-align: center; }
  .cta-links { align-items: center; }
  .about-teaser-inner { grid-template-columns: 1fr; }
  .recap-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --bar-h: 52px; }
  .site-banner {
    white-space: normal;
    line-height: 1.3;
    flex-direction: column;
    gap: .15em;
    padding: 6px 16px;
    font-size: .78rem;
  }
  section { padding: 64px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .imagine-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .price-banner { flex-direction: column; text-align: center; justify-content: center; }
  .price-banner-points { align-items: center; }
  .hero-card { position: static; width: 100%; margin-bottom: 12px; }
  .hero-art { display: flex; flex-direction: column; min-height: 0; }
  .hero-blob {
    position: static;
    width: 100%;
    height: 220px;
    margin-bottom: 16px;
    border-radius: var(--radius);
  }
  .promo-video { width: 120px; right: 12px; bottom: 12px; }
}
