:root {
  --primary: #c37df8;
  --charcoal: #36454F;
  --cyan: #00FFFF;
  --white: #ffffff;
  --gray: #f9f9f9;
  --text: #24313a;
  --muted: #64727c;
  --shadow: 0 20px 45px rgba(54, 69, 79, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(195, 125, 248, 0.16), rgba(54, 69, 79, 0.1)),
    var(--white);
}

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

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

.top-bar {
  background: #000000;
  color: var(--white);
  font-size: 0.9rem;
}

.header-strip,
.top-contact,
.social-links,
.nav-inner,
.nav-links {
  display: flex;
  align-items: center;
}

.header-strip {
  justify-content: space-between;
  min-height: 42px;
  gap: 18px;
}

.top-contact {
  gap: 18px;
  flex-wrap: wrap;
}

.top-contact i,
.contact-list i {
  color: var(--cyan);
  margin-right: 6px;
}

.social-links {
  gap: 12px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: 0.25s ease;
}

.social-links a:hover {
  background: var(--cyan);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.main-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(54, 69, 79, 0.08);
}

.nav-inner {
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--charcoal);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  color: var(--charcoal);
  font-weight: 900;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  color: var(--charcoal);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--charcoal);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  font-size: 1.6rem;
}

.hero {
    position: relative;
    min-height: 76vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    /*background:    linear-gradient(135deg, rgba(195, 125, 248, 0.9), rgba(54, 69, 79, 0.92)),    var(--primary);*/
    background-image: linear-gradient( rgb(33, 22, 41, 0.79), /* #c37df8 at 10% opacity */
    rgb(195, 125, 248, 0.83) ), url('/images/background-image_200.jpg');
   
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000, transparent 88%);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 54px;
  align-items: center;
  padding: 80px 0;
}

.hero-copy-block {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.hero h1,
.section-heading h2,
.section-copy h2 {
  margin: 0;
  color: var(--charcoal);
  line-height: 1.08;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  max-width: 850px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 650px;
  margin: 24px 0 32px;
}

.hero-showcase {
  position: relative;
  min-height: 440px;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 44px 24px 30px 34px;
  border: 1px solid rgba(54, 69, 79, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(249, 249, 249, 0.94)),
    linear-gradient(90deg, rgba(195, 125, 248, 0.12), rgba(0, 255, 255, 0.14));
  box-shadow: var(--shadow);
}

.showcase-card {
  position: absolute;
  display: grid;
  gap: 8px;
  width: 210px;
  padding: 24px;
  border: 1px solid rgba(54, 69, 79, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(54, 69, 79, 0.12);
}

.showcase-card.large {
  top: 26px;
  left: 0;
  width: 270px;
  min-height: 170px;
}

.showcase-card:not(.large):not(.accent) {
  top: 170px;
  right: 0;
}

.showcase-card.accent {
  left: 68px;
  bottom: 28px;
  background: var(--charcoal);
  color: var(--white);
}

.showcase-card i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(195, 125, 248, 0.16);
  color: var(--primary);
  font-size: 1.45rem;
}

.showcase-card.accent i {
  background: var(--cyan);
  color: var(--charcoal);
}

.showcase-card strong {
  color: inherit;
  font-size: 1.28rem;
}

.showcase-card span {
  color: var(--muted);
}

.showcase-card.accent span {
  color: rgba(255, 255, 255, 0.72);
}

.btn-primary,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  color: var(--charcoal);
  font-weight: 900;
  padding: 15px 24px;
  box-shadow: 0 15px 30px rgba(0, 255, 255, 0.2);
  transition: 0.25s ease;
}

.btn-primary:hover,
.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 34px rgba(195, 125, 248, 0.26);
}

.section {
  padding: 92px 0;
}

.about-section,
.testimonials-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(195, 125, 248, 0.16)),
    var(--white);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.visual-panel {
  position: relative;
  min-height: 430px;
  border-radius: 8px;
  background: var(--charcoal);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.orb-one {
  width: 190px;
  height: 190px;
  background: var(--primary);
  left: -50px;
  top: 40px;
}

.orb-two {
  width: 150px;
  height: 150px;
  background: var(--cyan);
  right: 30px;
  bottom: 30px;
}

.code-card {
  position: absolute;
  inset: 70px 38px;
  padding: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.window-dots,
.window-dots::before,
.window-dots::after {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--primary);
}

.window-dots {
  position: relative;
  margin-bottom: 34px;
}

.window-dots::before,
.window-dots::after {
  content: "";
  position: absolute;
  left: 18px;
  background: var(--cyan);
}

.window-dots::after {
  left: 36px;
  background: var(--charcoal);
}

.code-line {
  height: 14px;
  width: 68%;
  margin: 18px 0;
  border-radius: 999px;
  background: #dfe6ea;
}

.code-line.wide {
  width: 92%;
}

.code-line.short {
  width: 45%;
  background: rgba(195, 125, 248, 0.48);
}

.metric-row {
  margin-top: 46px;
  padding: 20px;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
}

.metric-row span {
  display: block;
  color: var(--cyan);
  font-size: 2rem;
  font-weight: 900;
}

.section-copy h2,
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-copy p,
.feature-card p,
.service-card p,
.contact-list,
.footer p,
.testimonial-card p {
  color: var(--muted);
  line-height: 1.7;
}

.about-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.about-stats span {
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 25px rgba(54, 69, 79, 0.08);
}

.about-stats strong {
  display: block;
  color: var(--primary);
  font-size: 1.45rem;
}

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

.feature-grid,
.services-grid,
.testimonial-grid,
.tech-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.services-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.service-card,
.testimonial-card,
.contact-form {
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-card,
.service-card,
.testimonial-card {
  padding: 30px;
  transition: 0.25s ease;
}

.feature-card:hover,
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(54, 69, 79, 0.18);
}

.feature-card i,
.service-card i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: rgba(195, 125, 248, 0.16);
  color: var(--primary);
  font-size: 1.65rem;
}

