:root {
  --bg: #edf4ff;
  --bg-soft: #f6f9ff;
  --panel: rgba(255, 255, 255, 0.8);
  --panel-strong: #ffffff;
  --card: #ffffff;
  --line: rgba(9, 28, 60, 0.08);
  --text: #0b1f3d;
  --muted: #4b5f84;
  --gold: #d72638;
  --gold-soft: #f6dfe2;
  --gold-deep: #a11022;
  --peach: #ff6b6b;
  --sky: #dfeeff;
  --ink: #0c1a2f;
  --shadow: 0 24px 70px rgba(9, 31, 61, 0.12);
  --display: "Cormorant Garamond", serif;
}

body.rf-luxury {
  --gold: #d72638;
  --gold-soft: #f5d7db;
  --peach: #ff6b6b;
  --sky: #edf3ff;
  --ink: #0c1a2f;
  --bg: #edf4ff;
  --bg-soft: #f6f9ff;
  --panel: rgba(255, 255, 255, 0.8);
  --card: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(215, 38, 56, 0.12), transparent 25%),
    radial-gradient(circle at bottom right, rgba(87, 130, 200, 0.12), transparent 30%),
    linear-gradient(180deg, #f6f9ff 0%, var(--bg) 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 48vw;
  height: 48vw;
  max-width: 700px;
  max-height: 700px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
  animation: ambientDrift 18s ease-in-out infinite alternate;
}

body::before {
  top: -12%;
  left: -8%;
  background: rgba(215, 38, 56, 0.14);
}

body::after {
  right: -10%;
  bottom: -12%;
  background: rgba(94, 136, 214, 0.18);
  animation-delay: 2s;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header sits on top of the hero image, like the reference screenshot */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #b91414, var(--gold));
  color: whitesmoke;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.brand-text {
  font-size: 1.05rem;
  color: #ffffff;
}

.brand-logo {
  display: block;
  width: 148px;
  height: auto;
  object-fit: contain;
}

.footer-logo-image {
  display: block;
  width: 170px;
  height: auto;
  object-fit: contain;
}

/* The screenshot's header is minimal: logo + one CTA, no visible nav row */
.main-nav {
  display: none;
}

.site-header .btn-primary {
  background: linear-gradient(135deg, #22b768, #16a34a);
  box-shadow: 0 14px 28px rgba(22, 163, 74, 0);
  animation: none;
  border-radius: 999px;
  min-height: 46px;
  padding: 0 24px;
  font-size: 0.92rem;
  gap: 8px;
}

.site-header .btn-primary::before {
  content: "→";
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  position: relative;
  background: linear-gradient(135deg, #e71e36, #c5142a);
  color: #ffffff;
  box-shadow: 0 18px 30px rgba(215, 38, 56, 0.26);
  animation: pulseGlow 2.4s ease-in-out infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 0 rgba(215, 38, 56, 0), 0 18px 30px rgba(215, 38, 56, 0.26);
    transform: translateY(0);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(215, 38, 56, 0.08), 0 22px 34px rgba(215, 38, 56, 0.34);
    transform: translateY(-1px);
  }
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.6);
  color: var(--text);
}

.btn-full {
  width: 100%;
}

/* Full-width dark hero with background photo, like the reference screenshot */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-color: #0b0f195d;
  overflow: hidden;
  padding: 90px 50px 70px;
  width: calc(100% - 80px);
  max-width: 1600px;
  margin: 24px auto 24px;
  border-radius: 24px;
  margin: 24px auto 24px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  object-position: center 20%;
}

/* Gradient mask so the left-aligned copy stays readable over the photo.
   Darkened + a bottom fade added, since the photo is light (concrete steps)
   and text/badges now need contrast across the full width, not just the left. */
.hero-bg-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(6, 9, 16, 0.26) 0%,
      rgba(6, 9, 16, 0.075) 35%,
      rgba(6, 9, 16, 0.164) 75%,
      rgba(6, 9, 16, 0.082) 100%),
    linear-gradient(90deg,
      rgba(6, 9, 16, 0.658) 0%,
      rgba(6, 9, 16, 0.274) 45%,
      rgba(6, 9, 16, 0.521) 100%);
}

/* Stacked layout: hero copy on top, badges bar pinned to the bottom.
   This matches the actual markup (.hero-top-content then .hero-badges-bottom)
   — the old 2-column grid here was left over from a previous layout and
   was silently squeezing the badges bar into a narrow unstyled column. */
.hero-container-layout {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  gap: 40px;
}



.hero-top-content {
  width: 100%;
}

.hero-copy {
  max-width: 620px;
}

.hero-main-title {
  color: #ffffff;
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}

.hero-subtitle {
  color: #e2e8f0;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 26px;
  max-width: 560px;
}

.hero-bullets {
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
}

.bullet-icon {
  flex: none;
  background-color: #f2733b;
  color: #ffffff;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}

.hero-actions .btn-primary {
  background: linear-gradient(135deg, #22b768, #16a34a);
  box-shadow: 0 14px 28px rgba(22, 163, 74, 0.35);
  border-radius: 999px;
}

/* Horizontal partner-badge bar along the bottom of the hero.
   Matches the reference (heznex.com): a plain, single-row line-up of
   equal-sized badge logos — no staggered heights, no bulky white
   card boxes, just clean uniform badges sitting on the hero background. */
.hero-badges-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 18px;
  width: 100%;
  margin-top: auto;
}

.partner-badge-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  border: none;
  flex: 0 0 auto;
  min-height: auto;
  overflow: visible;
  transition: transform 0.25s ease;
}

.partner-badge-card:hover {
  transform: translateY(-3px);
}

/* Every badge is the same fixed height so the row reads as one even
   line, exactly like the reference screenshot. The image itself carries
   its own small white plate + rounded corners. */
.partner-badge-img {
  height: 46px;
  width: auto;
  max-width: 140px;
  border-radius: 8px;
  background: #ffffff;
  padding: 6px 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  object-fit: contain;
}

.rating-badge-card {
  
  backdrop-filter: blur(10px);
  padding: 2px 2px;
  border-radius: 14px;
  color: #0b0f19;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  min-width: 168px;
}

.rating-score {
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.rating-score span {
  font-size: 0.72rem;
  font-weight: 600;
  color: #4b5f84;
}

.rating-meta {
  font-size: 0.72rem;
  color: #4b5f84;
  margin-top: 4px;
}

.google-badge .star-rating {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-top: 4px;
}

.page-shell {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(2, 2, 78);
  font-weight: 700;
}



.projects,
.services,
.process,
.testimonials,
.contact-section {
  position: relative;
  padding: 110px 0;
}

section:not(.hero):not(.logo-band):not(.performance-strip)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 80px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 42px;
}

