*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

/* Removed scaling hack; layout is fully responsive */

:root {
  --ca-site-gutter-x: clamp(0.8rem, 3.2vw, 1.6rem);
  --ca-site-content-max: 1179.2px;
  
  /* Premium Dark Theme Variables */
  --ca-bg-dark: #070A0F;
  --ca-bg-dark-elevated: #0F131C;
  --ca-navbar-bg: rgba(7, 10, 15, 0.75);
  --ca-navbar-text: #F8F9FA;
  --ca-navbar-active: #E63946;
  --ca-navbar-cta-bg: #ffffff;
  --ca-navbar-cta-fg: #000000;
  
  --ca-primary-glow: rgba(230, 57, 70, 0.35);
  --ca-border-light: rgba(255, 255, 255, 0.08);
  --ca-text-muted: rgba(248, 249, 250, 0.65);
  
  --ca-navbar-max-width: var(--ca-site-content-max);
  --ca-navbar-pad-x: var(--ca-site-gutter-x);
  --ca-navbar-breakpoint: 1024px;
  
  --ca-hero-banner-bg: var(--ca-bg-dark);
  --ca-hero-banner-accent: #E63946;
  --ca-hero-banner-max-width: var(--ca-site-content-max);
  --ca-hero-banner-pad-x: var(--ca-site-gutter-x);
  /* Hero-only texture */
  --ca-hero-texture-image: url("../Images/noiseEffect%20Frame%202.png");
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ca-navbar-text);
  background-color: var(--ca-bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.ca-navbar-menu-open {
  overflow: hidden;
}

/* ——— Navbar ——— */
.ca-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--ca-navbar-bg);
  color: var(--ca-navbar-text);
  backdrop-filter: blur(12.8px);
  -webkit-backdrop-filter: blur(12.8px);
  border-bottom: 1px solid var(--ca-border-light);
  transition: background 0.3s ease, border 0.3s ease;
}

.ca-navbar-inner {
  display: grid;
  align-items: center;
  gap: 0.6rem 0.8rem;
  min-height: 3.4rem;
  padding: 0.6rem var(--ca-navbar-pad-x);
  max-width: var(--ca-navbar-max-width);
  margin-inline: auto;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "brand nav end";
}

.ca-navbar-brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ca-navbar-text);
  text-decoration: none;
}

.ca-navbar-logo {
  display: block;
  flex-shrink: 0;
  width: 54.4px;
  height: 47.2px;
  object-fit: contain;
  vertical-align: middle;
}

.ca-navbar-brand-text {
  display: none;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.ca-navbar-nav {
  grid-area: nav;
  justify-self: center;
}

.ca-navbar-nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32.8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ca-navbar-nav-item {
  margin: 0;
}

.ca-navbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 8px;
  font-weight: 400;
  font-size: 14.4px;
  line-height: 19.2px;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  transition: color 0.15s ease, opacity 0.15s ease;
}

.ca-navbar-link:hover,
.ca-navbar-link:focus-visible {
  opacity: 0.92;
}

.ca-navbar-link:focus-visible {
  outline: 2px solid var(--ca-navbar-active);
  outline-offset: 2.4px;
}

.ca-navbar-link-active {
  color: #ff5b4d;
  pointer-events: none;
}

.ca-navbar-dropdown-icon {
  display: inline-flex;
  align-items: center;
  color: inherit;
}

.ca-navbar-end {
  grid-area: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
}

.ca-navbar-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6.8px 6.4px 6.8px 25.6px;
  text-decoration: none;
  background: var(--ca-navbar-cta-bg);
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ca-navbar-cta-button:hover,
.ca-navbar-cta-button:focus-visible {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.45), 0 3.2px 11.2px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

.ca-navbar-cta-button:focus-visible {
  outline: 2px solid var(--ca-navbar-active);
  outline-offset: 2.4px;
}

.ca-navbar-cta-text {
  font-weight: 400;
  font-size: 12.8px;
  line-height: 12.8px;
  letter-spacing: 0.4px;
  color: #141515;
}

.ca-navbar-cta-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
  background: var(--ca-navbar-cta-fg);
  border-radius: 50%;
  color: var(--ca-navbar-cta-bg);
}

.ca-navbar-cta-icon {
  display: block;
  width: 11.2px;
  height: 11.2px;
}

.ca-navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--ca-navbar-text);
  cursor: pointer;
}

.ca-navbar-toggle:focus-visible {
  outline: 2px solid var(--ca-navbar-active);
  outline-offset: 2px;
}

