:root {
  --cf-primary: #0056d2;
  --cf-primary-hover: #0044a8;
  --cf-primary-soft: #e8f2ff;
  --cf-accent-heading: #2b7fff;
  --cf-navy: #0b172a;
  --cf-text: #0f172a;
  --cf-muted: #64748b;
  --cf-border: #e2e8f0;
  --cf-section: #f3f6fb;
  --cf-green: #10b981;
  --cf-purple: #8b5cf6;
  --cf-orange: #f97316;
  --cf-gold: #eab308;
  --cf-display: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  --cf-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  font-family: var(--cf-body);
  color: var(--cf-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

.text-purple-ci {
  color: var(--cf-purple) !important;
}

/* ——— Navbar ——— */
.site-navbar--premium {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.site-logo,
.site-logo-lg {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.site-logo-lg {
  width: 48px;
  height: 48px;
}

.brand-ca-square {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--cf-primary) 0%, #1b6cff 55%, #4098ff 100%);
  box-shadow: 0 8px 22px rgba(0, 86, 210, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-ca-square--sm {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.brand-ca-chars {
  font-family: var(--cf-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand-ca-check {
  position: absolute;
  right: -5px;
  bottom: -5px;
  font-size: 1.1rem;
  color: #22c55e;
  background: #fff;
  border-radius: 50%;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
}

.brand-text-stack .brand-text {
  display: block;
}

.brand-text {
  font-family: var(--cf-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--cf-navy);
}

.brand-tagline {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--cf-muted);
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cf-primary) 0%, #3b8cff 100%);
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 14px rgba(0, 86, 210, 0.25);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  opacity: 0.9;
}

.nav-link-pill {
  color: #475569 !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
  border-radius: 10px;
  transition:
    background 0.2s,
    color 0.2s;
}

.nav-link-ico {
  font-size: 0.95rem;
  opacity: 0.85;
}

.nav-link-pill:hover,
.nav-link-pill:focus {
  color: var(--cf-primary) !important;
  background: var(--cf-primary-soft);
}

.dropdown-menu-nav {
  min-width: 15rem;
}

.dropdown-item-icon {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.dropdown-item-icon i {
  font-size: 1.05rem;
  width: 1.25rem;
  text-align: center;
}

.dropdown-item-icon:hover,
.dropdown-item-icon:focus {
  background: var(--cf-primary-soft);
}

.nav-phone-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--cf-primary-soft);
  color: var(--cf-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-phone-num {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--cf-navy);
}

.nav-phone:hover .nav-phone-num {
  color: var(--cf-primary);
}

.btn-nav-cta {
  border-radius: 12px;
  padding: 11px 22px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0, 86, 210, 0.28);
}

.navbar-toggler-soft:focus {
  box-shadow: none;
}

.footer-logo-thumb {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

/* Bootstrap primary → brand */
.btn-primary {
  --bs-btn-bg: var(--cf-primary);
  --bs-btn-border-color: var(--cf-primary);
  --bs-btn-hover-bg: var(--cf-primary-hover);
  --bs-btn-hover-border-color: var(--cf-primary-hover);
  --bs-btn-active-bg: var(--cf-primary-hover);
  --bs-btn-active-border-color: var(--cf-primary-hover);
  --bs-btn-focus-shadow-rgb: 0, 86, 210;
}

.btn-outline-primary {
  --bs-btn-color: var(--cf-primary);
  --bs-btn-border-color: var(--cf-primary);
  --bs-btn-hover-bg: var(--cf-primary-soft);
  --bs-btn-hover-border-color: var(--cf-primary);
  --bs-btn-hover-color: var(--cf-primary);
}

.text-primary {
  color: var(--cf-primary) !important;
}

/* ——— Hero landing ——— */
.hero-landing {
  padding-bottom: 1rem;
}

.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
}

.hero-bg-blob--1 {
  width: min(420px, 90vw);
  height: 340px;
  background: radial-gradient(circle, rgba(0, 86, 210, 0.35) 0%, transparent 70%);
  top: -120px;
  right: -80px;
}

.hero-bg-blob--2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, transparent 70%);
  bottom: 10%;
  left: -80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #e8f2ff 0%, #f0f7ff 100%);
  color: var(--cf-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 9px 16px;
  border-radius: 999px;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(0, 86, 210, 0.12);
}

.hero-title-landing {
  font-family: var(--cf-display);
  font-size: clamp(2.05rem, 4.8vw, 3.35rem);
  line-height: 1.1;
  font-weight: 800;
  color: var(--cf-navy);
  max-width: 640px;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  color: var(--cf-accent-heading);
}

.hero-subtitle-landing {
  color: var(--cf-muted);
  font-size: 1.08rem;
  max-width: 540px;
  line-height: 1.65;
  font-weight: 500;
}

.shadow-primary {
  box-shadow: 0 10px 28px rgba(0, 86, 210, 0.32);
}

.btn-landing-main {
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-arrow {
  font-weight: 700;
}

.btn-landing-outline {
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  border-width: 2px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.hero-trust-list {
  max-width: 520px;
}

.hero-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.hero-trust-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hero-trust-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--cf-primary-soft);
  color: var(--cf-primary);
  font-size: 1.25rem;
}

.hero-trust-label {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 13px;
  color: #475569;
  line-height: 1.35;
}

.hero-trust-label strong {
  color: var(--cf-navy);
  font-size: 15px;
  font-weight: 700;
}

.hero-trust-label small {
  font-size: 12px;
  color: var(--cf-muted);
  font-weight: 500;
}

/* Dashboard mockup */
.hero-dashboard--elevated {
  box-shadow:
    0 28px 56px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(226, 232, 240, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-dashboard {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  min-height: 320px;
}

.hero-dashboard-sidebar {
  width: 58px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #0d1f3c 0%, var(--cf-navy) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 0;
  gap: 12px;
}

.hero-dash-nav {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.05rem;
  transition:
    background 0.2s,
    color 0.2s;
}

.hero-dash-nav.is-active,
.hero-dash-nav:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-dashboard-body {
  flex: 1;
  padding: 26px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fafcfe 100%);
}

.hero-dashboard-welcome {
  font-family: var(--cf-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--cf-navy);
}

.hero-dashboard-lead {
  color: var(--cf-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.hero-dashboard-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hero-dash-stat {
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 14px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.hero-dash-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.hero-dash-stat small {
  display: block;
  color: var(--cf-muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.hero-dash-stat strong {
  font-family: var(--cf-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--cf-navy);
}

.hero-dash-stat-ico {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.hero-dash-stat-ico--green {
  background: rgba(16, 185, 129, 0.15);
  color: var(--cf-green);
}

.hero-dash-stat-ico--purple {
  background: rgba(139, 92, 246, 0.15);
  color: var(--cf-purple);
}

.hero-dash-stat-ico--blue {
  background: rgba(0, 86, 210, 0.12);
  color: var(--cf-primary);
}

.hero-dash-stat-ico--gold {
  background: rgba(234, 179, 8, 0.18);
  color: #ca8a04;
}

.hero-social-proof {
  border-top: none;
}

.hero-social-inner {
  background: #fff;
  border: 1px solid var(--cf-border);
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.06);
}

.hero-social-text {
  font-size: 0.97rem;
  color: #475569;
  font-weight: 500;
}

.hero-star-row {
  color: #fbbf24;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.hero-avatars {
  display: flex;
}

.hero-avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
}

.hero-avatars span:first-child {
  margin-left: 0;
}

.hero-avatars span:nth-child(2) {
  background: linear-gradient(135deg, #93c5fd, #60a5fa);
}

.hero-avatars span:nth-child(3) {
  background: linear-gradient(135deg, #c4b5fd, #a78bfa);
}

.hero-avatars span:nth-child(4) {
  background: linear-gradient(135deg, #fcd34d, #fbbf24);
}

.hero-avatars span:nth-child(5) {
  background: linear-gradient(135deg, #86efac, #4ade80);
}

.hero-social-rating {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cf-text);
}

.hero-rating-num {
  color: #475569;
  font-weight: 600;
}

/* ——— Sections ——— */
.section-muted {
  background: var(--cf-section);
}

.section-tilt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 86, 210, 0.06), transparent 55%);
  pointer-events: none;
}

.section-divider-top {
  border-top: 1px solid rgba(226, 232, 240, 0.85);
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--cf-primary);
  margin-bottom: 0;
}

.section-heading {
  font-family: var(--cf-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--cf-navy);
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--cf-muted);
  font-size: 1.06rem;
  max-width: 560px;
  font-weight: 500;
}

/* Service cards */
.landing-service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--cf-border);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.07);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  overflow: hidden;
}

.landing-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
  opacity: 0.95;
}

.landing-service-card--accent-blue::before {
  background: linear-gradient(90deg, var(--cf-primary), #4f9dff);
}

.landing-service-card--accent-green::before {
  background: linear-gradient(90deg, var(--cf-green), #34d399);
}

.landing-service-card--accent-orange::before {
  background: linear-gradient(90deg, var(--cf-orange), #fb923c);
}

.landing-service-card--accent-purple::before {
  background: linear-gradient(90deg, var(--cf-purple), #a78bfa);
}

.landing-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
}

.landing-service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.landing-service-icon--blue {
  background: rgba(0, 86, 210, 0.12);
  color: var(--cf-primary);
}

.landing-service-icon--green {
  background: rgba(16, 185, 129, 0.15);
  color: var(--cf-green);
}

.landing-service-icon--orange {
  background: rgba(249, 115, 22, 0.15);
  color: var(--cf-orange);
}

.landing-service-icon--purple {
  background: rgba(139, 92, 246, 0.15);
  color: var(--cf-purple);
}

.landing-service-title {
  font-family: var(--cf-display);
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--cf-navy);
}

.landing-service-desc {
  color: var(--cf-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 14px;
  flex-grow: 1;
  font-weight: 500;
}

.landing-service-price {
  font-family: var(--cf-display);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.landing-service-price--green {
  color: var(--cf-green);
}

.landing-service-price--orange {
  color: var(--cf-orange);
}

.landing-service-price--purple {
  color: var(--cf-purple);
}

.landing-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}

.landing-service-btn--blue {
  color: var(--cf-primary);
}

.landing-service-btn--blue:hover {
  color: var(--cf-primary-hover);
}

.landing-service-btn--green {
  color: var(--cf-green);
}

.landing-service-btn--green:hover {
  color: #059669;
}

.landing-service-btn--orange {
  color: var(--cf-orange);
}

.landing-service-btn--orange:hover {
  color: #ea580c;
}

.landing-service-btn--purple {
  color: var(--cf-purple);
}

.landing-service-btn--purple:hover {
  color: #7c3aed;
}

/* Why us */
.why-card--tile {
  background: #fff;
  border: 1px solid var(--cf-border);
  border-radius: 18px;
  padding: 26px 22px;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.why-card--tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.why-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, rgba(0, 86, 210, 0.08), rgba(0, 86, 210, 0.02));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cf-primary);
  margin-bottom: 16px;
}

.why-card-title {
  font-family: var(--cf-display);
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--cf-navy);
}

.why-card-desc {
  color: var(--cf-muted);
  font-size: 0.94rem;
  line-height: 1.6;
  font-weight: 500;
}

/* Steps */
.steps-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .steps-row {
    flex-wrap: nowrap;
  }

  .step-item {
    flex: 1;
    position: relative;
    text-align: center;
    padding: 0 12px;
  }

  .step-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 36px;
    left: calc(50% + 52px);
    width: calc(100% - 104px);
    height: 0;
    border-top: 2px dashed #cbd5e1;
    z-index: 0;
  }
}

.step-num-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--cf-primary) 0%, #1b6cff 100%);
  color: #fff;
  font-family: var(--cf-display);
  font-weight: 800;
  font-size: 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 26px rgba(0, 86, 210, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.step-icon {
  display: block;
  color: var(--cf-primary);
  margin-bottom: 14px;
}

.step-title {
  font-family: var(--cf-display);
  font-size: 1.06rem;
  font-weight: 800;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
  color: var(--cf-navy);
}

@media (max-width: 767.98px) {
  .step-item {
    flex: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 2rem;
  }
}

/* Testimonials */
.testimonial-card {
  border-radius: 20px;
  padding: 28px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.testimonial-card--elevated {
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.09),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.testimonial-quote-ico {
  font-size: 2.75rem;
  line-height: 1;
  color: rgba(0, 86, 210, 0.2);
  margin-bottom: 6px;
}

.testimonial-stars {
  letter-spacing: 4px;
  font-size: 1rem;
}

.testimonial-star-ico {
  color: #fbbf24;
}

.testimonial-text {
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 500;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cf-primary-soft);
}

.testimonial-avatar--initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cf-primary-soft), #fff);
  color: var(--cf-primary);
  font-family: var(--cf-display);
  font-weight: 800;
  font-size: 1rem;
}