.section-heading h2,
.process-copy h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.project-card {
  min-height: 420px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
}

.project-image {
  position: relative;
  height: 100%;
  min-height: 430px;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 30px;
  overflow: hidden;
  
  background-size: contain;
  background-position: center;
  transition: transform 0.45s ease, filter 0.45s ease, box-shadow 0.45s ease;
  filter: saturate(0.92) contrast(1.03);
  background-blend-mode: multiply;
}

.project-card:hover .project-image {
  transform: scale(1.035) translateY(-4px);
  filter: saturate(1.02) contrast(1.06);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.image-one {
  background-image: url("images/account-management-section.png");
}

.image-two {
  background-image: url("images/amazon-sponsored-ads-report.jpg");
}

.image-three {
  background-image: url("images/web-expreience-athletics.png");
}

.image-four {
  background-image: url("images/retention-system-amazon.png");
}

.project-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.08), rgba(7, 17, 31, 0.8)),
    radial-gradient(circle at 15% 15%, rgba(215, 38, 56, 0.28), transparent 30%);
}

.project-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.project-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 94px;
  height: 94px;
  border-radius: 24px;
  background: rgba(30, 25, 20, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  color: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.project-copy {
  max-width: 250px;
}

.project-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 2vw, 2.3rem);
  letter-spacing: -0.03em;
  color: #ffffff;
}

.project-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-item {
  padding: 30px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.7));
  border: 1px solid var(--line);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  border-color: rgba(211, 173, 115, 0.45);
  box-shadow: 0 20px 45px rgba(13, 18, 29, 0.28);
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--gold);
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 18px;
}

.service-item h3 {
  margin: 0 0 12px;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.process-copy p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
}

.process-steps {
  display: grid;
  gap: 18px;
}

.step-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-item:hover {
  transform: translateX(4px);
  border-color: rgba(117, 210, 255, 0.32);
}

.step-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(117, 210, 255, 0.2), rgba(247, 199, 106, 0.16));
  color: var(--text);
  font-weight: 800;
}

.step-item h3 {
  margin: 0 0 8px;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.step-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  padding: 30px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(7, 10, 18, 0.2);
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.person {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.person strong {
  font-size: 1rem;
}

.person span {
  color: var(--muted);
  font-size: 0.86rem;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 32px;
  align-items: center;
}

.contact-copy p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.contact-points {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 14px;
  color: var(--text);
}

.contact-points li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
}

.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, var(--gold));
  box-shadow: 0 0 18px rgba(215, 38, 56, 0.35);
}

.contact-form {
  padding: 30px 26px;
  border-radius: 28px;
  border: 1px solid rgba(15, 35, 60, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 249, 255, 0.9));
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
}

.contact-form span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.85rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(9, 28, 60, 0.1);
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(215, 38, 56, 0.5);
  box-shadow: 0 0 0 3px rgba(215, 38, 56, 0.12);
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--gold-deep);
  font-weight: 600;
}

/* Site Footer Base */
.site-footer {
  background-color: #ffffff;
  color: #00205B;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  border-top: 1px solid #e2e8f0;
  border-radius: 18px;
}

/* Top Dual CTA Row */
.footer-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #e2e8f0;
  background-color: #f8f9fa;
}

.cta-card {
  display: flex;
  align-items: center;
  padding: 24px 40px;
  text-decoration: none;
  gap: 20px;
  border-right: 1px solid #e2e8f0;
  transition: background-color 0.3s ease;
}

.cta-card:last-child {
  border-right: none;
}

.cta-card:hover {
  background-color: #f1f5f9;
}

.cta-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.cta-info h4 {
  color: #00205B;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 2px;
}

.cta-info p {
  color: #00205B;
  opacity: 0.8;
  font-size: 14px;
}

.cta-arrow {
  margin-left: auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #00205B;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Partner Marketplace Bar */
.footer-partners-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 60px;
  border-bottom: 1px solid #e2e8f0;
  flex-wrap: wrap;
  gap: 20px;
}

.experience-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #00205B;
}

.badge-avatar {
  font-size: 28px;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.partner-tag {
  font-size: 16px;
  font-weight: 800;
  color: #00205B;
  opacity: 0.85;
}

.partner-tag span {
  font-size: 12px;
  font-weight: 600;
  color: #c5142a;
}

/* Main Footer Area */
.footer-main-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px 80px 20px;
  
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.8fr;
  gap: 40px;
}

/* Brand Column */
.footer-logo {
  font-size: 26px;
  font-weight: 900;
  color: #00205B;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.footer-logo span {
  color: #c5142a;
}

.brand-description {
  font-size: 14px;
  line-height: 1.6;
  color: #00205B;
  opacity: 0.8;
  margin: 16px 0 24px 0;
  max-width: 300px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #c5142a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Footer Links Column */
.col-title {
  color: #c5142a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #00205B;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.85;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #c5142a;
  opacity: 1;
}

/* ===== Light Footer ===== */
.site-footer {
  background-color: #ffffff;
  border-top: 1px solid #e2e8f0;
  padding: 80px 0 50px;
}

.footer-main-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 0.9fr 1fr 1.3fr;
  gap: 32px;
}

/* Brand column */
.footer-logo {
  display: inline-block;
  font-size: 24px;
  font-weight: 900;
  color: #00205B;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.footer-logo span {
  color: #c5142a;
}

.brand-description {
  font-size: 14px;
  line-height: 1.7;
  color: #4b5f84;
  margin: 0 0 26px;
  max-width: 320px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-color: rgba(197, 20, 42, 0.08);
  color: #c5142a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-btn:hover {
  background-color: #c5142a;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Column titles */
.col-title {
  color: #c5142a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 22px;
}

/* Links with circle-dot bullets */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #00205B;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-links a:hover {
  color: #c5142a;
  opacity: 1;
}

.link-dot {
  flex: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #c5142a;
  background: transparent;
  transition: background 0.2s ease;
}

.footer-links a:hover .link-dot {
  background: #c5142a;
}

/* Contact column */
.footer-contact-simple {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-simple li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c5142a;
}

.footer-contact-simple a {
  color: #00205B;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.footer-contact-simple a:hover {
  color: #c5142a;
}

/* Revenue counter — top-right slot */
.stats-col {
  justify-self: end;
  text-align: right;
}

.stat-amount {
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  font-weight: 900;
  color: #c5142a;
  line-height: 1.1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  display: inline-block;
  min-width: 15ch;      /* enough for "$4,500,008,305" */
  text-align: right;
}

