
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Poppins',sans-serif;
  background:linear-gradient(135deg,#f8ecff 0%,#f4d9ff 45%,#ffe8f7 100%);
  color:#581c87;
  min-height:100vh;
}
.container{width:min(1240px,92%);margin:auto}
.nav{
  position:sticky;top:0;z-index:1000;
  background:rgba(255,255,255,.55);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(126,34,206,.12)
}
.nav-inner{display:flex;justify-content:space-between;align-items:center;padding:14px 0}
.brand{display:flex;align-items:center;gap:14px;text-decoration:none;color:#581c87}
.brand img{width:66px;height:auto;border-radius:15px;box-shadow:0 10px 25px rgba(126,34,206,.12)}
.brand strong{display:block;font-size:20px;font-weight:800}
.brand small{display:block;color:#7c3aed;font-size:13px}
.nav-links{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}
.nav-links a{
  text-decoration:none;color:#5b1688;background:rgba(255,255,255,.75);
  padding:12px 18px;border-radius:999px;font-weight:600;
  box-shadow:0 6px 16px rgba(88,28,135,.08);
  transition:.25s
}
.nav-links a:hover{transform:translateY(-2px);background:#fff}
.hero{padding:76px 0 50px}
.hero-grid{display:grid;grid-template-columns:1.08fr .92fr;gap:36px;align-items:center}
.hero-copy,.hero-panel,.content-shell{
  background:rgba(255,255,255,.62);
  border:1px solid rgba(255,255,255,.7);
  border-radius:38px;
  box-shadow:0 30px 80px rgba(126,34,206,.14);
  backdrop-filter:blur(16px);
}
.hero-copy{padding:54px}
.eyebrow{
  display:inline-flex;align-items:center;
  color:#6b21a8;background:#f1d0ff;
  border:1px solid rgba(217,70,239,.25);
  padding:10px 18px;border-radius:999px;
  font-weight:800;margin-bottom:18px
}
.hero h1{
  font-size:clamp(45px,7vw,82px);
  line-height:.95;color:#6b0fa5;font-weight:800;
  letter-spacing:-4px;margin-bottom:26px
}
.lead{font-size:20px;line-height:1.8;color:#62476f;margin-bottom:30px;max-width:760px}
.hero-actions{display:flex;gap:16px;flex-wrap:wrap;margin:22px 0}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:15px 24px;border-radius:16px;text-decoration:none;
  font-weight:800;transition:.25s
}
.btn:hover{transform:translateY(-3px)}
.btn-primary{background:linear-gradient(135deg,#7e22ce,#c026d3);color:#fff;box-shadow:0 16px 30px rgba(126,34,206,.24)}
.btn-secondary{background:#fff;color:#7e22ce;border:2px solid #e879f9}
.quick-info{display:flex;gap:12px;flex-wrap:wrap;margin-top:22px}
.quick-info span{
  background:#fff;padding:12px 16px;border-radius:15px;
  box-shadow:0 8px 20px rgba(88,28,135,.06);
  color:#72507f;font-weight:600
}
.hero-panel{padding:28px}
.directory-preview{
  min-height:420px;border-radius:30px;padding:30px;
  background:linear-gradient(135deg,#2e1065,#7e22ce 55%,#d946ef);
  color:#fff;position:relative;overflow:hidden
}
.directory-preview:after{
  content:"";position:absolute;width:260px;height:260px;border-radius:50%;
  background:rgba(255,255,255,.12);right:-80px;bottom:-90px
}
.preview-top{display:flex;gap:8px;margin-bottom:40px}
.preview-top span{width:14px;height:14px;border-radius:50%;background:#fff;opacity:.75}
.directory-preview h2{font-size:46px;line-height:1;margin-bottom:14px}
.directory-preview p{opacity:.9;margin-bottom:24px}
.mini-list{display:grid;gap:12px;position:relative;z-index:2}
.mini-list a{
  color:#fff;text-decoration:none;background:rgba(255,255,255,.16);
  padding:15px;border-radius:16px;border:1px solid rgba(255,255,255,.18)
}
.section{padding:86px 0}
.alt{background:rgba(255,255,255,.28)}
.section-head{margin-bottom:34px}
.section-head h2{font-size:clamp(34px,5vw,56px);line-height:1;color:#6b0fa5;margin-bottom:14px}
.section-head p{font-size:18px;color:#6d5276}
.search-row{display:flex;gap:14px;margin-bottom:28px}
.search-row input{
  flex:1;padding:18px 22px;border-radius:18px;border:1px solid rgba(126,34,206,.18);
  font-family:inherit;font-size:16px;outline:none;box-shadow:0 12px 30px rgba(126,34,206,.08)
}
.search-row button{
  border:0;background:#6b21a8;color:#fff;padding:0 24px;border-radius:18px;font-weight:800;cursor:pointer
}
.expert-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:22px}
.expert-card{
  display:flex;gap:16px;align-items:flex-start;background:rgba(255,255,255,.68);
  padding:22px;border-radius:26px;border:1px solid rgba(255,255,255,.75);
  box-shadow:0 18px 40px rgba(126,34,206,.1);
  transition:.25s
}
.expert-card:hover{transform:translateY(-6px);background:#fff}
.expert-avatar{
  width:58px;height:58px;border-radius:19px;flex:0 0 58px;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,#7c3aed,#d946ef);
  color:#fff;font-weight:800;font-size:18px
}
.expert-tag{font-size:12px;color:#c026d3;font-weight:800;text-transform:uppercase}
.expert-card h3{font-size:20px;color:#581c87;margin:4px 0}
.expert-card p{color:#71547d;margin-bottom:12px}
.expert-card a{display:inline-flex;text-decoration:none;color:#fff;background:#7e22ce;padding:10px 14px;border-radius:13px;font-weight:700}
.service-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:22px}
.service-card{
  background:rgba(255,255,255,.7);padding:30px;border-radius:28px;
  box-shadow:0 18px 40px rgba(126,34,206,.09)
}
.service-card span{font-size:40px}.service-card h3{font-size:22px;margin:12px 0;color:#581c87}.service-card p{color:#765980}
.location-grid{display:grid;grid-template-columns:.88fr 1.12fr;gap:34px;align-items:stretch}
.location-text{font-size:19px;color:#6d5276;line-height:1.8;margin:14px 0}
.direction-box{
  background:rgba(255,255,255,.7);padding:24px;border-radius:24px;
  margin-top:24px;box-shadow:0 18px 40px rgba(126,34,206,.08)
}
.direction-box h3{margin-bottom:12px}.direction-box ol{padding-left:20px;color:#6d5276;line-height:1.9}
.map-card{
  background:#fff;padding:16px;border-radius:30px;min-height:470px;
  box-shadow:0 22px 50px rgba(126,34,206,.12)
}
.map-card iframe{width:100%;height:100%;min-height:440px;border:0;border-radius:22px}
.contact-card{
  background:linear-gradient(135deg,#6b21a8,#c026d3);
  color:#fff;border-radius:34px;padding:44px;
  display:grid;grid-template-columns:1fr 1fr;gap:30px;
  box-shadow:0 24px 55px rgba(126,34,206,.2)
}
.contact-card .eyebrow{background:rgba(255,255,255,.18);color:#fff}
.contact-card h2{font-size:42px;line-height:1.1;margin-bottom:12px}
.contact-list{display:grid;gap:14px;align-content:center}
.contact-list a,.contact-list span{
  color:#fff;text-decoration:none;background:rgba(255,255,255,.16);
  padding:16px;border-radius:16px;font-weight:700
}
.chat-toggle{
  position:fixed;right:24px;bottom:24px;z-index:1002;
  width:62px;height:62px;border:0;border-radius:22px;
  background:linear-gradient(135deg,#7e22ce,#d946ef);
  color:#fff;font-size:26px;cursor:pointer;
  box-shadow:0 18px 40px rgba(126,34,206,.35)
}
.chatbot{
  position:fixed;right:24px;bottom:96px;width:min(360px,calc(100vw - 32px));
  background:#fff;border-radius:24px;z-index:1003;
  box-shadow:0 30px 70px rgba(88,28,135,.25);
  overflow:hidden;display:none
}
.chatbot.active{display:block}
.chat-head{
  background:linear-gradient(135deg,#6b21a8,#c026d3);
  color:#fff;padding:18px;display:flex;justify-content:space-between;align-items:center
}
.chat-head button{background:transparent;border:0;color:#fff;font-size:28px;cursor:pointer}
.chat-body{padding:18px;display:grid;gap:12px}
.bot-msg{background:#f7e6ff;color:#581c87;padding:14px;border-radius:16px;line-height:1.5}
.chat-body button{
  border:0;background:#f3e8ff;color:#6b21a8;padding:12px;border-radius:14px;
  text-align:left;font-weight:700;cursor:pointer
}
.footer{text-align:center;padding:34px;background:#fff;color:#6b21a8;font-weight:700}
@media(max-width:900px){
  .nav-inner,.hero-grid,.location-grid,.contact-card{grid-template-columns:1fr;display:grid}
  .nav-inner{gap:16px}
  .brand{justify-content:center;text-align:center}
  .nav-links{justify-content:center}
  .hero-copy{padding:34px;border-radius:30px}
  .hero h1{letter-spacing:-2px}
  .search-row{flex-direction:column}
  .contact-card{padding:30px}
}


.app-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  align-items:center;
}
.app-copy{
  background:rgba(255,255,255,.68);
  padding:44px;
  border-radius:34px;
  box-shadow:0 20px 50px rgba(126,34,206,.10);
}
.app-copy h2{
  font-size:clamp(34px,5vw,54px);
  line-height:1.05;
  color:#6b0fa5;
  margin-bottom:16px;
}
.app-copy p{
  color:#6d5276;
  font-size:18px;
  line-height:1.8;
}
.btn-install{
  background:#fff;
  color:#6b21a8;
  border:2px solid #c084fc;
  cursor:pointer;
  display:inline-flex;
}
.phone-mockup{
  max-width:380px;
  margin:auto;
  min-height:560px;
  background:linear-gradient(180deg,#ffffff,#f7e6ff);
  border:12px solid #4c1d95;
  border-radius:46px;
  box-shadow:0 28px 70px rgba(88,28,135,.25);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:30px;
  text-align:center;
  position:relative;
}
.phone-top{
  position:absolute;
  top:16px;
  width:110px;
  height:10px;
  border-radius:99px;
  background:#4c1d95;
  opacity:.35;
}
.phone-mockup img{
  width:220px;
  max-width:80%;
  border-radius:24px;
  margin-bottom:24px;
  box-shadow:0 15px 35px rgba(126,34,206,.14);
}
.phone-mockup h3{
  color:#581c87;
  font-size:30px;
}
.phone-mockup p{
  color:#7c3aed;
  font-weight:700;
}
.phone-btn{
  margin-top:24px;
  padding:14px 20px;
  color:#fff;
  border-radius:18px;
  background:linear-gradient(135deg,#7e22ce,#d946ef);
  font-weight:800;
}
@media(max-width:900px){
  .app-grid{grid-template-columns:1fr}
  .app-copy{padding:30px}
}
