:root{
--primary:#7755d4;
--primary-dark:#6444bd;
--bg:#f5f6fe;
--white:#fff;
--text:#1c2333;
--muted:#697089;
--border:#e8ebf7;
--shadow:0 20px 60px rgba(119,85,212,.12);
--radius:24px;
}
*{margin:0;padding:0;box-sizing:border-box; font-family:Inter,sans-serif;}
body{
font-family:Inter,sans-serif;
background:var(--bg);
color:var(--text);
line-height:1.6;
}
.container{margin: 0 auto;max-width: 1250px;}
a{text-decoration:none;color:inherit}

header{position:sticky;top:0;z-index:100;/* background:rgba(255,255,255,.9); */backdrop-filter:blur(12px);border-bottom:1px solid var(--border);}
.nav{display:flex;align-items:center;justify-content:space-between;padding: 15px 0;}
.logo{
font-size:32px;
font-weight:900;
color:var(--primary);
}
.menu{
display:flex;
gap:30px;
}
.menu a:hover{color:var(--primary)}
.btn{display:inline-flex;align-items:center;gap:10px;padding: 16px 24px;border-radius:16px;font-weight: 600;transition:.3s;font-size: 19px;}
.btn-primary{
background:var(--primary);
color:#fff;
box-shadow:var(--shadow);
}
.btn-primary:hover{transform:translateY(-3px)}
.hero{padding: 50px 0;display:grid;/* grid-template-columns: 1.3fr .7fr; */gap:60px;align-items:center;}
.badge{display:inline-block;padding:10px 18px;border-radius:999px;background:#fff;box-shadow:var(--shadow);margin-bottom: 0px;font-size: 13px;font-weight: 600;}
.hero h1{font-size: 70px;line-height:1;font-weight: 600;margin-bottom:25px;line-height: 1;font-weight: 600;word-break: normal;overflow-wrap: normal;hyphens: none;position: relative;width: 100%;font-size: clamp(2.5125rem, 1.62568rem + 2.27235vw, 3.9rem);color: var(--dark-color);letter-spacing: -0.05em;text-wrap: balance;white-space: normal;}
.hero p{font-size: 23px;color:var(--muted);margin-bottom:35px;}
.hero-actions{
display:flex;
gap:15px;
flex-wrap:wrap;
}
.hero-card{
background:#fff;
padding:40px;
border-radius:32px;
box-shadow:var(--shadow);
}
.stats{display:grid;grid-template-columns: repeat(4,1fr);gap:18px;margin-top:20px;}
.stat{
background:var(--bg);
padding:20px;
border-radius:18px;
}
.stat strong{
display:block;
font-size:32px;
color:var(--primary);
}
.trust{padding: 30px 0;}
.trust-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}
.trust-item{
background:#fff;
padding:30px;
border-radius:24px;
box-shadow:var(--shadow);
text-align:center;
}
.services{
padding:100px 0;
}
.section-title{font-size: 50px;font-weight: 700;margin-bottom:15px;text-align:center;}
.section-sub{text-align:center;color:var(--muted);margin-bottom:50px;font-size: 18px;}
.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:24px;
}
.service{background:#fff;padding:32px;border-radius:24px;box-shadow:var(--shadow);transition:.3s;font-size: 16px;line-height: 1.4;}.service p{
opacity:.7;
    
}
.service:hover{
transform:translateY(-10px);
}
.service i{font-size:42px;color: #fff;margin-bottom:20px;background: var(--primary);padding: 10px;font-size: 25px;display: flex;align-items: center;justify-content: center;width: 60px;height: 60px;border-radius: 20px;}
.service h3{margin-bottom:10px;font-size: 22px;font-weight: 600;}
.service a{
display:inline-block;
margin-top:15px;
color:var(--primary);
font-weight:700;
}
footer{
padding:60px 0;
background:#fff;
margin-top:80px;
border-top:1px solid var(--border);
}
@media(max-width:992px){
.hero{grid-template-columns:1fr}
.trust-grid{grid-template-columns:repeat(2,1fr)}
.hero h1{font-size:52px}
.menu{display:none}
}
@media(max-width:576px){
.trust-grid{grid-template-columns:1fr}
.hero h1{font-size:42px}
.section-title{font-size:34px}
}

:root {
  --primary: #7755d4;
  --primary-dark: #6444bd;
  --bg: #f5f6fe;
  --white: #fff;
  --text: #1c2333;
  --muted: #697089;
}

/* BASE */
.services {
  padding: 90px 20px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
}

/* HEADER */
.services__head {
  text-align: center;
  margin-bottom: 28px;
}
h2 {
    font-weight: 500;
    line-height: 1.04;
 
    display: block;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: auto;
    margin-bottom: clamp(15px, 3.5vw, 35px);
    font-size: clamp(1.75rem, 1.06318rem + 2.37235vw, 3.2rem);
    color: rgb(36, 54, 79);
    letter-spacing: -1px;
    text-wrap: balance;
    white-space: normal;
} .services__head p {
    line-height: 1.5;
    font-weight: 400;
    font-size: clamp(1.025rem, 0.980989rem + 0.292926vw, 1.6125rem);
    margin-bottom: clamp(15px, 2.5vw, 30px);
    color: rgb(0, 0, 0);
}
.services__head h2 {
  /* font-size: 42px; */
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.services__head p {
  color: var(--muted);
  max-width: 720px;
  margin: 10px auto 0;
  line-height: 1.6;
}

/* FILTER CHIPS */
.services__filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.chip {
  padding: 11px 19px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(28, 35, 51, 0.08);
  color: var(--muted);
  cursor: pointer;
  transition: 0.2s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  font-size: 16px;
}

.chip:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.chip.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* LAYOUT */
.services__layout {
  display: grid;
  /* grid-template-columns: 1fr 300px; */
  gap: 20px;
}

@media (max-width: 900px) {
  .services__layout {
    grid-template-columns: 1fr;
  }
}

/* GRID */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 700px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.service-card {
  position: relative;
  padding: 25px;
  border-radius: 30px;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid rgba(28, 35, 51, 0.08);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
  transition: all 0.25s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* ICON */
.service-card i {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 42px;
  color: #fff;
  margin-bottom: 10px;
  background: var(--primary);
  padding: 10px;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  position: absolute;
  right: 20px;
}

/* SHINE EFFECT */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(119, 85, 212, 0.18),
    transparent
  );
  transform: skewX(-20deg);
}

.service-card:hover::before {
  animation: shine 0.8s ease;
}

@keyframes shine {
  0% { left: -140%; }
  100% { left: 200%; }
}

/* HOVER */
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(119, 85, 212, 0.35);
  box-shadow: 0 18px 50px rgba(119, 85, 212, 0.12);
}

