.site-header {
  background: #fff;
}
.site-header .nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 0 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}
.brand img {
  width: 64px;
  height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.main-nav a {
  color: #3f4a5f;
  padding: 0.5rem 0.7rem;
  border-radius: 0.6rem;
  font-size: 1.03rem;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.main-nav a:hover, .main-nav a.active {
  background: #edf2fb;
  color: #2563eb;
}

.nav-cta {
  background: linear-gradient(110deg, #155DFC 0%, #9810FA);
  color: #fff;
  margin-left: 1rem;
  white-space: nowrap;
}

.menu-toggle,
.menu-btn {
  display: none;
}

@media (max-width: 1023px) {
  body:has(.menu-toggle:checked) {
    overflow: hidden;
  }
  .site-header .nav-wrap {
    min-height: 68px;
    position: relative;
  }
  .menu-btn {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    margin-left: auto;
    padding: 0.45rem;
    cursor: pointer;
    position: relative;
    z-index: 1002;
  }
  .menu-btn span {
    width: 23px;
    height: 2px;
    background: #1f2937;
    border-radius: 6px;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-cta {
    display: none !important;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    height: 100vh;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    margin: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
  }
  .main-nav a {
    padding: 1.25rem 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid #f3f4f6;
    border-radius: 0;
  }
  .main-nav a:last-child {
    border-bottom: none;
  }
  .main-nav a.active {
    background: transparent;
    color: #2563eb;
    font-weight: 600;
  }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(2px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: default;
  }
  .menu-toggle:checked ~ .main-nav {
    transform: translateX(0);
    visibility: visible;
    display: flex;
  }
  .menu-toggle:checked ~ .nav-overlay {
    opacity: 1;
    visibility: visible;
  }
  .menu-toggle:checked ~ .menu-btn span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .menu-toggle:checked ~ .menu-btn span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle:checked ~ .menu-btn span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter.ttf") format("truetype");
  font-display: swap;
}
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: #fff;
  background: #0d1330;
}

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

.container {
  margin: 0 auto;
  padding: 0 3rem;
}
@media (max-width: 767px) {
  .container {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 0.8rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  padding: 0.6rem 1.4rem;
  font-size: 1.05rem;
  font-weight: 500;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}
@media (max-width: 767px) {
  .btn {
    width: auto;
    padding: 0.72rem 1rem;
    font-size: 1rem;
    min-height: 3.05rem;
    align-items: center;
  }
}

.btn-primary {
  background: #fff;
  color: #1537c9;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.btn-secondary {
  background: #fff;
  color: #111827;
}

.hero {
  min-height: calc(100vh - 74px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(110deg, #3b82f6 0%, #2563eb 25%, #3730a3 55%, #5b21b6 80%, #4c1d95 100%);
}
.hero .hero-centered {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 8vw, 7rem) 3rem clamp(3rem, 6vw, 5rem);
  flex: 1;
}
@media (max-width: 1023px) {
  .hero {
    min-height: auto;
  }
  .hero .hero-centered {
    padding: 3rem 1.5rem 2.5rem;
  }
}
@media (max-width: 767px) {
  .hero {
    min-height: auto;
  }
  .hero .hero-centered {
    padding: 2.5rem 1rem 2rem;
  }
}

.hero-copy {
  text-align: center;
  max-width: 820px;
}
.hero-copy h1 {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 700;
}
.hero-copy h1 span {
  display: block;
  background: linear-gradient(90deg, #8EC5FF, #DAB2FF, #FDA5D5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
@media (max-width: 767px) {
  .hero-copy h1 {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
    line-height: 1.15;
  }
}

.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin: 1.4rem auto 0;
    gap: 0.65rem;
    max-width: 65%;
  }
  .hero-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
  }
}

.hero-stats {
  width: 100%;
  background: #fff;
  color: #475569;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.8rem 2rem;
  background: #fff;
}
@media (max-width: 1023px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1.4rem 1rem;
  }
}
@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    padding: 1rem;
    gap: 0.9rem;
  }
}

.stat-item {
  text-align: center;
}
.stat-item h3 {
  margin: 0;
  background: linear-gradient(100deg, #155DFC, #9810FA);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.05;
  font-weight: 800;
}
.stat-item p {
  margin: 0.55rem 0 0;
  color: #475569;
  font-size: clamp(0.9rem, 1.1vw, 1.35rem);
  line-height: 1.4;
}
@media (max-width: 767px) {
  .stat-item h3 {
    font-size: clamp(1.8rem, 11vw, 2.4rem);
  }
  .stat-item p {
    font-size: 1rem;
  }
}

.services {
  background: #fff;
  color: #0f172a;
  padding: clamp(4rem, 4vw, 6.5rem) 0;
}
@media (max-width: 767px) {
  .services {
    padding: 2.7rem 0 0;
  }
}

.services-inner {
  text-align: center;
}

.services-tag {
  margin: 0 auto 0.85rem;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  background: #DBEAFE;
  color: #1537c9;
  font-size: 0.95rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .services-tag {
    margin-bottom: 0.65rem;
    padding: 0.32rem 0.8rem;
    font-size: 0.82rem;
  }
}

.services h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
}
@media (max-width: 767px) {
  .services h2 {
    font-size: clamp(1.8rem, 9vw, 2.35rem);
    line-height: 1.15;
  }
}

.services-subtext {
  margin: 1rem auto 0;
  max-width: 700px;
  color: #64748b;
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  line-height: 1.5;
}
@media (max-width: 767px) {
  .services-subtext {
    margin-top: 0.8rem;
    max-width: 32ch;
    font-size: 1.02rem;
    line-height: 1.5;
  }
}

.services-grid {
  margin-top: clamp(2rem, 4vw, 3.2rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}
@media (max-width: 1023px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 1.25rem;
  }
}

.service-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e6ebf5;
  border-radius: 0.9rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
  text-align: left;
  padding: 1.4rem 1.35rem;
}
.service-card::before {
  content: "";
  position: absolute;
  top: -34%;
  right: -24%;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.16) 0%, rgba(99, 102, 241, 0) 70%);
  z-index: -1;
  pointer-events: none;
}
.service-card h3 {
  margin: 1rem 0 0;
  font-size: clamp(1.1rem, 1.5vw, 1.55rem);
  line-height: 1.25;
}
.service-card p {
  margin: 0.7rem 0 0;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.55;
}
@media (max-width: 767px) {
  .service-card {
    padding: 1rem 0.95rem;
    border-radius: 0.75rem;
  }
  .service-card h3 {
    margin-top: 0.8rem;
    font-size: 1.15rem;
    line-height: 1.3;
  }
  .service-card p {
    margin-top: 0.55rem;
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

.service-icon {
  width: 2.35rem;
  height: 2.35rem;
  padding: 0.5rem;
  border-radius: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2f7cf6, #8224e3);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(47, 124, 246, 0.35);
}
@media (max-width: 767px) {
  .service-icon {
    width: 2rem;
    height: 2rem;
    padding: 0.35rem;
  }
}

.services-cta {
  margin-top: clamp(1.8rem, 3.5vw, 2.6rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 2px solid #2563eb;
  border-radius: 0.6rem;
  padding: 0.72rem 1.25rem;
  color: #2563eb;
  font-weight: 600;
  transition: all 0.25s ease;
}
.services-cta:hover {
  background: #2563eb;
  color: #fff;
}
@media (max-width: 767px) {
  .services-cta {
    width: 100%;
    padding: 0.78rem 1rem;
    font-size: 0.95rem;
    max-width: 65%;
    margin: 1.25rem auto 0;
  }
}

.why-us {
  background: #fff;
  color: #111827;
  padding: clamp(3.5rem, 4vw, 6rem) 0;
}
@media (max-width: 767px) {
  .why-us {
    padding: 3.1rem 0;
  }
}

.why-us-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.8rem, 4vw, 4rem);
}
@media (max-width: 1023px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}

.why-us-media {
  margin: 0;
}
.why-us-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.16);
}

