
:root{
  --bg:#fcfaf7;
  --bg-soft:#f6f1ea;
  --surface:#ffffff;
  --primary:#7c3aed;
  --primary-dark:#6d28d9;
  --secondary:#0f766e;
  --accent:#f59e0b;
  --text:#1f2937;
  --muted:#6b7280;
  --line:#e7ddd0;
  --shadow:0 12px 30px rgba(31,41,55,.07);
  --shadow-lg:0 22px 50px rgba(124,58,237,.14);
  --container:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Segoe UI,Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#fffdfa 0%,#fcfaf7 100%);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
a{text-decoration:none;color:var(--primary)}
a:hover{color:var(--primary-dark)}
img{max-width:100%;display:block}
.container{width:min(var(--container),calc(100% - 28px));margin:0 auto}

.topbar{
  position:sticky;top:0;z-index:1000;
  background:rgba(255,250,244,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{
  display:flex;align-items:center;gap:12px;
  color:var(--text);font-weight:800;font-size:1.22rem;
}
.brand-mark{
  width:44px;height:44px;border-radius:16px;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  position:relative;box-shadow:var(--shadow-lg);
}
.brand-mark:before{
  content:"";position:absolute;left:50%;top:8px;transform:translateX(-50%);
  width:15px;height:11px;border:3px solid #fff;border-bottom:none;border-radius:14px 14px 0 0;
}
.brand-mark:after{
  content:"";position:absolute;left:50%;bottom:9px;transform:translateX(-50%);
  width:20px;height:16px;background:#fff;border-radius:5px;
}
.nav-right{display:flex;align-items:center;gap:18px}
.nav-links{display:flex;align-items:center;gap:26px}
.nav-links a{color:#4b5563;font-weight:700;font-size:.98rem}
.nav-links a.active,.nav-links a:hover{color:var(--primary)}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:48px;padding:14px 22px;border-radius:999px;border:none;
  font-weight:800;font-size:.97rem;cursor:pointer;line-height:1;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  color:#fff !important;
  background:linear-gradient(135deg,var(--primary),#a855f7);
  box-shadow:0 14px 30px rgba(124,58,237,.22);
}
.btn-secondary{
  color:var(--text) !important;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.btn-full{width:100%}

.menu-toggle{
  display:none;
  width:46px;height:46px;border:1px solid var(--line);border-radius:14px;
  background:#fff;box-shadow:var(--shadow);padding:0;cursor:pointer;
  align-items:center;justify-content:center;flex-direction:column;gap:4px;
}
.menu-toggle span{
  width:20px;height:2px;background:#1f2937;border-radius:999px;display:block;transition:.2s ease;
}
.menu-toggle.active span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.menu-toggle.active span:nth-child(2){opacity:0}
.menu-toggle.active span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}

.mobile-panel{display:none;border-top:1px solid var(--line);background:#fffdfa}
.mobile-panel.open{display:block}
.mobile-links{display:flex;flex-direction:column;gap:10px;padding:16px 0 22px}
.mobile-links a{padding:12px 14px;border-radius:14px;font-weight:700;color:var(--text)}
.mobile-links a.active,.mobile-links a:hover{background:#f4ecff;color:var(--primary)}
.mobile-links .btn{width:100%;margin-top:4px}

.hero{
  padding:78px 0 56px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:42px;
  align-items:center;
}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 14px;border-radius:999px;
  background:#f4ecff;border:1px solid #e7d8ff;color:var(--primary);
  font-weight:800;font-size:.9rem;
}
.hero h1{
  margin:18px 0 14px;
  font-size:clamp(2rem,4vw,3.2rem);
  line-height:1.06;
  letter-spacing:-.035em;
  max-width:690px;
}
.hero p{
  margin:0 0 28px;
  color:var(--muted);
  font-size:1.05rem;
  max-width:610px;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px}

.hero-visual{
  position:relative;
  min-height:430px;
  display:grid;
  place-items:center;
}
.orb{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
}
.orb:before{
  content:"";
  width:360px;height:360px;border-radius:50%;
  background:radial-gradient(circle, rgba(124,58,237,.16), transparent 64%);
  position:absolute;
}
.floating-card{
  position:relative;
  width:min(100%,440px);
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  padding:26px;
  box-shadow:var(--shadow-lg);
}
.meter{
  height:12px;border-radius:999px;background:#f2e8dc;overflow:hidden;margin:18px 0 22px;
}
.meter span{
  display:block;height:100%;width:82%;
  background:linear-gradient(90deg,var(--secondary),var(--accent));
  border-radius:999px;
}
.stat-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:14px;
}
.stat-box{
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:20px;
  padding:18px;
}
.stat-box h4{margin:0 0 6px;font-size:.98rem}
.stat-box p{margin:0;color:var(--muted);font-size:.93rem}
.ribbon{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;border-radius:999px;
  background:#ecfdf5;color:var(--secondary);font-weight:800;font-size:.88rem;
}

section{padding:70px 0}
.section-head{max-width:760px;margin-bottom:28px}
.section-head h2{
  margin:0 0 12px;
  font-size:clamp(1.6rem,2.6vw,2.15rem);
  line-height:1.12;
  letter-spacing:-.025em;
}
.section-head p{margin:0;color:var(--muted);font-size:1.02rem}

.compare-grid,.features,.steps{
  display:grid;gap:20px;
}
.compare-grid{grid-template-columns:1fr 1fr}
.features{grid-template-columns:repeat(4,1fr)}
.steps{grid-template-columns:repeat(3,1fr)}

.card,.feature-card,.step-card,.value-card,.contact-card,.form-wrap{
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  box-shadow:var(--shadow);
}
.card,.feature-card,.step-card,.value-card,.contact-card{padding:24px}
.card h3,.feature-card h3,.step-card h3,.value-card h3,.contact-card h3{
  margin:0 0 10px;font-size:1.12rem;
}
.card p,.feature-card p,.step-card p,.value-card p,.contact-card p{margin:0;color:var(--muted)}
.card ul{list-style:none;padding:0;margin:16px 0 0;display:grid;gap:10px}
.card li{display:flex;align-items:flex-start;gap:12px}
.highlight{
  border-color:#ead7ff;
  background:linear-gradient(180deg,#fff,#fcf7ff);
}
.dot-good,.dot-bad{
  width:22px;height:22px;border-radius:999px;
  display:grid;place-items:center;flex:0 0 22px;font-size:.82rem;font-weight:800
}
.dot-good{background:#ecfdf5;color:#0f766e}
.dot-bad{background:#fff1f2;color:#dc2626}

.icon{
  width:54px;height:54px;border-radius:18px;
  background:linear-gradient(135deg,#f4ecff,#fff4de);
  display:grid;place-items:center;
  font-size:1.35rem;margin-bottom:18px;
}
.step-no{
  width:38px;height:38px;border-radius:999px;
  background:#f4ecff;color:var(--primary);
  display:grid;place-items:center;font-weight:800;margin-bottom:16px
}

.band{
  background:linear-gradient(180deg,#fffaf4,#ffffff);
  border-top:1px solid #f0e6d9;
  border-bottom:1px solid #f0e6d9;
}
.page-hero{
  padding:52px 0 28px;
  border-bottom:1px solid var(--line);
  background:linear-gradient(180deg,#fffdf9,#fcfaf7);
}
.page-hero h1{
  margin:0 0 10px;
  font-size:clamp(1.8rem,3vw,2.35rem);
  letter-spacing:-.03em;
}
.page-hero p{margin:0;color:var(--muted);max-width:760px}
.content-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:24px;
}
.info-stack{display:grid;gap:18px}
.check-list{
  list-style:none;padding:0;margin:18px 0 0;display:grid;gap:12px;
}
.check-list li{display:flex;gap:12px;align-items:flex-start}
.check-mark{
  width:24px;height:24px;border-radius:999px;
  background:#ecfdf5;color:#0f766e;
  display:grid;place-items:center;flex:0 0 24px;font-weight:800;
}
.cta-box{
  display:flex;align-items:center;justify-content:space-between;gap:24px;
  padding:32px;border-radius:30px;
  background:linear-gradient(135deg,#fcf7ff,#fff7ed);
  border:1px solid #ecdcc8;
  box-shadow:var(--shadow-lg);
}
.cta-box h3{
  margin:0 0 10px;
  font-size:clamp(1.45rem,2.8vw,1.95rem);
  letter-spacing:-.025em;
}
.cta-box p{margin:0;color:var(--muted);max-width:700px}

.form-wrap{padding:28px}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.field{display:flex;flex-direction:column;gap:8px}
.field.full{grid-column:1 / -1}
label{font-weight:800;font-size:.95rem}
input,textarea{
  width:100%;padding:14px 15px;border-radius:16px;
  border:1px solid #dccfbe;background:#fff;font:inherit;color:var(--text);outline:none;
}
input:focus,textarea:focus{border-color:#c4a8ff;box-shadow:0 0 0 4px rgba(124,58,237,.10)}
textarea{min-height:160px;resize:vertical}
.notice{margin-bottom:18px;padding:14px 16px;border-radius:14px;font-weight:700}
.notice.success{background:#ecfdf5;color:#0f766e;border:1px solid #bbf7d0}
.notice.error{background:#fff1f2;color:#be123c;border:1px solid #fecdd3}

.footer{
  background:#fffdfa;border-top:1px solid var(--line);padding:24px 0;
}
.footer-inner{
  display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap
}
.footer small{color:var(--muted);font-size:.95rem}
.footer a{font-weight:800}

@media (max-width:1040px){
  .hero-grid,.content-grid,.features{grid-template-columns:1fr 1fr}
}
@media (max-width:860px){
  .nav-links,.nav-right > .btn{display:none}
  .menu-toggle{display:flex}
  .hero-grid,.compare-grid,.content-grid,.steps,.form-grid,.cta-box,.features,.stat-grid{grid-template-columns:1fr}
  .cta-box{align-items:flex-start}
  .hero{padding:52px 0 38px}
}
@media (min-width:861px){
  .menu-toggle{display:none !important}
  .mobile-panel{display:none !important}
}
@media (max-width:640px){
  .container{width:min(var(--container),calc(100% - 22px))}
  section{padding:56px 0}
  .page-hero{padding:42px 0 24px}
  .footer-inner{flex-direction:column;align-items:flex-start}
}


/* Smaller headings */
.hero h1{font-size:clamp(1.8rem,3.4vw,2.7rem)}
.section-head h2{font-size:clamp(1.45rem,2.2vw,1.95rem)}
.page-hero h1{font-size:clamp(1.65rem,2.5vw,2.05rem)}
.cta-box h3{font-size:clamp(1.3rem,2.3vw,1.7rem)}

/* Order page extras */
.order-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:24px}
.price-card{
  background:#fff;border:1px solid var(--line);border-radius:26px;box-shadow:var(--shadow-lg);padding:28px
}
.price-tag{
  display:flex;align-items:flex-end;gap:8px;margin:10px 0 18px
}
.price-tag strong{font-size:2.2rem;line-height:1;letter-spacing:-.03em}
.price-tag span{color:var(--muted);font-weight:700}
.list-clean{list-style:none;padding:0;margin:18px 0 0;display:grid;gap:12px}
.list-clean li{display:flex;gap:12px;align-items:flex-start}
.help-box{
  background:#fffaf4;border:1px solid #f0e6d9;border-radius:22px;padding:20px
}
.note{
  font-size:.92rem;color:var(--muted);margin-top:10px
}
@media (max-width:860px){
  .order-grid{grid-template-columns:1fr}
}

.hero h1{font-size:clamp(1.8rem,3.4vw,2.7rem)}
.section-head h2{font-size:clamp(1.45rem,2.2vw,1.95rem)}
.page-hero h1{font-size:clamp(1.65rem,2.5vw,2.05rem)}
.cta-box h3{font-size:clamp(1.3rem,2.3vw,1.7rem)}
