/* ZimLeads Digital static website styles */
:root {
  --navy: #0b1220;
  --navy-soft: #111827;
  --green: #22c55e;
  --green-dark: #16a34a;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --bg: #f8fafc;
  --text: #111827;
  --muted: #64748b;
  --white: #ffffff;
  --border: #e2e8f0;
  --soft-border: #edf2f7;
  --shadow-sm: 0 10px 24px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 18px 42px rgba(15, 23, 42, 0.13);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  border-color: transparent;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 190px;
}

.brand img {
  width: 190px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius);
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--blue);
  background: #eff6ff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  color: var(--white);
  background: var(--green);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--green-dark);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--border);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-blue {
  color: var(--white);
  background: var(--blue);
}

.btn-blue:hover,
.btn-blue:focus-visible {
  background: var(--blue-dark);
}

.btn-outline-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.header-cta {
  flex: 0 0 auto;
}

.section {
  padding: 86px 0;
  background: var(--bg);
}

.section-white {
  background: var(--white);
}

.section-dark {
  color: var(--white);
  background: var(--navy);
}

.section-heading {
  max-width: 760px;
  margin: 0 0 34px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: 3.55rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.22rem;
}

p {
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.mt-14 {
  margin-top: 14px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-18 {
  margin-top: 18px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-28 {
  margin-top: 28px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 48px;
  min-height: 620px;
  padding: 70px 0 62px;
}

.hero h1,
.hero h2,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.hero-lead {
  max-width: 680px;
  margin-top: 18px;
  color: #d7e4f3;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-line {
  max-width: 690px;
  margin-top: 24px;
  padding-left: 16px;
  color: #cbd5e1;
  border-left: 4px solid var(--green);
}

.hero-showcase {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 490px;
}

.hero-creative {
  width: min(360px, 90%);
  border-radius: var(--radius);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
  transform: rotate(1.5deg);
}

.hero-status {
  position: absolute;
  left: 0;
  bottom: 42px;
  width: min(270px, 50%);
  padding: 18px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.hero-status strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Poppins", Arial, sans-serif;
}

.hero-status span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-badge {
  position: absolute;
  top: 32px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.22);
  font-weight: 900;
}

.hero-badge::before {
  content: "WA";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 0.72rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  align-items: center;
  gap: 52px;
}

.content-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.content-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  list-style: none;
}

.content-list ul,
ul.content-list {
  padding: 0;
  margin-left: 0;
}

.check-icon,
.mini-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 900;
}