.ca-navbar-toggle-line {
  display: block;
  width: 1.08rem;
  height: 2px;
  margin-inline: auto;
  background: currentColor;
  border-radius: 1px;
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ——— Mobile / tablet ——— */
@media (max-width: 818.4px) {
  .ca-navbar-inner {
    /* Flexible columns instead of fixed 1fr to prevent overflow */
    grid-template-columns: 35.2px 1fr 35.2px;
    grid-template-areas: "toggle brand empty"
      "nav nav nav";
    column-gap: 0.6rem;
  }

  .ca-navbar-toggle {
    display: inline-flex;
    grid-area: toggle;
    justify-self: start;
    align-self: center;
    min-width: 0;
  }

  .ca-navbar-brand {
    grid-area: brand;
    justify-self: center;
    min-width: 0;
    width: auto;
    max-width: 100%;
    justify-content: center;
  }

  .ca-navbar-logo {
    display: none;
  }

  .ca-navbar-brand-text {
    display: block;
  }

  .ca-navbar-end {
    display: none !important;
  }

  .ca-navbar-nav {
    display: none;
    justify-self: stretch;
    padding: 0.4rem 0 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .ca-navbar-open .ca-navbar-nav {
    display: block;
  }

  .ca-navbar-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .ca-navbar-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .ca-navbar-link {
    width: 100%;
    padding: 0.68rem 0;
    font-size: 14.4px;
    line-height: 19.2px;
  }

  .ca-navbar-cta-button {
    padding: 0.4rem 0.36rem 0.4rem 0.68rem;
  }

  .ca-navbar-cta-text {
    font-size: 11.2px;
  }

  .ca-navbar-cta-icon-wrapper {
    width: 1.4rem;
    height: 1.4rem;
  }

  .ca-navbar-open .ca-navbar-toggle-line: nth-child(1) {
    transform: translateY(5.6px) rotate(45deg);
  }

  .ca-navbar-open .ca-navbar-toggle-line: nth-child(2) {
    opacity: 0;
  }

  .ca-navbar-open .ca-navbar-toggle-line: nth-child(3) {
    transform: translateY(-5.6px) rotate(-45deg);
  }
}

@media (max-width: 614.4px) {
  .ca-navbar-cta-text {
    display: none !important;
  }

  .ca-navbar-cta-button {
    padding: 0.28rem;
    background: transparent;
  }

  .ca-navbar-cta-icon-wrapper {
    background: var(--ca-navbar-cta-bg);
    color: var(--ca-navbar-cta-fg);
    width: 1.8rem;
    height: 1.8rem;
  }
}


/* ——— Hero banner ——— */
.ca-hero-banner {
  position: relative;
  overflow: hidden;
  background: var(--ca-hero-banner-bg);
  color: #ffffff;
}

.ca-hero-banner: :before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--ca-hero-texture-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.7;
  pointer-events: none;
}

.ca-hero-banner-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.ca-hero-banner-grid {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: 0 0;
  /* Fade in over ~2–3 cells (80px); hide hard edge on the right */
  -webkit-mask-image: linear-gradient(to right,
      transparent 0,
      rgba(0, 0, 0, 0.22) 64px,
      rgba(0, 0, 0, 0.62) 128px,
      #000 192px,
      #000 calc(100% - 2px),
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0,
      rgba(0, 0, 0, 0.22) 64px,
      rgba(0, 0, 0, 0.62) 128px,
      #000 192px,
      #000 calc(100% - 2px),
      transparent 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.ca-hero-banner-glow {
  position: absolute;
  top: 50%;
  right: -8%;
  width: min(44vw, 336px);
  max-width: none;
  transform: translateY(-50%);
  opacity: 0.95;
}

.ca-hero-banner-glow-svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(72vh, 448px);
}

@media (max-width: 511.2px) {
  .ca-hero-banner-glow {
    width: min(62.4vw, 240px);
    right: -18%;
    opacity: 0.8;
  }
}

.ca-hero-banner-inner {
  position: relative;
  z-index: 2;
  max-width: var(--ca-hero-banner-max-width);
  margin-inline: auto;
  padding: 72px var(--ca-hero-banner-pad-x) 80px;
  /* padding: 92px var(--ca-hero-banner-pad-x) 80px; */
}

.ca-hero-banner-content {
  max-width: min(28.8rem, 100%);
}

@media (min-width: 819.2px) {
  .ca-hero-banner-content {
    max-width: min(33.6rem, 58%);
  }
}

.ca-hero-banner-badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 8px;
  font-weight: 400;
  font-size: 9.6px;
  line-height: 11.2px;
  color: #ffffff;
  background: rgba(204, 19, 3, 0.11);
  border: 1px solid rgba(204, 19, 3, 0.69);
  border-radius: 32px;
}

.ca-hero-banner-title {
  margin: 0 0 1.2rem;
  font-weight: 700;
  /* font-size: clamp(1rem, 3.2vw + 1.2rem, 72px); */
  font-size: clamp(1.2rem, 2vw + 0.8rem, 48px);
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.ca-hero-banner-title-line {
  display: block;
}

.ca-hero-banner-desc {
  margin: 0 0 2rem;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.6vw + 0.6rem, 19.2px);
  line-height: 140%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #ffffff;
  max-width: 28.8rem;
}

.ca-hero-banner-tagline {
  margin: 0 0 1.8rem;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.6vw + 0.6rem, 22.4px);
  line-height: 140%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #ffffff;
  max-width: 28.8rem;
}

.ca-hero-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 6.8px 6.4px 6.8px 25.6px;
  font-family: inherit;
  text-decoration: none;
  color: #ffffff;
  background: #cc1303;
  border-radius: 100px;
  white-space: nowrap;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.ca-hero-banner-btn:hover,
.ca-hero-banner-btn:focus-visible {
  box-shadow: 0 0 0 3.2px var(--ca-primary-glow), 0 4.8px 16px rgba(230, 57, 70, 0.5);
  transform: translateY(-2.4px);
}

.ca-hero-banner-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2.4px;
}

.ca-hero-banner-btn-text {
  font-weight: 400;
  font-size: 12.8px;
  line-height: 12.8px;
  letter-spacing: 0.4px;
  color: #ffffff;
}

.ca-hero-banner-btn-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}