.stat-label {
  font-size: 12px;
  font-weight: 800;
  color: #00205B;
  letter-spacing: 0.06em;
  opacity: 0.75;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 44px;
  }
  .stats-col {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 56px 0 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    row-gap: 36px;
  }
  .brand-description {
    max-width: 100%;
  }
  .stats-col {
    text-align: left;
  }
}

/* Revenue Stat Column */
.stat-amount {
  font-size: 38px;
  font-weight: 900;
  color: #c5142a;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  font-weight: 800;
  color: #00205B;
  letter-spacing: 0.5px;
}

/* Responsive Scaling */
@media (max-width: 992px) {
  .footer-cta-row {
    grid-template-columns: 1fr;
  }
  .cta-card {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
  }
  .footer-grid {
    display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 32px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-partners-bar {
    padding: 24px;
  }
}

@media (max-width: 980px) {

  .split-layout,
  .contact-wrap,
  .service-grid,
  .project-grid,
  .testimonial-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .hero-badges-bottom {
    justify-content: flex-start;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .main-nav {
    display: none;
  }

  .hero {
    width: calc(100% - 24px);
    margin: 12px auto;
    padding: 120px 20px 40px;
    min-height: auto;
    border-radius: 18px;
  }

  .hero-container-layout {
    gap: 28px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-main-title {
    font-size: clamp(1.6rem, 7vw, 2rem);
    margin: 0 0 14px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    max-width: 100%;
    margin: 0 0 20px;
  }

  .hero-bullets {
    margin: 0 0 24px;
    gap: 10px;
  }

  .hero-bullets li {
    font-size: 0.88rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn-primary {
    width: 100%;
    text-align: center;
    white-space: normal;
    font-size: 0.9rem;
    padding: 0 16px;
  }

  .hero-badges-bottom {
    gap: 10px;
    justify-content: flex-start;
  }

  .partner-badge-img {
    height: 36px;
    max-width: 110px;
    padding: 5px 8px;
  }

  .mini-metrics,
  .field-row {
    grid-template-columns: 1fr;
  }

  .logo-row {
    grid-template-columns: repeat(2, minmax(80px, 1fr));
    row-gap: 18px;
    padding: 18px 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form {
    padding: 22px 18px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}

/* Small phones (iPhone SE/12/13/14 width and below) — tighten further so
   the hero never forces horizontal scroll and text/badges stay legible. */
@media (max-width: 420px) {
  .nav-wrap {
    min-height: 76px;
  }

  .brand-text {
    font-size: 0.92rem;
  }

  .site-header .btn-primary {
    padding: 0 16px;
    font-size: 0.82rem;
    min-height: 40px;
  }

  .hero {
    padding: 100px 16px 32px;
    border-radius: 14px;
  }

  .hero-main-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-bullets li {
    font-size: 0.82rem;
    gap: 10px;
  }

  .bullet-icon {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }

  .partner-badge-img {
    height: 32px;
    max-width: 96px;
    padding: 4px 7px;
  }
}

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  z-index: 50;
  font-size: 26px;
}

.whatsapp-float::before {
  content: "💬";
}

.globex-marquee-container {
  /* Break out of boxed containers to stretch 100% full screen width */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  overflow: hidden;
  background: #FFFFFF;
  padding: 24px 0;
  border-top: 1px solid rgba(231, 235, 243, 0.09);
  border-bottom: 1px solid rgba(231, 235, 243, 0.09);
  display: flex;
  user-select: none;
}

.globex-marquee-content {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-around;
  gap: 60px;
  padding-right: 60px;
  /* Maintains exact gap between track duplicates */
  min-width: 100%;
  animation: globex-scroll-ltr 25s linear infinite;
}

.globex-marquee-content img {
  height: 45px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.globex-marquee-content img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Seamless Infinite Scroll Keyframes */
@keyframes globex-scroll-ltr {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0%);
  }
}

/* Pause scrolling on hover */
.globex-marquee-container:hover .globex-marquee-content {
  animation-play-state: paused;
}

/* Section Container */
.cta-logo-section {
  background-color: #c5142a;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Top Pill Banner */
.cta-pill {
  background-color: #1a1816;
  border: 1px solid #332d28;
  border-radius: 50px;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.cta-pill:hover {
  border-color: #e65100;
  transform: translateY(-2px);
}

.cta-icon {
  font-size: 32px;
  line-height: 1;
}

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.cta-subtitle {
  color: #e65100;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

/* Bottom Logo Row */
.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-item {
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 1px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Sub-brands styling mimic */
.logo-bizee span {
  display: block;
  font-size: 10px;
  font-weight: normal;
  color: #ffffff;
}

/* Global & Typography resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #ffffff;
  color: #00205B;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}

/* Section Styles */
.marketplace-section {
  width: 100%;
  position: relative;
  background: linear-gradient(90deg, #00205B, #c5142a, #00205B);
  background-size: 200% 100%;
  animation: moveGradient 6s ease-in-out infinite alternate;
  overflow: hidden; /* Crucial: hides horizontal overflow during pinning */
}

.section-header {
  text-align: center;
  padding: 60px 20px 20px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.sub-heading {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.main-heading {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.main-heading span {
  color: #ffffff;
}

.description {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  opacity: 0.85;
}

/* Pinned Horizontal Slider Setup */
.slider-outer {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cards-track {
  display: flex;
  gap: 32px;
  padding-left: 5vw;
  will-change: transform;
  position: relative;
}
/* Individual Card Design */
.card {
  background-color: #f8f9fa;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  width: 420px;
  min-width: 420px;
  height: 520px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 32, 91, 0.05);
  flex-shrink: 0; /* Prevents cards from squishing */
  will-change: transform, opacity; /* smoother GSAP reveal */
}

/* If JS/GSAP fails to load, noscript users still see every card normally */
.no-js .card,
noscript .card {
  opacity: 1 !important;
  transform: none !important;
}

.card:hover {
  box-shadow: 0 18px 40px rgba(197, 20, 42, 0.12);
  border-color: #c5142a;
}

.card-top {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Circle Container for Image Logos */
.logo-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  padding: 12px;
  overflow: hidden;
  margin: 0 auto; /* Ensures horizontal centering inside flex layouts */
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.arrow-icon {
  font-size: 26px;
  color: #ffffff;
  font-weight: 300;
}

.card-title {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 24px;
  margin-bottom: 12px;
  text-decoration: underline;
  text-decoration-color: #ffffff;
  text-underline-offset: 4px;
  text-align: center;
}

.card-stat {
  font-size: 16px;
  font-weight: 700;
  color: #c5142a;
  margin-bottom: 20px;
  text-align: center;
}

.card-body {
  font-size: 15px;
  line-height: 1.6;
  color: #00205B;
  opacity: 0.9;
  text-align: center;
}

/* Tablet Adjustments */
@media (max-width: 992px) {
  .card {
    width: 340px;
    min-width: 340px;
    height: 500px;
  }
}

/* Mobile Adjustments: drop the pinned horizontal track, stack cards vertically */
@media (max-width: 768px) {
  .section-header {
    padding: 44px 20px 8px;
  }

  .main-heading {
    font-size: 26px;
  }

  .description {
    font-size: 14px;
  }

  .slider-outer {
    height: auto;
    min-height: 0;
    display: block;
    overflow: visible;
    padding: 12px 0 48px;
  }

  .cards-track {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    gap: 24px;
  }

  .card {
    width: 100%;
    max-width: 380px;
    min-width: 0;
    height: auto;
    min-height: 0;
    padding: 28px 22px;
    margin: 0 auto;
  }

  .logo-circle {
    width: 150px;
    height: 150px;
  }

  .card-title {
    font-size: 20px;
    margin-top: 18px;
  }

  .card-stat {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .card-body {
    font-size: 14px;
  }
}

/* Small phones */
@media (max-width: 420px) {
  .card {
    padding: 24px 18px;
  }

  .logo-circle {
    width: 130px;
    height: 130px;
  }

  .card-title {
    font-size: 18px;
  }
}

@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

/* Global Resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #ffffff;
  color: #00205B;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Outer Section Container */
.partnership-section {
  background-color: #ffffff;
  padding: 80px 20px 100px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Section Header Typography */
.header-container {
  text-align: center;
  max-width: 900px;
  margin-bottom: 50px;
}

.section-title {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.2;
  color: #00205B;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-title span {
  color: #c5142a;
}

.section-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #00205B;
  opacity: 0.85;
  max-width: 780px;
  margin: 0 auto;
}

/* 6-Card Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1240px;
  width: 100%;
  margin-bottom: 50px;
}

/* Individual Card Style */
.service-card {
  background-color: #f8f9fa;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  box-shadow: 0 8px 24px rgba(0, 32, 91, 0.04);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  border-color: #c5142a;
  box-shadow: 0 16px 36px rgba(197, 20, 42, 0.1);
  transform: translateY(-4px);
}

/* Card Top Row Header */
.card-header {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Circular Badge Container for Image Logos */
.icon-badge {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  padding: 12px;
  overflow: hidden;
}

.icon-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Card Title Typography */
.card-title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  color: #00205B;
  letter-spacing: -0.3px;
}

/* Card Text Description */
.card-description {
  font-size: 15px;
  line-height: 1.6;
  color: #00205B;
  opacity: 0.85;
}

/* Bottom Pill CTA Banner */
.cta-pill-banner {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 32, 91, 0.06);
  transition: border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.cta-pill-banner:hover {
  border-color: #c5142a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(197, 20, 42, 0.12);
}

.cta-emoji {
  font-size: 32px;
  line-height: 1;
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cta-heading {
  color: #00205B;
  font-size: 15px;
  font-weight: 700;
}

.cta-subtext {
  color: #c5142a;
  font-size: 13px;
  font-weight: 700;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }

  .service-card {
    padding: 24px;
  }
}

/* Global Resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #ffffff;
  color: #00205B;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Section Container */
.testimonial-stats-section {
  background-color: #ffffff;
  padding: 80px 0 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- Testimonial Area --- */
.testimonial-container {
  max-width: 800px;
  margin: 0 auto 60px auto;
  text-align: center;
  padding: 0 20px;
}

/* Avatar Stack Row */
.avatar-stack {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
  min-height: 90px; /* Fixed height typo and provided room for scaled avatars */
}

.avatar-btn {
  width: 72px; /* Increased from 54px */
  height: 72px; /* Increased from 54px */
  border-radius: 50%;
  border: 3px solid #ffffff;
  margin: 0 -10px; /* Proportional overlap spacing for larger avatars */
  cursor: pointer;
  overflow: hidden;
  background: #e2e8f0;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  padding: 0;
}
.avatar-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-btn.active {
  border-color: #c5142a;
  transform: scale(1.15); /* Scales active avatar to ~82px */
  z-index: 2;
  box-shadow: 0 6px 16px rgba(197, 20, 42, 0.3);
}

.avatar-btn:hover:not(.active) {
  transform: scale(1.08);
  z-index: 1;
}

/* Quote Styling */
.quote-text {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
  color: #00205B;
  margin-bottom: 24px;
  min-height: 90px;
  /* Prevents layout shift during transition */
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-author {
  font-size: 16px;
  font-weight: 800;
  color: #00205B;
  margin-bottom: 4px;
}

.quote-role {
  font-size: 14px;
  color: #00205B;
  opacity: 0.8;
}

.quote-role a {
  color: #c5142a;
  text-decoration: none;
  font-weight: 700;
}

.quote-role a:hover {
  text-decoration: underline;
}

/* --- Bottom Stats Ribbon Bar --- */
.stats-bar-wrapper {
  width: 100%;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  background-color: #f8f9fa;
  position: relative;
}

.stats-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.5fr 1fr 1fr 1fr 1.2fr 0.5fr;
  align-items: stretch;
  position: relative;
}

.stat-box {
  border-right: 1px solid #e2e8f0;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.stat-box.empty {
  border-right: 1px solid #e2e8f0;
}

.stat-label-top {
  font-size: 14px;
  font-weight: 600;
  color: #00205B;
  opacity: 0.7;
  margin-bottom: 8px;
}

.stat-number {
  font-size: 42px;
  font-weight: 900;
  color: #c5142a;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label-bottom {
  font-size: 14px;
  font-weight: 600;
  color: #00205B;
  opacity: 0.85;
}

/* Clutch Badge Ribbon hanging design */
.clutch-ribbon-box {
  background-color: #cba86a;
  /* Golden badge tone */
  color: #00205B;
  padding: 24px 16px 48px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-top: -12px;
  /* Hangs slightly higher */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 50% 100%, 0 calc(100% - 20px));
  z-index: 10;
}

.clutch-stars {
  color: #00205B;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.clutch-rank {
  font-size: 32px;
  font-weight: 900;
  color: #00205B;
  line-height: 1;
  margin-bottom: 4px;
}

.clutch-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #00205B;
  margin-bottom: 2px;
}

.clutch-country {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #00205B;
  opacity: 0.7;
  margin-bottom: 16px;
}

.clutch-logo-img {
  max-width: 100px;
  height: auto;
  display: block;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-box.empty {
    display: none;
  }

  .clutch-ribbon-box {
    margin-top: 0;
    clip-path: none;
    padding: 24px 16px;
  }
}

@media (max-width: 640px) {
  .stats-container {
    grid-template-columns: 1fr;
  }

  .stat-box {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
  }

  .quote-text {
    font-size: 17px;
  }
}

.badge-gif {
  width: 155px;
  height: 155px;
  object-fit: contain;
  border-radius: 50%; /* Keeps avatar GIFs circular if needed */
}

/* Partner Logo GIF Styling */
.partner-logo-img {
  height: 75px; /* Adjust height based on your GIF dimensions */
  width: auto;
  object-fit: contain;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.partner-logo-img:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Global Resets */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: #ffffff;
      color: #00205B;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      padding: 60px 20px;
    }

    /* Outer Section Wrapper to apply even padding around the card */
    .growth-section-wrapper {
      max-width: 1280px;
      margin: 0 auto;
      padding: 20px;
    }

    /* Light Off-White Container Card */
    .growth-card-container {
      background-color: #f03a3ab0;
      border-radius: 24px;
      padding: 60px;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      align-items: center;
      gap: 50px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    }

    /* Left Copy Column */
    .growth-copy-col {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .growth-title {
      font-size: 36px;
      font-weight: 900;
      line-height: 1.2;
      color: #00205B;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }

    .growth-description {
      font-size: 15px;
      line-height: 1.6;
      color: #00205B;
      opacity: 0.85;
      margin-bottom: 32px;
      max-width: 520px;
    }

    /* Feature Checkmark Pills Stack */
    .feature-pills-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
      width: 100%;
      max-width: 480px;
      margin-bottom: 36px;
    }

    .pill-item {
      background-color: #ffffff;
      border-radius: 12px;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 16px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
      border: 1px solid rgba(0, 0, 0, 0.03);
    }

    .pill-check-icon {
      width: 28px;
      height: 28px;
      min-width: 28px;
      border-radius: 6px;
      background-color: #c5142a;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 900;
    }

    .pill-text {
      font-size: 16px;
      font-weight: 800;
      color: #00205B;
    }

    /* Primary Action Button */
    .growth-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background-color: #c5142a;
      color: #ffffff;
      padding: 16px 32px;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 800;
      text-decoration: none;
      box-shadow: 0 8px 20px rgba(197, 20, 42, 0.25);
      transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    }

    .growth-cta-btn:hover {
      background-color: #a30f22;
      transform: translateY(-2px);
      box-shadow: 0 12px 25px rgba(197, 20, 42, 0.35);
    }

    .btn-arrow {
      font-size: 18px;
      line-height: 1;
    }

    /* Right Media Image Column */
    .growth-media-col {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    .growth-media-col img {
      width: 100%;
      height: auto;
      max-width: 580px;
      object-fit: contain;
      display: block;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .growth-card-container {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        gap: 40px;
      }

      .growth-title {
        font-size: 28px;
      }

      .growth-media-col {
        order: -1; /* Image moves above text on smaller screens */
      }
    }

    @media (max-width: 576px) {
      .growth-card-container {
        padding: 30px 20px;
      }

      .pill-text {
        font-size: 14px;
      }
    }

    /* Reset & Base Styles */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: #ffffff;
      color: #00205B;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }

    /* Outer Wrapper for Equal Padding */
    .hiring-section-wrapper {
      max-width: 1280px;
      margin: 0 auto;
      padding: 80px 20px;
      background-color: #f8f9fa;
      border-radius: 24px;
    }

    /* Grid Layout Container */
    .hiring-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      
    }

    /* Left Text Column */
    .hiring-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .hiring-title {
      font-size: 38px;
      font-weight: 900;
      color: #00205B;
      margin-bottom: 24px;
      letter-spacing: -0.5px;
    }

    .hiring-text-block {
      display: flex;
      flex-direction: column;
      gap: 18px;
      margin-bottom: 36px;
    }

    .hiring-text-block p {
      font-size: 15px;
      line-height: 1.65;
      color: #00205B;
      opacity: 0.85;
    }

    /* CTA Button - #c5142a with White Text */
    .hiring-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background-color: #c5142a;
      color: #ffffff;
      padding: 16px 32px;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 800;
      text-decoration: none;
      box-shadow: 0 8px 20px rgba(197, 20, 42, 0.25);
      transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    }

    .hiring-btn:hover {
      background-color: #a30f22;
      transform: translateY(-2px);
      box-shadow: 0 12px 25px rgba(197, 20, 42, 0.35);
    }

    .btn-arrow {
      font-size: 18px;
      line-height: 1;
    }

    /* Right Image Column */
    .hiring-image-col {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hiring-img {
      width: 100%;
      max-height: 520px;
      object-fit: cover;
      border-radius: 16px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
      display: block;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .hiring-section-wrapper {
        padding: 50px 20px;
      }

      .hiring-container {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .hiring-title {
        font-size: 30px;
      }

      .hiring-image-col {
        order: 2;
      }
    }

    /* Base Section */
.case-studies-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #00205B;
}

.cs-container {
  max-width: 1140px;
  margin: 0 auto;
}

/* Header */
.cs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.cs-title {
  font-size: 32px;
  font-weight: 900;
  color: #00205B;
  margin-bottom: 8px;
}

.cs-subtitle {
  font-size: 15px;
  color: #00205B;
  opacity: 0.8;
}

.cs-see-all {
  color: #00205B;
  font-weight: 700;
  text-decoration: underline;
  font-size: 14px;
}

/* Featured Large Banner Card */
.cs-featured-card {
  background: linear-gradient(135deg, #4b92d4 0%, #3071b0 100%);
  border-radius: 20px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  color: #ffffff;
  margin-bottom: 30px;
  transition: opacity 0.35s ease-in-out;
  opacity: 1;
}

.cs-featured-card.fade-out {
  opacity: 0;
}

.cs-featured-heading {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 16px;
}

.cs-featured-desc {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 28px;
}

/* Button with brand red #c5142a */
.cs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #c5142a;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cs-btn:hover {
  background-color: #a30f22;
  transform: translateY(-2px);
}

.cs-featured-media img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  display: block;
}

/* Thumbnail Grid Below */
.cs-thumbnails-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.cs-thumb-card {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cs-thumb-card:hover {
  background-color: #f1f5f9;
}

.cs-thumb-card.active {
  background-color: #e2e8f0;
  border-color: #00205B;
  position: relative;
}

/* Top indicator bar for active state */
.cs-thumb-card.active::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 20%;
  width: 60%;
  height: 4px;
  background-color: #00205B;
  border-radius: 4px;
}

.cs-thumb-img-wrap {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-thumb-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cs-thumb-title {
  font-size: 12px;
  font-weight: 700;
  color: #00205B;
  line-height: 1.4;
}

/* Controls */
.cs-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.cs-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #c5142a;
  color: #ffffff;
  border: none;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.cs-arrow-btn:hover {
  opacity: 0.85;
}

.cs-counter {
  font-size: 14px;
  font-weight: 800;
  color: #00205B;
}

/* Responsive */
@media (max-width: 992px) {
  .cs-featured-card {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  .cs-thumbnails-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .cs-thumbnails-grid {
    grid-template-columns: 1fr;
  }
}

.legends-section {
  padding: 90px 0;
  text-align: center;
  overflow: hidden; /* Prevents unwanted horizontal scrollbars */
}

.legends-header {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.legends-title {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  color: var(--text);
  margin: 0;
}

/* Full Width Breakout Container */
.legends-marquee-container {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  overflow: hidden;
  display: flex;
  user-select: none;
  padding: 10px 0; /* Space for box-shadows on hover */
}

/* Marquee Animated Track */
.legends-marquee-content {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 18px;
  padding-right: 18px; /* Ensures exact spacing between duplicate tracks */
  min-width: 100%;
  animation: legends-scroll-ltr 30s linear infinite;
}

/* Card Styling Inside Marquee */
.legend-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  width: 220px; /* Fixed width to maintain uniformity in marquee */
  flex-shrink: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.legend-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(9, 31, 61, 0.1);
  border-color: rgba(9, 28, 60, 0.16);
}

.legend-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-weight: 800;
  color: var(--text);
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  text-align: center;
}

.legend-logo small {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}

.legend-logo em {
  font-style: normal;
  font-weight: 800;
}

/* Brand specific typography variations */
.logo-style-2 { font-size: 0.95rem; }
.logo-style-4 { font-size: 1.4rem; }
.logo-style-5 { font-weight: 600; }
.logo-style-6 { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1.3rem; }
.logo-style-7 { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1.2rem; }
.logo-style-8 { letter-spacing: 0.02em; }

/* Left-to-Right Scrolling Keyframes */
@keyframes legends-scroll-ltr {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}

/* Pause animation when hovering over the marquee */
.legends-marquee-container:hover .legends-marquee-content {
  animation-play-state: paused;
}
/* --- Team & Vision Section --- */
.team-vision-section {
  background-color: #ffffff; /* Restored soft light blue hue */
  padding: 80px 24px 0 24px;
  color: #0b1f3d;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  margin-top: 60px;

}

.team-vision-container {
  max-width: 1180px;
  margin: 0 auto; /* Properly center content on full-width pages */
}

.team-meta-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4b5f84;
  margin-bottom: 32px;
}

.team-vision-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

/* Left Column Headline */
.team-vision-headline {
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #0c1a2f;
  margin: 0;
  max-width: 440px;
}

/* Right Column Content */
.team-vision-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.team-image-frame {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(12, 26, 47, 0.08);
}

.team-photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* Bottom Copy & CTA Alignment */
.team-content-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 520px;
}

.team-description {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #334155; /* Fixed transparent hex code issue */
  margin: 0;
  display: block;
}

/* Minimalist LinkedIn Pill Button */
.team-linkedin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  border-radius: 999px;
  border: 1px solid #0c1a2f;
  background: transparent;
  color: #0c1a2f;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.team-linkedin-btn:hover {
  background: #0c1a2f;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .team-vision-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .team-photo {
    height: 280px;
  }
}

.rf-faq-section {
    --rf-teal-base: #c4332e;
    --rf-teal-deep: #6e110a;
    --rf-teal-deeper: #4e0716;
    --rf-navy: #0E2430;
    --rf-ink: #3F5560;
    --rf-ink-soft: #6B7F87;
    --rf-white: #FFFFFF;
    --rf-coral: #dd0606;
    --rf-coral-deep: #c42e2e;
    --rf-cream: #FFF4EF;
    --rf-radius-lg: 22px;
    --rf-radius-md: 16px;
    --rf-shadow-card: 0 18px 40px -12px rgba(6, 40, 37, 0.35);
    --rf-shadow-photo: 0 24px 50px -14px rgba(10, 20, 25, 0.45);

    position: relative;
    font-family: 'Inter', sans-serif;
    background: radial-gradient(120% 140% at 15% 0%, var(--rf-teal-base) 0%, var(--rf-teal-deep) 55%, var(--rf-teal-deeper) 100%);
    padding: 88px 24px 96px;
    overflow: hidden;
    isolation: isolate;
    box-sizing: border-box;
  }

  .rf-faq-section * {
    box-sizing: border-box;
  }

  /* Decorative Background Rings */
  .rf-faq-section::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -140px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.10);
    pointer-events: none;
  }

  .rf-faq-section::after {
    content: "";
    position: absolute;
    bottom: -180px;
    left: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
  }

  .rf-faq-wrap {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
  }

  .rf-faq-eyebrow {
    display: block;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.22em;
    color: #B9F2EB;
    text-transform: uppercase;
    margin: 0 0 14px;
  }

  .rf-faq-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    text-align: center;
    color: var(--rf-white);
    font-size: clamp(30px, 4.4vw, 50px);
    line-height: 1.12;
    letter-spacing: -0.01em;
    margin: 0 0 56px;
  }

  .rf-faq-heading .dot {
    color: var(--rf-coral);
  }

  /* Two-column layout */
  .rf-faq-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    align-items: start;
    column-gap: 0;
  }

  /* Left Column Photo Card */
  .rf-faq-photo {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    max-width: 320px;
    margin-top: 38px;
    z-index: 3;
    justify-self: start;
  }

  .rf-faq-photo-blob {
    position: absolute;
    inset: -26px -22px auto -26px;
    height: 110%;
    background: linear-gradient(155deg, var(--rf-coral) 0%, var(--rf-coral-deep) 100%);
    border-radius: 38px 38px 38px 90px;
    transform: rotate(-4deg);
    box-shadow: var(--rf-shadow-photo);
    z-index: 1;
  }

  .rf-faq-photo-card {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    border: 6px solid var(--rf-white);
    transform: rotate(2deg);
    box-shadow: 0 20px 40px -16px rgba(6, 30, 27, 0.5);
    background: var(--rf-white);
  }

  .rf-faq-photo-card img {
    display: block;
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: top center;
  }

  .rf-faq-tag {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--rf-white);
    color: var(--rf-navy);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 12px 24px -8px rgba(6, 30, 27, 0.35);
    bottom: -22px;
    right: -10px;
    transform: rotate(-3deg);
  }

  .rf-faq-tag .dotpulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
  }

  .rf-faq-bubble {
    position: absolute;
    z-index: 4;
    top: -18px;
    left: -16px;
    background: var(--rf-navy);
    color: var(--rf-white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.35;
    padding: 12px 14px;
    border-radius: 14px 14px 14px 3px;
    width: 175px;
    box-shadow: 0 14px 24px -10px rgba(0, 0, 0, 0.45);
  }

  /* Right Column Accordion */
  .rf-faq-panel {
    grid-column: 2;
    grid-row: 1;
    background: transparent;
    margin-left: -64px;
    padding-left: 100px;
    z-index: 2;
  }

  .rf-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .rf-faq-item {
    background: var(--rf-white);
    border-radius: var(--rf-radius-md);
    box-shadow: var(--rf-shadow-card);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
  }

  .rf-faq-item .rf-faq-q {
    all: unset;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    cursor: pointer;
    padding: 22px 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    background: var(--rf-white) !important;
    color: var(--rf-navy) !important;
    border: none !important;
  }

  .rf-faq-item.open .rf-faq-q {
    background: var(--rf-white) !important;
    color: var(--rf-navy) !important;
  }

  .rf-faq-item .rf-faq-q:focus-visible {
    outline: 2px solid var(--rf-teal-base);
    outline-offset: -2px;
  }

  .rf-faq-icon {
    flex: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--rf-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .35s ease, background .35s ease;
  }

  .rf-faq-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--rf-coral-deep);
    transition: transform .35s ease;
  }

  .rf-faq-item.open .rf-faq-icon {
    background: var(--rf-coral);
    border: 1.5px solid var(--rf-teal-base);
  }

  .rf-faq-item.open .rf-faq-icon svg {
    stroke: var(--rf-teal-deep);
    transform: rotate(180deg);
  }

  .rf-faq-a-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .38s ease;
  }

  .rf-faq-item.open .rf-faq-a-wrap {
    grid-template-rows: 1fr;
  }

  .rf-faq-a-inner {
    overflow: hidden;
  }

  .rf-faq-a {
    margin: 0;
    padding: 0 24px 24px 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--rf-ink-soft);
    max-width: 640px;
  }

  /* Responsive Adjustments */
  @media (max-width: 940px) {
    .rf-faq-grid {
      grid-template-columns: 1fr;
    }
    .rf-faq-photo {
      grid-column: 1;
      grid-row: 1;
      justify-self: center;
      max-width: 230px;
      margin: 0 auto;
    }
    .rf-faq-photo-card img {
      height: 250px;
    }
    .rf-faq-tag {
      font-size: 12px;
      padding: 8px 13px;
      right: 6px;
      bottom: -18px;
    }
    .rf-faq-bubble {
      width: 150px;
      font-size: 12px;
      left: -8px;
      top: -14px;
    }
    .rf-faq-panel {
      grid-column: 1;
      grid-row: 2;
      margin-left: 0;
      padding-left: 0;
      margin-top: -30px;
      padding-top: 64px;
    }
  }

  @media (max-width: 520px) {
    .rf-faq-section {
      padding: 64px 16px 72px;
    }
    .rf-faq-heading {
      margin-bottom: 44px;
    }
    .rf-faq-q {
      padding: 18px 16px;
      font-size: 15px;
      gap: 12px;
    }
    .rf-faq-a {
      padding: 0 16px 20px 16px;
      font-size: 14px;
    }
    .rf-faq-icon {
      width: 28px;
      height: 28px;
    }
    .rf-faq-icon svg {
      width: 12px;
      height: 12px;
    }
    .rf-faq-photo {
      max-width: 190px;
    }
    .rf-faq-photo-card img {
      height: 200px;
    }
    .rf-faq-photo-blob {
      border-radius: 28px 28px 28px 60px;
    }
    .rf-faq-bubble {
      display: none;
    }
    .rf-faq-tag {
      font-size: 11px;
      padding: 7px 11px;
    }
  }

  
