* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: #152033;
  background: #fff;
  line-height: 1.6;
}

.container {
  width: min(1120px, 92%);
  margin: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid #e8edf3;
  backdrop-filter: blur(10px);
}

.nav-wrap {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  display: block;
  width: 190px;
  height: auto;
}



.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  text-decoration: none;
  color: #354157;
  font-weight: 600;
}

.menu-btn {
  display: none;
  border: 0;
  background: none;
  font-size: 1.5rem;
}

.btn {
  display: inline-block;
  background: #246bfd;
  color: #fff !important;
  padding: 14px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid #246bfd;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-small {
  padding: 10px 15px;
}

.btn-full {
  width: 100%;
  text-align: center;
}

.btn-outline {
  background: transparent;
  color: #246bfd !important;
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 110px;
  background:
    radial-gradient(circle at 80% 20%, rgba(36,107,253,.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f5f8ff 55%, #edf3ff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}


/* LEFT SIDE */

.hero-content {
  position: relative;
  z-index: 5;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #edf3ff;
  color: #246bfd;
  font-size: .82rem;
  font-weight: 700;
}

.hero-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #246bfd;
}

.hero h1 {
  margin: 0 0 24px;
  max-width: 700px;
  color: #101a35;
  font-size: clamp(3rem, 5vw, 4.7rem);
  line-height: 1.03;
  letter-spacing: -.055em;
}

.hero h1 span {
  color: #246bfd;
}

.hero-copy {
  max-width: 610px;
  margin: 0;
  color: #566277;
  font-size: 1.15rem;
  line-height: 1.7;
}


/* BUTTONS */

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 34px 0 38px;
}

.hero-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid #d9e1ed;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(26, 51, 91, .08);
  color: #152033;
  font-weight: 700;
  text-decoration: none;
  transition: .2s ease;
}

.hero-secondary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(26, 51, 91, .12);
}

.hero-secondary-btn span {
  color: #246bfd;
  font-size: .7rem;
}


/* BENEFITS */

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.hero-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #edf3ff;
  color: #246bfd;
  font-size: 1.25rem;
  font-weight: 800;
}

.hero-benefit p {
  margin: 0;
}

.hero-benefit strong,
.hero-benefit span {
  display: block;
}

.hero-benefit strong {
  color: #152033;
  font-size: .92rem;
}

.hero-benefit span {
  color: #667085;
  font-size: .86rem;
}


/* =========================
   HERO VISUAL
========================= */

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

.visual-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -20px;
  right: -70px;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    rgba(36,107,253,.08),
    rgba(114,147,255,.17)
  );
}


/* =========================
   LAPTOP
========================= */

.laptop {
  position: absolute;
  top: 95px;
  right: 0;
  width: 480px;
  z-index: 3;
  transform: rotate(2deg);
}

.laptop-screen {
  display: flex;
  height: 300px;
  overflow: hidden;
  border: 9px solid #111827;
  border-radius: 16px 16px 7px 7px;
  background: #f7f9fc;
  box-shadow: 0 25px 55px rgba(20, 40, 80, .22);
}

.laptop-base {
  width: 108%;
  height: 18px;
  margin-left: -4%;
  border-radius: 4px 4px 14px 14px;
  background: linear-gradient(#d9dee7, #aeb7c5);
  box-shadow: 0 12px 20px rgba(0,0,0,.12);
}


/* DASHBOARD */

.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 48px;
  padding: 16px 10px;
  background: #214fcc;
}

.dashboard-logo {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-bottom: 8px;
  border-radius: 7px;
  background: #fff;
  color: #246bfd;
  font-weight: 900;
}

.dashboard-sidebar span {
  width: 17px;
  height: 3px;
  border-radius: 99px;
  background: rgba(255,255,255,.7);
}

.dashboard-content {
  width: 100%;
  padding: 18px;
}

.dashboard-title {
  margin: 0 0 14px;
  color: #152033;
  font-weight: 800;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.dashboard-stats div {
  padding: 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(30, 60, 100, .06);
}

.dashboard-stats span {
  display: block;
  color: #7b8494;
  font-size: .48rem;
}

.dashboard-stats strong {
  display: inline-block;
  margin-top: 3px;
  color: #152033;
  font-size: .92rem;
}

.dashboard-stats small {
  margin-left: 4px;
  color: #25b978;
  font-size: .45rem;
}


/* CHARTS */

.dashboard-main {
  display: grid;
  grid-template-columns: 1.6fr .8fr;
  gap: 10px;
  margin-top: 10px;
}

.graph-card,
.donut-card {
  min-height: 135px;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
}

.graph-card > span,
.donut-card > span {
  color: #586275;
  font-size: .55rem;
  font-weight: 700;
}

.graph {
  position: relative;
  height: 85px;
  margin-top: 10px;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent,
      transparent 20px,
      #edf0f5 21px
    );
}

.graph-line {
  position: absolute;
  left: 5px;
  right: 5px;
  top: 43px;
  height: 3px;
  background: #246bfd;
  transform: skewY(-7deg);
  box-shadow:
    35px -12px 0 -1px #246bfd,
    70px 9px 0 -1px #246bfd,
    105px -18px 0 -1px #246bfd;
}