.ca-hero-banner-btn-icon {
  display: block;
  width: 35.2px;
  background: #000000;
  height: 35.2px;
  border-radius: 50%;
}

@media (max-width: 613.6px) {
  .ca-hero-banner-inner {
    padding: clamp(2.6rem, 9.6vw, 3.6rem) var(--ca-hero-banner-pad-x) clamp(2.2rem, 8vw, 3rem);
  }

  .ca-hero-banner-badge {
    margin-bottom: 0.7rem;
    padding: 6.4px 8px;
    font-size: 8.8px;
    line-height: 10.4px;
  }

  .ca-hero-banner-title {
    margin-bottom: 0.9rem;
    font-size: clamp(1.5rem, 4.96vw + 0.52rem, 2.1rem);
    letter-spacing: -0.025em;
  }

  .ca-hero-banner-desc {
    margin-bottom: 0.9rem;
    font-size: clamp(0.75rem, 2.48vw, 0.85rem);
    line-height: 145%;
  }

  .ca-hero-banner-tagline {
    margin-bottom: 1.1rem;
    font-size: clamp(0.75rem, 2.48vw, 0.85rem);
    line-height: 145%;
  }

  .ca-hero-banner-btn {
    padding: 0.4rem 0.36rem 0.4rem 0.68rem;
    gap: 0.28rem;
    max-width: 100%;
  }

  .ca-hero-banner-btn-icon {
    width: 32px;
    height: 32px;
  }
}

/* ——— Marquee (o- prefix) — Figma-aligned ——— */
.o-marquee-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.o-marquee-section {
  position: relative;
  z-index: 2;
  margin: -22.4px 0 0 0;
  padding: 0;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  overflow: hidden;
  background: var(--ca-hero-banner-bg);
}

.o-marquee-visual {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  min-height: 198.6px;
}

.o-marquee-bands {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Figma: 2016×148, #AA0E00, rotate(-2.86deg), z-index 0 */
.o-marquee-band-base {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 126%;
  height: 118.4px;
  /* height: 118.4px; */
  background: #aa0e00;
  transform: translate(-50%, -50%) rotate(-2.86deg);
  transform-origin: center center;
}

/* Figma: absolute bar #CC1303, top 28.1px, z-index 1 */
.o-marquee-band-overlay {
  position: absolute;
  top: 28.1px;
  left: -4px;
  width: calc(100% + 11.2px);
  height: 118.4px;
  background: #cc1303;
  z-index: 1;
}

.o-marquee-body {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 198.6px;
  margin: 0;
  padding: 0;
  background: transparent;
  pointer-events: none;
}

.o-marquee-body .o-marquee-viewport {
  pointer-events: auto;
}

.o-marquee-viewport {
  overflow: hidden;
  width: 100%;
}

.o-marquee-rail {
  display: flex;
  width: max-content;
  max-width: none;
  animation: o-marquee-slide 42s linear infinite;
  will-change: transform;
}

/* Figma Frame 31: gap 33.6px between groups */
.o-marquee-chunk {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  flex-shrink: 0;
  gap: 33.6px;
  padding-inline-end: 33.6px;
  white-space: nowrap;
}

/* Figma Frame 29: row, gap 19.2px */
.o-marquee-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 19.2px;
}

/* Figma text: Inter 24px / 140% / -0.02em / capitalize */
.o-marquee-phrase {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.76vw, 24px);
  line-height: 140%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.o-marquee-star {
  display: block;
  flex-shrink: 0;
  width: 6.4px;
  height: 6.4px;
  /* width: 13.6px;
  height: 13.6px; */
}

