: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;
  --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);
}

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

/* ── Shared inner widths ── */
.cfHeroSection,
.cfFvtInner,
.cfHiwInner,
.cfUcInner,
.cfDemoInner,
.cfCmpInner,
.cfGarInner,
.cfFeatInner,
.cfPrsInner,
.cfSupInner {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── Section label ── */
.cfSectionLabel {
  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;
}
.cfSectionLabel::before {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

/* ── Buttons ── */
.cfBtnPrimary {
  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;
}
.cfBtnPrimary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(82, 186, 197, 0.42);
  color: var(--white);
}
.cfBtnPrimary svg {
  width: 16px;
  height: 16px;
}

.cfBtnGhost {
  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;
}
.cfBtnGhost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.cfBtnGhost svg {
  width: 16px;
  height: 16px;
}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.cfHeroWrapper {
  background: linear-gradient(
    145deg,
    var(--dark2) 0%,
    var(--dark) 45%,
    #1c2e46 100%
  );
  position: relative;
  overflow: hidden;
}
.cfHeroWrapper::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(82, 186, 197, 0.18) 0%,
    transparent 68%
  );
  pointer-events: none;
}
.cfHeroWrapper::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(82, 186, 197, 0.09) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cfHeroSection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 96px;
  position: relative;
  z-index: 2;
}

.cfHeroBadge {
  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;
}
.cfHeroBadgeDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 8px var(--brand);
  animation: cfPulse 2s infinite;
}
@keyframes cfPulse {
  0%,
  100% {
    box-shadow: 0 0 6px var(--brand);
  }
  50% {
    box-shadow: 0 0 14px var(--brand);
  }
}

