@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --font-size: 16px;
  --background: #ffffff;
  --foreground: #1a1a2e;
  --card: #ffffff;
  --card-foreground: #1a1a2e;
  --popover: #ffffff;
  --popover-foreground: #1a1a2e;
  --primary: #0707c8;
  --primary-foreground: #ffffff;
  --secondary: #f5f5f7;
  --secondary-foreground: #0707c8;
  --muted: #f5f5f7;
  --muted-foreground: #6b7280;
  --accent: #cb0001;
  --accent-foreground: #ffffff;
  --destructive: #cb0001;
  --destructive-foreground: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --radius: 0.75rem;

  /* Backward-compatible aliases used in existing CSS */
  --afri-red: var(--accent);
  --afri-blue: #0906b7;
  --text-900: var(--foreground);
  --text-700: #475569;
  --text-500: var(--muted-foreground);
  --bg-soft: var(--secondary);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-900);
  background: var(--background);
}

html {
  font-size: var(--font-size);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 18px;
}

.main-nav a {
  text-decoration: none;
  color: #1f2937;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 2px;
  display: inline-flex;
  align-items: center;
}

.main-nav a:hover {
  opacity: 0.75;
}

.main-nav a.is-active {
  color: var(--afri-blue);
  font-weight: 700;
}

.works-dropdown {
  position: relative;
}

.works-trigger {
  border: 0;
  background: transparent;
  font: inherit;
  color: #1f2937;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 6px 2px;
}

.works-trigger.is-active {
  color: var(--afri-blue);
  font-weight: 700;
}

.works-trigger .chev,
.mobile-works-trigger .chev {
  transition: transform 0.2s ease;
}

.works-dropdown.is-open .works-trigger .chev,
.mobile-works-trigger[aria-expanded="true"] .chev {
  transform: rotate(180deg);
}

.works-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  padding: 8px 0;
  z-index: 60;
  pointer-events: auto;
}

.works-dropdown.is-open .works-menu {
  display: grid;
}

.works-menu a {
  display: block;
  padding: 10px 14px;
  color: #374151;
  text-decoration: none;
  font-size: 0.9rem;
}

.works-menu a:hover {
  background: #f9fafb;
  color: var(--primary);
}

.works-menu a.is-active {
  color: var(--afri-blue);
  background: rgba(9, 6, 183, 0.06);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

.btn-started {
  background: var(--afri-red);
  color: #fff;
  padding: 9px 15px;
  font-size: 0.83rem;
}

.menu-btn {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  padding: 12px 4%;
  background: #fff;
}

.mobile-nav.is-open {
  display: grid;
  gap: 10px;
}

.mobile-nav a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  display: block;
  padding: 10px 0;
  min-height: 40px;
}

.mobile-nav a.is-active {
  color: var(--afri-blue);
  font-weight: 700;
}

.mobile-works-trigger {
  border: 0;
  background: #fff;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  min-height: 40px;
  color: #1f2937;
  font-weight: 500;
  font-size: 0.98rem;
  cursor: pointer;
}

.mobile-works-menu {
  display: none;
  padding-left: 12px;
}

.mobile-works-menu.is-open {
  display: grid;
  gap: 8px;
}

.mobile-works-menu a {
  font-size: 0.92rem;
  color: #4b5563;
  padding: 8px 0;
  display: block;
}

.mobile-works-menu a.is-active {
  color: var(--afri-blue);
  font-weight: 700;
}

.page-content {
  padding: 0;
}

/* Hero */
.hero-afripixel {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
}

.hero-afripixel__radials {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 50%, rgba(203, 0, 1, 0.4), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(7, 7, 200, 0.3), transparent 50%);
}

.hero-afripixel__wrap {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.hero-afripixel__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

.hero-afripixel__logo {
  margin-bottom: 1.5rem;
}

.hero-afripixel__logo-img {
  height: 4rem;
  width: auto;
  display: block;
}

.hero-afripixel__title {
  margin: 0 0 1.5rem;
  font-size: clamp(2.2rem, 5vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.hero-afripixel__accent {
  color: var(--afri-red);
}

.hero-afripixel__lead {
  margin: 0;
  max-width: 560px;
  color: var(--text-700);
  line-height: 1.72;
  font-size: 1.08rem;
}

.hero-afripixel__actions {
  margin-top: 26px;
  display: flex;
  align-items: stretch;
  gap: 16px;
  flex-direction: column;
}

.hero-afripixel__btn {
  min-height: 56px;
  width: auto;
  min-width: 0;
  padding: 16px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  border-radius: 0.5rem;
  text-decoration: none !important;
  letter-spacing: 0.01em;
}

.hero-afripixel__btn--accent {
  background: var(--afri-red);
  box-shadow: 0 10px 22px rgba(203, 0, 1, 0.28);
}

.hero-afripixel__btn--primary {
  background: var(--afri-blue);
  border: 1px solid var(--afri-blue);
  box-shadow: none;
}

.hero-afripixel__btn:hover,
.hero-afripixel__btn:focus,
.hero-afripixel__btn:active,
.hero-afripixel__btn:visited {
  color: #fff;
  text-decoration: none !important;
}

.hero-afripixel__right {
  display: block;
  position: relative;
}

.hero-afripixel__glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(90deg, var(--afri-red), var(--afri-blue));
  border-radius: 1rem;
  opacity: 0.1;
  filter: blur(48px);
}

.hero-afripixel__figure {
  position: relative;
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.06);
  background: #f3f4f6;
}

.hero-afripixel__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.hero-afripixel__caption {
  margin: 0;
  padding: 0.85rem 1rem 1rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text-700);
  background: #fff;
  border-top: 1px solid var(--border);
}

.hero-afripixel.is-active .hero-afripixel__photo {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1025px) {
  .hero-afripixel__left {
    grid-column: 1;
  }

  .hero-afripixel__right {
    grid-column: 2;
  }
}

@media (min-width: 640px) {
  .hero-afripixel__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* Problem section (Section 2) */
.problem-afripixel {
  background: var(--bg-soft);
  padding: 96px 0;
}

.problem-afripixel__wrap {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.problem-afripixel__title {
  margin: 0;
  text-align: center;
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.problem-afripixel__title span {
  color: var(--afri-red);
}

.problem-afripixel__sub {
  margin: 14px auto 0;
  max-width: 700px;
  text-align: center;
  color: var(--text-500);
  font-size: 1.1rem;
  line-height: 1.65;
}

.problem-afripixel__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.problem-afripixel__item {
  text-align: center;
  padding: 4px 8px;
}

.problem-afripixel__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid #ffd6db;
  background: #fff0f2;
  color: var(--afri-red);
  font-weight: 800;
  font-size: 1.35rem;
}

.problem-afripixel__item h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 600;
}

.problem-afripixel__item p {
  margin: 0;
  color: var(--text-500);
  font-size: 1rem;
  line-height: 1.6;
}

/* Director quote — image left, copy right */
.director-afripixel {
  position: relative;
  padding: 88px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 45%, #ffffff 100%);
  overflow: hidden;
}

.director-afripixel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background:
    radial-gradient(ellipse 70% 55% at 12% 40%, rgba(203, 0, 1, 0.06), transparent 55%),
    radial-gradient(ellipse 60% 50% at 88% 60%, rgba(9, 6, 183, 0.07), transparent 50%);
}

.director-afripixel__wrap {
  position: relative;
  z-index: 1;
  width: min(1120px, 92%);
  margin: 0 auto;
}

.director-afripixel__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.director-afripixel__media {
  margin: 0;
}

.director-afripixel__frame {
  position: relative;
  border-radius: 1.125rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 28px 50px -12px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  background: #e2e8f0;
}

.director-afripixel__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.director-afripixel__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 682;
  object-fit: cover;
}

.director-afripixel__copy {
  padding: 0.25rem 0;
}

.director-afripixel__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--afri-red);
}

.director-afripixel__quote {
  margin: 0;
  padding: 0 0 0 1.25rem;
  border-left: 4px solid var(--afri-blue);
}

.director-afripixel__quote p {
  margin: 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--text-900);
}

.director-afripixel__quote p + p {
  margin-top: 1.25rem;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 500;
  font-family: "DM Sans", Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.65;
  color: var(--text-700);
  letter-spacing: 0;
}

.director-afripixel__quote p + p strong {
  color: var(--afri-blue);
  font-weight: 700;
}

.director-afripixel__footer {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
}

.director-afripixel__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-900);
}

.director-afripixel__org {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--afri-blue);
}

/* Solution section (Section 3) */
.solution-afripixel {
  background: #ffffff;
  padding: 82px 0;
}