@media (max-width: 613.6px) {
  .o-marquee-section {
    margin: -11.2px 0 0 0;
    width: 100%;
    /* Same as hero so no harsh black band under the strip */
    background: var(--ca-hero-banner-bg);
  }

  /* Shorter block — ticker shouldn’t dominate the viewport */
  .o-marquee-visual {
    min-height: clamp(5.4rem, 28.8vw, 6.2rem);
    overflow: hidden;
  }

  /* One clean layer on small screens (overlay misaligns when narrow) */
  .o-marquee-band-overlay {
    display: none;
  }

  /* Figma tilt + extra width so corners stay hidden behind overflow */
  .o-marquee-band-base {
    width: 238%;
    max-width: none;
    height: 94.4px;
    background: #cc1303;
    transform: translate(-50%, -50%) rotate(-2.86deg);
    transform-origin: center center;
  }

  .o-marquee-body {
    min-height: clamp(5.4rem, 28.8vw, 6.2rem);
    padding-block: 0.4rem;
    padding-inline: 0;
  }

  .o-marquee-viewport {
    width: 100%;
    padding-inline: 0;
    box-sizing: border-box;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .o-marquee-rail {
    animation-duration: 32s;
  }

  .o-marquee-chunk {
    gap: 1rem;
    padding-inline-end: 1rem;
  }

  .o-marquee-group {
    gap: 0.52rem;
  }

  .o-marquee-phrase {
    font-size: clamp(0.75rem, 2.8vw, 0.85rem);
    line-height: 1.35;
    letter-spacing: -0.015em;
  }

  .o-marquee-star {
    width: 10.4px;
    height: 10.4px;
  }
}

@media (max-width: 304px) {

  .o-marquee-visual,
  .o-marquee-body {
    min-height: clamp(5rem, 27.2vw, 5.6rem);
  }

  .o-marquee-band-base {
    width: 260%;
    height: 89.6px;
  }

  .o-marquee-chunk {
    gap: 0.8rem;
    padding-inline-end: 0.8rem;
  }

  .o-marquee-group {
    gap: 0.4rem;
  }
}

@keyframes o-marquee-slide {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .o-marquee-rail {
    animation: none;
    transform: none;
    justify-content: center;
    margin-inline: auto;
    flex-wrap: wrap;
    row-gap: 0.4rem;
  }

  .o-marquee-chunk[aria-hidden="true"] {
    display: none;
  }
}

.ca-home-main {
  min-height: 0;
  overflow-x: hidden;
}

/* ——— Rating / stats (ca-rating-points) ——— */
.ca-rating-points-section {
  position: relative;
  background: #07090a;
  padding: 0 0 clamp(2.8rem, 7.2vw, 4rem);
}

.ca-rating-points-inner {
  box-sizing: border-box;
  max-width: var(--ca-site-content-max);
  margin-inline: auto;
  padding: 0 var(--ca-site-gutter-x);
}

/* Figma Frame 27 — top rule only spans this content wrapper (inside gutters), not viewport */
.ca-rating-points-row {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0;
  padding: 48px 0 0;
  gap: 80px;
  min-height: 151.2px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Figma Frame 25 */
.ca-rating-points-item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 12.8px;
  margin: 0 auto;
  width: 226.4px;
  min-width: 0;
  flex: 0 0 auto;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.ca-rating-points-item: last-child {
  border-right: none;
}

.ca-rating-points-number {
  margin: 0;
  width: 100%;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-style: normal;
  font-weight: 700;
  /* font-size: 64px; */
  font-size: 48px;
  line-height: 72px;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  color: #cc1303;
  display: flex;
  align-items: center;
}

.ca-rating-points-label {
  margin: 0;
  max-width: 100%;
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  font-size: 18.4px;
  line-height: 100%;
  text-transform: capitalize;
  color: #ffffff;
}

/* Tablet: 2×2 grid with continuous vertical + horizontal dividers */
@media (max-width: 992px) {
  .ca-rating-points-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
    align-items: stretch;
    justify-content: stretch;
    column-gap: 0;
    row-gap: 0;
    width: 100%;
    max-width: min(496px, 100%);
    margin-inline: auto;
    padding-top: 38.4px;
    min-height: 0;
  }

  .ca-rating-points-item {
    width: 100%;
    max-width: none;
    margin: 0;
    border: none;
  }

  /* Top row: shared horizontal rule + vertical between columns */
  .ca-rating-points-item:nth-child(1),
  .ca-rating-points-item:nth-child(2) {
    padding-bottom: clamp(1.2rem, 3.2vw, 1.8rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .ca-rating-points-item: nth-child(1),
  .ca-rating-points-item:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: clamp(0.6rem, 2.4vw, 1.2rem);
  }

  .ca-rating-points-item: nth-child(2),
  .ca-rating-points-item:nth-child(4) {
    padding-left: clamp(0.6rem, 2.4vw, 1.2rem);
  }

  /* Bottom row spacing below the middle horizontal line */
  .ca-rating-points-item: nth-child(3),
  .ca-rating-points-item:nth-child(4) {
    padding-top: clamp(1.2rem, 3.2vw, 1.8rem);
  }
}

/* Mobile: single column — horizontal rules only (no vertical “ghost” lines) */
@media (max-width: 480px) {
  .ca-rating-points-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-top: 38.4px;
  }

  .ca-rating-points-item {
    width: 100%;
    max-width: 256px;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    padding: 0 0 clamp(1rem, 3.2vw, 1.4rem);
    border: none;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .ca-rating-points-item: nth-child(1),
  .ca-rating-points-item:nth-child(2),
  .ca-rating-points-item:nth-child(3),
  .ca-rating-points-item:nth-child(4) {
    border-right: none !important;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
  }

  .ca-rating-points-item: last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .ca-rating-points-number {
    justify-content: center;
    font-size: clamp(2.4rem, 11.2vw, 64px);
    line-height: 1.1;
  }

  .ca-rating-points-label {
    font-size: clamp(0.8rem, 3.36vw, 18.4px);
    align-self: center;
  }
}

/* ——— Who we are (Frame 44 / 39 / 38) ——— */
.ca-who-we-are-section {
  position: relative;
  background: #ffffff;
  color: #030303;
  padding: 96px 0;
  scroll-margin-top: 3.6rem;
}

.ca-who-we-are-inner {
  box-sizing: border-box;
  max-width: var(--ca-site-content-max);
  margin-inline: auto;
  padding-inline: var(--ca-site-gutter-x);
}

.ca-who-we-are-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: clamp(1.6rem, 4vw, 2rem);
}

.ca-who-we-are-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11.2px;
  flex: 0 1 576px;
  min-width: 0;
  max-width: 576px;
}

.ca-who-we-are-badge {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin: 0;
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  font-size: 9.6px;
  line-height: 11.2px;
  color: #cc1303;
  background: rgba(204, 19, 3, 0.11);
  border: 1px solid rgba(204, 19, 3, 0.69);
  border-radius: 32px;
}

.ca-who-we-are-title {
  margin: 0;
  max-width: 100%;
  font-family: inherit;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.6rem, 5.2vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: capitalize;
  color: #030303;
}

.ca-who-we-are-title-line {
  display: block;
}