/* TITLE */
.service-card h3 {
  margin-top: 20px;
  font-size: 23px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.service-card p {
  margin-top: 8px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 20px;
  flex: 1;
}

/* BADGES */
.service-card__top {
  display: flex;
  /* justify-content: space-between; */
  gap: 10px;
}

.badge {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(119, 85, 212, 0.08);
  color: var(--primary);
  border: 1px solid rgba(119, 85, 212, 0.15);
  margin-bottom: 20px;
}

.badge--price {
  background: rgba(119, 85, 212, 0.12);
  color: var(--primary-dark);
}

/* BUTTON */
.btn-order1 {
  margin-top: 12px;
  width: 100%;
  padding: 16px;
  border-radius: 62px;
  border: none;
  cursor: pointer;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--primary-dark)
  );
  color: var(--white);
  font-weight: 500;
  transition: 0.2s;
  font-size: 17px;
  /* flex: 1; */
  text-align: center;
}

.btn-order:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* SIDEBAR */
.services__sidebar {
  position: relative;
}

.sticky-box {
  position: sticky;
  top: 20px;

  padding: 18px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(28, 35, 51, 0.08);
  box-shadow: 0 12px 40px rgba(0,0,0,0.05);
}

.cta-btn {
  width: 100%;
  margin-top: 12px;
  padding: 17px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  background: var(--primary);
  color: var(--white);
  transition: 0.2s;
  font-size: 18px;
}

.cta-btn:hover {
  background: var(--primary-dark);
}