.solution-afripixel__wrap {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.solution-afripixel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.solution-afripixel__copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.solution-afripixel__copy h2 span {
  color: var(--afri-red);
}

.solution-afripixel__copy p {
  margin: 0;
  color: var(--text-500);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 610px;
}
.solution-afripixel__copy p + p {
  margin-top: 1.5rem;
}

.solution-afripixel__card {
  background: linear-gradient(145deg, var(--afri-blue), #05059f);
  color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 24px 44px rgba(9, 6, 183, 0.3);
}

.solution-afripixel__rows {
  display: grid;
  gap: 1.5rem;
}

.solution-afripixel__row {
  margin: 0;
}

.solution-afripixel__row > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.solution-afripixel__row span {
  font-size: 1rem;
  font-weight: 600;
}

.solution-afripixel__row em {
  font-style: normal;
  color: #dbeafe;
  font-size: 0.875rem;
}

.solution-afripixel__bar {
  display: block;
  height: 0.75rem;
  width: 0;
  border-radius: 999px;
  transition: width 0.8s ease;
}

.solution-afripixel__bar--red {
  background: linear-gradient(90deg, var(--afri-red), #ff4a4a);
}

.solution-afripixel__bar--blue {
  background: linear-gradient(90deg, #3343ff, #818cf8);
}

.solution-afripixel__bar--purple {
  background: linear-gradient(90deg, #a855f7, #c084fc);
}

.solution-afripixel__bar--green {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.solution-afripixel__card small {
  display: block;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  color: #dbeafe;
  font-size: 0.875rem;
  line-height: 1.6;
}

.solution-afripixel.is-active .solution-afripixel__bar {
  width: var(--w, 0%);
}

/* Shared reveal utility for section in-view animation */
[data-reveal] {
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

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

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

.reveal-y {
  transform: translateY(10px);
}

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

/* Services section (Section 4) */
.services-afripixel {
  background: var(--bg-soft);
  padding: 96px 0;
}

.services-afripixel__wrap {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.services-afripixel__head {
  text-align: center;
  margin-bottom: 64px;
}

.services-afripixel__head h2 {
  margin: 0;
  font-size: clamp(2rem, 4.1vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.services-afripixel__head p {
  margin: 14px auto 0;
  max-width: 760px;
  color: var(--text-500);
  font-size: 1.1rem;
  line-height: 1.68;
}

.services-afripixel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.services-afripixel__card {
  background: #fff;
  border: 1px solid #f0f2f7;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-afripixel__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -12px rgba(203, 0, 1, 0.25);
}

.services-afripixel__icon {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-afripixel__icon svg {
  display: block;
  flex-shrink: 0;
}

.services-afripixel__icon--lead {
  background: linear-gradient(145deg, rgba(203, 0, 1, 0.14), rgba(203, 0, 1, 0.06));
  color: var(--afri-red);
  border-color: rgba(203, 0, 1, 0.22);
}

.services-afripixel__icon--web {
  background: linear-gradient(145deg, rgba(9, 6, 183, 0.14), rgba(9, 6, 183, 0.06));
  color: var(--afri-blue);
  border-color: rgba(9, 6, 183, 0.22);
}

.services-afripixel__icon--content {
  background: linear-gradient(145deg, rgba(203, 0, 1, 0.12), rgba(9, 6, 183, 0.08));
  color: var(--afri-blue);
  border-color: rgba(9, 6, 183, 0.18);
}

.services-afripixel__icon--funnel {
  background: linear-gradient(145deg, rgba(9, 6, 183, 0.12), rgba(203, 0, 1, 0.06));
  color: var(--afri-red);
  border-color: rgba(203, 0, 1, 0.18);
}

.services-afripixel__card:hover .services-afripixel__icon {
  transform: scale(1.06);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.1);
}

.services-afripixel__card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.services-afripixel__card p {
  margin: 0;
  color: var(--text-500);
  line-height: 1.68;
  font-size: 1rem;
}

/* Social proof section (Section 5) */
.socialproof-afripixel {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: linear-gradient(135deg, var(--afri-blue) 0%, #0505a0 45%, #030370 100%);
  color: #fff;
}

.socialproof-afripixel__bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
  background: radial-gradient(circle at 30% 50%, rgba(203, 0, 1, 0.2), transparent 50%);
}

.socialproof-afripixel__wrap {
  width: min(1120px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.socialproof-afripixel__head {
  text-align: center;
  margin-bottom: 64px;
}

.socialproof-afripixel__head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4.1vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.socialproof-afripixel__head p {
  margin: 14px auto 0;
  max-width: 760px;
  color: #d1d5db;
  font-size: 1.1rem;
  line-height: 1.68;
}

.socialproof-afripixel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

@media (min-width: 1024px) {
  .socialproof-afripixel__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.socialproof-afripixel__grid article {
  text-align: center;
}

.socialproof-afripixel__grid strong {
  display: block;
  font-size: clamp(2.4rem, 4.2vw, 3.75rem);
  line-height: 1;
  color: var(--afri-red);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.socialproof-afripixel__grid span {
  color: #d1d5db;
  font-size: 1rem;
}

/* Client logos — infinite marquee (files from static/img/clients) */
.clientlogos-marquee {
  padding: 3rem 0 3.75rem;
  background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.clientlogos-marquee--logos-only {
  padding: 2rem 0 2.5rem;
}

/* Tighter band under “Trusted by Growth-Focused Brands” (industry section above) */
.ap-clients-section + .clientlogos-marquee {
  margin-top: 0;
  padding-top: 1.5rem;
  border-top: none;
  background: #ffffff;
}

.clientlogos-marquee__inner {
  width: min(100%, 100vw);
  margin: 0 auto;
}

.clientlogos-marquee__label {
  margin: 0 auto 1.25rem;
  padding: 0 1.5rem;
  max-width: 80rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-500);
}

.clientlogos-marquee__viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.clientlogos-marquee__track {
  display: flex;
  width: max-content;
  animation: clientlogos-marquee-scroll var(--marquee-sec, 40s) linear infinite;
  will-change: transform;
}

.clientlogos-marquee__strip {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin: 0;
  padding: 0.5rem 2rem;
  list-style: none;
}

.clientlogos-marquee__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
}

/* Natural-width logos in a tight row; marquee scrolls the full strip */
.clientlogos-marquee--8col .clientlogos-marquee__strip {
  gap: clamp(1.75rem, 3vw, 2.75rem);
  padding: 0.85rem 1.5rem;
}

.clientlogos-marquee--8col .clientlogos-marquee__item {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  max-width: none;
}

.clientlogos-marquee--8col .clientlogos-marquee__logo {
  display: block;
  width: auto;
  height: clamp(4.75rem, 7.5vw, 6.75rem);
  max-width: min(18rem, 42vw);
  object-fit: contain;
  object-position: center;
}

@media (max-width: 768px) {
  .clientlogos-marquee--8col .clientlogos-marquee__strip {
    gap: 1.5rem;
  }

  .clientlogos-marquee--8col .clientlogos-marquee__logo {
    height: clamp(4rem, 12vw, 5.5rem);
    max-width: min(14rem, 55vw);
  }
}

@media (max-width: 480px) {
  .clientlogos-marquee--8col .clientlogos-marquee__logo {
    height: 4.25rem;
    max-width: 12rem;
  }
}

.clientlogos-marquee__logo {
  display: block;
  width: auto;
  height: clamp(4.75rem, 7.5vw, 6.75rem);
  max-width: min(18rem, 42vw);
  object-fit: contain;
  object-position: center;
}

@keyframes clientlogos-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .clientlogos-marquee__viewport {
    mask-image: none;
  }

  .clientlogos-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    row-gap: 1rem;
  }

  .clientlogos-marquee__strip--clone {
    display: none;
  }

  .clientlogos-marquee__strip {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.5rem 1rem;
  }
}

/* Why Us section (Section 6) */
.whyus-afripixel {
  background: #fff;
  padding: 96px 0;
}

.whyus-afripixel__wrap {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.whyus-afripixel__head {
  text-align: center;
  margin-bottom: 64px;
}

.whyus-afripixel__head h2 {
  margin: 0;
  font-size: clamp(2rem, 4.1vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.whyus-afripixel__head p {
  margin: 14px auto 0;
  max-width: 760px;
  color: var(--text-500);
  font-size: 1.1rem;
  line-height: 1.68;
}

.whyus-afripixel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.whyus-afripixel__item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.whyus-afripixel__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(203, 0, 1, 0.1);
  color: var(--afri-red);
  font-size: 1.2rem;
  font-weight: 700;
}

.whyus-afripixel__item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.whyus-afripixel__item p {
  margin: 0;
  color: var(--text-500);
  line-height: 1.68;
  font-size: 1rem;
}

/* Process section (Section 7) */
.process-afripixel {
  background: var(--bg-soft);
  padding: 96px 0;
}

.process-afripixel__wrap {
  width: min(1120px, 92%);
  margin: 0 auto;
  position: relative;
}

.process-afripixel__head {
  text-align: center;
  margin-bottom: 64px;
}

.process-afripixel__head h2 {
  margin: 0;
  font-size: clamp(2rem, 4.1vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.process-afripixel__head p {
  margin: 14px auto 0;
  max-width: 760px;
  color: var(--text-500);
  font-size: 1.1rem;
  line-height: 1.68;
}

.process-afripixel__timeline {
  position: absolute;
  left: 5%;
  right: 5%;
  top: 210px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(203, 0, 1, 0.3), transparent);
}

.process-afripixel__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

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

.process-afripixel__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid #e9edf5;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
  margin-bottom: 1rem;
}

.process-afripixel__badge > span {
  color: var(--afri-red);
  font-size: 2rem;
  line-height: 1;
}

.process-afripixel__badge > i {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--afri-red);
  color: #fff;
  font-style: normal;
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: 0 8px 18px rgba(203, 0, 1, 0.28);
}

.process-afripixel__step h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.process-afripixel__step p {
  margin: 0;
  color: var(--text-500);
  line-height: 1.68;
  font-size: 1rem;
}

/* Final CTA section (Section 8) */
.finalcta-afripixel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--afri-blue) 0%, #0505a0 45%, var(--afri-blue) 100%);
  padding: 128px 0;
  color: #fff;
}

.finalcta-afripixel__bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(203, 0, 1, 0.3), transparent 70%);
}

.finalcta-afripixel__wrap {
  width: min(900px, 92%);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.finalcta-afripixel__content h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5.4vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.finalcta-afripixel__content h2 span {
  color: var(--afri-red);
}

.finalcta-afripixel__content p {
  margin: 1.5rem auto 0;
  max-width: 760px;
  color: #d1d5db;
  font-size: 1.25rem;
  line-height: 1.7;
}

.finalcta-afripixel__button {
  margin: 2.5rem auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-decoration: none;
  background: var(--afri-red);
  color: #fff;
  padding: 1.2rem 3rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  box-shadow: 0 24px 40px -12px rgba(203, 0, 1, 0.3);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.finalcta-afripixel__button:hover {
  transform: scale(1.05);
  opacity: 0.95;
}

.finalcta-afripixel__content small {
  display: block;
  margin-top: 1.5rem;
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Footer */
.site-footer {
  background: #111827;
  padding: 56px 0 24px;
  color: #d1d5db;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}

.site-footer h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.98rem;
}

.footer-brand {
  margin-bottom: 14px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}

.footer-brand span {
  color: var(--afri-blue);
}

.footer-copy {
  margin: 0 0 10px;
  max-width: 300px;
  line-height: 1.72;
  font-size: 0.9rem;
  color: #9ca3af;
}

.footer-social {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #1f2937;
  color: #e5e7eb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
}

.footer-social a:hover {
  background: var(--afri-blue);
  color: #fff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 9px;
  font-size: 0.9rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact-links li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.contact-icon {
  width: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  margin-top: 0;
  flex-shrink: 0;
}

/* Website Development page */
.wd-container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.wd-hero {
  padding: 128px 0 80px;
  background: linear-gradient(135deg, #eff6ff 0%, #f3e8ff 100%);
}

.wd-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.wd-pill {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: #ede9fe;
  color: #6d28d9;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.wd-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 4.8vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.wd-gradient-text {
  background: linear-gradient(90deg, var(--primary), #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wd-hero p {
  margin: 0;
  color: #4b5563;
  font-size: 1.25rem;
  line-height: 1.7;
}

.wd-hero__actions {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.wd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 12px;
  padding: 14px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.wd-btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 32px rgba(203, 0, 1, 0.22);
}

.wd-btn--accent:hover {
  transform: translateY(-1px);
}

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

.wd-btn--outline:hover {
  background: var(--primary);
  color: #fff;
}

.wd-btn--light {
  background: #fff;
  color: var(--primary);
}

.wd-btn--lg {
  padding: 16px 28px;
  font-size: 1.05rem;
}

.wd-hero__imgWrap {
  position: relative;
  z-index: 1;
}

.wd-hero__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
}

.wd-blob {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.55;
}

.wd-blob--purple {
  left: -24px;
  bottom: -24px;
  background: #e9d5ff;
}

.wd-blob--blue {
  right: -24px;
  top: -24px;
  background: #bfdbfe;
}

.wd-section {
  padding: 80px 0;
  background: #fff;
}

.wd-section--soft {
  background: #f9fafb;
}

.wd-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.wd-head h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}

.wd-head p {
  margin: 0;
  color: #4b5563;
  font-size: 1.2rem;
  line-height: 1.7;
}

.wd-grid {
  display: grid;
  gap: 24px;
}

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

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

.wd-prop {
  text-align: center;
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  border: 1px solid #f3f4f6;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wd-prop:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.wd-prop__icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 14px;
}

.wd-prop h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.wd-prop p {
  margin: 0;
  color: #4b5563;
}

.wd-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.wd-filter {
  border: 0;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  background: #fff;
  color: #374151;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.wd-filter:hover {
  background: #f3f4f6;
}

.wd-filter.is-active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(7, 7, 200, 0.2);
}

.wd-project {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wd-project:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.16);
}

.wd-project__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.wd-project__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.wd-project__img--gif {
  object-fit: contain;
  background: #0f172a;
}

.wd-project:hover .wd-project__img {
  transform: scale(1.1);
}

.wd-project:hover .wd-project__img--gif {
  transform: none;
}

.wd-project__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0 28px;
  transition: opacity 0.25s ease;
}

.wd-project:hover .wd-project__overlay {
  opacity: 1;
}

.wd-project__btn {
  background: #fff;
  color: #111827;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
}

.wd-project__btn:hover {
  background: var(--accent);
  color: #fff;
}

.wd-project__tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  font-weight: 700;
  font-size: 0.82rem;
}

.wd-project__body {
  padding: 18px 18px 22px;
}

.wd-project__body h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.wd-project__body p {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
}

.wd-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
  color: #fff;
}

.wd-cta__inner {
  text-align: center;
  max-width: 880px;
}

.wd-cta__inner h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.2vw, 3rem);
  letter-spacing: -0.02em;
  color: #fff;
}

.wd-cta__inner p {
  margin: 0 auto 28px;
  color: #dbeafe;
  font-size: 1.2rem;
}

.wd-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.wd-pill--green {
  background: #dcfce7;
  color: #15803d;
}

.wd-case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.wd-case__copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em;
}

.wd-case__points {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.wd-point h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.wd-check {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dcfce7;
  color: #16a34a;
  font-weight: 900;
  font-size: 0.95rem;
}

.wd-point p {
  margin: 0;
  color: #4b5563;
  line-height: 1.7;
}

.wd-case__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
}

.wd-section--trust {
  background: linear-gradient(135deg, #f9fafb 0%, #eff6ff 100%);
}

.wd-result {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wd-result:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.14);
}

.wd-result__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), #ea580c);
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.wd-result h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.wd-result p {
  margin: 0;
  color: #4b5563;
  line-height: 1.7;
}

.wd-micro {
  background: #111827;
  color: #fff;
  padding: 22px 0;
}

.wd-micro__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.wd-micro__left {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.wd-micro__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.wd-micro__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.95rem;
}

.wd-micro__icon--red {
  color: var(--accent);
}

.wd-micro__icon--green {
  color: #22c55e;
}

.wd-micro__text {
  font-weight: 600;
}

.wd-micro__right {
  color: #9ca3af;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .wd-hero__grid {
    grid-template-columns: 1fr;
  }
  .wd-case {
    grid-template-columns: 1fr;
  }
  .wd-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wd-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .wd-hero {
    padding: 108px 0 64px;
  }
  .wd-grid--4,
  .wd-grid--3 {
    grid-template-columns: 1fr;
  }
  .wd-btn--lg {
    width: 100%;
  }
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer-meta {
  margin: 0;
  font-size: 0.82rem;
  color: #9ca3af;
}

.footer-policies {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-policies a {
  color: #9ca3af;
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-policies a:hover {
  color: #fff;
}

.footer-badge-wrap {
  margin-top: 14px;
  text-align: center;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.84rem;
  background: linear-gradient(90deg, var(--afri-blue), var(--afri-red));
}

.footer-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 70;
  transition: transform 0.2s ease;
}

.footer-whatsapp:hover {
  transform: scale(1.08);
}

.footer-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-afripixel__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-afripixel__right {
    max-width: 28rem;
    margin: 0 auto;
  }

  .problem-afripixel__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .solution-afripixel__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .director-afripixel__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .director-afripixel__quote {
    padding-left: 1rem;
  }

  .services-afripixel__grid {
    grid-template-columns: 1fr;
  }

  .whyus-afripixel__grid {
    grid-template-columns: 1fr;
  }

  .process-afripixel__timeline {
    display: none;
  }

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

@media (max-width: 860px) {
  .site-header .container {
    min-height: 58px;
  }

  .logo img {
    height: 34px;
  }

  .main-nav,
  .site-header .btn-started {
    display: none;
  }

  .works-dropdown {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-afripixel {
    min-height: auto;
    padding: 4rem 0 3.5rem;
  }

  .hero-afripixel__title {
    font-size: clamp(1.95rem, 9vw, 2.9rem);
  }

  .hero-afripixel__btn {
    width: 100%;
    min-width: 0;
  }

  .problem-afripixel {
    padding: 72px 0;
  }

  .problem-afripixel__title {
    font-size: clamp(1.85rem, 8vw, 2.8rem);
  }

  .solution-afripixel {
    padding: 60px 0;
  }

  .director-afripixel {
    padding: 64px 0;
  }

  .solution-afripixel__copy h2 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .services-afripixel,
  .socialproof-afripixel,
  .whyus-afripixel,
  .process-afripixel {
    padding: 72px 0;
  }

  .finalcta-afripixel {
    padding: 96px 0;
  }

  .finalcta-afripixel__content h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .finalcta-afripixel__content p {
    font-size: 1.05rem;
  }

  .finalcta-afripixel__button {
    width: 100%;
    max-width: 360px;
    padding: 1rem 1.25rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

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

@media (max-width: 680px) {
  .hero-afripixel__actions {
    flex-wrap: wrap;
  }
  .hero-afripixel__btn {
    width: 100%;
    min-width: 0;
  }

  .problem-afripixel__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-afripixel__grid {
    grid-template-columns: 1fr;
  }

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

  .footer-policies {
    gap: 12px;
  }
}

/* ------------------------------
   About + Contact (modern pages)
-------------------------------- */
.about-page,
.contact-page {
  background: #fff;
}

.ap-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(9, 6, 183, 0.18);
  background: rgba(9, 6, 183, 0.06);
  color: #0b0b2b;
  font-weight: 700;
  font-size: 0.85rem;
}

.ap-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.ap-btn--primary {
  background: var(--afri-red);
  color: #fff;
  box-shadow: 0 10px 22px rgba(203, 0, 1, 0.18);
}

.ap-btn--primary:hover {
  transform: translateY(-1px);
}

.ap-btn--outline {
  background: #fff;
  color: #0b0b2b;
  border-color: rgba(2, 6, 23, 0.14);
}

.ap-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.ap-section {
  padding: 88px 0;
}

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

.ap-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 26px;
}

.ap-head h2 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.02em;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.ap-head p {
  margin: 0;
  color: var(--text-700);
  line-height: 1.7;
}

.ap-grid {
  display: grid;
  gap: 18px;
}

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

.ap-card {
  background: #fff;
  border: 1px solid rgba(2, 6, 23, 0.08);
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.06);
}

.ap-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 10px;
  font-weight: 900;
}

.ap-card__icon--red {
  background: rgba(203, 0, 1, 0.10);
  color: var(--afri-red);
}

.ap-card__icon--blue {
  background: rgba(9, 6, 183, 0.10);
  color: var(--afri-blue);
}

.ap-card__icon--soft {
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
}

.ap-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.ap-card p {
  margin: 0;
  color: var(--text-700);
  line-height: 1.7;
}

/* About hero */
.ap-hero,
.cp-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 60px;
}

.ap-hero__bg,
.cp-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 420px at 18% 30%, rgba(203, 0, 1, 0.13), transparent 60%),
    radial-gradient(900px 420px at 80% 25%, rgba(9, 6, 183, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(9, 6, 183, 0.04), rgba(255, 255, 255, 0));
}

.ap-hero__inner,
.cp-hero__inner {
  position: relative;
  z-index: 1;
}

.ap-hero__grid {
  display: grid;
  align-items: start;
  gap: 26px;
  grid-template-columns: 1.25fr 0.75fr;
}

.ap-hero__title {
  margin: 14px 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.ap-hero__accent {
  color: var(--afri-blue);
}

.ap-hero__lead {
  margin: 0;
  color: var(--text-700);
  line-height: 1.75;
  font-size: 1.05rem;
  max-width: 64ch;
}

.ap-hero__actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ap-hero__cards {
  display: grid;
  gap: 12px;
}

.ap-mini {
  border-radius: 16px;
  border: 1px solid rgba(2, 6, 23, 0.08);
  background: #fff;
  padding: 14px 14px 12px;
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.08);
}

.ap-mini--blue {
  background: linear-gradient(135deg, rgba(9, 6, 183, 0.12), rgba(255, 255, 255, 0.85));
}

.ap-mini--red {
  background: linear-gradient(135deg, rgba(203, 0, 1, 0.12), rgba(255, 255, 255, 0.85));
}

.ap-mini--soft {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.06), rgba(255, 255, 255, 0.85));
}

.ap-mini__kpi {
  font-weight: 900;
  font-size: 1.05rem;
}

.ap-mini__meta {
  color: var(--text-700);
  margin-top: 2px;
}

/* About split section */
.ap-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
}

.ap-split__copy h2 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.02em;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.ap-split__copy p {
  margin: 0 0 14px;
  color: var(--text-700);
  line-height: 1.75;
}

.ap-bullets {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.ap-bullet {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--text-700);
  line-height: 1.65;
}

.ap-bullet__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 6px;
}

.ap-bullet__dot--red { background: var(--afri-red); }
.ap-bullet__dot--blue { background: var(--afri-blue); }
.ap-bullet__dot--soft { background: rgba(15, 23, 42, 0.35); }

.ap-split__media {
  position: relative;
}

.ap-mission-figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(2, 6, 23, 0.08);
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.1);
  background: #e2e8f0;
}

.ap-mission-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 682;
  object-fit: cover;
}

.ap-panel {
  border-radius: 18px;
  border: 1px solid rgba(2, 6, 23, 0.08);
  background: #fff;
  padding: 18px;
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.08);
}

.ap-panel h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.ap-panel p {
  margin: 0 0 14px;
  color: var(--text-700);
  line-height: 1.75;
}