.ca-who-we-are-cta {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  isolation: isolate;
  margin-top: 31.2px;
  padding: 6.8px 6.4px 6.8px 25.6px;
  font-family: inherit;
  text-decoration: none;
  color: #ffffff;
  background: #cc1303;
  border-radius: 100px;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.ca-who-we-are-cta:hover,
.ca-who-we-are-cta:focus-visible {
  box-shadow: 0 0 0 2px rgba(204, 19, 3, 0.45);
}

.ca-who-we-are-cta:focus-visible {
  outline: 2px solid #030303;
  outline-offset: 2.4px;
}

.ca-who-we-are-cta-text {
  font-weight: 400;
  font-size: 12.8px;
  line-height: 12.8px;
  letter-spacing: 0.4px;
  color: #ffffff;
}

.ca-who-we-are-cta-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}

.ca-who-we-are-cta-icon {
  display: block;
  width: 35.2px;
  height: 35.2px;
  border-radius: 50%;
  background: #000000;
}

.ca-who-we-are-copy {
  box-sizing: border-box;
  flex: 0 0 auto;
  width: min(288px, 100%);
  max-width: 288px;
  margin: 0;
  padding: 0 6.8px 0 0;
  /* Badge (25px) + gap (14px) — align body with first line of heading */
  padding-top: 31.2px;
}

.ca-who-we-are-body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14.4px;
  line-height: 19.2px;
  color: #030303;
}

@media (max-width: 818.4px) {
  .ca-who-we-are-row {
    flex-direction: column;
    align-items: stretch;
    row-gap: clamp(1.4rem, 4vw, 2rem);
  }

  .ca-who-we-are-main {
    flex: none;
    max-width: none;
    min-width: 0;
  }

  .ca-who-we-are-title {
    font-size: clamp(1.7rem, 4.8vw + 0.8rem, 2.8rem);
  }

  .ca-who-we-are-copy {
    flex: none;
    max-width: none;
    padding: 0;
    padding-top: 0;
  }

  .ca-who-we-are-body {
    max-width: 28.8rem;
  }
}

@media (max-width: 480px) {
  .ca-who-we-are-cta {
    padding: 0.4rem 0.36rem 0.4rem 0.68rem;
    max-width: 100%;
    flex-wrap: nowrap;
  }

  .ca-who-we-are-cta-icon {
    width: 32px;
    height: 32px;
  }
}

/* ——— Services (Frame 45 / 43 / tray) ——— */
.ca-services-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.ca-services-section {
  position: relative;
  background: #ffffff;
  color: #030303;
  padding: 96px 0;
  scroll-margin-top: 3.6rem;
}

.ca-services-inner {
  box-sizing: border-box;
  max-width: var(--ca-site-content-max);
  margin-inline: auto;
  padding-inline: var(--ca-site-gutter-x);
}

.ca-services-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.ca-services-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 63.2px;
  width: 100%;
}

.ca-services-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12.8px;
  max-width: 654.1px;
  width: 100%;
  text-align: center;
}

.ca-services-badge {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 9.6px;
  line-height: 11.2px;
  color: #cc1303;
  background: rgba(204, 19, 3, 0.11);
  border: 1px solid rgba(204, 19, 3, 0.69);
  border-radius: 32px;
}

.ca-services-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.8rem, 4.4vw, 44.8px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #030303;
}

.ca-services-heading-line {
  display: block;
  width: 100%;
  text-align: center;
}

.ca-services-heading-line--a {
  line-height: 56.8px;
}

.ca-services-heading-line--b {
  line-height: 49.6px;
}

.ca-services-tray {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12.8px;
  width: 100%;
  padding: 25.6px;
  background: #030303;
  border-radius: 32px;
}

.ca-services-col {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
  padding: 25.6px 16px 0;
  background: #f5f5f7;
  border-radius: 20px;
}

.ca-services-col-title {
  box-sizing: border-box;
  margin: 0;
  padding: 0 0 0 15.2px;
  width: 100%;
  font-family: inherit;
  font-style: normal;
  font-weight: 700;
  font-size: 19.2px;
  line-height: 23.2px;
  color: #141515;
}

.ca-services-col-title--branding {
  font-size: 19px;
}

.ca-services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.ca-services-link {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 9.6px;
  min-height: 72px;
  padding: 0 14.4px;
  text-decoration: none;
  color: #141515;
  transition: background-color 0.15s ease, color 0.15s ease;
  width: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.ca-services-link:hover,
.ca-services-link:focus-visible {
  background-color: rgba(0, 0, 0, 0.03);
}

.ca-services-link:focus-visible {
  outline: 2px solid #cc1303;
  outline-offset: -2px;
}

.ca-services-link-text {
  flex: 1;
  min-width: 0;
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  font-size: 14.4px;
  line-height: 21.6px;
  text-align: left;
}

.ca-services-arrow {
  flex-shrink: 0;
  display: block;
  color: #141515;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ——— Drawer Enhancements ——— */
.ca-services-list-item {
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ca-services-list-item: first-child {
  border-top: none;
}

.ca-services-list-item.is-open .ca-services-arrow {
  transform: rotate(90deg);
}

.ca-services-drawer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.015);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    padding 0.3s ease;
}

.ca-services-list-item.is-open .ca-services-drawer {
  max-height: 480px;
  opacity: 1;
  padding-bottom: 19.2px;
}

.ca-drawer-inner {
  padding: 0 14.4px 0 25.6px;
}

.ca-drawer-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11.2px;
}

