:root {
  --ct-blue: #2563eb;
  --ct-blue-dark: #1d4ed8;
  --ct-cyan: #0ea5e9;
  --ct-ink: #0f172a;
  --ct-ink-2: #1e293b;
  --ct-muted: #64748b;
  --ct-muted-2: #94a3b8;
  --ct-border: #e2e8f0;
  --ct-bg: #ffffff;
  --ct-bg-soft: #f8fafc;
  --ct-blue-soft: #eff6ff;
  --ct-card: #ffffff;
  --ct-green: #10b981;
  --ct-orange: #f59e0b;
  --ct-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --ct-shadow-lg: 0 24px 80px rgba(15, 23, 42, 0.12);
  --ct-radius: 18px;
  --ct-radius-sm: 12px;
  --ct-container: 1240px;
  --ct-transition: 0.35s ease;
}

body {
  color: var(--ct-ink);
  background: var(--ct-bg);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6,
.elementor-heading-title {
  color: var(--ct-ink);
  font-family: "Plus Jakarta Sans", "Syne", "Inter", sans-serif;
  letter-spacing: -0.03em;
}

.elementor-section.ct-section {
  padding: 100px 0;
}

.ct-soft {
  background: var(--ct-bg-soft);
}

.ct-blue-wash {
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.ct-label .elementor-heading-title,
.ct-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ct-blue);
}

.ct-label::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ct-blue), var(--ct-cyan));
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.08);
}

.ct-headline .elementor-heading-title {
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.02;
  font-weight: 800;
}

.ct-title-lg .elementor-heading-title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 800;
}

.ct-copy,
.ct-copy .elementor-widget-container,
.ct-copy p {
  color: var(--ct-muted);
  font-size: 17px;
}

.ct-btn-primary .elementor-button,
.ct-btn-secondary .elementor-button {
  border-radius: 12px;
  padding: 15px 28px;
  font-weight: 700;
  transition: transform var(--ct-transition), box-shadow var(--ct-transition), background var(--ct-transition);
}

.ct-btn-primary .elementor-button {
  background: linear-gradient(135deg, var(--ct-blue), var(--ct-cyan));
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.24);
  color: #fff;
}

.ct-btn-secondary .elementor-button {
  background: #fff;
  color: var(--ct-ink);
  border: 1px solid var(--ct-border);
}

.ct-btn-primary .elementor-button:hover,
.ct-btn-secondary .elementor-button:hover {
  transform: translateY(-3px);
}

.ct-site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 14px 0;
  transition: background var(--ct-transition), box-shadow var(--ct-transition), backdrop-filter var(--ct-transition);
}

.ct-site-header.ct-scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--ct-border);
}

.ct-header-shell,
.ct-card-shell,
.ct-service-card,
.ct-feature-card,
.ct-tech-card,
.ct-mini-card,
.ct-contact-card,
.ct-shortcode-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius);
  box-shadow: var(--ct-shadow);
  transition: transform var(--ct-transition), box-shadow var(--ct-transition), border-color var(--ct-transition);
}

.ct-header-shell {
  padding: 16px 24px;
}

.ct-card-shell:hover,
.ct-service-card:hover,
.ct-feature-card:hover,
.ct-tech-card:hover,
.ct-shortcode-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ct-shadow-lg);
  border-color: rgba(37, 99, 235, 0.24);
}

.ct-logo-box .elementor-heading-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
}

.ct-logo-box .elementor-heading-title::before {
  content: "{ }";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ct-blue), var(--ct-cyan));
  color: #fff;
  font-size: 13px;
  letter-spacing: 0;
}

.ct-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.16), transparent 26%),
    radial-gradient(circle at 10% 30%, rgba(14, 165, 233, 0.08), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  overflow: hidden;
}

.ct-badge-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ct-ink);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.08);
}

.ct-badge-text::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ct-green);
}

.ct-hero-proof {
  color: var(--ct-muted);
  font-size: 15px;
  font-weight: 500;
}

.ct-hero-visual {
  position: relative;
  min-height: 620px;
}

.ct-phone-frame {
  position: relative;
  padding: 22px;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 38px;
  background: #0f172a;
  box-shadow: 0 40px 100px rgba(15, 23, 42, 0.28);
}

.ct-phone-screen {
  min-height: 560px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
}

.ct-phone-screen .ct-card-shell {
  padding: 18px;
  margin-bottom: 16px;
}

.ct-phone-screen .ct-mini-metric {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.ct-float-stat {
  position: absolute;
  min-width: 180px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  animation: ctFloat 3.6s ease-in-out infinite;
}

.ct-float-stat strong {
  display: block;
  color: var(--ct-ink);
  font-size: 22px;
}

.ct-float-stat--a { top: 60px; left: -10px; }
.ct-float-stat--b { top: 220px; right: -10px; animation-delay: 0.4s; }
.ct-float-stat--c { bottom: 30px; left: 20px; animation-delay: 0.8s; }

.ct-marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.ct-marquee-track {
  display: flex;
  gap: 28px;
  min-width: max-content;
  animation: ctMarquee 28s linear infinite;
}

.ct-marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 18px 24px;
  border: 1px solid var(--ct-border);
  border-radius: 16px;
  background: #fff;
  color: var(--ct-muted);
  font-weight: 700;
}

.ct-service-card {
  padding: 28px;
  border-top: 3px solid transparent;
}

.ct-service-card:hover {
  border-top-color: var(--ct-blue);
}