.ap-panel__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.ap-stat {
  border-radius: 14px;
  border: 1px solid rgba(2, 6, 23, 0.06);
  background: rgba(245, 245, 247, 0.8);
  padding: 10px 10px 9px;
}

.ap-stat__n {
  font-weight: 900;
}

.ap-stat__l {
  color: var(--text-700);
  font-size: 0.9rem;
  margin-top: 2px;
}

/* CTA */
.ap-cta {
  padding: 84px 0;
  background: linear-gradient(135deg, rgba(9, 6, 183, 0.92), rgba(9, 6, 183, 0.72));
  color: #fff;
}

.ap-cta__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: center;
}

.ap-cta h2 {
  margin: 0 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.02em;
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
}

.ap-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
}

.ap-cta__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

/* Contact layout */
.cp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.cp-hero__title {
  margin: 14px 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.cp-hero__accent {
  color: var(--afri-red);
}

.cp-hero__lead {
  margin: 0;
  color: var(--text-700);
  line-height: 1.75;
  font-size: 1.05rem;
  max-width: 64ch;
}

.cp-cards {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 520px;
}

.cp-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(2, 6, 23, 0.08);
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 16px 44px rgba(2, 6, 23, 0.06);
}

.cp-card:hover {
  transform: translateY(-1px);
}

.cp-card__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
}

.cp-card__icon svg {
  display: block;
}

.cp-card__icon--red { background: rgba(203, 0, 1, 0.10); color: var(--afri-red); }
.cp-card__icon--blue { background: rgba(9, 6, 183, 0.10); color: var(--afri-blue); }
.cp-card__icon--green { background: rgba(16, 185, 129, 0.14); color: #047857; }

.cp-card__meta {
  display: grid;
  gap: 2px;
}

.cp-card__label {
  font-weight: 800;
  font-size: 0.9rem;
}

.cp-card__value {
  color: var(--text-700);
}

.cp-formWrap {
  display: block;
}

.cp-form {
  border-radius: 18px;
  border: 1px solid rgba(2, 6, 23, 0.08);
  background: #fff;
  padding: 18px;
  box-shadow: 0 22px 70px rgba(2, 6, 23, 0.10);
}

.cp-form__head h2 {
  margin: 0 0 4px;
  font-size: 1.2rem;
}

.cp-form__head p {
  margin: 0 0 14px;
  color: var(--text-700);
}

.cp-success {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-radius: 14px;
  border: 1px solid rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.08);
  color: #065f46;
  padding: 10px 12px;
  margin: 0 0 12px;
  font-weight: 700;
}

.cp-success__icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: #059669;
  display: flex;
}

.cp-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cp-field {
  display: grid;
  gap: 6px;
}

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

.cp-field span {
  font-weight: 700;
  font-size: 0.9rem;
}

.cp-field input,
.cp-field select,
.cp-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(2, 6, 23, 0.12);
  padding: 12px 12px;
  font: inherit;
  outline: none;
  background: #fff;
}

.cp-field textarea {
  resize: vertical;
  min-height: 120px;
}

.cp-field input:focus,
.cp-field select:focus,
.cp-field textarea:focus {
  border-color: rgba(9, 6, 183, 0.35);
  box-shadow: 0 0 0 4px rgba(9, 6, 183, 0.10);
}

.cp-form__actions {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cp-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.cp-form__submit-icon {
  flex-shrink: 0;
}

.cp-location {
  padding: 56px 0 72px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 45%);
  border-top: 1px solid rgba(2, 6, 23, 0.06);
}

.cp-location__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.cp-location__kicker {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(9, 6, 183, 0.08);
  color: var(--afri-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cp-location__head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  letter-spacing: -0.02em;
  color: var(--text-900);
}

.cp-location__lead {
  margin: 0;
  color: var(--text-700);
  line-height: 1.6;
  font-size: 1.05rem;
}

.cp-location__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}

.cp-location__panel {
  padding: 22px 22px 24px;
  border-radius: 18px;
  border: 1px solid rgba(2, 6, 23, 0.08);
  background: #fff;
  box-shadow: 0 16px 44px rgba(2, 6, 23, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.cp-location__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.cp-location__icon svg {
  display: block;
}

.cp-location__icon--blue {
  background: rgba(9, 6, 183, 0.1);
  color: var(--afri-blue);
}

.cp-location__icon--soft {
  background: rgba(15, 23, 42, 0.06);
  color: var(--text-700);
}

.cp-location__icon--red {
  background: rgba(203, 0, 1, 0.1);
  color: var(--afri-red);
}

.cp-location__block-body {
  min-width: 0;
}

.cp-location__name {
  margin: 0 0 8px;
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text-900);
}

.cp-location__address {
  margin: 0;
  font-style: normal;
  color: var(--text-700);
  line-height: 1.65;
  font-size: 1.02rem;
}

.cp-location__hours-title {
  margin: 0 0 4px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-900);
}

.cp-location__hours {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-500);
  line-height: 1.55;
}

.cp-location__directions {
  margin: 0;
  font-size: 0.98rem;
}

.cp-location__directions a {
  color: var(--afri-blue);
  font-weight: 700;
  text-decoration: none;
}

.cp-location__directions a:hover,
.cp-location__directions a:focus-visible {
  text-decoration: underline;
}

.cp-location__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  margin-top: 0.25rem;
}

.cp-location__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  word-break: break-word;
  white-space: normal;
}

.cp-location__btn-icon {
  flex-shrink: 0;
}

.cp-map-wrap {
  min-height: 280px;
}

.cp-map-frame {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(2, 6, 23, 0.1);
  box-shadow: 0 22px 60px rgba(2, 6, 23, 0.12);
  aspect-ratio: 4 / 3;
  background: #e2e8f0;
}

.cp-map-frame iframe {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 900px) {
  .cp-location__grid {
    grid-template-columns: 1fr;
  }

  .cp-map-frame {
    aspect-ratio: 16 / 11;
    min-height: 280px;
  }
}

@media (max-width: 980px) {
  .ap-hero__grid {
    grid-template-columns: 1fr;
  }
  .ap-split {
    grid-template-columns: 1fr;
  }
  .ap-panel__stats {
    grid-template-columns: 1fr;
  }
  .ap-cta__inner {
    grid-template-columns: 1fr;
  }
  .ap-cta__actions {
    justify-content: flex-start;
  }
  .cp-hero__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .ap-section {
    padding: 72px 0;
  }
  .ap-hero,
  .cp-hero {
    padding: 72px 0 48px;
  }
  .ap-grid--3 {
    grid-template-columns: 1fr;
  }
  .cp-fields {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------
   Real Estate / 360° Virtual Tours
-------------------------------- */
.vt-page {
  background: #fff;
}

.vt-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 96px;
  color: #fff;
}

.vt-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vt-hero__bgImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  display: block;
}

.vt-hero__bgOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.92) 0%,
    rgba(9, 6, 183, 0.88) 45%,
    rgba(15, 23, 42, 0.9) 100%
  );
}

.vt-hero__content {
  position: relative;
  z-index: 1;
}

.vt-hero__inner {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
  padding-top: 1.5rem;
}

.vt-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(147, 197, 253, 0.35);
  background: rgba(59, 130, 246, 0.15);
  color: #bae6fd;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.vt-pill__icon {
  font-size: 1rem;
}

.vt-hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.vt-gradient-text {
  background: linear-gradient(90deg, #93c5fd 0%, #e0e7ff 55%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vt-gradient-text--dark {
  background: linear-gradient(90deg, var(--afri-blue) 0%, #2563eb 50%, #0891b2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vt-hero__lead {
  margin: 0 auto 2.25rem;
  max-width: 42rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.95);
}

.vt-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.vt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  font-family: inherit;
}

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

.vt-btn--primary {
  background: var(--afri-red);
  color: #fff;
  box-shadow: 0 12px 28px rgba(203, 0, 1, 0.28);
}

.vt-btn--outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.vt-btn--outline:hover {
  background: #fff;
  color: #0f172a;
}

.vt-btn--ghostDark {
  background: transparent;
  border-color: rgba(147, 197, 253, 0.6);
  color: #7dd3fc;
}

.vt-btn--ghostDark:hover {
  background: rgba(147, 197, 253, 0.12);
  color: #e0f2fe;
}

.vt-btn--onGradient {
  background: #fff;
  color: var(--afri-blue);
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.vt-btn--block {
  width: 100%;
  margin-top: 0.25rem;
}

.vt-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 42rem;
  margin: 0 auto;
}

.vt-stat {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 1.25rem 1rem;
}

.vt-stat__value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #7dd3fc;
  margin-bottom: 0.35rem;
}

.vt-stat__label {
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.85);
  line-height: 1.35;
}

.vt-section {
  padding: 5rem 0;
}

.vt-section--white {
  background: #fff;
}

.vt-section--soft {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
}

.vt-section--dark {
  background: #0f172a;
  color: #fff;
}

.vt-head {
  margin-bottom: 3rem;
}

.vt-head--center {
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.vt-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.vt-head--light h2 {
  color: #fff;
}

.vt-head p {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: #64748b;
  line-height: 1.6;
}

.vt-head--light p {
  color: #cbd5e1;
}

.vt-painGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.vt-pain {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: #fef2f2;
  border-left: 4px solid var(--afri-red);
  border-radius: 10px;
  padding: 1.25rem;
}

.vt-pain__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: #fee2e2;
  display: grid;
  place-items: center;
  color: var(--afri-red);
  font-weight: 800;
  font-size: 0.85rem;
}

.vt-pain h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

.vt-pain p {
  margin: 0;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
}

.vt-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.vt-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(9, 6, 183, 0.1);
  color: var(--afri-blue);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.vt-split__copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.vt-lead {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0 0 1.25rem;
}

.vt-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.vt-checklist--compact {
  gap: 0.65rem;
}

.vt-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #334155;
  line-height: 1.55;
}

.vt-check {
  flex-shrink: 0;
  color: var(--afri-blue);
  font-weight: 800;
  margin-top: 0.1rem;
}

.vt-mediaCard {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.18);
}

.vt-mediaCard__img {
  width: 100%;
  display: block;
  vertical-align: middle;
}

.vt-mediaCard__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.vt-mediaCard__badgeSmall {
  font-size: 0.7rem;
  color: #64748b;
}

.vt-mediaCard__badgeStrong {
  font-size: 0.875rem;
  font-weight: 800;
  color: #0f172a;
}

.vt-useGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.vt-use {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vt-use:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.14);
}

.vt-use__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.vt-use__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vt-use:hover .vt-use__img {
  transform: scale(1.08);
}

.vt-use__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
  pointer-events: none;
}

.vt-use__iconWrap {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}

.vt-use__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--afri-blue) 0%, #2563eb 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
}

.vt-use__body {
  padding: 1.35rem 1.25rem 1.5rem;
}

.vt-use__body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
}

.vt-use__body p {
  margin: 0;
  color: #64748b;
  line-height: 1.55;
  font-size: 0.95rem;
}

.vt-tourGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.vt-tour {
  background: #1e293b;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vt-tour:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.vt-tour__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.vt-tour__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vt-tour:hover .vt-tour__img {
  transform: scale(1.06);
}

.vt-tour__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vt-tour:hover .vt-tour__overlay {
  opacity: 1;
}

.vt-tour__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  background: var(--afri-blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.vt-tour__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.vt-tour__meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
}

.vt-tour__type {
  color: #7dd3fc;
  font-weight: 600;
}

.vt-tour__rooms {
  color: #94a3b8;
}

.vt-tour h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a.vt-tour__cardHit {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  color: inherit;
  text-decoration: none;
}

.vt-tour--hasTour:focus-within {
  outline: 2px solid #7dd3fc;
  outline-offset: 3px;
}

.vt-tour--noTour .vt-tour__meta:empty {
  display: none;
}

.vt-center {
  text-align: center;
  margin-top: 2.5rem;
}

.vt-benefitGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.vt-benefit {
  padding: 2rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  border: 1px solid #e2e8f0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vt-benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.vt-benefit__icon {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--afri-blue) 0%, #2563eb 100%);
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.vt-benefit h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
}

.vt-benefit p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}

.vt-stepGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.vt-stepWrap {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
}

.vt-step {
  flex: 1;
  background: #fff;
  padding: 2rem 1.35rem;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: box-shadow 0.25s ease;
}

.vt-step:hover {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.vt-step__num {
  font-size: 2.75rem;
  font-weight: 800;
  color: rgba(9, 6, 183, 0.18);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.vt-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
}

.vt-step p {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.55;
}

.vt-step__arrow {
  display: none;
  align-self: center;
  color: var(--afri-blue);
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
}

.vt-ctaBand {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--afri-blue) 0%, #1d4ed8 45%, rgba(203, 0, 1, 0.85) 100%);
  color: #fff;
  text-align: center;
}

.vt-ctaBand__inner {
  max-width: 44rem;
  margin: 0 auto;
}

.vt-ctaBand h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.vt-ctaBand p {
  margin: 0 0 2rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(224, 242, 254, 0.95);
  line-height: 1.55;
}

.vt-leadGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.vt-leadCopy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.vt-leadFormWrap {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

.vt-form {
  display: grid;
  gap: 1.1rem;
}

.vt-field {
  display: grid;
  gap: 0.4rem;
}

.vt-field span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}

.vt-field input,
.vt-field select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vt-field input:focus,
.vt-field select:focus {
  border-color: var(--afri-blue);
  box-shadow: 0 0 0 3px rgba(9, 6, 183, 0.15);
}

.vt-formNote {
  margin: 0;
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
}

.vt-success {
  border-radius: 10px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.1);
  color: #065f46;
  padding: 0.65rem 0.85rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.vt-trust {
  background: #0f172a;
  color: #fff;
  padding: 3rem 0 2.5rem;
}

.vt-trust__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.vt-trust h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.vt-trust p {
  margin: 0;
  color: #cbd5e1;
  max-width: 32rem;
  line-height: 1.55;
}

.vt-trust__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.vt-trustChip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.vt-trustWa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  background: #16a34a;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s ease;
}

.vt-trustWa:hover {
  background: #15803d;
}