.cfHeroTitle {
  font-family: var(--font-h);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 22px;
}
.cfHeroTitle span {
  background: linear-gradient(90deg, var(--brand) 0%, #8ce6f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.cfHeroSubtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  margin-bottom: 38px;
  max-width: 480px;
}
.cfHeroCtaRow {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}
.cfHeroRating {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cfHeroStars {
  display: flex;
  gap: 3px;
}
.cfHeroStars svg {
  width: 16px;
  height: 16px;
  fill: var(--yellow);
}
.cfHeroRatingText {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.cfHeroRatingText strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* Hero right — form mockup */
.cfHeroRight {
  position: relative;
}
.cfHeroMockup {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-xl);
  padding: 28px 32px;
  backdrop-filter: blur(20px);
  box-shadow: var(--sh-xl);
}
.cfHeroMockupBar {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 20px;
}
.cfHeroMockupDot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cfHeroMockupDot:nth-child(1) {
  background: #ff5f57;
}
.cfHeroMockupDot:nth-child(2) {
  background: #febc2e;
}
.cfHeroMockupDot:nth-child(3) {
  background: #28c840;
}
.cfHeroMockupTitle {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.cfMockupField {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cfMockupFieldIcon {
  width: 18px;
  height: 18px;
  color: var(--brand);
  flex-shrink: 0;
  opacity: 0.8;
}
.cfMockupFieldIcon svg {
  width: 18px;
  height: 18px;
}
.cfMockupFieldLabel {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  flex: 1;
}
.cfMockupFieldValue {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  flex: 1;
}
.cfMockupSubmit {
  width: 100%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  padding: 13px;
  border-radius: 10px;
  margin-top: 8px;
  letter-spacing: 0.03em;
}

.cfHeroFloatPill {
  position: absolute;
  bottom: -64px;
  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;
}
.cfHeroFloatIcon {
  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;
}
.cfHeroFloatIcon svg {
  width: 18px;
  height: 18px;
  color: #fff;
}
.cfHeroFloatText strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.cfHeroFloatText span {
  font-size: 11px;
  color: var(--text-3);
}

.cfHeroStats {
  margin-top: 28px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r);
  padding: 16px 24px;
}
.cfHeroStat {
  flex: 1;
  text-align: center;
}
.cfStatNum {
  display: block;
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
}
.cfStatLabel {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cfHeroStatDivider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ═══════════════════════════════
   LIVE DEMO SECTION
═══════════════════════════════ */
.cfDemoSection {
  background: var(--off);
  padding: 72px 0;
}
.cfDemoInner {
  text-align: center;
}
.cfDemoLabel {
  margin-bottom: 10px;
}
.cfDemoTitle {
  font-family: var(--font-h);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.cfDemoSubtitle {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 44px;
  max-width: 580px;
  margin-inline: auto;
  line-height: 1.7;
}
.cfDemoWrap {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  overflow: hidden;
  border: 1.5px solid var(--border);
}
.cfDemoWrap .cspFormShell,
.cfDemoWrap form {
  padding: 0 !important;
}

/* ═══════════════════════════════
   WHY CONTACT FORM (FVT)
═══════════════════════════════ */
.cfFvtSection {
  padding: 88px 0;
  background: var(--white);
}
.cfFvtLead {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  border-left: 3px solid var(--brand);
  padding-left: 18px;
  margin-bottom: 52px;
  max-width: 820px;
}
.cfFvtTitle {
  font-family: var(--font-h);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.cfFvtSubtitle {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 48px;
  max-width: 680px;
  line-height: 1.7;
}
.cfFvtCols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cfFvtCol {
  background: var(--off);
  border-radius: var(--r-lg);
  padding: 28px 24px 24px;
  border: 1.5px solid transparent;
  transition: var(--t);
}
.cfFvtCol:hover {
  border-color: rgba(82, 186, 197, 0.25);
  background: var(--white);
  box-shadow: var(--sh-lg);
  transform: translateY(-3px);
}
.cfFvtColIcon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(82, 186, 197, 0.15) 0%,
    rgba(82, 186, 197, 0.08) 100%
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--brand);
  transition: var(--t);
}
.cfFvtColIcon svg {
  width: 32px;
  height: 32px;
}
.cfFvtCol:hover .cfFvtColIcon {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
}
.cfFvtColTitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.cfFvtColSubtitle {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ═══════════════════════════════
   HOW IT WORKS (dark)
═══════════════════════════════ */
.cfHiwSection {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.cfHiwSection::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%
  );
}
.cfHiwTitle {
  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;
}
.cfHiwSubtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.58);
  max-width: 600px;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}
.cfHiwCols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.cfHiwCol {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-lg);
  padding: 30px 22px;
  transition: var(--t);
}
.cfHiwCol:hover {
  background: rgba(82, 186, 197, 0.1);
  border-color: rgba(82, 186, 197, 0.3);
  transform: translateY(-3px);
}
.cfHiwStep {
  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);
}
.cfHiwColIcon {
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}
.cfHiwColIcon svg {
  width: 40px;
  height: 40px;
}
.cfHiwColTitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.cfHiwColSubtitle {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* ═══════════════════════════════
   USE CASES
═══════════════════════════════ */
.cfUcSection {
  background: var(--off);
  padding: 88px 0;
}
.cfUcTitle {
  font-family: var(--font-h);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.cfUcSubtitle {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 44px;
  max-width: 620px;
}
.cfUcGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cfUcCard {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--sh);
  border: 1.5px solid transparent;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cfUcCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: rgba(82, 186, 197, 0.22);
}
.cfUcCardFeat {
  grid-row: 1 / 3;
  background: linear-gradient(160deg, #1a2f48 0%, #1a2333 100%);
  border-color: rgba(82, 186, 197, 0.18);
  position: relative;
  overflow: hidden;
}
.cfUcCardFeat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
}
.cfUcCardFeat .cfUcCardTitle {
  color: var(--white);
  font-size: 20px;
}
.cfUcCardFeat .cfUcCardText {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}
.cfUcCardIcon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.cfUcCardIcon svg {
  width: 32px;
  height: 32px;
}
.cfUcCardIconSm {
  width: 54px;
  height: 54px;
  background: rgba(82, 186, 197, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
}
.cfUcCardIconSm svg {
  width: 28px;
  height: 28px;
}
.cfUcCardTitle {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.cfUcCardText {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
}
.cfUcCardTag {
  display: inline-flex;
  align-self: flex-start;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 4px;
}

/* ═══════════════════════════════
   EXAMPLES + FEATURES (dynamic)
═══════════════════════════════ */
.cfDynamicSection {
  background: var(--white);
}

/* ═══════════════════════════════
   COMPARISON TABLE
═══════════════════════════════ */
.cfCmpSection {
  background: var(--white);
  padding: 88px 0;
}
.cfCmpTitle {
  font-family: var(--font-h);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.022em;
  margin-bottom: 10px;
  line-height: 1.25;
}
.cfCmpSubtitle {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 44px;
  max-width: 620px;
}
.cfCmpTable {
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  border: 1.5px solid var(--border);
}
.cfCmpRow {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.cfCmpRow:last-child {
  border-bottom: none;
}
.cfCmpCell {
  padding: 18px 24px;
  font-size: 14.5px;
  line-height: 1.55;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cfCmpHeader {
  background: var(--navy);
}
.cfCmpHeader .cfCmpCell {
  padding: 22px 24px;
  align-items: flex-start;
  flex-direction: column;
  gap: 4px;
}
.cfCmpPlanName {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}
.cfCmpPlanSub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.cfCmpBadge {
  display: inline-flex;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 6px;
}
.cfCmpHighlight {
  background: linear-gradient(160deg, #1a2f48 0%, #1e3a50 100%);
  position: relative;
}
.cfCmpHighlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
}
.cfCmpFeatCol {
  background: var(--off);
  font-weight: 600;
  color: var(--navy);
  font-size: 14px;
  border-right: 1px solid var(--border);
}
.cfCmpIcon {
  font-size: 16px;
  flex-shrink: 0;
}
.cfCmpOld {
  color: var(--text-3);
  background: var(--white);
  border-right: 1px solid var(--border);
}
.cfCmpRow:nth-child(even) .cfCmpOld {
  background: #fafbfc;
}
.cfCmpNew {
  background: rgba(82, 186, 197, 0.04);
  color: var(--text);
  font-weight: 500;
  position: relative;
}
.cfCmpNew::before {
  content: "✓";
  color: var(--brand);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.cfCmpRow:nth-child(even) .cfCmpNew {
  background: rgba(82, 186, 197, 0.07);
}
.cfCmpFooter {
  background: var(--off);
  border-bottom: none;
}
.cfCmpOldFoot {
  color: var(--text-3);
  font-size: 13px;
  border-right: 1px solid var(--border);
  justify-content: center;
}
.cfCmpCross {
  color: #f87171;
  font-weight: 700;
  margin-right: 4px;
}
.cfCmpNewFoot {
  background: rgba(82, 186, 197, 0.06);
  justify-content: center;
}
.cfCmpNewFoot .cfBtnPrimary {
  font-size: 14px;
  padding: 11px 24px;
}

/* ═══════════════════════════════
   GUARANTEE
═══════════════════════════════ */
.cfGarSection {
  background: var(--off);
  padding: 80px 0;
}
.cfGarTitle {
  font-family: var(--font-h);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.cfGarWave {
  max-width: 320px;
  margin-bottom: 20px;
}
.cfGarWave svg {
  width: 100%;
  height: 16px;
}
.cfGarSub1 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}
.cfGarSub2 {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 40px;
  max-width: 600px;
}
.cfGarBox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--sh-lg);
  border: 1.5px solid var(--border);
  align-items: start;
}
.cfGarBoxLeft {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.cfGarBadge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(
    135deg,
    rgba(82, 186, 197, 0.1) 0%,
    rgba(82, 186, 197, 0.05) 100%
  );
  border: 1.5px solid rgba(82, 186, 197, 0.25);
  border-radius: var(--r-lg);
  padding: 16px 20px;
}
.cfGarBadgeIcon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cfGarBadgeIcon svg {
  width: 30px;
  height: 30px;
  color: #fff;
}
.cfGarBadge strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
}
.cfGarBadge span {
  font-size: 12px;
  color: var(--text-3);
}
.cfGarPayments {
  display: flex;
  gap: 8px;
}
.cfGarPayments svg {
  height: 26px;
  width: auto;
  border-radius: 4px;
}
.cfGarBoxRight p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 14px;
}
.cfGarBoxRight p:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════════
   PRO FEATURES
═══════════════════════════════ */
.cfFeatSection {
  background: var(--white);
  padding: 88px 0;
}
.cfFeatTitle {
  font-family: var(--font-h);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.cfFeatSubtitle {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 48px;
  max-width: 660px;
}
.cfFeatGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.cfFeatCard {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--off);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  border: 1.5px solid transparent;
  transition: var(--t);
}
.cfFeatCard:hover {
  border-color: rgba(82, 186, 197, 0.22);
  background: var(--white);
  box-shadow: var(--sh);
}
.cfFeatCardIcon {
  width: 58px;
  height: 58px;
  background: linear-gradient(
    135deg,
    rgba(82, 186, 197, 0.15) 0%,
    rgba(82, 186, 197, 0.08) 100%
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
  transition: var(--t);
}
.cfFeatCardIcon svg {
  width: 30px;
  height: 30px;
}
.cfFeatCard:hover .cfFeatCardIcon {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
}
.cfFeatCardTitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.cfFeatCardSubtitle {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
}
.cfFeatPhilosophy {
  margin-top: 52px;
  padding: 28px 32px;
  background: var(--off);
  border-radius: var(--r-lg);
  border-left: 4px solid var(--brand);
}
.cfFeatPhilTitle {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.cfFeatPhilText {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ═══════════════════════════════
   PRICING
═══════════════════════════════ */
.cfPrsSection {
  background: var(--off);
  padding: 88px 0;
}
.cfPrsSection .cfSectionLabel {
  display: block;
  margin-bottom: 10px;
}
.cfPrsTitle {
  font-family: var(--font-h);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  line-height: 1.15;
}
.cfPrsSubtitle {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 48px;
  max-width: 560px;
  line-height: 1.65;
}
.cfPrsNote {
  font-size: 14px;
  color: var(--text-3);
  text-align: center;
  margin-top: 20px;
}

/* ═══════════════════════════════
   SUPPORT CTA (dark)
═══════════════════════════════ */
.cfSupSection {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.cfSupSection::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%
  );
}
.cfSupContainer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cfSupTitle {
  font-family: var(--font-h);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.cfSupSubtitle {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 560px;
}
.cfSupSubtitle p {
  margin-bottom: 10px;
}
.cfSupSubtitle p:last-child {
  margin-bottom: 0;
}
.cfSupTitle2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 10px;
}
.cfSupSubtitle2 {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}
.cfSupSubtitle2 p {
  margin-bottom: 8px;
}
.cfSupIllustration {
  width: 220px;
  height: 220px;
}
.cfSupCtaRow {
  margin-top: 48px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cfSupCtaBtn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  padding: 18px 40px;
  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);
  position: relative;
  overflow: hidden;
}
.cfSupCtaBtn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 60%
  );
  border-radius: inherit;
}
.cfSupCtaBtn: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);
}
.cfSupCtaBtn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--t);
}
.cfSupCtaBtn:hover svg {
  transform: translateX(4px);
}
.cfSupFreeBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  font-weight: 600;
  padding: 17px 32px;
  border-radius: 100px;
  transition: var(--t);
}
.cfSupFreeBtn:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.cfSupFreeBtn svg {
  width: 16px;
  height: 16px;
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1024px) {
  .cfFvtCols {
    grid-template-columns: repeat(2, 1fr);
  }
  .cfHiwCols {
    grid-template-columns: repeat(2, 1fr);
  }
  .cfFeatGrid {
    grid-template-columns: 1fr;
  }
  .cfUcGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cfUcCardFeat {
    grid-row: auto;
  }
}
@media (max-width: 860px) {
  .cfHeroSection {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 72px;
  }
  .cfHeroRight {
    display: none;
  }
  .cfSupContainer {
    grid-template-columns: 1fr;
  }
  .cfSupRight {
    display: none;
  }
  .cfGarBox {
    grid-template-columns: 1fr;
  }
  .cfCmpRow {
    grid-template-columns: 1fr 1fr;
  }
  .cfCmpFeatCol {
    display: none;
  }
}
@media (max-width: 640px) {
  .cfFvtCols {
    grid-template-columns: 1fr;
  }
  .cfHiwCols {
    grid-template-columns: 1fr 1fr;
  }
  .cfUcGrid {
    grid-template-columns: 1fr;
  }
  .cfHeroCtaRow {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .cfHiwCols {
    grid-template-columns: 1fr;
  }
  .cfCmpRow {
    grid-template-columns: 1fr;
  }
  .cfCmpOld {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  :root {
    --r-xl: 20px;
  }
}