.ct-service-card .elementor-icon-box-icon span,
.ct-feature-card .elementor-icon-box-icon span,
.ct-tech-card .elementor-icon-box-icon span,
.ct-contact-card .elementor-icon-box-icon span {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(14, 165, 233, 0.12));
  border-radius: 16px;
  padding: 14px;
}

.ct-service-card .elementor-icon-box-title,
.ct-feature-card .elementor-icon-box-title,
.ct-tech-card .elementor-icon-box-title {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.ct-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.ct-tag-list span {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--ct-blue-soft);
  color: var(--ct-ink);
  font-size: 12px;
  font-weight: 700;
}

.ct-step-card {
  position: relative;
  padding: 30px 26px;
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius);
  background: #fff;
  box-shadow: var(--ct-shadow);
  min-height: 100%;
}

.ct-step-no {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ct-blue), var(--ct-cyan));
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
}

.ct-dashboard-card {
  padding: 28px;
  border: 1px solid var(--ct-border);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--ct-shadow-lg);
}

.ct-progress {
  margin-top: 18px;
}

.ct-progress-row {
  margin-bottom: 16px;
}

.ct-progress-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ct-ink);
}

.ct-progress-bar {
  height: 10px;
  border-radius: 999px;
  background: #eaf1fa;
  overflow: hidden;
}

.ct-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ct-blue), var(--ct-cyan));
}

.ct-counter-card {
  padding: 28px 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.12);
  text-align: center;
  box-shadow: var(--ct-shadow);
}

.ct-counter-card .elementor-counter-number-wrapper {
  color: var(--ct-blue);
  font-size: clamp(38px, 5vw, 64px);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 800;
}

.ct-counter-card .elementor-counter-title {
  color: var(--ct-muted);
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
}

.ct-shortcode-grid {
  display: grid;
  gap: 24px;
}

.ct-columns-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ct-columns-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.ct-shortcode-card {
  overflow: hidden;
}

.ct-shortcode-thumb {
  position: relative;
  min-height: 220px;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
}

.ct-shortcode-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.ct-shortcode-body {
  padding: 26px;
}

.ct-shortcode-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--ct-blue-soft);
  color: var(--ct-blue);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

.ct-shortcode-title {
  margin: 0 0 12px;
  color: var(--ct-ink);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.ct-shortcode-excerpt {
  color: var(--ct-muted);
  margin: 0 0 16px;
}

.ct-shortcode-meta,
.ct-shortcode-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.ct-shortcode-tech span,
.ct-meta-pill {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--ct-ink);
  font-size: 12px;
  font-weight: 700;
}

.ct-shortcode-link {
  display: inline-flex;
  margin-top: 18px;
  align-items: center;
  gap: 8px;
  color: var(--ct-blue);
  font-weight: 700;
  text-decoration: none;
}

.ct-testimonial-card {
  height: 100%;
  padding: 28px;
  border: 1px solid var(--ct-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--ct-shadow);
}

.ct-testimonial-card .elementor-testimonial__content {
  color: var(--ct-muted);
  font-size: 17px;
  font-style: italic;
}

.ct-testimonial-card .elementor-testimonial__name {
  font-weight: 800;
  color: var(--ct-ink);
}

.ct-tech-card,
.ct-contact-card {
  padding: 22px;
  text-align: center;
}

.ct-faq .elementor-accordion .elementor-tab-title {
  padding: 22px 24px;
  border: 1px solid var(--ct-border);
  border-radius: 16px;
  background: #fff;
  margin-bottom: 12px;
  font-weight: 800;
}

.ct-faq .elementor-tab-content {
  margin: -2px 0 12px;
  padding: 20px 24px;
  border: 1px solid var(--ct-border);
  border-top: 0;
  border-radius: 0 0 16px 16px;
  color: var(--ct-muted);
  background: #fff;
}

.ct-cta-band {
  background: linear-gradient(135deg, #1e40af, #2563eb, #0ea5e9);
  color: #fff;
  border-radius: 28px;
  padding: 60px 30px;
  box-shadow: 0 30px 90px rgba(37, 99, 235, 0.22);
}

.ct-cta-band .elementor-heading-title,
.ct-cta-band p {
  color: #fff;
}

.ct-newsletter-box {
  padding: 30px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--ct-border);
  box-shadow: var(--ct-shadow);
}

.ct-footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.78);
}

.ct-footer .elementor-heading-title,
.ct-footer a,
.ct-footer p,
.ct-footer li {
  color: rgba(255, 255, 255, 0.84);
}

.ct-footer .ct-logo-box .elementor-heading-title {
  color: #fff;
}

.ct-footer .elementor-widget-icon-list .elementor-icon-list-item {
  align-items: flex-start;
}

.ct-wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
  font-size: 24px;
  text-decoration: none;
  animation: ctPulse 2.4s infinite;
}

.ct-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.ct-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes ctFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes ctPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.38); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes ctMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
  .ct-columns-3,
  .ct-columns-2 {
    grid-template-columns: 1fr 1fr;
  }

  .ct-float-stat--a,
  .ct-float-stat--b,
  .ct-float-stat--c {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    margin-top: 14px;
  }
}

@media (max-width: 767px) {
  .elementor-section.ct-section {
    padding: 64px 0;
  }

  .ct-columns-3,
  .ct-columns-2 {
    grid-template-columns: 1fr;
  }

  .ct-headline .elementor-heading-title {
    font-size: 42px;
  }

  .ct-hero-visual {
    min-height: auto;
  }

  .ct-phone-frame {
    max-width: 300px;
  }

  .ct-phone-screen {
    min-height: 500px;
  }
}
