/*
Theme Name: Trendy Bill Pro
Theme URI: http://www.trendybillpro.com/
Author: Trendy Web Works
Author URI: http://www.trendywebworks.in/
Description: Feature-packed theme with a solid design and a friendly interface. Designed by <a href="http://www.trendywebworks.in/">Trendy Web Works</a>.
Version: 2.0
Tags: black, brown, orange, tan, white, yellow, light, one-column, two-columns, right-sidebar, flexible-width, custom-header, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, translation-ready
Text Domain: Trendy Bill Pro

Use it to make something cool, have fun, and share what you've learned with others.
*/

:root {
  --primary: #635bff;
  --primary-dark: #3f38d7;
  --secondary: #00c2a8;
  --accent: #ffb703;
  --ink: #12152f;
  --muted: #60657d;
  --line: #e8ebf5;
  --paper: #ffffff;
  --soft: #f6f8ff;
  --deep: #0e1024;
  --shadow: 0 22px 60px rgba(30, 35, 90, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1300px, calc(100% - 40px));
  margin: 0 auto;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--deep);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.loader-mark {
  width: 70px;
  height: 70px;
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    transform: scale(1.08);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled {
  background: transparent;
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.site-header .container {
  width: min(100% - 80px, 1760px);
}

.nav-wrap {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 250px;
  font-family: "Outfit", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #171717;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  min-height: 94px;
  padding: 0 38px;
  border-radius: 0 0 24px 24px;
  color: #171717;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 45px rgba(99, 91, 255, 0.06);
  font-weight: 700;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 0;
  white-space: nowrap;
  font-weight: 500;
}

.main-nav a i {
  color: currentColor;
  font-size: 12px;
  transition: transform 0.25s ease;
}

.main-nav a:hover i,
.main-nav a.active i {
  transform: rotate(180deg);
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: var(--secondary);
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a.active {
  color: #1717ff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  min-width: 272px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 56px;
  padding: 0 12px 0 30px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(100deg, #1822ff 0%, #00c5ee 100%);
  box-shadow: 0 18px 32px rgba(25, 74, 255, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(25, 74, 255, 0.28);
}

.header-cta i {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #161a2d;
  background: #fff;
  transform: rotate(-28deg);
}

.header-grid {
  display: grid;
  grid-template-columns: repeat(2, 10px);
  gap: 6px;
  place-content: center;
  width: 61px;
  height: 61px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 18px 36px rgba(18, 21, 47, 0.08);
  cursor: pointer;
}

.header-grid span {
  width: 10px;
  height: 10px;
  border: 2px solid #2424ff;
  border-radius: 3px;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 2px solid var(--primary);
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  background: var(--primary);
  box-shadow: 0 15px 30px rgba(99, 91, 255, 0.24);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-small {
  min-height: 44px;
  padding: 0 20px;
}

.btn-outline {
  color: var(--primary);
  background: transparent;
  box-shadow: none;
}

.btn-outline:hover {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 149px 0 140px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 194, 168, 0.13), transparent 30%),
    linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.hero::before {
  position: absolute;
  inset: auto -12% -34% auto;
  width: 54vw;
  height: 54vw;
  min-width: 520px;
  min-height: 520px;
  content: "";
  border-radius: 50%;
  background: rgba(99, 91, 255, 0.08);
}

.hero-shape {
  position: absolute;
  border-radius: 28px;
  transform: rotate(18deg);
  opacity: 0.55;
}

.hero-shape-one {
  top: 120px;
  right: 10%;
  width: 90px;
  height: 90px;
  background: rgba(255, 183, 3, 0.28);
}

.hero-shape-two {
  bottom: 16%;
  left: 5%;
  width: 66px;
  height: 66px;
  background: rgba(0, 194, 168, 0.22);
}

.hero-grid,
.split,
.demo-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 70px;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: var(--secondary);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.08;
}

h1 {
  max-width: 680px;
  font-size: clamp(44px, 6vw, 74px);
}

h2 {
  font-size: clamp(32px, 4vw, 50px);
}

h3 {
  font-size: 24px;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy p {
  max-width: 620px;
  margin: 24px 0 32px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.play-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
}

.play-link span,
.video-play {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  background: var(--secondary);
  box-shadow: 0 15px 35px rgba(0, 194, 168, 0.25);
}

.hero-visual {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-dashboard-image {
  width: min(112%, 760px);
  max-width: none;
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 55px rgba(32, 38, 88, 0.15));
}

.feature-strip {
  margin-top: 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 64px 0 50px;
  background: #fff;
}

.feature-grid,
.service-grid,
.pricing-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-card,
.service-card,
.price-card,
.step-card,
.contact-form,
.testimonial-slider {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(18, 21, 47, 0.08);
}

.feature-card {
  min-height: 448px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  padding: 52px 40px 42px;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.feature-card:hover,
.feature-card-raised:hover {
  background: #fff;
  box-shadow: 0 26px 70px rgba(29, 34, 86, 0.1);
  transform: translateY(-8px);
}

.feature-card h3 {
  margin-top: 34px;
  font-size: 28px;
}

.feature-card p {
  max-width: 330px;
  margin: 18px auto 0;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
}

.feature-art {
  position: relative;
  width: 224px;
  height: 180px;
}

.chart-art .bar {
  position: absolute;
  bottom: 16px;
  width: 22px;
  border-radius: 7px 7px 3px 3px;
  background: linear-gradient(180deg, #8d68ff 0%, #6553f6 100%);
  box-shadow: inset 0 6px 10px rgba(255, 255, 255, 0.22), 0 8px 14px rgba(92, 73, 220, 0.18);
}

.chart-art .bar-1 {
  left: 42px;
  height: 62px;
}

.chart-art .bar-2 {
  left: 70px;
  height: 42px;
}

.chart-art .bar-3 {
  left: 98px;
  height: 52px;
}

.chart-art .bar-4 {
  left: 126px;
  height: 86px;
}

.chart-art .bar-5 {
  left: 154px;
  height: 115px;
}

.chart-art .growth-line {
  position: absolute;
  left: 28px;
  top: 48px;
  width: 154px;
  height: 72px;
  border-top: 9px solid #ffd323;
  border-right: 9px solid #ffd323;
  transform: skew(-24deg) rotate(-4deg);
}

.chart-art .growth-line::after {
  position: absolute;
  right: -14px;
  top: -18px;
  width: 0;
  height: 0;
  content: "";
  border-left: 18px solid #ffd323;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transform: rotate(-18deg);
}

.chart-art .lens {
  position: absolute;
  right: 42px;
  top: 64px;
  width: 62px;
  height: 62px;
  border: 7px solid #f8c226;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #a9fff1 0%, #5fe7d3 58%, #28bfae 100%);
  box-shadow: 0 9px 16px rgba(248, 194, 38, 0.2);
}

.chart-art .lens::after {
  position: absolute;
  right: -35px;
  bottom: -26px;
  width: 48px;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: #f8c226;
  transform: rotate(45deg);
}

.chart-art .base-line {
  position: absolute;
  left: 28px;
  right: 18px;
  bottom: 0;
  height: 10px;
  border-radius: 999px;
  background: #ff4e4d;
  box-shadow: 0 5px 12px rgba(255, 78, 77, 0.18);
}

.integration-art .app {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 4px;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  box-shadow: 0 12px 20px rgba(20, 25, 55, 0.16);
}

.integration-art .app-main {
  left: 78px;
  top: 62px;
  width: 70px;
  height: 70px;
  border: 5px solid #05a9df;
  color: #9feaff;
  font-size: 28px;
  background: #143c66;
  z-index: 4;
}

.integration-art .app-one {
  left: 74px;
  top: 20px;
  width: 44px;
  height: 36px;
  color: #b7c9d7;
  background: #263847;
  transform: rotate(-18deg);
}

.integration-art .app-two {
  left: 36px;
  top: 66px;
  width: 54px;
  height: 44px;
  color: #ffd07d;
  background: #725046;
  border: 3px solid #f8a83d;
  transform: rotate(2deg);
}

.integration-art .app-three {
  right: 38px;
  top: 50px;
  width: 52px;
  height: 54px;
  color: #ffc4ff;
  background: #6a4b82;
  border: 4px solid #be8ce8;
  transform: rotate(18deg);
}

.integration-art .app-four {
  left: 44px;
  bottom: 18px;
  width: 50px;
  height: 42px;
  color: #ffc3f3;
  background: #6f2c88;
  border: 3px solid #d066de;
  transform: rotate(-14deg);
}

.solution-art .bulb {
  position: absolute;
  left: 86px;
  top: 34px;
  display: grid;
  place-items: center;
  width: 70px;
  height: 88px;
  border-radius: 50% 50% 42% 42%;
  color: #fff;
  font-size: 33px;
  background: radial-gradient(circle at 38% 24%, #ffd77e 0%, #ffa626 45%, #df6507 100%);
  box-shadow: 0 15px 22px rgba(223, 101, 7, 0.2);
  z-index: 3;
}

.solution-art .bulb::after {
  position: absolute;
  left: 19px;
  right: 19px;
  bottom: -12px;
  height: 18px;
  content: "";
  border-radius: 4px;
  background: linear-gradient(180deg, #ffffff, #d8d8d8);
}

.solution-art .hand {
  position: absolute;
  left: 66px;
  bottom: 24px;
  width: 132px;
  height: 44px;
  border-radius: 35px 48px 28px 48px;
  background: linear-gradient(160deg, #ffd6a7, #e88738);
  transform: rotate(-9deg);
  box-shadow: 0 13px 22px rgba(169, 96, 39, 0.14);
}

.solution-art .hand::before {
  position: absolute;
  right: 18px;
  top: -28px;
  width: 32px;
  height: 58px;
  content: "";
  border-radius: 18px;
  background: linear-gradient(160deg, #ffe0bd, #ef9b50);
  transform: rotate(43deg);
}

.solution-art .cuff {
  position: absolute;
  left: 52px;
  bottom: 20px;
  width: 32px;
  height: 46px;
  border-radius: 6px;
  background: #e9731c;
  transform: rotate(-10deg);
}

.solution-art .cuff::after {
  position: absolute;
  left: 9px;
  top: 12px;
  width: 12px;
  height: 12px;
  content: "";
  border-radius: 50%;
  background: #fff;
}

.solution-art .spark {
  position: absolute;
  width: 13px;
  height: 7px;
  border-radius: 999px;
  background: #e9e9e9;
}

.solution-art .spark-1 {
  left: 72px;
  top: 58px;
}

.solution-art .spark-2 {
  left: 110px;
  top: 10px;
  transform: rotate(90deg);
}

.solution-art .spark-3 {
  right: 54px;
  top: 54px;
  transform: rotate(-42deg);
}

.solution-art .spark-4 {
  right: 36px;
  top: 98px;
}

.confetti-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #775cf8;
}

.dot-1 {
  left: 3%;
  top: 16%;
  background: #ff5d73;
}

.dot-2 {
  left: 26%;
  top: 30%;
  background: #d0189c;
}

.dot-3 {
  left: 69%;
  top: 21%;
  background: #20d86d;
}

.dot-4 {
  right: 12%;
  top: 26%;
  background: #8b86ff;
}

.dot-5 {
  left: 32%;
  bottom: 18%;
  background: #8f168f;
}

.dot-6 {
  right: 2%;
  top: 8%;
  background: #dd8a82;
}

.section {
  padding: 77px 0;
}

.section:nth-of-type(even) {
  background: var(--soft);
}

.section-copy p {
  margin: 22px 0;
}

.mini-heading {
  margin: 4px 0 18px;
  font-size: 22px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  color: #343952;
  font-weight: 700;
}

.check-list i {
  margin-right: 10px;
  color: var(--secondary);
}

.marquee-section {
  position: relative;
  overflow: hidden;
  padding: 41px 0 45px;
  background: #fff;
}

.marquee-section::before,
.marquee-section::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 130px;
  content: "";
  pointer-events: none;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeMove 24s linear infinite;
}

.marquee-track span,
.marquee-track b {
  color: #171717;
  font-family: "Outfit", sans-serif;
  font-size: clamp(62px, 8vw, 112px);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.marquee-track b {
  margin: 0 38px;
}

.marquee-section:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.about-image-placeholder {
  min-height: 500px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(99, 91, 255, 0.1), rgba(0, 194, 168, 0.1)),
    repeating-linear-gradient(45deg, rgba(18, 21, 47, 0.04) 0 1px, transparent 1px 18px),
    #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.about-image-placeholder div {
  display: grid;
  gap: 12px;
  max-width: 320px;
  padding: 30px;
}

.about-image-placeholder i {
  color: var(--primary);
  font-size: 58px;
}

.about-image-placeholder strong {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
}

.about-image-placeholder span {
  color: var(--muted);
  line-height: 1.6;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-title .eyebrow {
  justify-content: center;
}

.services {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.services-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 78px;
}

.services-intro {
  position: sticky;
  top: 120px;
  min-height: 660px;
}

.services-intro .eyebrow {
  color: #0a57ff;
}

.services-intro h2 {
  max-width: 560px;
  font-size: clamp(44px, 5vw, 62px);
  line-height: 1.14;
}

.services-visual {
  position: relative;
  width: min(100%, 490px);
  height: 390px;
  margin-top: 70px;
}

.hub-core {
  position: absolute;
  left: 50%;
  top: 48%;
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 66px;
  background: radial-gradient(circle at 42% 42%, #ffffff 0 28%, #b983ff 29% 54%, #8b46ee 55% 100%);
  box-shadow: inset 0 10px 25px rgba(255, 255, 255, 0.55), 0 20px 40px rgba(114, 57, 205, 0.26);
  transform: translate(-50%, -50%);
  z-index: 3;
}

.hub-core i {
  color: #e9e9e9;
  text-shadow: 0 7px 15px rgba(0, 0, 0, 0.16);
}

.hub-line {
  position: absolute;
  width: 118px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f4f4f9, #d8d9e6);
  box-shadow: 0 9px 18px rgba(37, 42, 88, 0.1);
  z-index: 1;
}

.line-top-left {
  left: 80px;
  top: 98px;
  transform: rotate(58deg);
}

.line-top-right {
  right: 80px;
  top: 98px;
  transform: rotate(-58deg);
}

.line-mid-left {
  left: 38px;
  top: 184px;
}

.line-mid-right {
  right: 38px;
  top: 184px;
}

.line-bottom-left {
  left: 82px;
  bottom: 95px;
  transform: rotate(-58deg);
}

.line-bottom-right {
  right: 82px;
  bottom: 95px;
  transform: rotate(58deg);
}

.hub-node {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: inset 0 9px 13px rgba(255, 255, 255, 0.46), 0 16px 24px rgba(43, 55, 140, 0.2);
  z-index: 2;
}

.node-one {
  left: 76px;
  top: 42px;
  background: linear-gradient(135deg, #ffcb43, #d46a00);
}

.node-two {
  right: 76px;
  top: 42px;
  background: linear-gradient(135deg, #ffe179, #e78a1e);
}

.node-three {
  left: 35px;
  top: 156px;
  background: linear-gradient(135deg, #9ec6ff, #0718c9);
}

.node-four {
  right: 35px;
  top: 156px;
  background: linear-gradient(135deg, #b8e3ff, #5176df);
}

.node-five {
  left: 79px;
  bottom: 46px;
  background: linear-gradient(135deg, #d999ff, #5817c4);
}

.node-six {
  right: 79px;
  bottom: 46px;
  background: linear-gradient(135deg, #d7a9ff, #4f08ba);
}

.hub-handle {
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 55px;
  height: 92px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffc84c, #f0a42e 70%, #6230d0 71%);
  box-shadow: 0 16px 28px rgba(149, 89, 0, 0.17);
  transform: translateX(-50%);
  z-index: 2;
}

.service-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

.service-dot-1 {
  left: 6%;
  top: 17%;
}

.service-dot-2 {
  right: 38%;
  top: 12%;
  background: #851778;
}

.service-dot-3 {
  right: 25%;
  top: 45%;
  background: #21d652;
}

.service-dot-4 {
  left: 12%;
  bottom: 19%;
  background: #c378bd;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 76px 24px;
  padding-top: 44px;
}

.service-grid .service-card:nth-child(even) {
  margin-top: 42px;
}

.service-card,
.price-card {
  padding: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card {
  position: relative;
  min-height: 346px;
  overflow: visible;
  padding: 96px 34px 36px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(32, 38, 88, 0.08);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card::before,
.service-card::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.service-card::before {
  right: 52px;
  top: 78px;
  width: 23px;
  height: 23px;
  background: rgba(18, 21, 47, 0.05);
}

.service-card::after {
  right: 36px;
  bottom: 32px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(99, 91, 255, 0.08);
}

.service-icon {
  position: absolute;
  left: 34px;
  top: -56px;
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  color: #1634ff;
  font-size: 38px;
  background: #edf2ff;
  box-shadow: 0 18px 34px rgba(30, 74, 255, 0.08);
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.service-card h3 {
  font-size: 28px;
  line-height: 1.2;
}

.service-card p {
  margin: 24px 0 0;
  color: #000;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  transition: color 0.25s ease;
}

.service-card>a {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-top: 24px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #642cff, #ff5572);
  transition: transform 0.25s ease;
}

.service-card>a i {
  transform: rotate(-45deg);
}

.service-card:hover {
  color: #fff;
  background: #07092f;
  box-shadow: 0 30px 80px rgba(7, 9, 47, 0.2);
  transform: translateY(-8px);
}

.service-card:hover .service-icon {
  color: #fff;
  background: linear-gradient(135deg, #1717ff, #00c8ff);
  transform: translateY(-6px);
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.86);
}

.service-card:hover>a {
  transform: translateY(-3px);
}

.demo-section {
  background: var(--soft);
  color: var(--ink);
}

.demo-section p,
.demo-section .eyebrow {
  color: var(--muted);
}

.demo-section .eyebrow::before {
  background: var(--accent);
}

.progress-group {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.progress-item div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 800;
}

.progress-item em {
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(18, 21, 47, 0.1);
}

.progress-item i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transition: width 1.2s ease;
}

.video-card {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(99, 91, 255, 0.78), rgba(0, 194, 168, 0.7)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 18px);
  box-shadow: var(--shadow);
}

.video-play {
  width: 86px;
  height: 86px;
  border: 0;
  font-size: 26px;
  cursor: pointer;
}

.video-card strong {
  position: absolute;
  left: 28px;
  bottom: 24px;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 28px;
}

.demo-image-placeholder {
  min-height: 430px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(99, 91, 255, 0.1), rgba(0, 194, 168, 0.12)),
    repeating-linear-gradient(45deg, rgba(18, 21, 47, 0.04) 0 1px, transparent 1px 18px),
    #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.demo-image-placeholder div {
  display: grid;
  gap: 12px;
  max-width: 310px;
  padding: 30px;
}

.demo-image-placeholder i {
  color: var(--primary);
  font-size: 56px;
}

.demo-image-placeholder strong {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
}

.demo-image-placeholder span {
  color: var(--muted);
  line-height: 1.6;
}

.screen-lines {
  position: absolute;
  inset: 34px;
  pointer-events: none;
}

.screen-lines span {
  position: absolute;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.screen-lines span:nth-child(1) {
  top: 0;
  left: 0;
  width: 42%;
}

.screen-lines span:nth-child(2) {
  top: 44px;
  left: 0;
  width: 72%;
}

.screen-lines span:nth-child(3) {
  right: 0;
  bottom: 48px;
  width: 52%;
}

.screen-lines span:nth-child(4) {
  right: 0;
  bottom: 0;
  width: 34%;
}

.process {
  background: #fff;
}

.process-panel {
  position: relative;
  overflow: hidden;
  padding: 83px 72px;
  border-radius: 28px;
  background: #07092f;
}

.process-panel::before {
  position: absolute;
  left: 20%;
  right: 7%;
  top: 181px;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.1);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
}

.step-card {
  border: 0;
  box-shadow: none;
  background: transparent;
  color: #fff;
  text-align: center;
  padding: 0;
}

.step-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 120px;
  height: 120px;
  margin: 0 auto 34px;
  border-radius: 50%;
  color: #fff;
  font-size: 38px;
  background: linear-gradient(135deg, #1724ff, #00c8eb);
}

.step-icon-alt {
  background: linear-gradient(135deg, #672cff, #f15772);
}

.step-icon::after {
  position: absolute;
  right: -8px;
  top: 50%;
  width: 16px;
  height: 16px;
  content: "";
  border: 3px solid #2635ff;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
}

.step-card h3 {
  color: #fff;
  font-size: 28px;
}

.step-card p {
  max-width: 270px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
}

.step-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 102px;
  height: 36px;
  margin-top: 24px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(135deg, #672cff, #f15772);
}

.step-pill-blue {
  background: linear-gradient(135deg, #1724ff, #00c8eb);
}

.price-card {
  position: relative;
}

.price-card.featured {
  color: #fff;
  background: var(--deep);
  transform: translateY(-18px);
}

.price-card.featured p,
.price-card.featured li {
  color: rgba(255, 255, 255, 0.74);
}

.badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  background: var(--accent);
}

.price {
  margin: 28px 0;
  font-family: "Outfit", sans-serif;
  font-size: 46px;
  font-weight: 800;
}

.price span {
  color: var(--muted);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
}

.price-card ul {
  display: grid;
  gap: 13px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.price-card li::before {
  content: "\f00c";
  margin-right: 10px;
  color: var(--secondary);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.testimonials {
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 183, 3, 0.14), transparent 32%),
    var(--soft);
}

.testimonial-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: start;
  gap: 42px;
}

.testimonial-column .section-title {
  max-width: 680px;
  margin: 0 0 34px;
  text-align: left;
}

.testimonial-column .section-title .eyebrow {
  justify-content: flex-start;
}

.testimonial-slider {
  position: relative;
  padding: 42px;
}

.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
}

.testimonial p {
  margin: 0 0 28px;
  color: #2e344f;
  font-family: "Outfit", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.35;
}

.person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.person span {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.person strong,
.person small {
  display: block;
}

.person small {
  margin-top: 5px;
  color: var(--muted);
}

.slider-controls {
  position: absolute;
  right: 30px;
  bottom: 36px;
  display: flex;
  gap: 12px;
}

.slider-controls button {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--primary);
  cursor: pointer;
}

.contact-form {
  padding: 36px;
  display: grid;
  gap: 16px;
}

.contact-form h2 {
  margin-bottom: 8px;
}

.contact-form label span {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px 16px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.12);
}

.form-note {
  min-height: 26px;
  margin: 0;
  color: #087c68;
  font-weight: 800;
}

.footer {
  padding: 59px 0 31px;
  color: rgba(255, 255, 255, 0.78);
  background: #fff;
}

.footer-panel {
  width: min(100% - 80px, 1760px);
  margin: 0 auto;
  padding: clamp(50px, 4.3vw, 70px) clamp(32px, 5vw, 70px) 35px;
  border-radius: 28px;
  background: linear-gradient(105deg, #1717ff 0%, #080931 42%, #07092f 100%);
  color: #fff;
  box-shadow: 0 26px 75px rgba(7, 9, 47, 0.16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.1fr 0.68fr 0.68fr;
  align-items: start;
  gap: 70px;
}

.footer .brand,
.footer h3 {
  color: #fff;
}

.footer-brand {
  font-size: 40px;
}

.footer p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 1);
  font-weight: 400;
  line-height: 1.75;
}

.footer a:not(.brand) {
  display: block;
  margin-top: 24px;
  color: #fff;
  font-weight: 800;
}

.footer h3 {
  margin: 0 0 30px;
  font-size: 24px;
}

.footer-newsletter {
  max-width: 374px;
  min-height: 62px;
  display: flex;
  align-items: center;
  margin-top: 34px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
}

.footer-newsletter input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 0 14px;
  color: #fff;
  font-weight: 800;
  background: transparent;
  outline: none;
}

.footer-newsletter input::placeholder {
  color: #fff;
}

.footer-newsletter button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: #1724ff;
  cursor: pointer;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  margin-top: 28px;
}

.footer-contact-item>i {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
}

.footer-contact-item span,
.footer-contact-item strong {
  display: block;
}

.footer-contact-item span {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

.footer-contact-item strong {
  margin-top: 8px;
  color: #fff;
  font-size: 17px;
  line-height: 1.45;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 64px;
  padding-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: #fff;
  font-weight: 400;
  font-size: 13px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer .footer-social a {
  display: inline-grid;
  place-items: center;
  width: 41px;
  height: 41px;
  margin-top: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid #101010;
  border-radius: 50%;
  color: #101010;
  background: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

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

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .brand {
    min-width: 260px;
    font-size: 32px;
  }

  .main-nav {
    gap: 16px;
    padding: 0 24px;
  }

  .header-actions {
    min-width: 210px;
    gap: 14px;
  }

  .header-grid {
    display: none;
  }

  .header-cta {
    min-height: 50px;
    padding-left: 22px;
  }

  .hero-grid,
  .split,
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-dashboard-image {
    width: min(100%, 760px);
  }

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

  .services-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .services-intro {
    position: relative;
    top: auto;
    min-height: 0;
  }

  .services-visual {
    max-width: 460px;
    margin-top: 46px;
  }

  .process-panel {
    padding: 62px 34px;
  }

  .process-panel::before {
    display: none;
  }

  .footer-panel {
    padding: 50px 48px 31px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 52px;
  }

  .testimonial-wrap {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding-inline: 24px;
  }

  .feature-card p {
    font-size: 16px;
  }
}

@media (max-width: 820px) {
  .site-header {
    background: transparent;
    box-shadow: none;
  }

  .site-header .container {
    width: min(100% - 28px, 1300px);
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand {
    min-width: 0;
    font-size: 25px;
  }

  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 82px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    min-height: 0;
    padding: 14px;
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .nav-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 10px;
  }

  .feature-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-panel {
    width: min(100% - 80px, 1760px);
    padding: 38px 28px 25px;
    border-radius: 22px;
  }

  .footer-brand {
    font-size: 30px;
  }

  .feature-strip {
    padding: 49px 0 36px;
  }

  .feature-card {
    min-height: 380px;
    padding: 34px 22px;
  }

  .marquee-section {
    padding: 29px 0 34px;
  }

  .marquee-section::before,
  .marquee-section::after {
    width: 54px;
  }

  .price-card.featured {
    transform: none;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1300px);
  }

  .footer-panel {
    width: min(100% - 28px, 1760px);
  }

  .hero {
    min-height: auto;
    padding-top: 85px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .section {
    padding: 53px 0;
  }

  .hero-visual {
    min-height: 455px;
  }

  .hero-dashboard-image {
    width: 112%;
  }

  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .service-grid {
    gap: 76px;
  }

  .service-grid .service-card:nth-child(even) {
    margin-top: 0;
  }

  .feature-card,
  .price-card,
  .contact-form,
  .testimonial-slider {
    padding: 24px;
  }

  .process-panel {
    padding: 45px 22px;
    border-radius: 22px;
  }

  .step-card {
    padding: 0;
  }

  .service-card {
    min-height: 310px;
    padding: 86px 24px 28px;
  }

  .service-icon {
    left: 24px;
    width: 102px;
    height: 102px;
    font-size: 32px;
  }

  .services-visual {
    height: 330px;
    transform: scale(0.86);
    transform-origin: left top;
  }

  .slider-controls {
    position: static;
    margin-top: 24px;
  }
}