/* Base */
html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: rgb(28, 31, 45);
  background-color: rgb(248, 249, 255);
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 0;
  padding-right: 16px;
  padding-bottom: 0;
  padding-left: 16px;
}
.section {
  padding-top: 80px;
  padding-right: 0;
  padding-bottom: 80px;
  padding-left: 0;
  scroll-margin-top: 88px;
}
.alt {
  background-color: rgb(243, 245, 252);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(227, 230, 240);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-right: 0;
  padding-bottom: 12px;
  padding-left: 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo {
  width: 32px;
  height: 32px;
  margin-right: 8px;
}
.brand-name {
  font-weight: 800;
  font-size: 22px;
  line-height: 1.1;
  background-image: linear-gradient(135deg, hsl(243, 75%, 59%), hsl(250, 100%, 75%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.main-nav {
  display: flex;
  align-items: center;
}
.nav-link {
  color: rgb(28, 31, 45);
  text-decoration: none;
  margin-top: 0;
  margin-right: 16px;
  margin-bottom: 0;
  margin-left: 16px;
  transition-property: color;
  transition-duration: 200ms;
  transition-timing-function: ease;
}
.nav-link:hover {
  color: hsl(243, 75%, 59%);
}
.header-cta {
  display: inline-flex;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  border-radius: 10px;
  transition-property: background-color, color, border-color, transform, box-shadow;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-small {
  padding-top: 8px;
  padding-right: 14px;
  padding-bottom: 8px;
  padding-left: 14px;
  font-size: 14px;
  font-weight: 600;
}
.btn-large {
  padding-top: 14px;
  padding-right: 22px;
  padding-bottom: 14px;
  padding-left: 22px;
  font-size: 18px;
  font-weight: 700;
}
.btn-primary {
  background-color: hsl(243, 75%, 59%);
  color: rgb(255, 255, 255);
}
.btn-primary:hover {
  background-color: hsl(243, 75%, 54%);
}
.btn-contrast {
  background-color: rgb(255, 255, 255);
  color: hsl(243, 75%, 59%);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px -10px rgba(92, 92, 240, 0.3);
}
.btn-contrast:hover {
  transform: translateY(-1px);
}
.btn-outline {
  background-color: transparent;
  color: rgb(255, 255, 255);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Hero */
.hero {
  padding-top: 140px;
  padding-right: 0;
  padding-bottom: 120px;
  padding-left: 0;
  background-image: linear-gradient(135deg, hsl(243, 75%, 59%) 0%, hsl(250, 100%, 75%) 50%, hsl(260, 100%, 70%) 100%);
  color: rgb(255, 255, 255);
  text-align: center;
}
.hero-inner {
  max-width: 880px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
}
.hero-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 24px;
  margin-left: 0;
}
.hero-logo {
  width: 64px;
  height: 64px;
}
.hero-subtitle {
  font-size: 20px;
  opacity: 0.9;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 12px;
  margin-left: 0;
}
.hero-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 16px;
  margin-left: 0;
}
.text-accent {
  color: hsl(280, 100%, 70%);
}
.hero-lead {
  font-size: 18px;
  opacity: 0.92;
  max-width: 680px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 24px;
  margin-left: auto;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* Sections */
.section-title {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 16px;
  margin-left: 0;
  background-image: linear-gradient(135deg, hsl(243, 75%, 59%), hsl(250, 100%, 75%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-desc {
  font-size: 18px;
  color: rgb(113, 119, 135);
  max-width: 720px;
  text-align: center;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 32px;
  margin-left: auto;
}

/* Services */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1120px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
}
.service-card {
  background-color: rgba(255, 255, 255, 0.9);
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 4px;
  border-style: solid;
  border-color: rgba(92, 92, 240, 0.2);
  border-left-color: hsl(243, 75%, 59%);
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  border-radius: 12px;
  text-align: center;
  transition-property: transform, box-shadow;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(6px);
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(92, 92, 240, 0.3);
}
.service-title {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  font-size: 20px;
  font-weight: 700;
  color: rgb(28, 31, 45);
}
.service-secondary {
  border-color: rgba(86, 79, 214, 0.2);
  border-left-color: hsl(245, 58%, 51%);
}
.service-accent {
  border-color: rgba(196, 128, 255, 0.2);
  border-left-color: hsl(280, 100%, 70%);
}
.service-success {
  border-color: rgba(16, 185, 129, 0.2);
  border-left-color: hsl(142, 76%, 36%);
}
.service-warning {
  border-color: rgba(245, 158, 11, 0.2);
  border-left-color: hsl(38, 92%, 50%);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.about-card {
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-style: solid;
  border-color: rgba(92, 92, 240, 0.2);
  border-radius: 14px;
  background-color: rgb(255, 255, 255);
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  text-align: center;
  transition-property: box-shadow, transform;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.about-card:hover {
  box-shadow: 0 10px 30px -10px rgba(92, 92, 240, 0.3);
  transform: translateY(-2px);
}
.about-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 16px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-icon-primary {
  background-image: linear-gradient(135deg, hsl(243, 75%, 59%), hsl(250, 100%, 75%));
}
.about-icon-accent {
  background-image: linear-gradient(135deg, hsl(245, 58%, 51%), hsl(260, 100%, 70%));
}
.about-title {
  font-size: 20px;
  font-weight: 800;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 8px;
  margin-left: 0;
}
.about-text {
  color: rgb(113, 119, 135);
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

/* Contact */
.contact {
  background-image: linear-gradient(135deg, hsl(243, 75%, 59%) 0%, hsl(250, 100%, 75%) 50%, hsl(260, 100%, 70%) 100%);
  color: rgb(255, 255, 255);
}
.contact-title {
  color: rgb(255, 255, 255);
}
.contact-lead {
  text-align: center;
  font-size: 20px;
  opacity: 0.92;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 32px;
  margin-left: auto;
  max-width: 720px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 24px;
  margin-left: auto;
}
.contact-card {
  background-color: rgba(255, 255, 255, 0.12);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.2);
  padding-top: 32px;
  padding-right: 24px;
  padding-bottom: 32px;
  padding-left: 24px;
  text-align: center;
  border-radius: 12px;
  backdrop-filter: blur(6px);
}
.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 16px;
  margin-left: auto;
}
.contact-card-title {
  color: rgb(255, 255, 255);
  font-size: 22px;
  font-weight: 800;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 8px;
  margin-left: 0;
}
.contact-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 18px;
}
.contact-link:hover {
  color: rgb(255, 255, 255);
}
.contact-cta-wrap {
  text-align: center;
}

/* Footer */
.site-footer {
  background-color: rgb(28, 31, 45);
  color: rgb(255, 255, 255);
  padding-top: 48px;
  padding-right: 0;
  padding-bottom: 48px;
  padding-left: 0;
}
.footer-inner {
  text-align: center;
}
.footer-logo {
  width: 80px;
  height: 80px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 16px;
  margin-left: auto;
}
.footer-text {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 16px;
  margin-left: 0;
}
.footer-copy {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(255, 255, 255, 0.2);
  padding-top: 16px;
  margin-top: 24px;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive (Webflow-friendly breakpoints) */
@media screen and (min-width: 768px) {
  .hero-title {
    font-size: 56px;
  }
  .hero-logo {
    width: 80px;
    height: 80px;
  }
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 991px) {
  .main-nav {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .hero-actions {
    flex-direction: column;
  }
}
@media screen and (max-width: 479px) {
  .btn-large {
    font-size: 16px;
    padding-top: 12px;
    padding-right: 18px;
    padding-bottom: 12px;
    padding-left: 18px;
  }
  .section {
    padding-top: 64px;
    padding-right: 0;
    padding-bottom: 64px;
    padding-left: 0;
  }
}