.why-us-content {
  max-width: 620px;
}
@media (max-width: 1023px) {
  .why-us-content {
    max-width: 100%;
  }
}

.why-us-tag {
  margin: 0 0 0.9rem;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  background: #ece4ff;
  color: #9810FA;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 0.9;
}

.why-us-content h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.1;
}
.why-us-content h2 span {
  background: linear-gradient(90deg, #155DFC, #9810FA);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why-us-subtext {
  margin: 1.2rem 0 0;
  color: #4b5563;
  font-size: clamp(1.2rem, 1.45vw, 1.5rem);
  line-height: 1.2;
}
@media (max-width: 767px) {
  .why-us-subtext {
    font-size: 1.02rem;
    line-height: 1.5;
  }
}

.why-us-list {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}
.why-us-list li {
  position: relative;
  margin: 0;
  padding-left: 2rem;
  color: #374151;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.4;
}
.why-us-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.06rem;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: url("../images/circle-tick.png") center/58% no-repeat, linear-gradient(135deg, #3b82f6, #8b5cf6);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.25);
}
@media (max-width: 767px) {
  .why-us-list li {
    padding-left: 1.8rem;
    font-size: 1.02rem;
  }
}

.why-us-cta {
  margin-top: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 0.6rem;
  padding: 0.8rem 1.25rem;
  background: linear-gradient(100deg, #2563eb, #9333ea);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.28);
  transition: all 0.25s ease;
}
.why-us-cta:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.ready-transform {
  background: #ffffff;
}
.ready-transform .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .ready-transform {
    padding: 0;
  }
}

.ready-transform-card {
  text-align: center;
  border-radius: 0;
  padding: clamp(2.2rem, 8vw, 6rem) clamp(1.2rem, 3vw, 2.8rem);
  background: radial-gradient(65% 85% at 78% 22%, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 70%), linear-gradient(100deg, #2563eb 0%, #7c3aed 50%, #9333ea 100%);
  color: #fff;
}
@media (max-width: 767px) {
  .ready-transform-card {
    border-radius: 0;
    padding: 2rem 1rem;
  }
}

.ready-transform-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4.5vw, 3.3rem);
  line-height: 1.15;
  font-weight: 700;
}

.ready-transform-card p {
  margin: 1rem auto 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.2rem, 1.25vw, 1.3rem);
  line-height: 1.2;
}
@media (max-width: 767px) {
  .ready-transform-card p {
    font-size: 1rem;
    line-height: 1.45;
  }
}

.ready-transform-cta {
  margin-top: 1.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 0.5rem;
  padding: 0.62rem 1.15rem;
  background: #ffffff;
  color: #2563eb;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.22);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.ready-transform-cta:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}
@media (max-width: 767px) {
  .ready-transform-cta {
    width: auto;
    min-width: 0;
  }
}/*# sourceMappingURL=styles.css.map */