.donut {
  width: 62px;
  height: 62px;
  margin: 12px auto 8px;
  border-radius: 50%;
  background: conic-gradient(
    #246bfd 0 42%,
    #55c9ff 42% 66%,
    #7758ff 66% 83%,
    #d8e4ff 83%
  );
  position: relative;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: white;
}

.donut-card small {
  display: block;
  color: #7b8494;
  font-size: .42rem;
}


/* =========================
   PHONE
========================= */

.phone {
  position: absolute;
  left: 20px;
  bottom: 5px;
  z-index: 5;
  width: 125px;
  height: 245px;
  padding: 23px 12px 12px;
  border: 7px solid #111827;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 30px rgba(20, 40, 80, .22);
  transform: rotate(-5deg);
  text-align: center;
}

.phone-notch {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 42px;
  height: 5px;
  border-radius: 99px;
  background: #111827;
  transform: translateX(-50%);
}

.phone > span {
  display: block;
  color: #152033;
  font-size: .53rem;
  font-weight: 800;
}

.phone-circle {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 18px auto 5px;
  border: 8px solid #e5edff;
  border-top-color: #246bfd;
  border-right-color: #246bfd;
  border-radius: 50%;
}

.phone-circle strong {
  color: #152033;
  font-size: .9rem;
}

.phone small {
  color: #798496;
  font-size: .48rem;
}

.phone-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  height: 45px;
  margin-top: 14px;
}

.phone-bars i {
  display: block;
  width: 8px;
  border-radius: 3px 3px 0 0;
  background: #246bfd;
}

.phone-bars i:nth-child(1) {
  height: 15px;
}

.phone-bars i:nth-child(2) {
  height: 22px;
}

.phone-bars i:nth-child(3) {
  height: 29px;
}

.phone-bars i:nth-child(4) {
  height: 35px;
}

.phone-bars i:nth-child(5) {
  height: 42px;
}


/* =========================
   FLOATING CARDS
========================= */

.floating-card {
  position: absolute;
  z-index: 6;
  padding: 15px 17px;
  border: 1px solid #edf0f5;
  border-radius: 13px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 16px 35px rgba(30, 60, 100, .14);
}

.floating-card span {
  display: block;
  color: #6f7888;
  font-size: .68rem;
}

.floating-card strong {
  display: block;
  margin: 3px 0;
  color: #152033;
  font-size: 1.35rem;
}

.leads-card {
  top: 25px;
  left: 35px;
}

.roi-card {
  top: 180px;
  right: -30px;
}

.roi-card small {
  color: #8992a0;
  font-size: .6rem;
}

.roi-line {
  margin-top: 5px;
  color: #26bf7c;
  font-size: 1.4rem;
  font-weight: 800;
}


/* MINI CHART */

.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 25px;
  margin-top: 5px;
}

.mini-chart span {
  width: 9px;
  border-radius: 2px;
  background: #30c487;
}

.mini-chart span:nth-child(1) {
  height: 8px;
}

.mini-chart span:nth-child(2) {
  height: 15px;
}

.mini-chart span:nth-child(3) {
  height: 12px;
}

.mini-chart span:nth-child(4) {
  height: 20px;
}

.mini-chart span:nth-child(5) {
  height: 25px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

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

  .hero-content {
    max-width: 720px;
  }

  .hero-visual {
    width: min(650px, 100%);
    margin: 20px auto 0;
  }

}


@media (max-width: 650px) {

  .hero {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .hero-secondary-btn {
    text-align: center;
    justify-content: center;
  }

  .hero-benefits {
    gap: 20px;
  }

  .hero-visual {
    min-height: 380px;
    transform: scale(.78);
    transform-origin: top left;
    width: 128%;
  }

}



/* =========================
   SELECTED WORK
========================= */

.work-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(36, 107, 253, .08), transparent 28%),
    #fff;
}

.work-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 46px;
}

.work-heading .section-title {
  margin-bottom: 0;
}

.work-intro {
  max-width: 470px;
  margin: 0 0 8px auto;
  color: #5e6878;
  font-size: 1.04rem;
}

.featured-project {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 52px;
  align-items: center;
}

.project-preview {
  display: block;
  color: inherit;
  text-decoration: none;
}

.project-browser {
  overflow: hidden;
  border: 1px solid #dce4ef;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(31, 61, 110, .16);
  transition: transform .25s ease, box-shadow .25s ease;
}

.project-preview:hover .project-browser {
  transform: translateY(-5px);
  box-shadow: 0 34px 82px rgba(31, 61, 110, .21);
}

.browser-bar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  height: 44px;
  padding: 0 15px;
  border-bottom: 1px solid #e6ebf2;
  background: #f7f9fc;
}

.browser-bar > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cfd7e2;
}

.browser-bar small {
  position: absolute;
  left: 50%;
  color: #8993a3;
  font-size: .68rem;
  transform: translateX(-50%);
}