/* =====================================================
   AMAZON LISTINGS SECTION — RED, WHITE & BLUE (PREMIUM)
===================================================== */
:root {
  --usa-navy: #0a1f44;       /* deep premium navy */
  --usa-navy-light: #10294f; /* subtle gradient partner */
  --usa-red: #b3122c;        /* refined crimson, not neon */
  --usa-red-light: #d81e36;
  --usa-white: #ffffff;
  --usa-white-dim: #f4f6f9;
}

.az-listings-section {
  background: linear-gradient(180deg, var(--usa-navy) 0%, var(--usa-navy-light) 100%);
  /* Deep navy background instead of pure black — richer, more premium */
  padding: 100px 24px 120px;
  width: 100%;
}

.az-container {
  max-width: 1320px;
  margin: 0 auto;
}

.az-header {
  text-align: center;
  margin-bottom: 60px;
}

.az-badge {
  display: inline-block;
  color: var(--usa-red-light);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.az-title {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--usa-white);
  letter-spacing: -0.5px;
}

.az-title .text-pink,
.az-title .text-dot {
  color: var(--usa-red-light);
}

/* 3-Column Display Layout */
.az-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

/* Individual Listing Card Frame */
.az-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  /* Thin crimson border framing, premium feel */
  border: 1px solid rgba(179, 18, 44, 0.4);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.az-card:hover {
  transform: translateY(-6px);
  border-color: var(--usa-red-light);
  box-shadow: 0 12px 30px rgba(179, 18, 44, 0.25),
              0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Inner Image Container — White Capsule Box */
.az-img-container {
  width: 100%;
  background: var(--usa-white);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  margin-bottom: 20px;
  box-shadow: inset 0 0 0 1px rgba(10, 31, 68, 0.06);
}

.az-img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Typography Descriptions Below Images */
.az-card-title {
  color: var(--usa-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  margin-top: auto;
}

/* Optional accent: thin bar under title for a "seal/ribbon" premium touch */
.az-card-title::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--usa-red) 0%, var(--usa-white) 50%, var(--usa-navy-light) 100%);
  border-radius: 2px;
}