.vt-trust__loc {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

@media (min-width: 900px) {
  .vt-step__arrow {
    display: inline-flex;
  }
}

@media (max-width: 1024px) {
  .vt-painGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vt-useGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vt-benefitGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vt-stepGrid {
    grid-template-columns: 1fr;
  }
  .vt-step__arrow {
    display: none;
  }
}

@media (max-width: 900px) {
  .vt-split,
  .vt-leadGrid {
    grid-template-columns: 1fr;
  }
  .vt-tourGrid {
    grid-template-columns: 1fr;
  }
  .vt-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .vt-hero {
    padding: 56px 0 72px;
  }
  .vt-painGrid {
    grid-template-columns: 1fr;
  }
  .vt-useGrid {
    grid-template-columns: 1fr;
  }
  .vt-benefitGrid {
    grid-template-columns: 1fr;
  }
  .vt-hero__actions .vt-btn {
    width: 100%;
  }
}

/* ------------------------------
   Real Estate marketing (rem-*)
-------------------------------- */
.rem-page {
  background: #fff;
}

.rem-text-red {
  color: var(--afri-red);
}

.rem-text-blue {
  color: var(--afri-blue);
}

.rem-section {
  padding: 6rem 0;
}

.rem-section--muted {
  background: #f9fafb;
}

.rem-section--white {
  background: #fff;
}

.rem-section--dark {
  background: #111827;
  color: #fff;
}

.rem-head {
  margin-bottom: 4rem;
}

.rem-head--center {
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.rem-head h2 {
  margin: 0 0 1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #111827;
}

.rem-head--light h2 {
  color: #fff;
}

.rem-head p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.65;
  color: #4b5563;
}

.rem-head--light p {
  color: #9ca3af;
}

.rem-center {
  text-align: center;
  margin-top: 4rem;
}

.rem-showcaseCta__lead {
  max-width: 40rem;
  margin: 0 auto 1.5rem;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  line-height: 1.55;
  font-weight: 600;
  color: #e5e7eb;
  letter-spacing: -0.01em;
}

/* Hero */
.rem-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.rem-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rem-hero__bgImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rem-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.rem-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

.rem-hero__title {
  margin: 0 0 1.25rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
}

.rem-hero__accent {
  color: var(--afri-red);
}

.rem-hero__lead {
  margin: 0 0 1.75rem;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  max-width: 36rem;
}

.rem-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.rem-social__avatars {
  display: flex;
  align-items: center;
}

.rem-social__av {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #000;
  margin-right: -1rem;
}

.rem-social__badge {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 2px solid #000;
  background: var(--afri-blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  z-index: 1;
}

.rem-social__text {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.35;
}

.rem-heroCard {
  position: relative;
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem 2rem 2.25rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.rem-heroCard__deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: rgba(9, 6, 183, 0.06);
  border-radius: 0 0 0 100%;
  z-index: 0;
}

.rem-heroCard__title {
  position: relative;
  z-index: 1;
  margin: 0 0 0.35rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #111827;
}

.rem-heroCard__sub {
  position: relative;
  z-index: 1;
  margin: 0 0 1.75rem;
  color: #6b7280;
  line-height: 1.5;
}

.rem-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.1rem;
}

.rem-field {
  display: grid;
  gap: 0.4rem;
}

.rem-field span {
  font-weight: 600;
  color: #374151;
  font-size: 0.9rem;
}

.rem-field input,
.rem-field select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rem-field input:focus,
.rem-field select:focus {
  border-color: var(--afri-red);
  box-shadow: 0 0 0 3px rgba(203, 0, 1, 0.15);
}

.rem-submit {
  width: 100%;
  margin-top: 0.35rem;
  padding: 1rem 1.25rem;
  border: none;
  border-radius: 10px;
  background: var(--afri-red);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 10px 24px rgba(203, 0, 1, 0.25);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.rem-submit:hover {
  background: #a80001;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(203, 0, 1, 0.3);
}

.rem-formNote {
  margin: 0;
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
}

.rem-success {
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #065f46;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Problems */
.rem-probGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.rem-prob {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.rem-prob:hover {
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.rem-prob__icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: rgba(9, 6, 183, 0.1);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}

.rem-prob h3 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #111827;
}

.rem-prob p {
  margin: 0;
  color: #6b7280;
  line-height: 1.65;
}

/* Solution split */
.rem-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.rem-split__copy h2 {
  margin: 0 0 1.25rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #111827;
  letter-spacing: -0.02em;
}

.rem-lead {
  margin: 0 0 1.75rem;
  font-size: 1.15rem;
  color: #6b7280;
  line-height: 1.65;
}

.rem-solList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.35rem;
}

.rem-solList li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.rem-solCheck {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(9, 6, 183, 0.1);
  color: var(--afri-blue);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

.rem-solList h4 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #111827;
}

.rem-solList p {
  margin: 0;
  color: #6b7280;
  line-height: 1.55;
  font-size: 0.95rem;
}

.rem-split__visual {
  position: relative;
}

.rem-visual__tilt {
  position: absolute;
  inset: 0;
  background: var(--afri-blue);
  border-radius: 1rem;
  opacity: 0.1;
  transform: rotate(3deg);
}

.rem-visual {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  border: 8px solid #fff;
}

.rem-visual__img {
  width: 100%;
  display: block;
  vertical-align: middle;
}

.rem-visual__bar {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.rem-visual__barLabel {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.rem-visual__barValue {
  font-size: 1.35rem;
  font-weight: 800;
  color: #111827;
}

.rem-visual__barIcon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(203, 0, 1, 0.1);
  color: var(--afri-red);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 800;
}

/* Featured walkthroughs — YouTube embed grid */
.rem-vidGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.75rem;
  align-items: stretch;
}

.rem-vidCard {
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(31, 41, 55, 0.95) 0%, #111827 55%, #0b1220 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(9, 6, 183, 0.12),
    0 20px 48px rgba(0, 0, 0, 0.45);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.rem-vidCard:hover {
  transform: translateY(-5px);
  border-color: rgba(203, 0, 1, 0.35);
  box-shadow:
    0 0 0 1px rgba(203, 0, 1, 0.2),
    0 28px 56px rgba(0, 0, 0, 0.55);
}

.rem-vidCard__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #030712;
  isolation: isolate;
}

.rem-vidCard__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  z-index: 1;
}

.rem-vidCard__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.rem-vidCard__body {
  padding: 1.25rem 1.35rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.rem-vidCard__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.rem-vidCard__badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
}

.rem-vidCard__badge--sold {
  background: var(--afri-red);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 14px rgba(203, 0, 1, 0.35);
}

.rem-vidCard__badge--film {
  background: rgba(9, 6, 183, 0.45);
  color: #e0e7ff;
  border-color: rgba(165, 180, 252, 0.25);
}

.rem-vidCard__body h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.25;
}

.rem-vidCard__meta {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: #9ca3af;
}

.rem-vidCard__loc {
  margin-right: 0.2rem;
  opacity: 0.85;
}

.rem-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.rem-btn--outlineLight {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.rem-btn--outlineLight:hover {
  background: #fff;
  color: #111827;
}

.rem-btn--cta {
  background: var(--afri-red);
  color: #fff;
  font-size: 1.05rem;
  padding: 1.1rem 1.75rem;
  box-shadow: 0 16px 40px rgba(203, 0, 1, 0.35);
}

.rem-btn--cta:hover {
  background: #a80001;
  transform: scale(1.02);
}

/* Process */
.rem-stepGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.rem-stepWrap {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
}

.rem-step {
  flex: 1;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 1.25rem;
  padding: 2rem;
  height: 100%;
  transition: border-color 0.25s ease;
}

.rem-step:hover {
  border-color: rgba(9, 6, 183, 0.25);
}

.rem-step__num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(9, 6, 183, 0.12);
  line-height: 1;
  margin-bottom: 1.25rem;
  transition: color 0.25s ease;
}

.rem-step:hover .rem-step__num {
  color: rgba(9, 6, 183, 0.22);
}

.rem-step h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #111827;
}

.rem-step p {
  margin: 0;
  color: #6b7280;
  line-height: 1.55;
  font-size: 0.95rem;
}

.rem-step__arrow {
  display: none;
  align-self: center;
  color: #d1d5db;
  font-size: 1.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Final CTA */
.rem-final {
  position: relative;
  padding: 6rem 0;
  background: #000;
  color: #fff;
  overflow: hidden;
}

.rem-final__blobs {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
}

.rem-final__blob {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(100px);
}

.rem-final__blob--red {
  top: 0;
  left: 0;
  background: var(--afri-red);
}

.rem-final__blob--blue {
  bottom: 0;
  right: 0;
  background: var(--afri-blue);
}

.rem-final__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
}

.rem-final h2 {
  margin: 0 0 1.25rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
}

.rem-final p {
  margin: 0 auto 2.25rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #d1d5db;
  line-height: 1.6;
  max-width: 42rem;
}

.rem-trustRow {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.rem-trustRow li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.rem-trustRow__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  padding: 0;
  list-style: none;
}

.rem-shield {
  color: var(--afri-red);
  font-size: 0.65rem;
}

@media (min-width: 1024px) {
  .rem-step__arrow {
    display: inline-flex;
  }
}