.feature-card h3,
.service-card h3,
.testimonial-card h3 {
  color: var(--charcoal);
  margin: 22px 0 10px;
}

.why-section,
.testimonials-section {
  background:
    linear-gradient(135deg, rgba(54, 69, 79, 0.96), rgba(54, 69, 79, 0.88)),
    var(--charcoal);
}

.services-section,
.contact-section {
  background:
    linear-gradient(135deg, rgba(195, 125, 248, 0.2), rgba(255, 255, 255, 0.86)),
    var(--white);
}

.why-section .section-heading h2,
.testimonials-section .section-heading h2 {
  color: var(--white);
}

.why-section .eyebrow,
.testimonials-section .eyebrow {
  color: var(--cyan);
}

.service-card:hover {
  background: var(--charcoal);
}

.service-card:hover h3,
.service-card:hover p {
  color: var(--white);
}

.service-card:hover i {
  background: var(--cyan);
  color: var(--charcoal);
}

.tech-section {
  background:
    linear-gradient(135deg, rgba(195, 125, 248, 0.92), rgba(54, 69, 79, 0.9)),
    var(--primary);
}

.section-heading.light h2 {
  color: var(--white);
}

.tech-grid {
  grid-template-columns: repeat(6, 1fr);
}

.tech-grid span {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(54, 69, 79, 0.1);
  border-radius: 8px;
  background: var(--white);
  color: var(--charcoal);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 14px 32px rgba(54, 69, 79, 0.08);
  transition: 0.25s ease;
}

.tech-grid span:hover {
  border-color: var(--cyan);
  color: var(--primary);
  transform: translateY(-4px);
}

.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 24px;
  color: rgba(195, 125, 248, 0.18);
  font-size: 5rem;
  font-weight: 900;
}

.testimonial-card span {
  color: var(--primary);
  font-weight: 700;
}

.contact-form {
  padding: 30px;
}

.contact-form label {
  display: block;
  margin: 14px 0 8px;
  color: var(--charcoal);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dce5ea;
  border-radius: 8px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(195, 125, 248, 0.14);
}

.contact-form button {
  width: 100%;
  margin-top: 20px;
  cursor: pointer;
}

.footer {
  background: #000000;
  color: var(--white);
  padding-top: 64px;
}

.footer-grid {
  grid-template-columns: 1.1fr 0.8fr 1fr 1.1fr;
}

.footer h3 {
  margin: 0 0 18px;
}

.footer p,
.footer a,
.contact-list {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.contact-list li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-social {
  margin-top: 18px;
}

.map-frame {
  width: 100%;
  height: 180px;
  border: 0;
  border-radius: 8px;
  filter: grayscale(0.2);
}

.footer-bottom {
  margin-top: 44px;
  padding: 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 380px;
    max-width: 560px;
  }

  .feature-grid,
  .services-grid,
  .testimonial-grid,
  .tech-grid,
  .footer-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    gap: 14px;
    font-size: 0.95rem;
  }
}

@media (max-width: 760px) {
  .header-strip,
  .top-contact {
    justify-content: center;
    text-align: center;
  }

  .social-links {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 14px 10px;
  }

  .hero {
    min-height: 68vh;
  }

  .hero-showcase {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .hero-showcase::before {
    display: none;
  }

  .showcase-card,
  .showcase-card.large,
  .showcase-card:not(.large):not(.accent),
  .showcase-card.accent {
    position: static;
    width: 100%;
    min-height: auto;
  }

  .section {
    padding: 70px 0;
  }

  .feature-grid,
  .services-grid,
  .testimonial-grid,
  .tech-grid,
  .footer-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .visual-panel {
    min-height: 340px;
  }

  .code-card {
    inset: 42px 22px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .brand {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-content {
    padding: 64px 0;
  }

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