.ca-drawer-point {
  position: relative;
  padding-left: 19.2px;
  font-family: inherit;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(20, 21, 21, 0.75);
}

.ca-drawer-point: :before {
  content: "";
  position: absolute;
  left: 0;
  top: 7.2px;
  width: 4.8px;
  height: 4.8px;
  background: #cc1303;
  border-radius: 50%;
}

.ca-services-cta {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  isolation: isolate;
  padding: 6.8px 6.4px 6.8px 25.6px;
  font-family: inherit;
  text-decoration: none;
  color: #ffffff;
  background: #cc1303;
  border-radius: 100px;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.ca-services-cta:hover,
.ca-services-cta:focus-visible {
  box-shadow: 0 0 0 2px rgba(204, 19, 3, 0.45);
}

.ca-services-cta:focus-visible {
  outline: 2px solid #030303;
  outline-offset: 2.4px;
}

.ca-services-cta-text {
  font-weight: 400;
  font-size: 12.8px;
  line-height: 12.8px;
  letter-spacing: 0.4px;
  color: #ffffff;
}

.ca-services-cta-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}

.ca-services-cta-icon {
  display: block;
  width: 35.2px;
  height: 35.2px;
  border-radius: 50%;
  background: #000000;
}

@media (max-width: 960px) {
  .ca-services-tray {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 818.4px) {
  .ca-services-heading {
    font-size: clamp(1.6rem, 4vw + 0.8rem, 2.6rem);
  }

  .ca-services-heading-line--a,
  .ca-services-heading-line--b {
    line-height: 1.15;
  }

  .ca-services-block {
    gap: clamp(2rem, 4.8vw, 3.6rem);
  }
}

@media (max-width: 384px) {
  .ca-services-col {
    padding: 19.2px 12.8px 0;
  }

  .ca-services-link {
    min-height: 57.6px;
    padding: 0 9.6px;
  }

  .ca-services-link-text {
    font-size: 12.8px;
    line-height: 1.4;
  }
}


@media (max-width: 512px) {
  .ca-services-tray {
    grid-template-columns: 1fr;
    padding: clamp(1rem, 3.2vw, 1.6rem);
  }

  .ca-services-stack {
    gap: clamp(1.6rem, 4.8vw, 2.8rem);
  }

  .ca-services-cta {
    padding: 0.4rem 0.36rem 0.4rem 0.68rem;
    max-width: 100%;
  }

  .ca-services-cta-icon {
    width: 32px;
    height: 32px;
  }
}

/* ——— FAQ (Frame 54 / 51) ——— */
.ca-faq-section {
  position: relative;
  overflow: hidden;
  background: #060809;
  color: #ffffff;
  padding: 96px 0;
  scroll-margin-top: 3.6rem;
}

.ca-faq-section: :before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--ca-hero-texture-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.45;
  pointer-events: none;
}

.ca-faq-glow {
  position: absolute;
  top: auto;
  right: -10%;
  bottom: 0;
  z-index: 0;
  width: min(46.4vw, 448px);
  height: min(38.4vw, 352px);
  background: radial-gradient(ellipse at center, rgba(188, 45, 28, 0.38) 0%, transparent 68%);
  filter: blur(51.2px);
  pointer-events: none;
}

.ca-faq-inner {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  max-width: var(--ca-site-content-max);
  margin-inline: auto;
  padding-inline: var(--ca-site-gutter-x);
}

.ca-faq-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  max-width: 553.6px;
  margin-inline: auto;
  text-align: center;
}

.ca-faq-badge {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  font-size: 9.6px;
  line-height: 11.2px;
  color: #ffffff;
  background: rgba(204, 19, 3, 0.11);
  border: 1px solid rgba(204, 19, 3, 0.69);
  border-radius: 32px;
}

.ca-faq-title-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 7.2px;
  width: 100%;
}

.ca-faq-heading {
  margin: 0;
  font-family: inherit;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.8rem, 4.4vw, 44.8px);
  line-height: 1.2;
  letter-spacing: -0.04em;
  text-align: center;
  color: #ffffff;
}

.ca-faq-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 51.2px;
  width: 100%;
  max-width: 1155.2px;
  margin: clamp(2.8rem, 6.4vw, 5.2rem) auto 0;
}

.ca-faq-item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 25.6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ca-faq-item.is-open {
  gap: 19.2px;
}

.ca-faq-trigger {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
}

.ca-faq-trigger:focus-visible {
  outline: 2px solid #cc1303;
  outline-offset: 3.2px;
}

.ca-faq-question {
  flex: 1;
  min-width: 0;
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28.8px;
  color: #ffffff;
}

.ca-faq-icon-wrap {
  display: grid;
  place-items: center;
  width: 36.8px;
  height: 36.8px;
  flex-shrink: 0;
}

.ca-faq-icon-wrap .ca-faq-icon {
  grid-area: 1 / 1;
}

.ca-faq-item: not(.is-open) .ca-faq-icon--minus {
  visibility: hidden;
  pointer-events: none;
}

.ca-faq-item.is-open .ca-faq-icon--plus {
  visibility: hidden;
  pointer-events: none;
}

.ca-faq-panel {
  width: 100%;
  max-width: 1010.4px;
}

.ca-faq-panel[hidden] {
  display: none !important;
}

