/* Start custom CSS for html, class: .elementor-element-0e763b1 */:root {
  --primary: #4f46e5;
  --secondary: #06b6d4;
  --accent: #f97316;

  --text-main: #0f172a;
  --text-muted: #475569;

  --border: #e5e7eb;
}

/* base */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background: #fff;
  line-height: 1.7;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

/* blob */
.blob-top {
  position: fixed;
  width: 520px;
  height: 520px;
  top: -220px;
  left: -160px;
  background: radial-gradient(circle, var(--secondary), transparent 60%);
  filter: blur(70px);
  opacity: .25;
  z-index: -1;
}

/* hero */
.hero {
  max-width: 860px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(79,70,229,.08);
  margin-bottom: 16px;
}

h1 { font-size: 48px; line-height: 1.15; }
h2 { font-size: 28px; font-weight: 400; margin-top: 12px; }

.lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 720px;
}

.price {
  font-size: 42px;
  font-weight: 800;
  margin: 32px 0 24px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* buttons */
.btn-primary {
  padding: 14px 28px;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.btn-primary.large {
  font-size: 17px;
}

.btn-secondary {
  padding: 14px 28px;
  border-radius: 14px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text-main);
  background: #fff;
}

/* sections */
.section {
  margin: 104px 0;
}

.colorful {
  background: linear-gradient(
    135deg,
    rgba(79,70,229,.08),
    rgba(6,182,212,.08)
  );
  padding: 72px;
  border-radius: 32px;
}

.colorful-soft {
  background: linear-gradient(180deg, #f8fafc, #fff);
  padding: 72px;
  border-radius: 32px;
}

.section-intro {
  color: var(--text-muted);
  max-width: 720px;
}

/* accordion */
.accordion details {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.accordion summary {
  font-weight: 600;
  cursor: pointer;
}

/* two cols */
.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.col ul {
  padding-left: 18px;
}

.positive h4 { color: var(--primary); }
.negative h4 { color: var(--accent); }

/* GUARANTEE */
.guarantee-calm {
  background: linear-gradient(
    180deg,
    rgba(79,70,229,0.06),
    rgba(255,255,255,1)
  );
  border-radius: 40px;
  padding: 72px 64px;
  text-align: center;
}

.guarantee-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.guarantee-calm h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.guarantee-calm p {
  max-width: 720px;
  margin: 0 auto 16px;
  font-size: 17px;
}

.guarantee-calm .muted {
  font-size: 16px;
}

/* CONTACT */
.contact-dialog {
  background: linear-gradient(
    135deg,
    rgba(6,182,212,0.10),
    rgba(79,70,229,0.06)
  );
  border-radius: 32px;
  padding: 72px;
}

.contact-dialog p {
  max-width: 640px;
}

/* AUTHOR */
.author-panel-inner {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 48px;
  align-items: center;
}

.author-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
}

.author-bio {
  font-size: 18px;
  line-height: 1.6;
}

.author-links {
  margin-top: 16px;
  color: var(--text-muted);
}

.author-links a {
  color: var(--primary);
  text-decoration: none;
}

.author-links .dot {
  margin: 0 8px;
}

/* CTA */
.cta {
  text-align: center;
  padding: 96px 32px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-radius: 36px;
}

.cta-price {
  font-size: 38px;
  font-weight: 800;
  margin: 24px 0;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.faq details {
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
}

.faq summary {
  font-weight: 700;
  cursor: pointer;
}

/* responsive */
@media (max-width: 900px) {
  h1 { font-size: 40px; }
  h2 { font-size: 24px; }
  .two-cols,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .author-panel-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
}

/* LEGAL */
.legal {
  margin-top: 120px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.legal-inner {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

.legal-inner a {
  color: var(--text-muted);
  text-decoration: none;
}

.legal-inner a:hover {
  text-decoration: underline;
}

.legal-inner .dot {
  margin: 0 10px;
}/* End custom CSS */