.project-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #1d211f;
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 20, 18, .84) 0%, rgba(16, 20, 18, .64) 38%, rgba(16, 20, 18, .12) 72%),
    linear-gradient(0deg, rgba(0, 0, 0, .18), transparent 55%);
}

.project-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform .45s ease;
}

.project-preview:hover .project-image img {
  transform: scale(1.025);
}

.project-image-copy {
  position: absolute;
  z-index: 2;
  left: 7%;
  top: 50%;
  width: min(500px, 72%);
  color: #fff;
  transform: translateY(-50%);
}

.project-image-copy p {
  margin: 0 0 18px;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project-image-copy h3 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.project-image-copy span {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .7);
  font-size: .9rem;
  font-weight: 700;
}

.project-details h3 {
  margin: 8px 0 16px;
  color: #101a35;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.project-details > p:not(.project-type):not(.project-disclosure) {
  color: #5e6878;
  font-size: 1.02rem;
}

.project-type {
  margin: 0;
  color: #246bfd;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.project-type span {
  margin: 0 5px;
  color: #a7b0bd;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
}

.project-tags span {
  padding: 7px 11px;
  border: 1px solid #dce4ef;
  border-radius: 999px;
  background: #f8faff;
  color: #4c5a70;
  font-size: .74rem;
  font-weight: 700;
}

.project-actions {
  margin-top: 4px;
}

.project-disclosure {
  margin: 22px 0 0;
  color: #8a94a4;
  font-size: .76rem;
  line-height: 1.55;
}


.price-card ul {
  padding-left: 20px;
}


section {
  scroll-margin-top: 90px;
}

.section {
  padding: 92px 0;
}

.section-alt {
  background: #f7f9fc;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.12;
  letter-spacing: -.035em;
  max-width: 820px;
  margin: .4rem 0 2.5rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card,
.price-card {
  border: 1px solid #e0e6ee;
  border-radius: 16px;
  padding: 26px;
  background: #fff;
}

.service-card .icon {
  font-size: .85rem;
  font-weight: 800;
  color: #246bfd;
}

.service-card h3 {
  font-size: 1.2rem;
}

.service-card p,
.price-card p {
  color: #5e6878;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #246bfd;
  color: #fff;
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card h3 {
  font-size: 2.2rem;
  margin: .25rem 0;
}

.price-card ul {
  flex: 1;
}

.featured {
  border: 2px solid #246bfd;
  box-shadow: 0 18px 45px rgba(36, 107, 253, .13);
}

.badge {
  position: absolute;
  right: 18px;
  top: 12px;
  background: #eaf1ff;
  color: #246bfd !important;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
}

.plan {
  font-weight: 800 !important;
  color: #152033 !important;
}

.pricing-note {
  text-align: center;
  margin-top: 24px;
  color: #697386;
}

.contact-section {
  background: #10213f;
  color: #fff;
}

.contact-section .eyebrow {
  color: #8fb3ff;
}

.contact-section p {
  color: #c4cede;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  background: #fff;
  color: #152033;
  padding: 28px;
  border-radius: 18px;
}

.contact-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px;
  border: 1px solid #cfd7e2;
  border-radius: 9px;
  font: inherit;
}

.contact-details a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.contact-details a:hover {
  text-decoration: underline;
}

.form-note {
  font-size: .82rem !important;
  color: #6c7685 !important;
}

.footer-wrap {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #697386;
  font-size: .9rem;
}

@media (max-width: 900px) {
  .work-heading,
  .featured-project {
    grid-template-columns: 1fr;
  }

  .work-heading {
    gap: 18px;
  }

  .work-intro {
    max-width: 680px;
    margin: 0;
  }

  .featured-project {
    gap: 34px;
  }

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

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

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

  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    flex-direction: column;
    border-bottom: 1px solid #e8edf3;
  }

  .nav.open {
    display: flex;
  }

  .menu-btn {
    display: block;
  }
}

@media (max-width: 560px) {
  .project-image,
  .project-image img {
    min-height: 410px;
    height: 410px;
  }

  .project-image-copy {
    width: 82%;
  }

  .project-browser {
    border-radius: 15px;
  }

  .logo img {
    width: 165px;
  }

  .hero {
    padding: 68px 0;
  }

  .section {
    padding: 68px 0;
  }

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

  .hero-actions,
  .trust-row,
  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2.8rem;
  }
}

.form-status {
  min-height: 1.5rem;
  margin: .75rem 0 0;
  color: #b42318 !important;
  font-weight: 600;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: .7;
  transform: none;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px;
  background: linear-gradient(135deg, #f7faff 0%, #eef4ff 100%);
}

.thank-you-card {
  width: min(680px, 100%);
  padding: 48px;
  border: 1px solid #dce5f0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(35, 64, 110, .12);
  text-align: center;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #eaf1ff;
  color: #246bfd;
  font-size: 1.8rem;
  font-weight: 800;
}

.thank-you-card h1 {
  margin: .25rem 0 1rem;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.thank-you-card p {
  color: #5e6878;
  font-size: 1.08rem;
}

.thank-you-actions {
  margin-top: 28px;
}

.thank-you-logo {
  display: inline-block;
  margin-bottom: 34px;
}