/* FOOTER */
.services__footer {
  margin-top: 40px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(28, 35, 51, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal__content {
  width: 430px;
  background: var(--white);
  padding: 30px;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}.modal__content h3{font-size: 27px;}

.modal__content input,
.modal__content textarea {
  width: 100%;
  margin-top: 10px;
  padding: 10px 12px;

  border-radius: 12px;
  border: 1px solid rgba(28, 35, 51, 0.12);

  outline: none;
}

.modal__content textarea {
  min-height: 90px;
  resize: none;
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 12px;

  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--muted);
} 

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(245, 246, 254, 0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(28, 35, 51, 0.08);
}

/* CONTAINER */
.container.nav {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.03em;
}

/* MENU */
.menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.menu a {
  text-decoration: none;
  color: var(--text);
  font-size: 18px;
  transition: 0.2s;
}

.menu a:hover {
  color: var(--primary);
}

/* DROPDOWN */
.dropdown {
  position: relative;
  /* font-size: 18px; */
}

.dropbtn {
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--text);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 30px;
  right: 0;

  width: 240px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  padding: 10px;

  flex-direction: column;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

.dropdown-content a {
  padding: 8px 10px;
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
}

.dropdown-content a:hover {
  background: rgba(119, 85, 212, 0.08);
  color: var(--primary);
}

.divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 6px 0;
}

/* CTA */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 11px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 18px;
  transition: 0.2s;
}

.btn-primary:hover {
  transform: translateY(-1px);
}

/* BURGER */
.burger {
  display: none;
  font-size: 22px;
  background: none;
  border: none;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 10px 20px;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.mobile-menu a {
  padding: 10px 0;
  text-decoration: none;
  color: var(--text);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .menu {
    display: none;
  }

  .burger {
    display: block;
  }
}:root {
  --primary: #7755d4;
  --primary-dark: #6444bd;
  --bg: #f5f6fe;
  --white: #fff;
  --text: #1c2333;
  --muted: #697089;
}

/* FOOTER BASE */
.footer {
  background: var(--white);
  border-top: 1px solid rgba(28, 35, 51, 0.08);
  margin-top: 0px;
  font-family: Inter, system-ui, sans-serif;
  padding-bottom: 0px;
}

/* GRID */
.footer__grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr;
  gap: 30px;
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* LOGO */
.footer__logo {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
}

/* TEXT */
.footer__desc {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* COL */
.footer__col h4 {
  font-size: 20px;
  margin-bottom: 14px;
  color: var(--text);
}

/* LINKS */
.footer__col a {
  display: block;
  text-decoration: none;
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 10px;
  transition: 0.2s;
}

.footer__col a:hover {
  color: var(--primary);
  transform: translateX(2px);
}

/* CTA */
.footer__cta {
  margin-top: 16px;
}

.btn-primary {
  /* display: inline-block; */
  /* background: linear-gradient(135deg, var(--primary), var(--primary-dark)); */
  /* color: white; */
  /* padding: 10px 14px; */
  /* border-radius: 12px; */
  /* text-decoration: none; */
  /* font-size: 14px; */
}

/* SOCIALS */
.footer__socials {
  margin-top: 12px;
}

.footer__socials a {
  font-size: 13px;
  margin-bottom: 8px;
}

/* BOTTOM */
.footer__bottom {
  border-top: 1px solid rgba(28, 35, 51, 0.08);
  background: var(--bg);
}

.footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;

  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}/* TO TOP BUTTON */
.to-top {
  position: fixed;
  right: 20px;
  bottom: 90px;

  width: 44px;
  height: 44px;

  border-radius: 12px;
  border: none;
  cursor: pointer;

  background: #7755d4;
  color: #fff;
  font-size: 18px;

  box-shadow: 0 10px 30px rgba(119,85,212,0.3);

  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
}

/* FAB WRAPPER */
.fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}

