:root{
  --brand:#5E17EB;
  --brand-dark:#4912c0;
  --brand-soft:#F4EEFF;
  --text:#101828;
  --muted:#667085;
  --line:#EAECF0;
  --white:#FFFFFF;
  --dark:#0F0B1A;
  --dark-2:#1B1230;
  --success:#16A34A;
  --warning:#F59E0B;
  --shadow:0 20px 50px rgba(94,23,235,.10);
  --radius:24px;
  --max:1200px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.6;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button,input,select,textarea{font:inherit}

.container{
  width:min(var(--max),calc(100% - 2rem));
  margin-inline:auto;
}
.section{padding:88px 0}
.section-sm{padding:64px 0}
.bg-soft{background:linear-gradient(180deg,var(--brand-soft),#fff)}
.bg-dark{background:linear-gradient(180deg,var(--dark),var(--dark-2));color:#fff}
.eyebrow{
  display:inline-block;
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:var(--brand);
  font-weight:800;
  margin-bottom:14px;
}
.title-xl{
  font-size:clamp(2.4rem,5vw,4.8rem);
  line-height:1.04;
  letter-spacing:-.03em;
  margin:0 0 18px;
}
.title-lg{
  font-size:clamp(2rem,4vw,3.2rem);
  line-height:1.08;
  letter-spacing:-.02em;
  margin:0 0 14px;
}
.title-md{
  font-size:clamp(1.25rem,2vw,1.6rem);
  line-height:1.2;
  margin:0 0 10px;
}
.lead{
  font-size:1.1rem;
  color:var(--muted);
  max-width:760px;
}
.text-muted{color:var(--muted)}
.grid{display:grid;gap:24px}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
}
.card-dark{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  padding:28px;
}
.btn-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:700;
  transition:.2s ease;
  cursor:pointer;
}
.btn-primary{
  background:var(--brand);
  color:#fff;
}
.btn-primary:hover{background:var(--brand-dark)}
.btn-secondary{
  background:#fff;
  border-color:var(--brand);
  color:var(--brand);
}
.btn-secondary:hover{background:var(--brand-soft)}
.tag{
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  background:var(--brand-soft);
  color:var(--brand);
  font-size:.8rem;
  font-weight:700;
}
.check{
  color:var(--success);
  font-weight:800;
}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(16,24,40,.06);
}
.header-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:76px;
  gap:20px;
}
.brand{
  font-size:1.05rem;
  font-weight:900;
  color:var(--brand);
  letter-spacing:-.02em;
}
.nav{
  display:flex;
  align-items:center;
  gap:22px;
}
.nav a{
  font-size:.95rem;
  color:#344054;
}
.nav a:hover{color:var(--brand)}
.menu-toggle{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  padding:10px 14px;
}
.mobile-menu{
  display:none;
  border-top:1px solid var(--line);
  background:#fff;
}
.mobile-menu.open{display:block}
.mobile-menu-inner{
  display:grid;
  gap:14px;
  padding:18px 0 22px;
}

.hero{
  position:relative;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:34px;
  align-items:center;
}
.hero-visual{
  position:relative;
  min-height:480px;
}
.orb{
  position:absolute;
  border-radius:999px;
  filter:blur(2px);
}
.orb-1{
  width:280px;height:280px;
  background:radial-gradient(circle at 30% 30%,#8B5CFF,#5E17EB);
  top:20px;right:60px;opacity:.95;
}
.orb-2{
  width:220px;height:220px;
  background:radial-gradient(circle at 30% 30%,#D9CBFF,#A582FF);
  bottom:60px;left:20px;opacity:.75;
}
.hero-panel{
  position:absolute;
  inset:auto 0 0 auto;
  width:min(100%,480px);
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:22px;
}
.metric-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.metric{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:18px;
}
.metric small{
  display:block;
  color:var(--muted);
  margin-bottom:8px;
}
.metric strong{
  font-size:1.2rem;
  color:var(--brand);
}

.kicker-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}
.kicker{
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  padding:10px 14px;
  font-size:.88rem;
  color:#344054;
}

.service-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
}
.service-card p{color:var(--muted)}
.service-card a{
  margin-top:auto;
  color:var(--brand);
  font-weight:800;
}