.ca-faq-answer {
  margin: 0;
  font-family: inherit;
  font-style: normal;
  font-weight: 300;
  font-size: 12.8px;
  line-height: 140%;
  color: #ffffff;
}



@media (max-width: 818.4px) {
  .ca-faq-heading {
    font-size: clamp(1.6rem, 4vw + 0.8rem, 2.6rem);
    line-height: 1.15;
  }

  .ca-faq-list {
    gap: clamp(2rem, 4.8vw, 3.2rem);
  }

  .ca-faq-question {
    font-size: clamp(0.9rem, 2vw + 0.6rem, 1.4rem);
    line-height: 1.25;
  }

  .ca-faq-answer {
    font-size: clamp(0.8rem, 1.2vw + 0.68rem, 1.1rem);
    line-height: 140%;
  }
}

@media (max-width: 480px) {
  .ca-faq-icon-wrap {
    width: 32px;
    height: 32px;
  }

  .ca-faq-icon-wrap .ca-faq-icon {
    width: 32px;
    height: 32px;
  }

  .ca-faq-list {
    margin-top: 2rem;
  }

  .ca-faq-item {
    padding-bottom: 19.2px;
  }

  .ca-faq-question {
    padding-right: 0;
  }
}

@media (max-width: 384px) {
  .ca-faq-title-row {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* ——— CTA “Ready to scale” / contact ——— */
.ca-cta-scale-section {
  position: relative;
  background: #fbfbfb;
  padding-top: 95.2px;
  padding-bottom: 95.2px;
  scroll-margin-top: 3.6rem;
}

.ca-cta-scale-section: :before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--ca-hero-texture-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.22;
  pointer-events: none;
}

.ca-cta-scale-inner {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  max-width: 1536px;
  margin-inline: auto;
  padding: 0 clamp(1rem, 6.76vw, 8.1rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ca-cta-scale-card {
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
  max-width: 1196.8px;
  padding: clamp(2.4rem, 5.6vw, 3.6rem) clamp(1.2rem, 4vw, 3.6rem) clamp(2.6rem, 5.6vw, 3.8rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(204, 19, 3, 0.17);
  border-radius: 32px;
}

.ca-cta-scale-glow {
  position: absolute;
  top: -10%;
  right: -25%;
  width: min(72%, 576px);
  height: min(95%, 720px);
  background: linear-gradient(317.84deg,
      #cc1303 10.94%,
      rgba(255, 115, 98, 0) 72.99%);
  opacity: 0.52;
  transform: rotate(22.11deg);
  filter: blur(72px);
  pointer-events: none;
}

.ca-cta-scale-title {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 552px;
  font-family: inherit;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.8rem, 4.8vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.05em;
  text-align: center;
  color: #141515;
}

.ca-cta-scale-desc {
  position: relative;
  z-index: 1;
  margin: 19.2px 0 0;
  max-width: 430.4px;
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(0.8rem, 1.6vw, 16px);
  line-height: 1.4;
  text-align: center;
  color: #141515;
}

.ca-cta-scale-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  margin-top: 38.4px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.ca-cta-scale-link:hover,
.ca-cta-scale-link:focus-visible {
  filter: brightness(1.03);
}

.ca-cta-scale-link:focus-visible {
  outline: 2px solid #cc1303;
  outline-offset: 3.2px;
}

.ca-cta-scale-icon-box {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48.8px;
  min-width: 48.8px;
  height: 48.8px;
  padding: 16px;
  background: #030303;
  border-radius: 0 30.5px 30.5px 30.5px;
}

.ca-cta-scale-icon {
  display: block;
  flex-shrink: 0;
}

.ca-cta-scale-btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-height: 48px;
  padding: 14.4px 35.2px;
  background: #cc1303;
  border-radius: 100px;
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  font-size: 14.4px;
  line-height: 19.2px;
  color: #ffffff;
}

@media (max-width: 818.4px) {
  .ca-cta-scale-title {
    font-size: clamp(1.8rem, 4.8vw + 0.8rem, 3.6rem);
    line-height: 1.1;
  }
}

@media (max-width: 480px) {
  .ca-cta-scale-link {
    margin-top: 32px;
    max-width: 100%;
  }

  .ca-cta-scale-btn {
    flex: 1;
    min-width: 0;
    padding: 12.8px 22.4px;
    font-size: 12.8px;
  }

  .ca-cta-scale-desc {
    padding: 0 0.4rem;
    font-size: clamp(0.8rem, 2.8vw, 0.9rem);
    line-height: 1.35;
  }
}

/* ——— Footer (Frame 90) ——— */
.ca-site-footer {
  position: relative;
  overflow: hidden;
  background: #07090a;
  color: #ffffff;
  height: 592px;
  padding: 69.6px 0 70.4px;
}

.ca-site-footer-bg-boxes {
  position: absolute;
  z-index: 0;
  width: 800px;
  height: 456.8px;
  left: 50%;
  top: 135.2px;
  transform: translateX(-50%);
  opacity: 0.15;
  pointer-events: none;
}

.ca-site-footer-bg-boxes path {
  opacity: 1;
}

.ca-site-footer-inner {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  max-width: 1145.6px;
  margin-inline: auto;
  padding-inline: var(--ca-site-gutter-x);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 86.4px;
}

.ca-site-footer-top {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}

.ca-site-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12.8px;
  max-width: 455.2px;
}

.ca-site-footer-logo {
  width: 54.4px;
  height: 47.2px;
  object-fit: contain;
}

.ca-site-footer-brand-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.ca-site-footer-brand-title {
  margin: 0;
  font-family: inherit;
  font-weight: 700;
  font-size: 11.2px;
  line-height: 13.6px;
  color: #ffffff;
}

.ca-site-footer-brand-text {
  margin: 0;
  font-family: inherit;
  font-weight: 400;
  font-size: 12.8px;
  line-height: 15.2px;
  color: #ffffff;
}

.ca-site-footer-links-wrap {
  display: grid;
  grid-template-columns: 252.8px repeat(3, minmax(144px, 1fr));
  gap: 51.2px;
  align-items: start;
}

.ca-site-footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12.8px;
}

.ca-site-footer-contact {
  gap: 38.4px;
}

.ca-site-footer-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12.8px;
}