/* Responsive Adaptive Viewports */
@media (max-width: 992px) {
  .az-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .az-listings-section {
    padding: 70px 20px 80px;
    margin-bottom: 50px;
  }

  .az-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 1024px) {
  .mkt-container {
    flex-direction: column;
    gap: 50px;
    text-align: left;
  }

  .mkt-content,
  .mkt-graphic {
    width: 100%;
    max-width: 100%;
  }

  .marketplace-opt {
    padding: 70px 24px;
  }
}

/* Brand Partners section — scoped to .wrap so it won't clash with the rest of the site */

.wrap{
  --ink:#17160F;
  --paper:#edf3ff;
  --paper-raised:#edf3ff;
  --line:#0a0133;
  --muted:#221f1f;
  --red:#BE2A1B;
  --red-deep:#8E1F14;

  max-width:1180px;
  margin:0 auto;
  padding-inline:clamp(20px,5vw,56px);
  padding-top:clamp(28px,4vw,44px);
  background:var(--paper);
  color:var(--ink);
  font-family:'Inter',sans-serif;
  -webkit-font-smoothing:antialiased;
}

.wrap *{box-sizing:border-box;}
.wrap ::selection{background:var(--red);color:#fff;}
.wrap a{color:inherit;}

.wrap .strip-head{padding-bottom:16px;}
.wrap .strip-head .cat{font-size:13px;color:var(--muted);}

/* ============ STATS STRIP ============ */
.wrap .strip{
  display:flex;gap:0;overflow-x:auto;
  border-bottom:1px solid var(--line);
  scrollbar-width:none;
}
.wrap .strip::-webkit-scrollbar{display:none;}
.wrap .strip a{
  text-decoration:none;color:var(--ink);
  flex:0 0 auto;
  min-width:150px;
  padding:20px clamp(16px,3vw,26px);
  border-right:1px solid var(--line);
  transition:background 0.2s ease;
}
.wrap .strip a:hover{background:var(--paper-raised);}
.wrap .strip .num{
  font-family:'Instrument Serif',serif;font-size:26px;color:var(--red);
  display:block;margin-bottom:4px;
}
.wrap .strip .lbl{font-size:12px;color:var(--muted);}
.wrap .strip .lbl b{color:var(--ink);font-weight:600;}

/* ============ CASE STUDIES ============ */
.wrap .cases{padding-block:clamp(10px,2vw,20px);}

.wrap .case{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:clamp(20px,3vw,40px);
  align-items:center;
  padding-block:clamp(32px,5vw,56px);
  border-bottom:1px solid var(--line);
  opacity:0; transform:translateY(18px);
  transition:opacity 0.7s ease, transform 0.7s ease;
}
.wrap .case.in-view{opacity:1;transform:translateY(0);}
.wrap .case:nth-of-type(even) .case-media{order:2;}

.wrap .case-media{
  position:relative;overflow:hidden;
  aspect-ratio:5/4;
  max-height:340px;
  background:#FFFFFF;
  border:0;border-radius:0;box-shadow:none;
}
.wrap .case-media img,
.wrap .more-card .photo img{
  width:100%;height:100%;object-fit:cover;object-position:center;display:block;
  filter:grayscale(0.55) contrast(1.05);
  border:0;border-radius:0;box-shadow:none;background:none;max-width:none;
}
.wrap .case-media .tint{
  position:absolute;inset:0;background:white;mix-blend-mode:multiply;opacity:0.16 ;border-radius: 18px;
}
.wrap .case-media .idx{
  position:absolute;top:16px;left:16px;
  font-family:'Instrument Serif',serif;font-size:15px;color:#fff;
  background:var(--ink);width:32px;height:32px;
  display:flex;align-items:center;justify-content:center;
  border:0;border-radius:0;
}

.wrap .case-body{max-width:440px;}
.wrap .case-body .cat{font-size:12px;color:var(--muted);margin:0 0 10px;}
.wrap .case-body h3{
  font-family:'Instrument Serif',serif;font-weight:400;
  font-size:clamp(32px,4vw,44px);margin:0 0 16px;line-height:1.02;
}
.wrap .case-body .result{font-size:15px;line-height:1.65;color:var(--ink);margin:0 0 26px;}

.wrap .case-stats{display:flex;gap:clamp(24px,4vw,44px);flex-wrap:wrap;}
.wrap .case-stats .stat{
  border-left:2px solid var(--line);padding-left:14px;
  background:none;min-height:0;width:auto;max-width:none;
  border-radius:0;box-shadow:none;position:static;overflow:visible;
}
.wrap .case-stats .stat.stat-primary{border-left-color:var(--red);}
.wrap .case-stats .stat .figure{
  font-family:'Instrument Serif',serif;font-size:34px;line-height:1;color:var(--ink);
}
.wrap .case-stats .stat.stat-primary .figure{color:var(--red);}
.wrap .case-stats .stat .caption{font-size:11.5px;color:var(--muted);margin-top:6px;}

/* ============ MORE PARTNERS ============ */
.wrap .more{padding-top:clamp(36px,5vw,56px);padding-bottom:clamp(28px,4vw,48px);}
.wrap .more h2{
  font-family:'Instrument Serif',serif;font-weight:400;
  font-size:clamp(28px,4vw,38px);margin:0 0 8px;
}
.wrap .more > p{font-size:14px;color:var(--muted);margin:0 0 28px;max-width:50ch;}

.wrap .more-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1px;
  background:var(--line);border:1px solid var(--line);
}
.wrap .more-card{
  background:var(--paper-raised);
  padding:22px 20px;
  display:flex;flex-direction:column;gap:12px;
}
.wrap .more-card .photo{
  aspect-ratio:16/10;max-height:160px;overflow:hidden;position:relative;
  background:var(--paper);border:0;border-radius:0;
}
.wrap .more-card .photo .tint{position:absolute;inset:0;background:#FFFFFF;mix-blend-mode:multiply;opacity:0.14; border-radius:18px; }
.wrap .more-card .name{font-size:15px;font-weight:600;margin:0;}
.wrap .more-card .cat{font-size:12px;color:var(--muted);margin:0;}
.wrap .more-card .fig{
  font-family:'Instrument Serif',serif;font-size:30px;color:var(--red);margin-top:auto;
}

/* ============ RESPONSIVE ============ */
@media (max-width:820px){
  .wrap .case{grid-template-columns:1fr;}
  .wrap .case:nth-of-type(even) .case-media{order:0;}
  .wrap .case-body{max-width:none;}
  .wrap .more-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:560px){
  .wrap .more-grid{grid-template-columns:1fr;}
  .wrap .case-stats{gap:20px;}
}

@media (prefers-reduced-motion: reduce){
  .wrap .case{transition:none;opacity:1;transform:none;}
}

.whitebutton{
  margin-top: 40px;
  padding-bottom: 64px;
  text-align: center;
}

.btn-white{
  display: inline-block;
  background: #fff;
  color: #E1362B;
  border: 2px solid #E1362B;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 40px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(225, 54, 43, 0.15);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn-white:hover{
  background: #E1362B;
  color: #fff;
  box-shadow: 0 6px 18px rgba(225, 54, 43, 0.35);
}