/* MAIN BUTTON */
.fab__main {
  width: 52px;
  height: 52px;

  border-radius: 14px;
  border: none;
  cursor: pointer;

  background: linear-gradient(135deg, #7755d4, #6444bd);
  color: #fff;

  font-size: 20px;

  box-shadow: 0 14px 40px rgba(119,85,212,0.35);
}

/* MENU */
.fab__menu {
  position: absolute;
  right: 0;
  bottom: 65px;

  display: flex;
  flex-direction: column;
  gap: 10px;

  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;

  transition: 0.25s;
}

/* ACTIVE */
.fab__menu.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ITEMS */
.fab__item {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 10px 12px;
  border-radius: 12px;

  text-decoration: none;
  color: #1c2333;
  font-size: 13px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  white-space: nowrap;
}

.fab__item:hover {
  border-color: #7755d4;
  color: #7755d4;
}:root {
  --primary: #7755d4;
  --primary-dark: #6444bd;
  --bg: #f5f6fe;
  --white: #fff;
  --text: #1c2333;
  --muted: #697089;
}

/* HERO */
.hero {
  padding: 90px 20px;
  background: var(--bg);
  overflow: hidden;
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 50px;
  padding: 70px;
}

/* soft background blobs */
.hero::before  {
  /* content: ""; */
  /* position: absolute; */
  /* width: 500px; */
  /* height: 500px; */
  /* border-radius: 50%; */
  /* filter: blur(80px); */
  /* opacity: 0.25; */
  z-index: 0;
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgb(113 79 204 / 27%) 1px, transparent 1px);
  background-size: 16px 16px;
  filter: blur(0.5px);
  opacity: 1;
  pointer-events: none;
}

.hero::before {
  /* background: var(--primary); */
  /* top: -200px; */
  /* left: -150px; */
}

.hero::after {
  background: #ffffff;
  bottom: -200px;
  right: -150px;
}

/* CONTAINER */
.hero__container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* BADGE */
.hero__badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgb(255 255 255 / 44%);
  color: #000000;
  font-size: 13px;
  margin-bottom: 14px;
}

/* TITLE */
.hero h1 {
  /* font-size: 44px; */
  /* line-height: 1.1; */
  /* color: var(--text); */
  /* letter-spacing: -0.03em; */
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 32px;
  }
}

/* TEXT */
.hero p {
  margin-top: 14px;
  color: #000000;
  font-size: 21px;
  line-height: 1.6;
  /* max-width: 520px; */
}

/* CTA */
.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.btn-primary {
  /* background: linear-gradient(135deg, var(--primary), var(--primary-dark)); */
  /* color: white; */
  /* padding: 12px 16px; */
  /* border-radius: 12px; */
  /* text-decoration: none; */
  /* font-size: 14px; */
  /* transition: 0.2s; */
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: var(--text);
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(28, 35, 51, 0.1);
  font-size: 18px;
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* STATS */
.hero__stats {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat span {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

.stat p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* IMAGE */
.hero__image {
  position: relative;
}

.image-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.image-card img {
  width: 100%;
  display: block;
}

/* floating cards */
.floating-card {
  position: absolute;
  background: white;
  padding: 10px 12px;
  border-radius: 12px;

  font-size: 13px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);

  animation: float 4s ease-in-out infinite;
}

.fc1 { top: 20px; left: -20px; }
.fc2 { bottom: 40px; left: -30px; }
.fc3 { top: 60%; right: -30px; }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* MOBILE */
@media (max-width: 900px) {
  .hero__image {
    margin-top: 30px;
  }

  .floating-card {
    display: none;
  }
}.mesh-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* BASE layer */
.mesh-bg::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 20% 20%, rgb(209 192 255 / 45%), transparent 40%), radial-gradient(circle at 80% 30%, rgb(34 97 197 / 25%), transparent 45%), radial-gradient(circle at 50% 80%, rgba(99, 102, 241, 0.35), transparent 50%), radial-gradient(circle at 10% 90%, rgba(244, 114, 182, 0.18), transparent 45%);
  /* filter: blur(60px); */
  transform: scale(1.2);
  animation: meshMove 18s ease-in-out infinite alternate;
}

/* noise overlay (optional but gives premium feel) */
.mesh-bg::after {
  /* content: ""; */
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: overlay;
}

@keyframes meshMove {
  0% {
    transform: translate3d(0,0,0) scale(1.2);
  }
  50% {
    transform: translate3d(-3%, 2%, 0) scale(1.25);
  }
  100% {
    transform: translate3d(3%, -2%, 0) scale(1.2);
  }
}