.ca-site-footer-heading {
  margin: 0;
  font-family: inherit;
  font-weight: 700;
  font-size: 12.8px;
  line-height: 19.2px;
  letter-spacing: 0.4px;
  color: #ffffff;
}

.ca-site-footer-muted {
  margin: 0;
  opacity: 0.85;
  font-family: inherit;
  font-weight: 400;
  font-size: 12.4px;
  line-height: 19.2px;
  color: #ffffff;
}

.ca-site-footer-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: inherit;
  font-weight: 400;
  font-size: 14.4px;
  line-height: 21.6px;
  letter-spacing: 0.4px;
  color: #ffffff;
}

.ca-site-footer-copy-icon {
  opacity: 0.95;
}

.ca-site-footer-col a {
  opacity: 0.85;
  text-decoration: none;
  font-family: inherit;
  font-weight: 400;
  font-size: 11.2px;
  line-height: 16.8px;
  letter-spacing: 0.4px;
  color: #ffffff;
}

.ca-site-footer-col a:hover,
.ca-site-footer-col a:focus-visible,
.ca-site-footer-email:hover,
.ca-site-footer-email:focus-visible {
  opacity: 1;
}

.ca-site-footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12.8px;
}

.ca-site-footer-legal-links {
  display: inline-flex;
  align-items: center;
  gap: 14.4px;
}

.ca-site-footer-legal-links a {
  opacity: 0.5;
  text-decoration: none;
  font-family: inherit;
  font-weight: 400;
  font-size: 12.8px;
  line-height: 17.6px;
  letter-spacing: -0.472px;
  color: #fcfcf7;
}

.ca-site-footer-copyright {
  margin: 0;
  font-family: inherit;
  font-weight: 400;
  font-size: 12.6px;
  line-height: 17.6px;
  letter-spacing: -0.472px;
  color: rgba(252, 252, 248, 0.5);
}

@media (max-width: 960px) {
  .ca-site-footer-links-wrap {
    grid-template-columns: repeat(2, minmax(176px, 1fr));
    gap: 38.4px 51.2px;
  }
}

@media (max-width: 640px) {
  .ca-site-footer {
    height: auto;
    padding: 57.6px 0 57.6px;
  }

  .ca-site-footer-inner {
    gap: 51.2px;
  }

  .ca-site-footer-links-wrap {
    grid-template-columns: 1fr;
    gap: 30.4px;
  }

  .ca-site-footer-contact {
    gap: 25.6px;
  }

  .ca-site-footer-bottom {
    flex-direction: column;
    gap: 12.8px;
    text-align: center;
  }

  .ca-site-footer-inner {
    padding-inline: 1rem;
  }
}

@media (max-width: 384px) {
  .ca-site-footer-brand {
    align-items: center;
    text-align: center;
  }

  .ca-site-footer-brand-copy {
    align-items: center;
  }

  .ca-site-footer-legal-links {
    flex-direction: column;
    gap: 9.6px;
  }
}


/* Typography consistency across badges + CTA labels */
.ca-navbar-cta-text,
.ca-hero-banner-btn-text,
.ca-who-we-are-cta-text,
.ca-services-cta-text,
.ca-cta-scale-btn,
.ca-hero-banner-badge,
.ca-who-we-are-badge,
.ca-services-badge,
.ca-faq-badge {
  font-family: inherit;
}

/* Mobile section spacing: half of desktop values */
@media (max-width: 480px) {
  .ca-hero-banner-inner {
    padding: 46.4px var(--ca-hero-banner-pad-x) 40px;
  }

  .ca-rating-points-section {
    padding-top: 0;
    padding-bottom: 32px;
  }

  .ca-who-we-are-section {
    padding-top: 45.6px;
    padding-bottom: 50.4px;
  }

  .ca-services-section {
    padding-top: 50.4px;
    padding-bottom: 40.8px;
  }

  .ca-faq-section {
    padding-top: 26.4px;
    padding-bottom: 56.8px;
  }

  .ca-cta-scale-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .ca-site-footer {
    padding-top: 35.2px;
    padding-bottom: 35.2px;
  }
}

/* Back to Top Button */
.ca-back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #cc1303;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(204, 19, 3, 0.4);
}

.ca-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ca-back-to-top:hover {
  background: #ff5b4d;
  box-shadow: 0 6px 20px rgba(255, 91, 77, 0.5);
  transform: translateY(-4px);
}

.ca-back-to-top-icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 614.4px) {
  .ca-back-to-top {
    bottom: 16px;
    right: 16px;
    width: 35.2px;
    height: 35.2px;
  }
}