.value-bar{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:42px;
}
.value-item{
  padding:18px 20px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
}
.value-item strong{display:block;margin-top:10px}

.table-wrap{
  overflow:auto;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow);
}
table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
}
th,td{
  padding:18px 20px;
  text-align:left;
  border-top:1px solid var(--line);
  white-space:nowrap;
}
thead th{
  border-top:none;
  background:#FAF8FF;
  color:#344054;
}
tr.featured{background:#FCFAFF}
.badge-popular{
  display:inline-block;
  margin-left:8px;
  padding:5px 10px;
  border-radius:999px;
  background:var(--brand);
  color:#fff;
  font-size:.74rem;
  font-weight:800;
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:start;
}
.list-clean{
  list-style:none;
  padding:0;
  margin:0;
}
.list-clean li{
  padding:12px 0;
  border-bottom:1px solid var(--line);
}
.list-clean li:last-child{border-bottom:none}

.testimonial{
  position:relative;
}
.testimonial p{
  color:#344054;
  font-size:1.02rem;
}
.testimonial .who{
  margin-top:18px;
  color:var(--muted);
  font-size:.95rem;
}

.logo-row{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
  margin-top:26px;
}
.logo-pill{
  border:1px dashed var(--line);
  border-radius:16px;
  padding:18px;
  text-align:center;
  color:#667085;
  font-weight:700;
  background:#fff;
}

.faq{
  display:grid;
  gap:14px;
}
.faq-item{
  border:1px solid var(--line);
  border-radius:20px;
  overflow:hidden;
  background:#fff;
}
.faq-question{
  width:100%;
  text-align:left;
  border:none;
  background:#fff;
  padding:20px 22px;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
}
.faq-answer{
  display:none;
  padding:0 22px 22px;
  color:var(--muted);
}
.faq-item.active .faq-answer{display:block}

.cta-banner{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;
  align-items:center;
  border-radius:32px;
  padding:34px;
  background:linear-gradient(135deg,#5E17EB,#7D44F6);
  color:#fff;
  box-shadow:var(--shadow);
}
.cta-banner p{color:rgba(255,255,255,.86)}

.contact-box{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}
.form{
  display:grid;
  gap:14px;
}
.input,
.select,
.textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:16px;
  padding:15px 16px;
  background:#fff;
}
.textarea{
  min-height:160px;
  resize:vertical;
}
.form-note{
  color:var(--muted);
  font-size:.92rem;
}
.inline-check{
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.breadcrumbs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:.92rem;
  margin-bottom:26px;
}
.breadcrumbs a:hover{color:var(--brand)}

.site-footer{
  background:linear-gradient(180deg,var(--dark),#140c24);
  color:#fff;
  padding:70px 0 36px;
  margin-top:40px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1fr;
  gap:28px;
}
.footer-grid p,
.footer-grid a{
  color:rgba(255,255,255,.78);
}
.footer-grid a:hover{color:#fff}
.footer-bottom{
  margin-top:30px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.1);
  color:rgba(255,255,255,.6);
  font-size:.92rem;
}

.page-hero{
  padding:64px 0 26px;
}
.hero-service{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:center;
}
.hero-service-card{
  border:1px solid var(--line);
  border-radius:28px;
  padding:24px;
  background:#fff;
  box-shadow:var(--shadow);
}

.notice{
  padding:14px 16px;
  border-radius:16px;
  background:#F9FAFB;
  border:1px solid var(--line);
  color:#475467;
  font-size:.95rem;
}

@media (max-width: 1024px){
  .hero-grid,.hero-service,.split,.contact-box,.cta-banner,.footer-grid,.grid-4,.grid-3,.grid-2,.value-bar,.logo-row{
    grid-template-columns:1fr 1fr;
  }
  .nav{display:none}
  .menu-toggle{display:inline-flex}
}
@media (max-width: 720px){
  .hero-grid,.hero-service,.split,.contact-box,.cta-banner,.footer-grid,.grid-4,.grid-3,.grid-2,.value-bar,.logo-row,.metric-grid{
    grid-template-columns:1fr;
  }
  .section{padding:70px 0}
  .btn{width:100%}
  .hero-visual{min-height:360px}
  th,td{padding:14px 16px}
}
