
:root {
  --brand: #52bac5;
  --brand-dark: #3a9faa;
  --brand-glow: rgba(82, 186, 197, 0.28);
  --navy: #2e3e58;
  --dark: #1a2333;
  --dark2: #0f1720;
  --white: #ffffff;
  --off: #f5f8fb;
  --off2: #edf1f7;
  --border: #e2e8f0;
  --text: #1e2d3d;
  --text-2: #4a6078;
  --text-3: #7f96ae;
  --green: #22c55e;
  --yellow: #f59e0b;
  --orange: #f97316;
  --purple: #8b5cf6;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-h: "Plus Jakarta Sans", "Inter", sans-serif;
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --sh: 0 2px 16px rgba(30, 45, 61, 0.07);
  --sh-lg: 0 12px 48px rgba(30, 45, 61, 0.13);
  --sh-xl: 0 24px 80px rgba(30, 45, 61, 0.18);
  --max: 1180px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.28s var(--ease);
}

.cwPageContainer {
  font-family: var(--font);
  font-size: 16px;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* ─── INNER CONTAINERS ─── */
.cwHeroSection,
.cwSvcSectionInner,
.cwHiwSectionInner,
.cwStSectionInner,
.cwWhySectionInner,
.cwTechSectionInner,
.cwFaqSectionInner,
.cwCtaSectionInner {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ─────────────────────────────────────────
   SECTION LABEL
───────────────────────────────────────── */
.cwSectionLabel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
.cwSectionLabel::before {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

/* ─────────────────────────────────────────
   HERO  (dark gradient, same as gg)
───────────────────────────────────────── */
.cwHeroWrapper {
  background: linear-gradient(150deg, #0d1320 0%, #111b2e 50%, #0c1a2a 100%);
  position: relative;
  overflow: hidden;
}
.cwHeroWrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(82, 186, 197, 0.12) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}
.cwHeroWrapper::after {
  content: none;
}
/* extra blob bottom-left */
.cwHeroSection::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(82, 186, 197, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.cwHeroSection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 96px;
  padding-inline: 24px;
  max-width: var(--max);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.cwHeroBadge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(82, 186, 197, 0.14);
  border: 1px solid rgba(82, 186, 197, 0.32);
  color: #8fd8e2;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px 5px 10px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.cwHeroBadgeDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 8px var(--brand);
  animation: cwPulse 2s infinite;
}
@keyframes cwPulse {
  0%,
  100% {
    box-shadow: 0 0 6px var(--brand);
  }
  50% {
    box-shadow: 0 0 14px var(--brand);
  }
}

.cwHeroTitle {
  font-family: var(--font-h);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 22px;
}
.cwHeroTitle span {
  background: linear-gradient(90deg, var(--brand) 0%, #8ce6f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cwHeroSubtitle {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  margin-bottom: 38px;
  max-width: 480px;
}

.cwHeroCtaRow {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 48px;
}

.cwBtnPrimary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 100px;
  box-shadow: 0 6px 24px var(--brand-glow);
  transition: var(--t);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.cwBtnPrimary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(82, 186, 197, 0.42);
  color: var(--white);
}
.cwBtnPrimary svg {
  width: 16px;
  height: 16px;
}

.cwBtnGhost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 100px;
  transition: var(--t);
  white-space: nowrap;
}
.cwBtnGhost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.cwBtnGhost svg {
  width: 16px;
  height: 16px;
}

/* Hero stats row */
.cwHeroStats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.cwHeroStat {
}
.cwHeroStatNum {
  font-family: var(--font-h);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.cwHeroStatNum span {
  background: linear-gradient(90deg, var(--brand) 0%, #8ce6f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cwHeroStatLabel {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 3px;
}

/* Hero visual: mockup card */
.cwHeroRight {
  position: relative;
}
.cwHeroCard {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-xl);
  padding: 28px 28px 32px;
  backdrop-filter: blur(20px);
  box-shadow: var(--sh-xl);
}
.cwHeroCardBar {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}
.cwHeroCardDot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cwHeroCardDot:nth-child(1) {
  background: #ff5f57;
}
.cwHeroCardDot:nth-child(2) {
  background: #febc2e;
}
.cwHeroCardDot:nth-child(3) {
  background: #28c840;
}

.cwHeroCardTitle {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 16px;
}
.cwHeroServices {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cwHeroServiceItem {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 16px;
  transition: var(--t);
}
.cwHeroServiceItem:hover {
  background: rgba(82, 186, 197, 0.1);
  border-color: rgba(82, 186, 197, 0.25);
}
.cwHeroServiceDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cwHeroServiceItem:nth-child(1) .cwHeroServiceDot {
  background: var(--brand);
}
.cwHeroServiceItem:nth-child(2) .cwHeroServiceDot {
  background: var(--green);
}
.cwHeroServiceItem:nth-child(3) .cwHeroServiceDot {
  background: var(--yellow);
}
.cwHeroServiceItem:nth-child(4) .cwHeroServiceDot {
  background: var(--orange);
}
.cwHeroServiceItem:nth-child(5) .cwHeroServiceDot {
  background: var(--purple);
}
.cwHeroServiceItem:nth-child(6) .cwHeroServiceDot {
  background: #f472b6;
}

.cwHeroServiceName {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  flex: 1;
}
.cwHeroServiceTag {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--brand);
  background: rgba(82, 186, 197, 0.12);
  border: 1px solid rgba(82, 186, 197, 0.2);
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* floating pill */
.cwHeroFloatPill {
  position: absolute;
  bottom: -60px;
  left: -24px;
  background: var(--white);
  border-radius: var(--r);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--sh-lg);
  z-index: 3;
}
.cwHeroFloatIcon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cwHeroFloatIcon svg {
  width: 18px;
  height: 18px;
  color: #fff;
}
.cwHeroFloatText strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.cwHeroFloatText span {
  font-size: 11px;
  color: var(--text-3);
}

/* ─────────────────────────────────────────
   WHY US – stats + trust bar
───────────────────────────────────────── */
.cwWhySection {
  background: var(--white);
  padding: 88px 0;
  position: relative;
}
.cwWhySection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #52bac5, #0d838d);
}
.cwWhyTitle {
  font-family: var(--font-h);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.cwWhySubtitle {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 52px;
  max-width: 620px;
  line-height: 1.68;
}

.cwWhyGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.cwWhyCard {
  background: var(--off);
  border-radius: var(--r-lg);
  padding: 30px 24px;
  border: 1.5px solid transparent;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.cwWhyCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), transparent);
  opacity: 0;
  transition: var(--t);
}
.cwWhyCard:hover {
  border-color: rgba(82, 186, 197, 0.25);
  background: var(--white);
  box-shadow: var(--sh-lg);
  transform: translateY(-3px);
}
.cwWhyCard:hover::before {
  opacity: 1;
}
.cwWhyCardNum {
  font-family: var(--font-h);
  font-size: 38px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.cwWhyCardLabel {
  font-size: 13px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
}
.cwWhyCardDesc {
  font-size: 14px;
  color: var(--text-2);
  margin-top: 10px;
  line-height: 1.6;
}

/* quote block */
.cwWhyQuote {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  border-radius: var(--r-xl);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cwWhyQuote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 28px;
  font-family: var(--font-h);
  font-size: 120px;
  color: rgba(82, 186, 197, 0.15);
  line-height: 1;
  pointer-events: none;
}
.cwWhyQuoteText {
  font-size: 20px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  flex: 1;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.cwWhyQuoteText em {
  color: var(--brand);
  font-style: normal;
  font-weight: 700;
}
.cwWhyQuoteAuthor {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 12px;
  font-style: normal;
}

/* ─────────────────────────────────────────
   SERVICES – 6-card grid
───────────────────────────────────────── */
.cwSvcSection {
  background: var(--off);
  padding: 88px 0;
}
.cwSvcTitle {
  font-family: var(--font-h);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.cwSvcSubtitle {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 52px;
  max-width: 600px;
  line-height: 1.68;
}

.cwSvcGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cwSvcCard {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--sh);
  transition: var(--t);
  border: 1.5px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cwSvcCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: rgba(82, 186, 197, 0.22);
}
.cwSvcCardIconWrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cwSvcCardIconWrap svg {
  width: 26px;
  height: 26px;
  color: #fff;
}
.cwSvcCard:nth-child(1) .cwSvcCardIconWrap {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}
.cwSvcCard:nth-child(2) .cwSvcCardIconWrap {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}
.cwSvcCard:nth-child(3) .cwSvcCardIconWrap {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
.cwSvcCard:nth-child(4) .cwSvcCardIconWrap {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}
.cwSvcCard:nth-child(5) .cwSvcCardIconWrap {
  background: linear-gradient(135deg, #f97316, #ea580c);
}
.cwSvcCard:nth-child(6) .cwSvcCardIconWrap {
  background: linear-gradient(135deg, #f472b6, #db2777);
}

.cwSvcCardTitle {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}
.cwSvcCardText {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
}
.cwSvcCardTag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--off2);
  color: var(--text-3);
}

/* ─────────────────────────────────────────
   HOW IT WORKS – dark bg, 4 steps
───────────────────────────────────────── */
.cwHiwSection {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.cwHiwSection::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(82, 186, 197, 0.1) 0%,
    transparent 70%
  );
}
.cwHiwTitle {
  font-family: var(--font-h);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.cwHiwSubtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.58);
  max-width: 600px;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}
.cwHiwSteps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.cwHiwStep {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-lg);
  padding: 30px 22px;
  position: relative;
  transition: var(--t);
}
.cwHiwStep:hover {
  background: rgba(82, 186, 197, 0.1);
  border-color: rgba(82, 186, 197, 0.3);
  transform: translateY(-3px);
}
.cwHiwStepNum {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  box-shadow: 0 4px 12px var(--brand-glow);
}
.cwHiwStepIcon {
  width: 44px;
  height: 44px;
  background: rgba(82, 186, 197, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.cwHiwStepIcon svg {
  width: 22px;
  height: 22px;
  color: var(--brand);
}
.cwHiwStepTitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.cwHiwStepText {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   TECH STACK – logos / tags row
───────────────────────────────────────── */
.cwTechSection {
  background: var(--white);
  padding: 64px 0;
}
.cwTechTitle {
  font-family: var(--font-h);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.cwTechSubtitle {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 36px;
}
.cwTechTags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cwTechTag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  transition: var(--t);
}
.cwTechTag:hover {
  border-color: var(--brand);
  background: rgba(82, 186, 197, 0.06);
  color: var(--brand-dark);
}
.cwTechTagDot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   SOCIAL PROOF – testimonial strip
───────────────────────────────────────── */
.cwStSection {
  background: var(--off);
  padding: 88px 0;
}
.cwStTitle {
  font-family: var(--font-h);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.cwStSubtitle {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 52px;
}
.cwStCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cwStCard {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--sh);
  border: 1.5px solid transparent;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cwStCard:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
  border-color: rgba(82, 186, 197, 0.2);
}
.cwStCardStars {
  display: flex;
  gap: 3px;
}
.cwStCardStars svg {
  width: 15px;
  height: 15px;
  fill: var(--yellow);
}
.cwStCardText {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.cwStCardText::before {
  content: '"';
  color: var(--brand);
  font-size: 22px;
  font-style: normal;
  line-height: 1;
  margin-right: 2px;
}
.cwStCardAuthor {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cwStCardAvatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.cwStCardName {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.cwStCardRole {
  font-size: 12px;
  color: var(--text-3);
}

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.cwFaqSection {
  background: var(--white);
  padding: 88px 0;
}
.cwFaqTitle {
  font-family: var(--font-h);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.cwFaqSubtitle {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 52px;
}
.cwFaqGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.cwFaqItem {
  background: var(--off);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  border: 1.5px solid transparent;
  transition: var(--t);
}
.cwFaqItem:hover {
  border-color: rgba(82, 186, 197, 0.22);
  background: var(--white);
  box-shadow: var(--sh);
}
.cwFaqQ {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.cwFaqQ::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-radius: 6px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.cwFaqA {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.65;
  padding-left: 32px;
}

/* ─────────────────────────────────────────
   CTA BOTTOM – dark gradient, big button
───────────────────────────────────────── */
.cwCtaSection {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cwCtaSection::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(82, 186, 197, 0.12) 0%,
    transparent 70%
  );
}
.cwCtaSection::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(82, 186, 197, 0.07) 0%,
    transparent 70%
  );
}
.cwCtaSectionInner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cwCtaTitle {
  font-family: var(--font-h);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  line-height: 1.1;
}
.cwCtaTitle span {
  background: linear-gradient(90deg, var(--brand) 0%, #8ce6f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cwCtaSubtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.68;
}
.cwCtaBtn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  padding: 20px 48px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(82, 186, 197, 0.38), 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: var(--t);
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}
.cwCtaBtn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 60%
  );
  border-radius: inherit;
}
.cwCtaBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(82, 186, 197, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.18);
  color: var(--white);
}
.cwCtaBtn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--t);
}
.cwCtaBtn:hover svg {
  transform: translateX(4px);
}
.cwCtaNote {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}
.cwCtaNote a {
  color: rgba(82, 186, 197, 0.7);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .cwWhyGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cwSvcGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cwHiwSteps {
    grid-template-columns: repeat(2, 1fr);
  }
  .cwFaqGrid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  .cwHeroSection {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 72px;
  }
  .cwHeroRight {
    display: none;
  }
  .cwStCards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .cwSvcGrid {
    grid-template-columns: 1fr;
  }
  .cwWhyGrid {
    grid-template-columns: 1fr;
  }
  .cwHiwSteps {
    grid-template-columns: 1fr;
  }
  .cwHeroCtaRow {
    flex-direction: column;
    align-items: flex-start;
  }
  .cwWhyQuote {
    flex-direction: column;
    padding: 32px 24px;
  }
  .cwHeroStats {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  :root {
    --r-xl: 20px;
  }
  .cwStCards {
    grid-template-columns: 1fr;
  }
}
