
:root{
  --bg:#f8fbff;
  --bg-soft:#eef5fb;
  --text:#132033;
  --muted:#5e6b7d;
  --primary:#19c37d;
  --primary-2:#1ea7ff;
  --line:#dce7f3;
  --card:#ffffff;
  --shadow:0 18px 45px rgba(26,56,92,.10);
  --radius:22px;
  --container:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(30,167,255,.08), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 48%, #f3f8fd 100%);
  line-height:1.6;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(var(--container), calc(100% - 32px)); margin:0 auto}
.section{padding:92px 0}
.alt{background:linear-gradient(180deg, #f2f7fc 0%, #eef5fb 100%)}
.eyebrow{
  display:inline-block;
  color:var(--primary-2);
  font-size:.9rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:14px;
}
.section-head{
  max-width:820px;
  margin:0 auto 42px;
  text-align:center;
}
.section-head h2{
  margin:0 0 12px;
  font-size:clamp(2rem,4vw,3.1rem);
  line-height:1.1;
}
.section-head p{color:var(--muted);margin:0}
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  border-bottom:1px solid rgba(19,32,51,.06);
}
.nav{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  letter-spacing:.02em;
}
.logo img{width:42px;height:42px}
.site-nav{
  display:flex;
  align-items:center;
  gap:24px;
  color:#38506b;
}
.site-nav a:hover{color:var(--primary-2)}
.nav-toggle{
  display:none;
  background:none;
  border:0;
  padding:0;
  width:42px;height:42px;
}
.nav-toggle span{
  display:block;height:2px;background:#1c2940;margin:7px 0;border-radius:3px;
}
.hero{
  padding:84px 0 56px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  align-items:center;
}
.hero-copy h1{
  font-size:clamp(2.8rem, 6vw, 4.8rem);
  line-height:1.02;
  margin:0 0 18px;
  max-width:760px;
}
.hero-copy h1 span{color:var(--primary)}
.lead{
  color:var(--muted);
  font-size:1.1rem;
  max-width:720px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:28px 0 24px;
}
.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-height:54px;
  padding:0 24px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--primary), var(--primary-2));
  color:#fff;
  font-weight:800;
  box-shadow:0 14px 32px rgba(30,167,255,.18);
  border:0;
  cursor:pointer;
}
.btn-secondary{
  background:#fff;
  color:var(--text);
  border:1px solid var(--line);
  box-shadow:none;
}
.btn-sm{min-height:42px;padding:0 18px;font-size:.95rem}
.hero-points{
  list-style:none;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
  padding:0;
  margin:0;
}
.hero-points li{
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:16px;
  color:#35506d;
  background:#fff;
  box-shadow:var(--shadow);
}
.hero-card,
.card,
.feature,
.step,
.price-card,
.template-card,
.showcase,
.testimonial,
.faq-item,
.contact-box,
.pricing-note-box{
  background:var(--card);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.hero-card{
  border-radius:28px;
  padding:20px;
}
.hero-card-top{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  color:#33506c;
  margin-bottom:18px;
}
.status-dot{
  width:10px;height:10px;border-radius:50%;
  background:var(--primary);
  box-shadow:0 0 0 6px rgba(25,195,125,.12);
}
.badge{
  margin-left:auto;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(25,195,125,.10);
  color:#149f67;
  font-size:.85rem;
  font-weight:700;
}
.mock-browser{
  border-radius:20px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#f8fbff;
}
.mock-top{
  height:38px;
  background:linear-gradient(90deg, #eef5fb, #f9fcff);
  border-bottom:1px solid var(--line);
}
.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:18px;
}
.stats div{
  padding:18px;
  border-radius:18px;
  background:#f8fbff;
  border:1px solid var(--line);
}
.stats strong{font-size:1.45rem;display:block}
.stats span{color:var(--muted);font-size:.95rem}
.trust-strip{
  padding:18px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#fff;
}
.trust-items{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:16px;
  text-align:center;
  color:#46617d;
  font-weight:700;
  font-size:.95rem;
}
.cards.three{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.card,.testimonial{border-radius:24px;padding:28px}
.card p,.testimonial p{color:var(--muted);margin:0}
.pricing-grid{
  display:grid;
  gap:22px;
  align-items:stretch;
}
.pricing-grid-3{grid-template-columns:repeat(3,1fr)}
.price-card{
  position:relative;
  border-radius:28px;
  padding:34px;
}
.price-card ul{
  margin:22px 0 0;
  padding-left:20px;
  color:#29425c;
}
.price{
  font-size:3rem;
  line-height:1;
  font-weight:900;
  margin:14px 0 8px;
}
.price-note,.subprice{color:var(--muted)}
.featured{outline:2px solid rgba(25,195,125,.18)}
.price-badge{
  position:absolute;
  top:16px;right:16px;
  padding:8px 12px;
  border-radius:999px;
  font-size:.82rem;
  font-weight:800;
  background:rgba(25,195,125,.10);
  color:#149f67;
}
.pricing-note-box{
  border-radius:22px;
  padding:22px 24px;
  margin-top:24px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.pricing-note-box span{color:var(--muted)}
.template-grid,.showcase-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.template-card,.showcase{
  border-radius:24px;
  overflow:hidden;
}
.template-card img,.showcase img{
  width:100%;
  aspect-ratio:16 / 11;
  object-fit:cover;
  border-bottom:1px solid var(--line);
}
.template-body{padding:22px}
.template-body p,.showcase p{color:var(--muted);margin:0}
.template-body .btn{margin-top:18px}
.showcase{padding:0}
.showcase h3,.showcase p,.showcase .text-link{padding:0 22px}
.showcase h3{margin-top:20px}
.showcase p{padding-bottom:12px}
.showcase .text-link{
  display:inline-block;
  padding-bottom:22px;
  color:var(--primary-2);
  font-weight:700;
}
.faq-list{
  max-width:900px;
  margin:0 auto;
  display:grid;
  gap:14px;
}
.faq-item{
  border-radius:18px;
  padding:0 18px;
}
.faq-item summary{
  cursor:pointer;
  list-style:none;
  font-weight:700;
  padding:18px 0;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item p{
  margin:0;
  padding:0 0 18px;
  color:var(--muted);
}
.contact-box{
  border-radius:30px;
  padding:34px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:start;
}
.contact-bullets{
  margin:18px 0 0;
  padding-left:18px;
  color:#5e6b7d;
}
.contact-form{
  display:grid;
  gap:14px;
}
.contact-form input, .contact-form textarea{
  width:100%;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  border-radius:16px;
  padding:16px 18px;
  font:inherit;
}
.contact-form textarea{min-height:140px;resize:vertical}
.site-footer{
  padding:28px 0 48px;
  border-top:1px solid var(--line);
  background:#fff;
}
.footer-wrap{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
}
.footer-wrap p{color:var(--muted);margin:.4rem 0 0}
.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  color:#38506b;
}
.footer-logo img{width:38px;height:38px}
.footer-bottom{
  text-align:center;
  padding:20px 16px 0;
  border-top:1px solid var(--line);
  margin-top:28px;
}
.footer-bottom p{font-size:14px;color:#6b7280;margin:0}
.footer-bottom a{color:#4c6a8f}

.cookie-banner{
  position:fixed;
  left:20px;
  right:20px;
  bottom:20px;
  z-index:999;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:16px 18px;
  background:rgba(17,24,39,.96);
  color:#fff;
  border-radius:18px;
  box-shadow:0 18px 40px rgba(0,0,0,.22);
}
.cookie-banner a{color:#9fd6ff}
.cookie-text{font-size:.95rem}
.cookie-actions{display:flex;gap:10px;flex-wrap:wrap}
.cookie-btn{
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  border:0;
  font:inherit;
  font-weight:700;
  cursor:pointer;
  background:#fff;
  color:#111827;
}
.cookie-btn-secondary{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.24);
}

.legal-page{
  padding:40px 0 80px;
}
.legal-wrap{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:24px;
  padding:34px;
}
.legal-wrap h1{margin-top:0;font-size:2.2rem}
.legal-wrap h2{margin-top:28px;font-size:1.2rem}
.legal-wrap p, .legal-wrap li{color:var(--muted)}
.legal-wrap ul{padding-left:20px}

@media (max-width: 1080px){
  .hero-grid, .contact-box{grid-template-columns:1fr}
  .hero-points, .trust-items, .cards.three, .pricing-grid-3, .template-grid, .showcase-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 760px){
  .site-nav{
    position:absolute;
    left:16px; right:16px; top:76px;
    padding:18px;
    border-radius:20px;
    background:#fff;
    border:1px solid var(--line);
    display:none;
    flex-direction:column;
    align-items:flex-start;
    box-shadow:var(--shadow);
  }
  .site-nav.open{display:flex}
  .nav-toggle{display:block}
  .hero{padding-top:56px}
  .hero-points, .trust-items, .cards.three, .pricing-grid-3, .template-grid, .showcase-grid{
    grid-template-columns:1fr;
  }
  .section{padding:74px 0}
  .hero-copy h1{font-size:2.7rem}
  .price{font-size:2.4rem}
  .footer-wrap{flex-direction:column;align-items:flex-start}
  .cookie-banner{
    left:12px; right:12px; bottom:12px;
    flex-direction:column;
    align-items:flex-start;
  }
}