.testimonial-name {
  font-family: var(--cf-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--cf-navy);
}

.testimonial-role {
  font-size: 0.84rem;
  color: var(--cf-muted);
  font-weight: 500;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e1;
  border: none;
  opacity: 1;
}

.testimonial-dots button.active {
  background-color: var(--cf-primary);
}

.tdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  display: inline-block;
}

.tdot--active {
  background: var(--cf-primary);
}

/* CTA banner */
.bg-soft-gradient {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.cta-banner {
  background: linear-gradient(135deg, #0a1628 0%, #132a4a 48%, var(--cf-navy) 100%);
  color: #fff;
  padding: 2.75rem 2.25rem;
  border-radius: 20px;
  box-shadow: 0 24px 56px rgba(11, 23, 42, 0.35);
}

.cta-banner-title {
  font-family: var(--cf-display);
  font-size: clamp(1.55rem, 2.6vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-banner-text {
  opacity: 0.92;
  font-size: 1.03rem;
  font-weight: 500;
}

.btn-cta-white {
  border-radius: 12px;
  padding: 14px 22px;
  font-weight: 700;
  color: var(--cf-primary) !important;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-cta-wa {
  border-radius: 12px;
  padding: 14px 22px;
  font-weight: 700;
  border-width: 2px;
}

/* ——— Legacy / inner pages ——— */
.hero-razor {
  background: #fff;
}

.eyebrow {
  letter-spacing: 0.06em;
  color: var(--cf-muted);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-title {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  font-weight: 700;
  max-width: 820px;
}

.hero-subtitle {
  color: var(--cf-muted);
  font-size: 16px;
  max-width: 660px;
  margin-top: 12px;
}

.btn-main {
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #334155;
  font-size: 14px;
}

.trust-row span::before {
  content: "✓ ";
  color: var(--cf-primary);
  font-weight: 700;
}

.dashboard-panel {
  background: #fff;
  border: 1px solid var(--cf-border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.06);
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mini-card {
  background: #fff;
  border: 1px solid var(--cf-border);
  border-radius: 12px;
  padding: 12px;
}

.mini-card small {
  display: block;
  color: var(--cf-muted);
  margin-bottom: 4px;
  font-size: 12px;
}

.mini-card strong {
  font-size: 18px;
  color: var(--cf-text);
}

.section-title {
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 600;
}

.content-card {
  background: #fff;
  border: 1px solid var(--cf-border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--cf-border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
}

.price-text {
  font-weight: 600;
  margin-bottom: 0;
  color: var(--cf-text);
}

.card-link {
  color: var(--cf-primary);
  font-weight: 600;
  text-decoration: none;
}

.card-link:hover {
  color: var(--cf-primary-hover);
}

.trusted-line {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #334155;
  font-size: 14px;
}

.trusted-line span {
  padding: 8px 12px;
  border: 1px solid var(--cf-border);
  border-radius: 999px;
  background: #fff;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.process-step {
  background: #fff;
  border: 1px solid var(--cf-border);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  position: relative;
}

.process-step span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cf-primary);
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 0;
}

.final-cta {
  background: var(--cf-navy);
  color: #fff;
}

.final-cta .btn-light {
  color: var(--cf-text);
  border-radius: 12px;
  padding: 14px 24px;
  font-weight: 600;
}

.service-content {
  line-height: 1.8;
  color: #1e293b;
  font-size: 1rem;
}

.service-content h2,
.service-content h3,
.service-content h4 {
  margin-top: 1.2rem;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.service-content ul,
.service-content ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.service-content table {
  width: 100%;
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.service-content table td,
.service-content table th {
  border: 1px solid #e2e8f0;
  padding: 0.5rem 0.75rem;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--cf-navy);
  color: #94a3b8;
}

.footer-brand-text {
  font-family: var(--cf-display);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  font-size: 0.95rem;
}

.footer-tagline {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

.brand-mark--footer {
  box-shadow: none;
}

.footer-lead {
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 300px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 1.15rem;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}

.footer-social-btn:hover {
  color: #fff;
  background: rgba(0, 86, 210, 0.35);
  border-color: rgba(0, 86, 210, 0.5);
  transform: translateY(-2px);
}

.footer-link-ico {
  font-size: 0.65rem;
  margin-right: 6px;
  opacity: 0.65;
  vertical-align: middle;
}

.footer-contact-badge {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(0, 86, 210, 0.15);
  color: #93c5fd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
}

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

.footer-contact {
  font-size: 0.9rem;
}

.footer-contact li {
  margin-bottom: 0.65rem;
}

.footer-contact a {
  color: #94a3b8;
  text-decoration: none;
}

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

.footer-contact-icon {
  flex-shrink: 0;
  color: var(--cf-primary);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.footer-copy,
.footer-made {
  font-size: 0.875rem;
  color: #94a3b8;
}

.footer-heart {
  font-style: normal;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #e2e8f0;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 1050;
}

.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.05);
}

.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: var(--cf-primary);
  color: #fff;
  text-align: center;
  padding: 13px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  z-index: 1040;
}

.mobile-sticky-cta:hover {
  color: #fff;
  filter: brightness(1.05);
}

@media (max-width: 991px) {
  .btn-nav-cta {
    width: 100%;
  }

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

  .hero-dashboard-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 34px;
  }

  .btn-main {
    width: 100%;
  }

  .mobile-sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 72px;
  }
}