@media (max-width: 1024px) {
  .rem-hero__grid {
    grid-template-columns: 1fr;
  }
  .rem-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .rem-vidGrid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .rem-stepGrid {
    grid-template-columns: 1fr;
  }
  .rem-step__arrow {
    display: none;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .rem-vidGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .rem-probGrid {
    grid-template-columns: 1fr;
  }
  .rem-hero {
    min-height: auto;
    padding: 4.5rem 0 3rem;
  }
  .rem-section {
    padding: 4rem 0;
  }
}

/* Digital marketing page */
.dm-page { background: #fff; }
.dm-section { padding: 86px 0; }
.dm-section--dark { background: #111827; color: #fff; }
.dm-section--soft { background: #f8fafc; }
.dm-section--cta { background: linear-gradient(135deg, #cb0001, #a80001); color: #fff; }
.dm-head { text-align: center; max-width: 780px; margin: 0 auto 30px; }
.dm-head h2 { margin: 0 0 12px; font-size: clamp(2rem, 4vw, 3rem); }
.dm-head h2 span { color: var(--afri-red); }
.dm-head p { margin: 0; color: var(--text-700); }
.dm-head--light p { color: #cbd5e1; }

.dm-pill { display: inline-flex; padding: 8px 14px; border-radius: 999px; background: rgba(9, 6, 183, 0.1); color: var(--afri-blue); font-weight: 700; font-size: 0.86rem; }
.dm-btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; text-decoration: none; font-weight: 800; padding: 12px 20px; border: 2px solid transparent; }
.dm-btn--red { background: var(--afri-red); color: #fff; }
.dm-btn--blue { border-color: var(--afri-blue); color: var(--afri-blue); background: #fff; }
.dm-btn--white { background: #fff; color: var(--afri-red); }
.dm-btn--block { width: 100%; border: 0; }

.dm-hero { padding: 78px 0; background: linear-gradient(135deg, #fff, #f8fafc); }
.dm-hero__grid { display: grid; gap: 26px; grid-template-columns: 1fr 1fr; align-items: center; }
.dm-hero__copy h1 { margin: 14px 0 12px; font-size: clamp(2.2rem, 5vw, 3.9rem); line-height: 1.1; }
.dm-hero__copy h1 span { color: var(--afri-blue); }
.dm-hero__copy p { margin: 0; color: var(--text-700); line-height: 1.7; font-size: 1.08rem; }
.dm-actions { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; }
.dm-kpis { margin-top: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.dm-kpis strong { display: block; color: var(--afri-blue); font-size: 1.8rem; }
.dm-kpis span { color: #64748b; font-size: 0.92rem; }
.dm-board { position: relative; background: #fff; border-radius: 16px; box-shadow: 0 20px 54px rgba(2, 6, 23, 0.16); padding: 14px; }
.dm-board img { width: 100%; border-radius: 12px; display: block; }
.dm-float { position: absolute; background: #fff; border-radius: 12px; box-shadow: 0 14px 35px rgba(2, 6, 23, 0.2); padding: 10px 12px; }
.dm-float span { display: block; font-weight: 800; }
.dm-float small { color: #64748b; }
.dm-float--a { top: -12px; right: -10px; }
.dm-float--b { left: -10px; bottom: -12px; }

.dm-proof-grid { display: grid; gap: 16px; grid-template-columns: repeat(4, 1fr); }
.dm-proof { background: rgba(31, 41, 55, 0.62); border: 1px solid #374151; border-radius: 14px; overflow: hidden; }
.dm-proof img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.dm-proof span { margin: 10px; display: inline-flex; background: var(--afri-red); color: #fff; border-radius: 999px; padding: 4px 10px; font-size: 0.8rem; font-weight: 700; }
.dm-proof p { margin: 0; padding: 0 12px 14px; color: #e5e7eb; font-size: 0.92rem; line-height: 1.5; }

.dm-problems { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); }
.dm-problems article { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 16px; box-shadow: 0 8px 24px rgba(2, 6, 23, 0.05); }
.dm-problems h3 { margin: 0 0 6px; }
.dm-problems p { margin: 0; color: #64748b; line-height: 1.6; }

.dm-approach { display: grid; gap: 24px; grid-template-columns: 1.1fr 0.9fr; align-items: center; }
.dm-approach h2 { margin: 12px 0; font-size: clamp(1.9rem, 4vw, 2.8rem); }
.dm-approach h2 span { color: var(--afri-blue); }
.dm-approach p { margin: 0; color: #64748b; line-height: 1.7; }
.dm-approach ul { margin: 16px 0 0; padding-left: 18px; color: #334155; display: grid; gap: 8px; }
.dm-flow { background: linear-gradient(135deg, #0906b7, #0505a0); color: #fff; border-radius: 18px; padding: 20px; display: grid; gap: 10px; text-align: center; box-shadow: 0 18px 45px rgba(9, 6, 183, 0.3); }
.dm-flow div { background: rgba(255, 255, 255, 0.12); border-radius: 10px; padding: 10px; font-weight: 700; }
.dm-flow span { opacity: 0.9; }

.dm-services { display: grid; gap: 16px; grid-template-columns: repeat(4, 1fr); }
.dm-services article { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 18px; box-shadow: 0 12px 28px rgba(2, 6, 23, 0.06); }
.dm-services h3 { margin: 0 0 6px; font-size: 1.1rem; }
.dm-services p { margin: 0; color: #64748b; line-height: 1.6; }

.dm-cta { text-align: center; max-width: 850px; margin: 0 auto; }
.dm-cta h2 { margin: 0 0 12px; font-size: clamp(2rem, 4vw, 3.5rem); }
.dm-cta h2 span { color: #fde68a; }
.dm-cta p { margin: 0 auto 20px; color: #fee2e2; max-width: 680px; }

.dm-audit { display: grid; gap: 24px; grid-template-columns: 1fr 1fr; align-items: start; }
.dm-audit h2 { margin: 12px 0; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.dm-audit p { margin: 0; color: #64748b; line-height: 1.7; }
.dm-form { background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; box-shadow: 0 16px 40px rgba(2, 6, 23, 0.1); padding: 18px; display: grid; gap: 10px; }
.dm-form input, .dm-form select, .dm-form textarea { width: 100%; border: 1px solid #d1d5db; border-radius: 10px; padding: 11px 12px; font: inherit; }
.dm-form textarea { resize: vertical; min-height: 100px; }
.dm-form input:focus, .dm-form select:focus, .dm-form textarea:focus { outline: none; border-color: rgba(9, 6, 183, 0.35); box-shadow: 0 0 0 3px rgba(9, 6, 183, 0.1); }
.dm-success { border-radius: 10px; border: 1px solid rgba(16, 185, 129, 0.25); background: rgba(16, 185, 129, 0.08); color: #065f46; font-weight: 700; padding: 8px 10px; }
.dm-two-col { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.dm-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; box-shadow: 0 12px 28px rgba(2,6,23,.08); padding: 14px; }
.dm-card img { width: 100%; border-radius: 10px; display: block; }
.dm-card p { margin: 10px 0 0; color: #64748b; text-align: center; }
.dm-list-cards { display: grid; gap: 10px; }
.dm-list-cards article { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 14px; }
.dm-list-cards h3 { margin: 0 0 6px; font-size: 1rem; }
.dm-list-cards p { margin: 0; color: #64748b; line-height: 1.6; }
.dm-analytics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.dm-analytics article { border-radius: 12px; padding: 16px; color: #fff; box-shadow: 0 12px 24px rgba(2,6,23,.15); }
.dm-analytics article:nth-child(1) { background: linear-gradient(135deg,#3b82f6,#2563eb); }
.dm-analytics article:nth-child(2) { background: linear-gradient(135deg,#ef4444,#dc2626); }
.dm-analytics article:nth-child(3) { background: linear-gradient(135deg,#10b981,#059669); }
.dm-analytics article:nth-child(4) { background: linear-gradient(135deg,#8b5cf6,#7c3aed); }
.dm-analytics h3 { margin: 0 0 4px; font-size: 2rem; }
.dm-analytics p { margin: 0; opacity: .9; font-size: .92rem; }
.dm-analytics small { opacity: .95; font-weight: 700; font-size: .78rem; }
.dm-report { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; box-shadow: 0 12px 30px rgba(2,6,23,.08); padding: 16px; display: grid; gap: 10px; }
.dm-report__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; border-bottom: 1px solid #f1f5f9; padding: 10px 0; }
.dm-report__row:last-child { border-bottom: 0; }
.dm-report__row span { color: #64748b; }
.dm-report__row strong { color: #0f172a; }
.dm-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.dm-steps article { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 14px; box-shadow: 0 8px 22px rgba(2,6,23,.06); }
.dm-steps strong { font-size: 1.4rem; color: rgba(9,6,183,.3); }
.dm-steps h3 { margin: 6px 0; }
.dm-steps p { margin: 0; color: #64748b; line-height: 1.55; font-size: .92rem; }
.dm-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.dm-testimonials article { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 16px; box-shadow: 0 10px 24px rgba(2,6,23,.07); }
.dm-testimonials p { margin: 0 0 10px; color: #334155; line-height: 1.6; }
.dm-testimonials h4 { margin: 0; }
.dm-testimonials small { color: #64748b; }
.dm-why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.dm-why article { background: linear-gradient(135deg,#f8fafc,#fff); border: 1px solid #e5e7eb; border-radius: 12px; padding: 14px; }
.dm-why h3 { margin: 0 0 6px; font-size: 1rem; }
.dm-why p { margin: 0; color: #64748b; line-height: 1.55; font-size: .9rem; }

@media (max-width: 1080px) {
  .dm-proof-grid, .dm-services { grid-template-columns: repeat(2, 1fr); }
  .dm-problems { grid-template-columns: repeat(2, 1fr); }
  .dm-hero__grid, .dm-approach, .dm-audit { grid-template-columns: 1fr; }
  .dm-two-col { grid-template-columns: 1fr; }
  .dm-analytics, .dm-steps, .dm-why { grid-template-columns: repeat(2, 1fr); }
  .dm-testimonials { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .dm-proof-grid, .dm-services, .dm-problems, .dm-kpis, .dm-analytics, .dm-steps, .dm-why { grid-template-columns: 1fr; }
  .dm-actions .dm-btn { width: 100%; }
}

/* Content creation page */
.cc-page { background: #fff; }
.cc-section { padding: 84px 0; }
.cc-section--soft { background: #f8fafc; }
.cc-section--gradient { background: linear-gradient(135deg, #cb0001, #0906b7); color: #fff; }
.cc-head { text-align: center; max-width: 760px; margin: 0 auto 28px; }
.cc-head h2 { margin: 0 0 10px; font-size: clamp(2rem, 4vw, 3rem); }
.cc-head h2 span { color: var(--afri-red); }
.cc-head p { margin: 0; color: #64748b; }
.cc-pill { display: inline-flex; padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(203,0,1,.4); background: rgba(203,0,1,.15); color: #fecaca; font-size: .84rem; font-weight: 700; }
.cc-btn { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; border-radius: 999px; padding: 12px 20px; font-weight: 800; border: 1px solid transparent; }
.cc-btn--red { background: var(--afri-red); color: #fff; }
.cc-btn--ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.3); }
.cc-btn--block { width: 100%; border: 0; }

.cc-hero { background: radial-gradient(circle at 15% 20%, rgba(203,0,1,.25), transparent 40%), linear-gradient(135deg, #111827, #0b0f19); color: #fff; padding: 82px 0; }
.cc-hero__grid { display: grid; gap: 24px; grid-template-columns: 1fr 1fr; align-items: center; }
.cc-copy h1 { margin: 14px 0 10px; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.08; }
.cc-copy h1 span { color: #fca5a5; }
.cc-copy p { margin: 0; color: #d1d5db; line-height: 1.72; font-size: 1.06rem; }
.cc-actions { margin-top: 18px; display: flex; gap: 10px; flex-wrap: wrap; }
.cc-kpis { margin-top: 18px; border-top: 1px solid rgba(255,255,255,.2); padding-top: 16px; display: grid; gap: 12px; grid-template-columns: repeat(3,1fr); }
.cc-kpis strong { display: block; font-size: 1.8rem; color: #fff; }
.cc-kpis span { color: #9ca3af; font-size: .9rem; }

.cc-mosaic { display: grid; gap: 10px; grid-template-columns: 1fr 1fr; }
.cc-mosaic img { width: 100%; border-radius: 14px; box-shadow: 0 14px 34px rgba(2,6,23,.4); }
.cc-mosaic img:nth-child(1), .cc-mosaic img:nth-child(4) { height: 240px; object-fit: cover; }
.cc-mosaic img:nth-child(2), .cc-mosaic img:nth-child(3) { height: 300px; object-fit: cover; }

.cc-portfolio { display: grid; gap: 14px; grid-template-columns: repeat(4,1fr); }
.cc-portfolio article { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid #e5e7eb; box-shadow: 0 10px 22px rgba(2,6,23,.06); }
.cc-portfolio img { width: 100%; height: 210px; object-fit: cover; display: block; }
.cc-portfolio h3 { margin: 0; padding: 12px; }

.cc-portfolio-filters {
  margin-bottom: 1.75rem;
}

.cc-vidGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.cc-vidCard {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.cc-vidCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.12);
}

.cc-vidCard__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0f172a;
}

.cc-vidCard__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.cc-vidCard__body {
  padding: 1rem 1.1rem 1.15rem;
}

.cc-vidCard__row {
  margin-bottom: 0.35rem;
}

.cc-vidCard__badge {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(9, 6, 183, 0.1);
  color: var(--afri-blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cc-vidCard__badge--film {
  background: rgba(203, 0, 1, 0.08);
  color: var(--afri-red);
}

.cc-vidCard__body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}

.cc-vidCard__meta {
  margin: 0;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.55;
}

.cc-vidCard__loc {
  margin-right: 0.2rem;
  opacity: 0.75;
}

.cc-challenges { display: grid; gap: 14px; grid-template-columns: repeat(3,1fr); }
.cc-challenges article { background: #f9fafb; border-radius: 14px; padding: 18px; text-align: center; border: 1px solid #e5e7eb; }
.cc-challenges h3 { margin: 0 0 6px; }
.cc-challenges p { margin: 0; color: #64748b; line-height: 1.6; }

.cc-solution { display: grid; gap: 22px; align-items: center; grid-template-columns: 1.1fr .9fr; }
.cc-solution h2 { margin: 0 0 10px; font-size: clamp(1.9rem,4vw,2.8rem); }
.cc-solution p { margin: 0; color: #e2e8f0; line-height: 1.7; }
.cc-solution ul { margin: 14px 0 0; padding-left: 18px; display: grid; gap: 8px; color: #fff; }
.cc-solution img { width: 100%; border-radius: 14px; box-shadow: 0 20px 45px rgba(2,6,23,.35); }

.cc-inquiry { display: grid; gap: 22px; grid-template-columns: 1fr 1fr; align-items: start; }
.cc-inquiry h2 { margin: 0 0 10px; font-size: clamp(2rem,4vw,3rem); }
.cc-inquiry h2 span { color: var(--afri-red); }
.cc-inquiry p { margin: 0; color: #64748b; line-height: 1.7; }
.cc-form { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 16px; box-shadow: 0 14px 34px rgba(2,6,23,.09); padding: 18px; display: grid; gap: 10px; }
.cc-form input, .cc-form select, .cc-form textarea { width: 100%; border-radius: 10px; border: 1px solid #d1d5db; padding: 11px 12px; font: inherit; }
.cc-form textarea { resize: vertical; min-height: 100px; }
.cc-form input:focus, .cc-form select:focus, .cc-form textarea:focus { outline: none; border-color: rgba(203,0,1,.35); box-shadow: 0 0 0 3px rgba(203,0,1,.1); }
.cc-success { border-radius: 10px; border: 1px solid rgba(16,185,129,.25); background: rgba(16,185,129,.08); color: #065f46; font-weight: 700; padding: 8px 10px; }
.cc-error { border-radius: 10px; border: 1px solid rgba(220,38,38,.28); background: rgba(254,226,226,.65); color: #991b1b; font-weight: 700; padding: 8px 10px; }
.cc-steps { display: grid; gap: 12px; grid-template-columns: repeat(4,1fr); }
.cc-steps article { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 14px; box-shadow: 0 10px 22px rgba(2,6,23,.06); }
.cc-steps strong { color: rgba(9,6,183,.3); font-size: 1.5rem; display: block; }
.cc-steps h3 { margin: 6px 0; }
.cc-steps p { margin: 0; color: #64748b; line-height: 1.55; font-size: .92rem; }
.cc-testimonials { display: grid; gap: 12px; grid-template-columns: repeat(3,1fr); }
.cc-testimonials article { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 15px; box-shadow: 0 10px 22px rgba(2,6,23,.06); }
.cc-testimonials p { margin: 0 0 8px; color: #334155; line-height: 1.6; }
.cc-testimonials h4 { margin: 0; }
.cc-cta { text-align: center; max-width: 760px; margin: 0 auto; }
.cc-cta h2 { margin: 0 0 10px; font-size: clamp(2rem,4vw,3rem); }
.cc-cta p { margin: 0 0 18px; color: #e2e8f0; line-height: 1.7; }

@media (max-width: 1080px) {
  .cc-hero__grid, .cc-solution, .cc-inquiry { grid-template-columns: 1fr; }
  .cc-portfolio { grid-template-columns: repeat(2,1fr); }
  .cc-vidGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cc-challenges { grid-template-columns: 1fr; }
  .cc-steps { grid-template-columns: repeat(2,1fr); }
  .cc-testimonials { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cc-kpis, .cc-portfolio, .cc-steps { grid-template-columns: 1fr; }
  .cc-vidGrid { grid-template-columns: 1fr; }
  .cc-actions .cc-btn { width: 100%; }
}

/* Success stories page */
.ss-page { background: #fff; padding-bottom: 70px; overflow-x: hidden; }

.ss-hero {
  position: relative;
  padding: clamp(4.5rem, 9vw, 6.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  overflow: hidden;
}
.ss-hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(9, 6, 183, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(203, 0, 1, 0.08), transparent 50%),
    linear-gradient(145deg, #f0f4ff 0%, #fff5f5 42%, #ffffff 100%);
  pointer-events: none;
}
.ss-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}
.ss-hero__grid > * {
  min-width: 0;
}
.ss-hero__kicker {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--afri-blue);
}
.ss-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.ss-hero__lead {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
  color: #475569;
}
.ss-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-start;
}
.ss-hero__meta {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
}
.ss-hero__meta li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.ss-hero__meta strong {
  font-size: 1.15rem;
  color: var(--afri-blue);
  line-height: 1.2;
}
.ss-hero__meta span {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.4;
}
.ss-hero__visual {
  position: relative;
}
.ss-hero__frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(100%, 480px);
  margin-left: auto;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 28px 56px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.ss-hero__img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}
.ss-hero__thumbs {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}
.ss-hero__thumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1 1 calc(33.333% - 0.35rem);
  min-width: 0;
  padding: 0.35rem 0.5rem 0.35rem 0.35rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.08);
  text-decoration: none;
  color: #0f172a;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.ss-hero__thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(9, 6, 183, 0.25);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.12);
}
.ss-hero__thumb img {
  width: 52px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}
.ss-hero__thumb span {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.ss-hero__thumb--lekha-trading img,
.ss-story--lekha-trading .ss-story__media img { object-position: top center; }
.ss-hero__thumb--his-and-her-scents img,
.ss-story--his-and-her-scents .ss-story__media img { object-position: center center; }
.ss-hero__thumb--josatronic-data-systems img,
.ss-story--josatronic-data-systems .ss-story__media img { object-position: center 28%; }
.ss-hero__blob {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  filter: blur(46px);
  opacity: 0.5;
  pointer-events: none;
}
.ss-hero__blob--blue {
  right: -12px;
  top: -20px;
  background: #93c5fd;
}
.ss-hero__blob--red {
  left: -24px;
  bottom: 12%;
  background: #fca5a5;
}

.ss-btn { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; border-radius: 999px; padding: 12px 20px; font-weight: 800; border: 2px solid transparent; }
.ss-btn--blue { background: var(--afri-blue); color: #fff; }
.ss-btn--outline { border-color: var(--afri-blue); color: var(--afri-blue); background: #fff; }
.ss-btn--white { background: #fff; color: var(--afri-blue); }
.ss-btn--red { background: var(--afri-red); color: #fff; }
.ss-btn--outlineLight { border-color: #fff; color: #fff; background: transparent; }

.ss-proof { padding: 28px 0; background: #0f172a; }
.ss-proof__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.ss-proof__grid article { text-align: center; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 10px; background: rgba(255,255,255,.04); }
.ss-proof__grid strong { display: block; color: #fff; font-size: 1.5rem; }
.ss-proof__grid span { color: #cbd5e1; font-size: .86rem; }

.ss-filterBar { position: sticky; top: 64px; z-index: 20; padding: 10px 0; background: rgba(255,255,255,.94); backdrop-filter: blur(8px); border-bottom: 1px solid #e5e7eb; }
.ss-section { padding: 82px 0; }
.ss-section--soft { background: #f8fafc; }
.ss-head { text-align: center; max-width: 760px; margin: 0 auto 28px; }
.ss-head h2 { margin: 0 0 10px; font-size: clamp(1.9rem,4vw,2.8rem); }
.ss-head p { margin: 0; color: #64748b; }

.ss-storyGrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.ss-story {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; overflow: hidden;
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ss-story:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(2,6,23,.1); border-color: rgba(9,6,183,.18); }
.ss-story__media { display: block; overflow: hidden; }
.ss-story__media img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform .35s ease; }
.ss-story:hover .ss-story__media img { transform: scale(1.04); }
.ss-story__body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.ss-story__body span { display: inline-flex; align-self: flex-start; background: rgba(9,6,183,.1); color: var(--afri-blue); border-radius: 999px; font-size: .78rem; padding: 4px 10px; font-weight: 700; }
.ss-story__body h3 { margin: 10px 0 6px; font-size: 1.15rem; line-height: 1.25; }
.ss-story__body h3 a { color: inherit; text-decoration: none; }
.ss-story__body h3 a:hover { color: var(--afri-blue); }
.ss-story__subtitle { margin: 0 0 8px !important; font-size: .88rem; font-weight: 600; color: #94a3b8 !important; }
.ss-story__body > p:last-of-type { margin: 0; color: #64748b; line-height: 1.6; font-size: .95rem; }
.ss-story__metrics { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.ss-story__metrics li { font-size: .78rem; color: #475569; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 8px; padding: 6px 10px; }
.ss-story__metrics strong { color: var(--afri-blue); margin-right: 4px; }
.ss-story__link {
  margin-top: auto; padding-top: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 800; font-size: .92rem; color: var(--afri-blue); text-decoration: none;
}
.ss-story__link:hover { color: var(--afri-red); }
.ss-story__link span { transition: transform .2s ease; }
.ss-story__link:hover span { transform: translateX(3px); }

.ss-visuals { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.ss-visuals article { border-radius: 14px; overflow: hidden; position: relative; box-shadow: 0 14px 30px rgba(2,6,23,.1); }
.ss-visuals img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.ss-visuals span { position: absolute; left: 10px; right: 10px; bottom: 10px; background: rgba(0,0,0,.65); color: #fff; border-radius: 8px; padding: 8px 10px; font-size: .86rem; }

.ss-section--ctaA { background: linear-gradient(135deg, #0906b7, #0505a0); color: #fff; }
.ss-section--ctaB { background: linear-gradient(135deg, #111827, #020617); color: #fff; }
.ss-cta { text-align: center; max-width: 760px; margin: 0 auto; }
.ss-cta h2 { margin: 0 0 10px; font-size: clamp(2rem, 4vw, 3rem); }
.ss-cta p { margin: 0 auto 20px; color: #cbd5e1; }

.ss-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.ss-steps article { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 16px; box-shadow: 0 10px 24px rgba(2,6,23,.05); }
.ss-steps strong { font-size: 2rem; color: rgba(9,6,183,.22); display: block; }
.ss-steps h3 { margin: 4px 0 6px; }
.ss-steps p { margin: 0; color: #64748b; line-height: 1.55; }

.ss-testimonials { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.ss-testimonials article { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 16px; box-shadow: 0 12px 28px rgba(2,6,23,.06); }
.ss-testimonials p { margin: 0 0 10px; color: #374151; line-height: 1.6; }
.ss-testimonials h4 { margin: 0; }
.ss-testimonials small { color: #64748b; }

@media (max-width: 1080px) {
  .ss-proof__grid, .ss-storyGrid, .ss-steps, .ss-testimonials, .ss-visuals { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 1024px) {
  .ss-hero__grid {
    grid-template-columns: 1fr;
  }
  .ss-hero__visual {
    order: -1;
    max-width: min(100%, 420px);
    margin: 0 auto;
    width: 100%;
  }
  .ss-hero__frame {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .ss-hero__copy {
    text-align: center;
  }
  .ss-actions {
    justify-content: center;
  }
  .ss-hero__meta {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 640px) {
  .ss-proof__grid, .ss-storyGrid, .ss-steps, .ss-testimonials, .ss-visuals { grid-template-columns: 1fr; }
  .ss-actions .ss-btn { width: 100%; max-width: 320px; }
  .ss-story__media img { height: 200px; }
  .ss-hero { padding-top: clamp(3.5rem, 12vw, 4.5rem); }
  .ss-hero__meta { grid-template-columns: 1fr; }
  .ss-hero__thumb {
    flex: 1 1 100%;
  }
  .ss-hero__thumb img {
    width: 56px;
    height: 44px;
  }
  .ss-hero__frame,
  .ss-hero__img {
    aspect-ratio: 1 / 1;
  }
  .ss-filterBar { top: 56px; }
  .ss-section { padding: 56px 0; }
  .ss-proof__grid article span { font-size: 0.8rem; }
}

/* Case study detail */
.cs-page { background: #fff; padding-bottom: 0; }
.cs-hero {
  position: relative; min-height: clamp(320px, 52vh, 520px);
  display: flex; align-items: flex-end; padding: 48px 0 56px; overflow: hidden;
}
.cs-hero__media { position: absolute; inset: 0; }
.cs-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cs-hero--lekha-trading .cs-hero__media img { object-position: top center; }
.cs-hero--his-and-her-scents .cs-hero__media img { object-position: center center; }
.cs-hero--josatronic-data-systems .cs-hero__media img { object-position: center 28%; }
.cs-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.25) 0%, rgba(15,23,42,.88) 72%);
}
.cs-hero__inner { position: relative; z-index: 1; color: #fff; max-width: 820px; }
.cs-breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin: 0 0 16px; font-size: .86rem; color: rgba(255,255,255,.75);
}
.cs-breadcrumb a { color: #fff; text-decoration: none; }
.cs-breadcrumb a:hover { text-decoration: underline; }
.cs-pill {
  display: inline-flex; margin-bottom: 12px; padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22);
  font-size: .8rem; font-weight: 700;
}
.cs-hero h1 { margin: 0 0 10px; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.1; }
.cs-hero__subtitle { margin: 0; max-width: 640px; color: rgba(255,255,255,.85); line-height: 1.65; font-size: 1.05rem; }
.cs-hero__metrics {
  list-style: none; margin: 22px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.cs-hero__metrics li {
  display: flex; flex-direction: column; gap: 2px;
  min-width: 120px; padding: 10px 14px; border-radius: 12px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
}
.cs-hero__metrics strong { font-size: 1.25rem; line-height: 1; }
.cs-hero__metrics span { font-size: .78rem; color: rgba(255,255,255,.8); }

.cs-section { padding: 72px 0; }
.cs-section--soft { background: #f8fafc; }
.cs-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 28px; align-items: start;
}
.cs-main { display: grid; gap: 20px; }
.cs-block {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
  padding: 22px 24px; box-shadow: 0 8px 24px rgba(2,6,23,.04);
}
.cs-block--accent {
  background: linear-gradient(135deg, rgba(9,6,183,.06), rgba(203,0,1,.04));
  border-color: rgba(9,6,183,.14);
}
.cs-block h2 { margin: 0 0 12px; font-size: clamp(1.35rem, 3vw, 1.75rem); }
.cs-block h3 { margin: 0 0 10px; font-size: 1.05rem; color: #0f172a; }
.cs-block p { margin: 0; color: #475569; line-height: 1.75; }
.cs-list { margin: 0; padding-left: 1.2rem; color: #475569; line-height: 1.7; }
.cs-list li + li { margin-top: 8px; }
.cs-list--check { list-style: none; padding: 0; }
.cs-list--check li {
  position: relative; padding-left: 1.5rem;
}
.cs-list--check li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--afri-blue); font-weight: 800;
}
.cs-tags {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cs-tags li {
  padding: 8px 12px; border-radius: 999px; font-size: .86rem; font-weight: 600;
  background: rgba(9,6,183,.08); color: var(--afri-blue); border: 1px solid rgba(9,6,183,.12);
}
.cs-execGrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.cs-resultsGrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }

.cs-aside { position: sticky; top: 88px; }
.cs-asideCard {
  background: #0f172a; color: #fff; border-radius: 16px; padding: 22px;
  box-shadow: 0 16px 40px rgba(2,6,23,.18);
}
.cs-asideCard h3 { margin: 0 0 12px; font-size: 1.1rem; }
.cs-asideList { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 8px; }
.cs-asideList li {
  padding: 8px 10px; border-radius: 8px; background: rgba(255,255,255,.06);
  font-size: .9rem; color: #e2e8f0;
}
.cs-btn {
  display: flex; align-items: center; justify-content: center; width: 100%;
  text-align: center; text-decoration: none; border-radius: 999px;
  padding: 12px 16px; font-weight: 800; border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease;
}
.cs-btn + .cs-btn { margin-top: 10px; }
.cs-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(2,6,23,.15); }
.cs-btn--primary { background: var(--afri-red); color: #fff; }
.cs-btn--ghost { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.cs-btn--white { background: #fff; color: var(--afri-blue); width: auto; display: inline-flex; }

.cs-relatedHead {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-bottom: 22px;
}
.cs-relatedHead h2 { margin: 0; font-size: clamp(1.5rem, 3vw, 2rem); }
.cs-relatedHead a { color: var(--afri-blue); font-weight: 700; text-decoration: none; }
.cs-relatedHead a:hover { text-decoration: underline; }

.cs-cta {
  padding: 72px 0; background: linear-gradient(135deg, #0906b7, #0505a0); color: #fff;
}
.cs-cta__inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cs-cta__inner h2 { margin: 0 0 10px; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cs-cta__inner p { margin: 0 0 20px; color: rgba(255,255,255,.85); line-height: 1.65; }

@media (max-width: 960px) {
  .cs-layout { grid-template-columns: 1fr; }
  .cs-aside { position: static; }
  .cs-resultsGrid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cs-hero { min-height: 280px; padding: 36px 0 44px; }
  .cs-section { padding: 52px 0; }
  .cs-block { padding: 18px 16px; }
  .cs-hero__metrics li { min-width: calc(50% - 6px); flex: 1 1 calc(50% - 6px); }
}

/* Digital marketing parity rebuild */
.dmx-page { background:#fff; }
.dmx-page .container {
  width: min(1240px, 92%);
}
.dmx-section { padding:82px 0; }
.dmx-section--soft { background:#f8fafc; }
.dmx-section--dark { background:linear-gradient(180deg,#111827,#1f2937); color:#fff; }
.dmx-section--cta { background:linear-gradient(135deg,#cb0001,#a80001); color:#fff; }
.dmx-head { text-align:center; max-width:780px; margin:0 auto 28px; }
.dmx-head h2 { margin:0 0 10px; font-size:clamp(2rem,4vw,3rem); }
.dmx-head h2 span { color:var(--afri-blue); }
.dmx-head p { margin:0; color:#64748b; line-height:1.65; }
.dmx-head--light p { color:#cbd5e1; }
.dmx-pill { display:inline-flex; padding:8px 14px; border-radius:999px; background:rgba(9,6,183,.1); color:var(--afri-blue); font-weight:700; font-size:.85rem; }
.dmx-btn { display:inline-flex; align-items:center; justify-content:center; text-decoration:none; border-radius:999px; border:2px solid transparent; padding:12px 20px; font-weight:800; }
.dmx-btn--red { background:var(--afri-red); color:#fff; }
.dmx-btn--outline { background:#fff; color:var(--afri-blue); border-color:var(--afri-blue); }
.dmx-btn--white { background:#fff; color:var(--afri-red); }
.dmx-btn--block { width:100%; }
.dmx-btn {
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.dmx-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(2, 6, 23, .18);
}
.dmx-btn--red:hover {
  background: #a80001;
}
.dmx-btn--outline:hover {
  background: var(--afri-blue);
  color: #fff;
}
.dmx-hero { padding:84px 0; background:linear-gradient(135deg,#fff,#f8fafc); }
.dmx-hero__grid { display:grid; gap:24px; grid-template-columns:1fr 1fr; align-items:center; }
.dmx-hero h1 { margin:14px 0 10px; font-size:clamp(2.25rem,5vw,3.8rem); line-height:1.1; }
.dmx-hero h1 span { color:var(--afri-blue); }
.dmx-hero p { margin:0; color:#64748b; line-height:1.72; font-size:1.05rem; }
.dmx-actions { margin-top:18px; display:flex; gap:10px; flex-wrap:wrap; }
.dmx-kpis { margin-top:18px; display:grid; gap:10px; grid-template-columns:repeat(3,1fr); }
.dmx-kpis strong { display:block; color:var(--afri-blue); font-size:1.75rem; }
.dmx-kpis span { color:#64748b; font-size:.9rem; }
.dmx-dashboard { position:relative; background:#fff; border-radius:16px; box-shadow:0 18px 45px rgba(2,6,23,.15); padding:14px; }
.dmx-dashboard img { width:100%; border-radius:10px; display:block; }
.dmx-float { position:absolute; background:#fff; border-radius:10px; box-shadow:0 14px 30px rgba(2,6,23,.2); padding:10px 12px; }
.dmx-float span { display:block; font-weight:800; }
.dmx-float small { color:#64748b; font-size:.82rem; }
.dmx-float--a { top:-14px; right:-10px; }
.dmx-float--b { bottom:-14px; left:-10px; }
.dmx-dashboard {
  transition: transform .28s ease, box-shadow .28s ease;
}
.dmx-dashboard:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(2, 6, 23, .22);
}
.dmx-float--a {
  animation: dmx-float-a 3.2s ease-in-out infinite;
}
.dmx-float--b {
  animation: dmx-float-b 3.2s ease-in-out infinite 1s;
}
.dmx-proof-grid { display:grid; gap:14px; grid-template-columns:repeat(4,1fr); }
.dmx-proof-grid article { border:1px solid #374151; background:rgba(31,41,55,.55); border-radius:12px; overflow:hidden; }
.dmx-proof-grid img { width:100%; aspect-ratio:16/9; object-fit:cover; display:block; }
.dmx-proof-grid span { margin:10px; display:inline-flex; background:var(--afri-red); color:#fff; border-radius:999px; padding:4px 10px; font-size:.78rem; font-weight:700; }
.dmx-proof-grid p { margin:0; padding:0 12px 14px; color:#e5e7eb; line-height:1.55; font-size:.9rem; }
.dmx-proof-grid article {
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}
.dmx-proof-grid article:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 36px rgba(0, 0, 0, .28);
  border-color: rgba(203, 0, 1, .65);
}
.dmx-proof-grid article:hover img {
  transform: scale(1.05);
}
.dmx-proof-grid img {
  transition: transform .5s ease;
}

/* Google reviews (shared/sections/_google-reviews.html) */
.grev--full {
  width: 100%;
  max-width: none;
  margin: 0;
}

.grev__head-inner,
.grev__foot-inner {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 0 4%;
}

.grev__head-inner .dmx-head {
  margin-bottom: 26px;
}

.grev-slider--full {
  width: 100%;
  margin-top: 4px;
}

.grev-slider--full .grev-slider__viewport {
  overflow: hidden;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0 clamp(16px, 4vw, 56px);
}

.grev-slider__track {
  display: flex;
  gap: 14px;
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.grev-slider--static .grev-slider__controls {
  display: none;
}

.grev-slide.grev-card {
  box-sizing: border-box;
  padding: 22px 18px 20px;
  min-width: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 14px 36px rgba(2, 6, 23, 0.07);
}

.grev-card__quote {
  flex: 1 1 auto;
}

.grev-card__quote p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #111827;
}

@media (prefers-reduced-motion: reduce) {
  .grev-slider__track {
    transition-duration: 0.01ms;
  }
}

.grev-slide {
  box-sizing: border-box;
  min-height: 0;
}

.grev-slide__brand,
.grev-card__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #5f6368;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.grev-slide__g,
.grev-card__g {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: conic-gradient(
    #ea4335 0deg 90deg,
    #fbbc05 90deg 180deg,
    #34a853 180deg 270deg,
    #4285f4 270deg 360deg
  );
  flex-shrink: 0;
}

.grev-slide__stars,
.grev-card__stars {
  margin: 0 0 12px;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #fbbc05;
}

.grev-slide__starRow,
.grev-card__starRow {
  letter-spacing: 0.06em;
}

.grev-slide__starDim,
.grev-card__starDim {
  color: #e5e7eb;
}

.grev-slide__quote,
.grev-card__quote {
  margin: 0;
}

.grev-slide__quote p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #111827;
}

.grev-slide__foot,
.grev-card__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.grev-slide__avatar,
.grev-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.grev-slide__footText,
.grev-card__footText {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1 1 140px;
  min-width: 0;
}

.grev-slide__open,
.grev-card__open {
  margin-left: auto;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1d4ed8;
  text-decoration: none;
  white-space: nowrap;
}

.grev-slide__open:hover,
.grev-card__open:hover {
  text-decoration: underline;
}

.grev-slide__name,
.grev-card__name {
  font-style: normal;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0f172a;
}

.grev-slide__tag,
.grev-card__tag {
  font-size: 0.82rem;
  color: #64748b;
}

.grev-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}

.grev-slider__btn {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #334155;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.grev-slider__btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.grev-slider__btn:focus-visible {
  outline: 2px solid #1d4ed8;
  outline-offset: 2px;
}

.grev-slider__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.grev-slider__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.grev-slider__dot.is-active {
  background: var(--afri-red, #cb0001);
  transform: scale(1.15);
}

.grev-slider__dot:focus-visible {
  outline: 2px solid #1d4ed8;
  outline-offset: 2px;
}

.grev__foot-inner {
  margin-top: 18px;
}

.grev__attr {
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: #64748b;
}

.grev__attr a {
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: none;
}

.grev__attr a:hover {
  text-decoration: underline;
}

.grev__attrLink {
  font-weight: 600;
}

.grev__frame {
  margin-top: 22px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.08);
}

.grev__embed {
  display: block;
  width: 100%;
  border: 0;
  vertical-align: middle;
}

.grev__footnote {
  margin: 14px 0 0;
  text-align: center;
  font-size: 0.9rem;
}

.grev__link {
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: none;
}

.grev__link:hover {
  text-decoration: underline;
}

.grev__fallback {
  margin-top: 8px;
  padding: 28px 22px 26px;
  text-align: center;
  border-radius: 16px;
  border: 1px dashed #cbd5e1;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.grev__fallbackBrand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.grev__gdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.grev__gdot--blue {
  background: #4285f4;
}
.grev__gdot--red {
  background: #ea4335;
}
.grev__gdot--yellow {
  background: #fbbc05;
}
.grev__gdot--green {
  background: #34a853;
}

.grev__fallbackText {
  margin: 0 auto 16px;
  max-width: 36rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #64748b;
}

.grev__code {
  font-size: 0.82em;
  padding: 0.1em 0.35em;
  border-radius: 6px;
  background: #e2e8f0;
  color: #0f172a;
  font-weight: 600;
}

.grev__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: #fff;
  background: var(--afri-red);
  box-shadow: 0 10px 22px rgba(203, 0, 1, 0.22);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.grev__btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.dmx-problems { display:grid; gap:12px; grid-template-columns:repeat(3,1fr); }
.dmx-problems article { border:1px solid #e5e7eb; background:#fff; border-radius:12px; padding:16px; box-shadow:0 10px 24px rgba(2,6,23,.06); }
.dmx-problems h3 { margin:0 0 6px; font-size:1.02rem; }
.dmx-problems p { margin:0; color:#64748b; line-height:1.58; font-size:.92rem; }
.dmx-problem-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: 0 auto 8px;
  color: var(--afri-red);
  background: #fef2f2;
  font-weight: 700;
}
.dmx-problems article {
  text-align: center;
}
.dmx-problems article {
  transition: transform .24s ease, box-shadow .24s ease;
}
.dmx-problems article:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(2, 6, 23, .12);
}
.dmx-split { display:grid; gap:22px; grid-template-columns:1.1fr .9fr; align-items:center; }
.dmx-split h2 { margin:12px 0; font-size:clamp(1.9rem,4vw,2.8rem); }
.dmx-split h2 span { color:var(--afri-blue); }
.dmx-split p { margin:0; color:#64748b; line-height:1.68; }
.dmx-split ul { margin:14px 0 0; padding:0; display:grid; gap:10px; list-style:none; color:#334155; }
.dmx-approach-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: flex-start;
}
.dmx-approach-ic {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--afri-blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .8rem;
}
.dmx-approach-list strong {
  display: block;
  font-size: .9rem;
}
.dmx-approach-list small {
  display: block;
  color: #64748b;
  font-size: .78rem;
  margin-top: 1px;
}
.dmx-flow { background:linear-gradient(135deg,#0707c8,#0505a0); color:#fff; border-radius:16px; padding:16px; display:grid; gap:8px; text-align:center; box-shadow:0 16px 35px rgba(9,6,183,.3); }
.dmx-flow div { background:rgba(255,255,255,.14); border-radius:10px; padding:10px; font-weight:700; }
.dmx-flow div span {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}
.dmx-flow div {
  transition: transform .2s ease, background .2s ease;
}
.dmx-flow div:hover {
  transform: scale(1.02);
  background: rgba(255, 255, 255, .22);
}
.dmx-two-col { display:grid; gap:16px; grid-template-columns:1fr 1fr; }
.dmx-media-wrap {
  display: grid;
  gap: 10px;
}
.dmx-media-card { background:#fff; border:1px solid #e5e7eb; border-radius:14px; box-shadow:0 12px 28px rgba(2,6,23,.08); padding:14px; }
.dmx-media-card img { width:100%; border-radius:10px; display:block; }
.dmx-media-card p { margin:10px 0 0; color:#64748b; text-align:center; }
.dmx-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.dmx-mini-stats article {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 12px;
}
.dmx-mini-stats strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}
.dmx-mini-stats span {
  color: #64748b;
  font-size: .76rem;
}
.dmx-stack { display:grid; gap:10px; }
.dmx-stack article { background:#fff; border:1px solid #e5e7eb; border-radius:12px; padding:14px; }
.dmx-stack h3 { margin:0 0 6px; font-size:1rem; }
.dmx-stack p { margin:0; color:#64748b; line-height:1.6; }
.dmx-stack--success {
  border-color: rgba(16, 185, 129, .35) !important;
  background: rgba(16, 185, 129, .08) !important;
}
.dmx-stack--success h3 {
  color: #065f46;
}
.dmx-stack--success p {
  color: #065f46;
}
/* Digital marketing: “Powered by data analytics” chart gallery */
.dmx-analytics-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.dmx-analytics-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.dmx-analytics-card__shell {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 16px;
  padding: clamp(10px, 1.8vw, 18px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 14px 40px -12px rgba(15, 23, 42, 0.14);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}
.dmx-analytics-card:hover .dmx-analytics-card__shell {
  border-color: rgba(9, 6, 183, 0.16);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 22px 52px -14px rgba(9, 6, 183, 0.2);
  transform: translateY(-3px);
}
.dmx-analytics-card__shell img {
  width: 100%;
  min-width: min(100%, 280px);
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: contain;
}
.dmx-analytics-card figcaption {
  margin: 0;
  padding: 0 4px;
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.5;
  max-width: 68ch;
}
.dmx-analytics-showcase__pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
@media (max-width: 900px) {
  .dmx-analytics-showcase__pair {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .dmx-analytics-card:hover .dmx-analytics-card__shell {
    transform: none;
  }
}
.dmx-stack article {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.dmx-stack article:hover {
  transform: translateX(4px);
  border-color: rgba(9, 6, 183, .22);
  box-shadow: 0 12px 24px rgba(2, 6, 23, .09);
}
.dmx-analytics { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.dmx-analytics article { border-radius:12px; padding:16px; color:#fff; box-shadow:0 12px 24px rgba(2,6,23,.15); }
.dmx-analytics article:nth-child(1){ background:linear-gradient(135deg,#3b82f6,#2563eb); }
.dmx-analytics article:nth-child(2){ background:linear-gradient(135deg,#ef4444,#dc2626); }
.dmx-analytics article:nth-child(3){ background:linear-gradient(135deg,#10b981,#059669); }
.dmx-analytics article:nth-child(4){ background:linear-gradient(135deg,#8b5cf6,#7c3aed); }
.dmx-analytics h3 { margin:0 0 4px; font-size:2rem; }
.dmx-analytics p { margin:0; opacity:.9; font-size:.92rem; }
.dmx-analytics small { opacity:.95; font-weight:700; font-size:.78rem; }
.dmx-analytics article {
  transition: transform .24s ease, box-shadow .24s ease;
}
.dmx-analytics article:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(2, 6, 23, .2);
}
.dmx-report { background:#fff; border:1px solid #e5e7eb; border-radius:14px; box-shadow:0 12px 30px rgba(2,6,23,.08); padding:16px; display:grid; gap:8px; }
.dmx-report__row { display:flex; justify-content:space-between; gap:10px; border-bottom:1px solid #f1f5f9; padding:10px 0; }
.dmx-report__row:last-child { border-bottom:0; }
.dmx-report__row span { color:#64748b; }
.dmx-report__row strong { color:#0f172a; }
.dmx-services { display:grid; gap:12px; grid-template-columns:repeat(4,1fr); }
.dmx-services article { border:1px solid #e5e7eb; background:#fff; border-radius:12px; padding:16px; box-shadow:0 10px 24px rgba(2,6,23,.06); }
.dmx-services h3 { margin:0 0 6px; font-size:1rem; }
.dmx-services p { margin:0; color:#64748b; line-height:1.6; }
.dmx-services article {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.dmx-services article:hover {
  transform: translateY(-7px);
  border-color: rgba(9, 6, 183, .22);
  box-shadow: 0 20px 42px rgba(2, 6, 23, .13);
}
.dmx-steps { display:grid; gap:12px; grid-template-columns:repeat(4,1fr); }
.dmx-steps article { border:1px solid #e5e7eb; background:#fff; border-radius:12px; padding:14px; box-shadow:0 10px 24px rgba(2,6,23,.06); }
.dmx-steps strong { font-size:1.45rem; color:rgba(9,6,183,.32); }
.dmx-steps h3 { margin:6px 0; }
.dmx-steps p { margin:0; color:#64748b; line-height:1.58; font-size:.9rem; }
.dmx-steps article {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.dmx-steps article:hover {
  transform: translateY(-6px);
  border-color: rgba(9, 6, 183, .24);
  box-shadow: 0 20px 40px rgba(2, 6, 23, .12);
}
.dmx-why { display:grid; gap:12px; grid-template-columns:repeat(4,1fr); }
.dmx-why article { border:1px solid #e5e7eb; background:linear-gradient(135deg,#f8fafc,#fff); border-radius:12px; padding:14px; }
.dmx-why h3 { margin:0 0 6px; font-size:1rem; }
.dmx-why p { margin:0; color:#64748b; line-height:1.55; font-size:.9rem; }
.dmx-why article {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.dmx-why article:hover {
  transform: translateY(-6px);
  border-color: rgba(9, 6, 183, .3);
  box-shadow: 0 16px 34px rgba(2, 6, 23, .1);
}
.dmx-cta { text-align:center; max-width:760px; margin:0 auto; }
.dmx-cta h2 { margin:0 0 10px; font-size:clamp(2rem,4vw,3.2rem); }
.dmx-cta h2 span { color:#fde68a; }
.dmx-cta p { margin:0 auto 20px; color:#fee2e2; max-width:640px; }
.dmx-audit { display:grid; gap:20px; grid-template-columns:1fr 1fr; align-items:start; }
.dmx-audit h2 { margin:12px 0; font-size:clamp(1.9rem,4vw,2.8rem); }
.dmx-audit p { margin:0; color:#64748b; line-height:1.68; }
.dmx-form { background:#fff; border:1px solid #e5e7eb; border-radius:14px; box-shadow:0 14px 34px rgba(2,6,23,.09); padding:16px; display:grid; gap:10px; }
.dmx-form input,.dmx-form select,.dmx-form textarea { width:100%; border:1px solid #d1d5db; border-radius:10px; padding:11px 12px; font:inherit; }
.dmx-form textarea { resize:vertical; min-height:100px; }
.dmx-form input:focus,.dmx-form select:focus,.dmx-form textarea:focus { outline:none; border-color:rgba(9,6,183,.35); box-shadow:0 0 0 3px rgba(9,6,183,.1); }
.dmx-success { border-radius:10px; border:1px solid rgba(16,185,129,.25); background:rgba(16,185,129,.08); color:#065f46; font-weight:700; padding:8px 10px; }

@keyframes dmx-float-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes dmx-float-b {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@media (max-width:1080px){
  .dmx-hero__grid,.dmx-split,.dmx-two-col,.dmx-audit{ grid-template-columns:1fr; }
  .dmx-proof-grid,.dmx-analytics,.dmx-services,.dmx-steps,.dmx-why{ grid-template-columns:repeat(2,1fr); }
  .dmx-problems{ grid-template-columns:1fr; }
}
@media (max-width:640px){
  .dmx-proof-grid,.dmx-analytics,.dmx-services,.dmx-steps,.dmx-why,.dmx-kpis{ grid-template-columns:1fr; }
  .dmx-actions .dmx-btn{ width:100%; }
  .dmx-mini-stats { grid-template-columns: 1fr; }
}

/* Digital marketing fidelity overrides (strict) */
.dmx-page .container { width: min(1120px, 92%); }
.dmx-page h1, .dmx-page h2, .dmx-page h3, .dmx-page h4 { letter-spacing: -0.01em; }

.dmx-hero {
  padding: 80px 0 72px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}
.dmx-hero__grid { gap: 48px; }
.dmx-hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.75rem);
  line-height: 1.08;
  margin: 14px 0 14px;
}
.dmx-hero p { font-size: 1.18rem; max-width: 620px; }
.dmx-actions { gap: 14px; margin-top: 24px; }
.dmx-btn { border-radius: 10px; min-height: 50px; padding: 12px 24px; font-size: 0.98rem; }
.dmx-btn--red { box-shadow: 0 12px 24px rgba(203, 0, 1, 0.22); }
.dmx-kpis { margin-top: 28px; gap: 18px; }
.dmx-kpis strong { font-size: 2rem; }
.dmx-kpis span { font-size: 0.84rem; }
.dmx-dashboard { border-radius: 18px; padding: 16px; }
.dmx-dashboard img { border-radius: 12px; }

.dmx-section { padding: 74px 0; }
.dmx-head { margin-bottom: 34px; }
.dmx-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.dmx-head p { font-size: 1.05rem; }

.dmx-section--dark {
  background: linear-gradient(180deg, #111827 0%, #1f2937 100%);
}
.dmx-proof-grid { gap: 20px; }
.dmx-proof-grid article { border-radius: 14px; }
.dmx-proof-grid p { font-size: 0.88rem; padding: 0 14px 14px; }

.dmx-section--testimonials {
  background: #ffffff;
  overflow: hidden;
}
.dmx-section--testimonials .dmx-head { margin-bottom: 26px; }
.dmx-section--testimonials .dmx-head h2 { font-size: clamp(1.95rem, 3.2vw, 2.9rem); }
.dmx-section--testimonials .dmx-head p { font-size: 0.9rem; color: #6b7280; }

.dmx-section--soft { background: #f8fafc; }
.dmx-problems, .dmx-services, .dmx-why, .dmx-steps { gap: 14px; }
.dmx-problems article,
.dmx-services article,
.dmx-why article,
.dmx-steps article {
  border-radius: 14px;
  padding: 18px;
}

.dmx-two-col { gap: 22px; }
.dmx-media-wrap { display: grid; gap: 10px; }
.dmx-media-card { border-radius: 16px; padding: 16px; }
.dmx-media-card p { font-size: 0.9rem; }
.dmx-stack { gap: 12px; }
.dmx-stack article { border-radius: 14px; padding: 16px; }
.dmx-mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dmx-mini-stats article { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 10px 12px; }
.dmx-mini-stats strong { display: block; font-size: 1rem; margin-bottom: 2px; }
.dmx-mini-stats span { color: #64748b; font-size: .76rem; }
.dmx-stack--success { border-color: rgba(16, 185, 129, .35) !important; background: rgba(16, 185, 129, .08) !important; }
.dmx-stack--success h3, .dmx-stack--success p { color: #065f46; }

.dmx-analytics { gap: 14px; }
.dmx-analytics article { border-radius: 14px; padding: 18px; }
.dmx-analytics h3 { font-size: 2rem; margin-bottom: 6px; }

.dmx-report { border-radius: 16px; padding: 18px; }
.dmx-report__row { padding: 11px 0; }

.dmx-section--cta { padding: 86px 0; }
.dmx-cta h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
.dmx-cta p { font-size: 1.15rem; }

.dmx-audit { gap: 30px; }
.dmx-audit h2 { font-size: clamp(2rem, 4vw, 3rem); }
.dmx-form { border-radius: 16px; padding: 18px; gap: 12px; }
.dmx-form input, .dmx-form select, .dmx-form textarea { min-height: 46px; border-radius: 10px; }

@media (max-width: 1080px) {
  .dmx-hero { padding: 70px 0 60px; }
  .dmx-hero__grid { gap: 24px; }
}

/* Screenshot parity refinements */
.dmx-report-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.dmx-report-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}
.dmx-report-list li > span {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #eef2ff;
  color: var(--afri-blue);
  font-size: .78rem;
}
.dmx-report-list strong { display: block; font-size: .86rem; }
.dmx-report-list small { display: block; color: #64748b; font-size: .76rem; }
.dmx-report__head { font-size: .84rem; color: #475569; margin-bottom: 10px; }
.dmx-report__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dmx-report__stats > div { border-radius: 8px; padding: 10px; background: #f8fafc; }
.dmx-report__stats span { display: block; color: #64748b; font-size: .72rem; }
.dmx-report__stats strong { display: block; margin-top: 4px; }
.dmx-report__roas { margin-top: 10px; border-radius: 8px; padding: 10px; background: #fdf4ff; }
.dmx-report__roas span { display: block; color: #64748b; font-size: .72rem; }
.dmx-bars { margin-top: 10px; display: grid; gap: 8px; }
.dmx-bars div { display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: center; }
.dmx-bars label { color: #334155; font-size: .74rem; }
.dmx-bars b { font-size: .74rem; color: #0f172a; }
.dmx-bars .bar { grid-column: 1 / -1; height: 4px; border-radius: 999px; display: block; }
.dmx-bars .bar--blue { width: 100%; background: #1d4ed8; }
.dmx-bars .bar--green { width: 76%; background: #10b981; }
.dmx-bars .bar--red { width: 82%; background: #dc2626; }
.dmx-next { margin-top: 10px; padding-top: 10px; border-top: 1px solid #e5e7eb; }
.dmx-next > span { font-size: .74rem; color: #64748b; }
.dmx-next ul { margin: 6px 0 0; padding-left: 16px; }
.dmx-next li { font-size: .76rem; color: #334155; margin: 3px 0; }

.dmx-service-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--afri-blue);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  font-size: .8rem;
}
.dmx-services ul { margin: 10px 0 0; padding-left: 14px; }
.dmx-services li { color: #64748b; font-size: .76rem; margin: 2px 0; }
.dmx-services a { display: inline-flex; margin-top: 10px; color: var(--afri-blue); text-decoration: none; font-size: .78rem; font-weight: 700; }

.dmx-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--afri-blue);
  color: #fff;
  display: grid;
  place-items: center;
  margin: 6px auto 10px;
}
.dmx-steps article { text-align: center; position: relative; }
.dmx-steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, rgba(9, 6, 183, 0.45), rgba(203, 0, 1, 0.45));
}
.dmx-steps article strong {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--afri-red);
  color: #fff;
  font-size: .62rem;
  line-height: 18px;
}

.dmx-why article { text-align: center; }
.dmx-why-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--afri-blue), var(--afri-red));
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  font-size: .86rem;
}

.dmx-cta-meta {
  margin-top: 10px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.dmx-cta-meta span { color: #fee2e2; font-size: .74rem; }

.dmx-audit-checks {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.dmx-audit-checks li {
  position: relative;
  padding-left: 20px;
  color: #334155;
  font-size: .84rem;
}
.dmx-audit-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #10b981;
  font-weight: 800;
}
.dmx-form label {
  display: grid;
  gap: 4px;
  color: #334155;
  font-size: .82rem;
}
.dmx-form-note {
  margin: 0;
  text-align: center;
  color: #6b7280;
  font-size: .76rem;
}

@media (max-width:1080px){
  .dmx-steps article:not(:last-child)::after { content: none; }
}
@media (max-width:640px){
  .dmx-mini-stats{ grid-template-columns:1fr; }
}

/* ==========================================================================
   Shared: Our Clients section
   ========================================================================== */

.ap-clients-section {
  padding: 84px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.ap-clients-head {
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}

.ap-clients-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(9, 6, 183, 0.14);
  background: rgba(9, 6, 183, 0.05);
  color: #0906b7;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
}

.ap-clients-head h2 {
  margin: 14px 0 12px;
  color: #0f172a;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  line-height: 1.22;
}

.ap-clients-head p {
  margin: 0;
  color: #475569;
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  line-height: 1.75;
}

.ap-clients-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ap-client-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ap-client-card:hover {
  transform: translateY(-4px);
  border-color: rgba(9, 6, 183, 0.2);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.ap-client-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #cb0001, #0906b7);
  margin-bottom: 12px;
}

.ap-client-card h3 {
  margin: 0 0 6px;
  color: #111827;
  font-size: 1.08rem;
}

.ap-client-card p {
  margin: 0;
  color: #64748b;
  font-size: 0.96rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .ap-clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ap-clients-section {
    padding: 64px 0;
  }

  .ap-clients-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ap-client-card {
    border-radius: 14px;
    padding: 18px 16px;
  }
}

/* ==========================================================================
   Our Work page refinement
   ========================================================================== */
.ow-work-pages .wd-head {
  margin-bottom: 34px;
}

.ow-grid .ow-card {
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.ow-grid .ow-card .wd-project__body {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.ow-card__kicker {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(9, 6, 183, 0.08);
  color: #0906b7;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ow-grid .ow-card .wd-project__body h3 {
  margin: 0;
}

.ow-grid .ow-card .wd-project__body p {
  margin: 0 0 6px;
}

.ow-grid .ow-card .wd-project__btn {
  width: fit-content;
  background: #0906b7;
  color: #fff;
  border: 1px solid #0906b7;
}

.ow-grid .ow-card .wd-project__btn:hover {
  background: #cb0001;
  border-color: #cb0001;
}

@media (max-width: 640px) {
  .ow-grid .ow-card .wd-project__body {
    padding: 18px;
  }
}

/* Our Work — contact CTA below process */
.ow-contact-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: linear-gradient(125deg, #0f172a 0%, #0906b7 42%, #1e1b4b 100%);
  color: #fff;
}

.ow-contact-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background:
    radial-gradient(circle at 18% 30%, rgba(203, 0, 1, 0.35), transparent 45%),
    radial-gradient(circle at 88% 70%, rgba(99, 102, 241, 0.25), transparent 40%);
}

.ow-contact-cta__inner {
  position: relative;
  z-index: 1;
}

.ow-contact-cta__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: center;
}

.ow-contact-cta__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fca5a5;
}

.ow-contact-cta__title {
  margin: 0;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.ow-contact-cta__title span {
  color: #fecaca;
}

.ow-contact-cta__lead {
  margin: 1rem 0 0;
  max-width: 38rem;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.65;
  color: #cbd5e1;
}

.ow-contact-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 1.75rem;
  min-height: 56px;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  color: #fff;
  background: var(--afri-red);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 36px -10px rgba(203, 0, 1, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.ow-contact-cta__btn:hover,
.ow-contact-cta__btn:focus-visible {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 22px 44px -12px rgba(203, 0, 1, 0.55);
}

@media (max-width: 768px) {
  .ow-contact-cta__layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ow-contact-cta__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .ow-contact-cta__action {
    justify-self: stretch;
  }

  .ow-contact-cta__btn {
    width: 100%;
    white-space: normal;
  }
}

/* ==========================================================================
   Portfolio GIF showcases (website + virtual tours)
   Images keep natural aspect ratio; frames cap max height on viewports.
   ========================================================================== */

.pf-gif-kicker {
  display: inline-flex;
  margin: 0 auto 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(9, 6, 183, 0.08);
  color: var(--afri-blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wd-head .pf-gif-kicker {
  display: table;
}

.pf-web-gif-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(14px, 3vw, 26px);
  align-items: start;
}

.pf-gif-card {
  margin: 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.07);
}

.pf-gif-card__frame {
  margin: 0;
  padding: clamp(12px, 2.5vw, 18px);
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  max-height: min(72vh, 560px);
}

.pf-gif-card__img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(68vh, 520px);
  display: block;
  object-fit: contain;
}

.pf-gif-card__caption {
  padding: 12px 16px 16px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  line-height: 1.35;
}

.vt-tourGrid--gif {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  align-items: stretch;
}

.vt-tour--gif {
  display: flex;
  flex-direction: column;
}

.vt-tour--gif .vt-tour__media--gifcontain {
  position: relative;
  aspect-ratio: auto;
  overflow: hidden;
  min-height: 180px;
  max-height: min(72vh, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  padding: clamp(12px, 2.5vw, 16px);
}

.vt-tour--gif .vt-tour__img--gifcontain {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(68vh, 520px);
  object-fit: contain;
  transition: none;
}

.vt-tour--gif:hover .vt-tour__img--gifcontain {
  transform: none;
}

.vt-tour--gif .vt-tour__body {
  flex: 1;
}

.vt-tour--gif .vt-tour__body h3 {
  font-size: 1.05rem;
}

.vt-tour--gif a.vt-tour__cardHit {
  flex: 1 1 auto;
  text-decoration: none;
}

.vt-tour--gif .vt-tour__media--gifcontain {
  position: relative;
}

.vt-tour--gif .vt-tour__overlay {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vt-tour--gif.vt-tour--hasTour:hover .vt-tour__overlay,
.vt-tour--gif.vt-tour--hasTour:focus-within .vt-tour__overlay {
  opacity: 1;
}

@media (max-width: 640px) {
  .pf-gif-card__frame,
  .vt-tour--gif .vt-tour__media--gifcontain {
    max-height: min(56vh, 420px);
  }

  .pf-gif-card__img,
  .vt-tour--gif .vt-tour__img--gifcontain {
    max-height: min(52vh, 380px);
  }
}

/* ==========================================================================
   Services page (/services)
   ========================================================================== */

.sv-page {
  background: #fff;
  overflow-x: hidden;
}

.sv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(9, 6, 183, 0.08);
  color: var(--afri-blue);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.sv-kicker--center {
  display: table;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.85rem;
}

.sv-hero {
  padding: clamp(5rem, 10vw, 7.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  background: linear-gradient(145deg, #f0f4ff 0%, #fff5f5 48%, #ffffff 100%);
  overflow-x: hidden;
}

.sv-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.sv-hero__grid > * {
  min-width: 0;
}

.sv-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 4.5vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #0f172a;
}

.sv-hero__accent {
  display: inline;
  background: linear-gradient(90deg, var(--afri-blue), var(--afri-red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sv-hero__lead {
  margin: 0;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  color: #475569;
  max-width: 34rem;
}

.sv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.sv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.88rem 1.35rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sv-btn__arrow {
  font-size: 1.1rem;
  line-height: 1;
}

.sv-btn--primary {
  background: var(--afri-red);
  color: #fff;
  box-shadow: 0 14px 28px rgba(203, 0, 1, 0.22);
  border: 2px solid transparent;
}

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

.sv-btn--ghost {
  background: #fff;
  color: var(--afri-blue);
  border: 2px solid rgba(9, 6, 183, 0.35);
}

.sv-btn--ghost:hover {
  border-color: var(--afri-blue);
  background: rgba(9, 6, 183, 0.04);
}

.sv-btn--outline {
  background: transparent;
  color: var(--afri-blue);
  border: 2px solid var(--afri-blue);
}

.sv-btn--outline:hover {
  background: var(--afri-blue);
  color: #fff;
}

.sv-btn--light {
  background: #fff;
  color: var(--afri-blue);
  border: 2px solid #fff;
}

.sv-btn--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.sv-btn--outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.sv-btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.sv-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.sv-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sv-hero__stat-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--afri-blue);
}

.sv-hero__stat-value {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.45;
  overflow-wrap: break-word;
}

.sv-hero__media {
  position: relative;
  overflow: hidden;
}

.sv-hero__frame {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 56px rgba(15, 23, 42, 0.18);
}

.sv-hero__img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.sv-hero__blob {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  filter: blur(46px);
  opacity: 0.5;
  pointer-events: none;
}

.sv-hero__blob--blue {
  right: -20px;
  top: -16px;
  background: #93c5fd;
}

.sv-hero__blob--red {
  left: -24px;
  bottom: -20px;
  background: #fecaca;
}

.sv-strip {
  padding: 2.5rem 0;
  background: #0f172a;
  color: #e2e8f0;
  overflow-x: hidden;
}

.sv-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.sv-strip__grid > * {
  min-width: 0;
}

.sv-strip__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.sv-strip__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(203, 0, 1, 0.25), rgba(9, 6, 183, 0.35));
  color: #fff;
  font-size: 1.25rem;
}

.sv-strip__item h2 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.sv-strip__item p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #94a3b8;
}

.sv-section {
  padding: clamp(4rem, 8vw, 5.5rem) 0;
  overflow-x: hidden;
}

.sv-section--soft {
  background: #f8fafc;
}

.sv-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.sv-head__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  letter-spacing: -0.02em;
  color: #0f172a;
}

.sv-head__text {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #64748b;
}

.sv-cap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.sv-cap-grid > * {
  min-width: 0;
}

.sv-cap {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.75rem 1.65rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sv-section--soft .sv-cap {
  background: #fff;
}

.sv-cap:hover {
  transform: translateY(-4px);
  border-color: rgba(9, 6, 183, 0.2);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.sv-cap__top {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.sv-cap__badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(203, 0, 1, 0.1);
  color: var(--afri-red);
}

.sv-cap__badge--blue {
  background: rgba(9, 6, 183, 0.1);
  color: var(--afri-blue);
}

.sv-cap h3 {
  margin: 0;
  font-size: 1.22rem;
  font-weight: 800;
  color: #0f172a;
}

.sv-cap__intro {
  margin: 0 0 1rem;
  color: #475569;
  line-height: 1.6;
  font-size: 0.98rem;
}

.sv-cap__list {
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.sv-cap__list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #334155;
}

.sv-cap__tick {
  flex-shrink: 0;
  color: #16a34a;
  font-weight: 800;
}

.sv-cap__link {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--afri-blue);
  text-decoration: none;
}

.sv-cap__link:hover {
  color: var(--afri-red);
}

.sv-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.sv-split > * {
  min-width: 0;
}

.sv-split__copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: -0.02em;
  color: #0f172a;
}

.sv-split__lead {
  margin: 0 0 1.35rem;
  color: #64748b;
  line-height: 1.65;
  font-size: 1.05rem;
}

.sv-steps {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  color: #334155;
  line-height: 1.65;
  font-size: 0.98rem;
}

.sv-steps li {
  margin-bottom: 0.65rem;
}

.sv-steps strong {
  color: #0f172a;
}

.sv-split__aside {
  display: grid;
  gap: 1.25rem;
}

.sv-aside-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
}

.sv-aside-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}

.sv-aside-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #475569;
  line-height: 1.55;
  font-size: 0.95rem;
}

.sv-aside-list li {
  margin-bottom: 0.45rem;
}

.sv-aside-card--accent {
  background: linear-gradient(135deg, var(--afri-blue) 0%, #05059a 100%);
  border-color: transparent;
  color: #e0e7ff;
}

.sv-aside-card--accent h3 {
  color: #fff;
}

.sv-aside-card--accent p {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.sv-aside-cta {
  display: inline-block;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
}

.sv-aside-cta:hover {
  text-decoration: underline;
}

.sv-cta {
  padding: clamp(4rem, 7vw, 5rem) 0;
  background: linear-gradient(110deg, var(--afri-red) 0%, #9b0001 40%, var(--afri-blue) 100%);
  color: #fff;
  overflow-x: hidden;
}

.sv-cta__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.sv-cta__inner h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
}

.sv-cta__inner p {
  margin: 0 0 1.75rem;
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.sv-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

@media (max-width: 1024px) {
  .sv-hero__grid {
    grid-template-columns: 1fr;
  }

  .sv-hero__media {
    order: -1;
    max-width: 560px;
    margin: 0 auto;
  }

  .sv-strip__grid {
    grid-template-columns: 1fr;
  }

  .sv-cap-grid {
    grid-template-columns: 1fr;
  }

  .sv-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .sv-hero__stats {
    grid-template-columns: 1fr;
  }

  .sv-hero__actions .sv-btn {
    width: 100%;
  }

  .sv-cta__actions .sv-btn {
    width: 100%;
    max-width: 320px;
  }
}

/* Blog index grid */
.blog-index__head {
  margin-bottom: 28px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}
.blog-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f1f5f9;
}
.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(9, 6, 183, 0.12), rgba(203, 0, 1, 0.08));
  color: var(--afri-blue);
  font-weight: 800;
  font-size: 0.95rem;
}
.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 16px 18px;
}
.blog-card__cat {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(9, 6, 183, 0.1);
  color: var(--afri-blue);
  font-size: 0.75rem;
  font-weight: 700;
}
.blog-card__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.35;
}
.blog-card__title a {
  color: inherit;
  text-decoration: none;
}
.blog-card__title a:hover {
  color: var(--afri-blue);
}
.blog-card__excerpt {
  margin: 0 0 14px;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.55;
  flex: 1;
}
.blog-card__link {
  margin-top: auto;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--afri-blue);
  text-decoration: none;
}
.blog-card__link:hover {
  color: var(--afri-red);
}
.blog-index__empty {
  text-align: center;
  color: #64748b;
  padding: 40px 0;
}
@media (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Blog post (single) */
.blog-post-page__inner {
  max-width: 900px;
}
.blog-post-page__back {
  margin: 0 0 16px;
}
.blog-post-page__back a {
  color: var(--afri-blue);
  font-weight: 700;
  text-decoration: none;
}
.blog-post-page__back a:hover {
  text-decoration: underline;
}
.blog-post-article__head h1 {
  margin: 0 0 12px;
  line-height: 1.2;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}
.blog-post-article__meta {
  margin: 0 0 20px;
  color: #64748b;
}
.blog-post-article__dot {
  margin: 0 0.35rem;
}
.blog-post-article__figure {
  margin: 0 0 24px;
}
.blog-post-article__figure img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}
.blog-post-article__body {
  line-height: 1.8;
  color: #334155;
  font-size: 1.05rem;
}
.blog-post-article__body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.blog-post-article__body h2,
.blog-post-article__body h3 {
  margin: 1.5em 0 0.5em;
  line-height: 1.25;
  color: #0f172a;
}
.blog-post-article__body p {
  margin: 0 0 1em;
}
.blog-post-article__body ul,
.blog-post-article__body ol {
  margin: 0 0 1em;
  padding-left: 1.25rem;
}
.blog-post-article__body a {
  color: var(--afri-blue);
}