.image-frame {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--soft-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem-art {
  max-width: 420px;
  margin-left: auto;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

.card {
  position: relative;
  height: 100%;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--soft-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow: var(--shadow-md);
}

.card p {
  margin-top: 10px;
  color: var(--muted);
}

.impact-section {
  padding: 34px 0;
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.impact-item {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--soft-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.impact-item strong {
  display: block;
  color: var(--navy);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.impact-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.93rem;
}

.growth-engine-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  align-items: center;
  gap: 52px;
}

.engine-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  min-height: 430px;
  padding: 28px;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.engine-board::before {
  content: "";
  position: absolute;
  inset: 74px 74px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
}

.engine-center {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 154px;
  height: 154px;
  padding: 18px;
  color: var(--white);
  text-align: center;
  background: var(--green);
  border: 8px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 22px 48px rgba(34, 197, 94, 0.25);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 900;
  line-height: 1.16;
}

.engine-node {
  position: relative;
  z-index: 1;
  min-height: 146px;
  padding: 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

.engine-node b {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius);
  font-size: 0.78rem;
}

.engine-node strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Poppins", Arial, sans-serif;
}

.engine-node span {
  color: #cbd5e1;
  font-size: 0.93rem;
}

.process-ladder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--soft-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.process-step {
  position: relative;
  min-height: 220px;
  padding: 26px;
  background: var(--white);
  border-right: 1px solid var(--soft-border);
}

.process-step:last-child {
  border-right: 0;
}

.process-step .step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-weight: 900;
}

.process-step h3 {
  margin-bottom: 10px;
}

.process-step p {
  color: var(--muted);
}

.process-step::after {
  content: "";
  position: absolute;
  top: 45px;
  right: -10px;
  z-index: 2;
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 8px var(--white);
}

.process-step:last-child::after {
  display: none;
}

.icon-chip {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  color: var(--blue);
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 900;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card.featured {
  border-color: rgba(34, 197, 94, 0.45);
  box-shadow: 0 20px 46px rgba(34, 197, 94, 0.13);
}

.deliverable-board {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 34px;
  align-items: stretch;
}

.deliverable-visual {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 30px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.deliverable-visual strong {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 2.05rem;
  line-height: 1.05;
}

.deliverable-visual span {
  color: #cbd5e1;
}

.mini-dashboard {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.mini-row {
  display: grid;
  grid-template-columns: 92px 1fr 58px;
  gap: 10px;
  align-items: center;
  color: #dbeafe;
  font-size: 0.84rem;
  font-weight: 800;
}

.mini-bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 99px;
  overflow: hidden;
}

.mini-bar span {
  display: block;
  height: 100%;
  background: var(--green);
  border-radius: inherit;
}

.fill-70 {
  width: 70%;
}

.fill-76 {
  width: 76%;
}

.fill-78 {
  width: 78%;
}

.fill-84 {
  width: 84%;
}

.fill-88 {
  width: 88%;
}

.fill-92 {
  width: 92%;
}

.fill-94 {
  width: 94%;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.deliverable-item {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--soft-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.deliverable-item b {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius);
  font-size: 0.75rem;
}

.deliverable-item p {
  margin-top: 8px;
  color: var(--muted);
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  color: var(--navy);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.95rem;
  font-weight: 900;
  line-height: 1;
}

.price small {
  padding-bottom: 4px;
  color: var(--muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.feature-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.feature-list li {
  list-style: none;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 0.96rem;
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 10px;
  background: var(--green);
  border-radius: 50%;
}

.package-preview .card {
  padding: 22px;
}

.demo-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
}

.demo-card .btn {
  width: fit-content;
  margin-top: 22px;
}

.sample-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  margin-bottom: 14px;
  color: var(--blue);
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.testimonial-card blockquote {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.project-meta {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.why-item {
  padding: 22px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.why-item strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Poppins", Arial, sans-serif;
}

.why-item span {
  color: #cbd5e1;
  font-size: 0.94rem;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 36px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.cta-band h2 {
  color: var(--white);
  font-size: 2rem;
}

.cta-band p {
  max-width: 720px;
  margin-top: 10px;
  color: #cbd5e1;
}

.page-hero {
  color: var(--white);
  background: var(--navy);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.64fr;
  align-items: center;
  gap: 50px;
  padding: 70px 0;
}

.page-hero h1 {
  color: var(--white);
}

.page-hero .lead {
  max-width: 760px;
  margin-top: 18px;
  color: #d7e4f3;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.page-hero-image {
  width: min(310px, 100%);
  margin-left: auto;
  border-radius: var(--radius);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
}

.support-strip {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  align-items: center;
  gap: 42px;
}

.support-strip .image-frame {
  max-width: 330px;
}

.audit-scorecard {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 34px;
  align-items: center;
}

.score-visual {
  padding: 30px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.score-ring {
  display: grid;
  place-items: center;
  width: 178px;
  height: 178px;
  margin: 0 auto 24px;
  color: var(--white);
  background:
    radial-gradient(circle at center, var(--navy) 0 55%, transparent 56%),
    conic-gradient(var(--green) 0 72%, rgba(255,255,255,0.16) 72% 100%);
  border-radius: 50%;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 2.35rem;
  font-weight: 900;
}

.score-visual p {
  color: #cbd5e1;
  text-align: center;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.score-item {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--soft-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.score-item strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--navy);
}

.score-bar {
  height: 9px;
  margin-bottom: 10px;
  background: #e2e8f0;
  border-radius: 99px;
  overflow: hidden;
}

.score-bar span {
  display: block;
  height: 100%;
  background: var(--green);
  border-radius: inherit;
}

.score-item p {
  color: var(--muted);
  font-size: 0.94rem;
}

.note-box {
  padding: 18px;
  color: var(--muted);
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
}

.form-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--soft-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 800;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-weight: 800;
}

.form-status.success {
  color: #14532d;
  background: #dcfce7;
  border: 1px solid #86efac;
}

.form-status.error {
  color: #7f1d1d;
  background: #fee2e2;
  border: 1px solid #fecaca;
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 34px;
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 14px;
}

.contact-item {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--soft-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--navy);
}

.contact-item span,
.contact-item a {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

.faq-list details {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--soft-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 800;
}

.faq-list p {
  margin-top: 10px;
  color: var(--muted);
}

.site-footer {
  color: #cbd5e1;
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 0.75fr 0.9fr;
  gap: 34px;
  padding: 56px 0 34px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
}

.footer-logo strong {
  color: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.12rem;
}

.footer-grid h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1rem;
}

.footer-grid p,
.footer-grid a {
  color: #cbd5e1;
  font-size: 0.96rem;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 16px;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(34, 197, 94, 0.34);
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  background: var(--green-dark);
}

.whatsapp-float span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--green);
  background: var(--white);
  border-radius: 50%;
  font-size: 0.76rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .grid-4,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .split-grid,
  .growth-engine-grid,
  .deliverable-board,
  .audit-scorecard,
  .page-hero-grid,
  .support-strip,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 430px;
  }

  .problem-art,
  .page-hero-image,
  .support-strip .image-frame {
    margin-right: auto;
    margin-left: 0;
  }

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

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .brand {
    min-width: 154px;
  }

  .brand img {
    width: 154px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    justify-content: flex-start;
    min-height: 48px;
    padding: 0 14px;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .impact-strip,
  .process-ladder,
  .score-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    border-right: 0;
    border-bottom: 1px solid var(--soft-border);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-step::after {
    top: auto;
    right: auto;
    bottom: -10px;
    left: 37px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .section {
    padding: 64px 0;
  }

  .hero-grid {
    gap: 36px;
    min-height: auto;
    padding: 56px 0 54px;
  }

  .hero-showcase {
    justify-items: start;
    min-height: 380px;
  }

  .hero-creative {
    width: min(300px, 82%);
  }

  .hero-status {
    right: 0;
    left: auto;
    bottom: 20px;
    width: min(260px, 72%);
  }

  .hero-badge {
    top: 14px;
    right: 0;
  }

  .page-hero-grid {
    padding: 54px 0;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: 2.35rem;
  }

  .hero-lead,
  .lead {
    font-size: 1rem;
  }

  .hero-actions,
  .page-hero-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-height: 50px;
  }

  .grid-4,
  .why-grid,
  .deliverable-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .engine-board {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .engine-board::before,
  .engine-center {
    display: none;
  }

  .impact-section {
    padding: 24px 0;
  }

  .hero-showcase {
    min-height: 345px;
  }

  .hero-status {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -42px;
  }

  .hero-badge {
    top: 0;
  }

  .content-list li {
    grid-template-columns: 34px 1fr;
  }

  .check-icon,
  .mini-icon {
    width: 34px;
    height: 34px;
  }

  .form-card,
  .card {
    padding: 20px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    min-height: 50px;
    padding: 0 12px;
  }

  .whatsapp-float strong {
    display: none;
  }
}
