:root {
  --primary: #5b21b6;
  --primary-dark: #4c1d95;
  --primary-light: #ede9fe;
  --accent: #14b8a6;
  --ink: #1f2937;
  --ink-soft: #4b5563;
  --bg: #ffffff;
  --bg-soft: #f9fafb;
  --border: #e5e7eb;
  --radius: 12px;
  --shadow: 0 4px 14px rgba(0,0,0,.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: .2s transform, .2s box-shadow, .2s background;
}
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary-light); }

.badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: .8rem;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.05rem; }
.brand-mark {
  background: transparent; padding: 0; border-radius: 8px;
  font-size: .8rem; letter-spacing: .5px; display: inline-flex; align-items: center; height: 40px; overflow: hidden;
}
.brand-mark img { width: auto; height: 100%; object-fit: contain; display: block; }
.main-nav { display: flex; gap: 28px; font-weight: 600; color: var(--ink-soft); }
.main-nav a:hover { color: var(--primary); }
.header-cta { padding: 10px 20px; }

/* Hero */
.hero { padding: 80px 0; background: linear-gradient(180deg, var(--bg-soft), var(--bg)); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero h1 { font-size: 2.8rem; font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.lead { font-size: 1.15rem; color: var(--ink-soft); margin-bottom: 28px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats { display: flex; gap: 40px; }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 1.6rem; color: var(--primary); }
.hero-stats span { font-size: .85rem; color: var(--ink-soft); }

.hero-visual { display: flex; justify-content: center; position: relative; }
.hero-photo { position: absolute; inset: -20px; border-radius: 18px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.12); z-index: 1; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.mockup {
  width: 100%; max-width: 380px; background: #fff; border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.16); overflow: hidden; border: 1px solid var(--border); position: relative; z-index: 2;
}
.mockup-bar { display: flex; gap: 6px; background: var(--bg-soft); padding: 12px 14px; }
.mockup-bar span { width: 10px; height: 10px; border-radius: 50%; background: #d1d5db; }
.mockup-bar span:first-child { background: #fca5a5; }
.mockup-body { padding: 26px; }
.mockup-score { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.gauge {
  width: 80px; height: 80px; border-radius: 50%;
  background: conic-gradient(var(--accent) calc(var(--value)*1%), #e5e7eb 0);
  display: grid; place-items: center;
}
.gauge div { width: 60px; height: 60px; background: #fff; border-radius: 50%; }
.mockup-score-num { display: block; font-size: 1.4rem; font-weight: 800; color: var(--ink); }
.mockup-score-label { color: var(--ink-soft); font-size: .85rem; }
.mockup-lines { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.mockup-lines i { height: 10px; background: var(--border); border-radius: 6px; }
.mockup-lines i:nth-child(2) { width: 80%; }
.mockup-lines i:nth-child(3) { width: 65%; }
.mockup-lines i:nth-child(4) { width: 90%; }
.mockup-status { font-size: .85rem; color: var(--ink-soft); background: var(--bg-soft); padding: 10px; border-radius: 8px; }

/* Sections */
.section-head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.section-head h2 { font-size: 2rem; font-weight: 800; margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

.services, .pricing { padding: 80px 0; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 0; overflow: hidden; transition: .2s transform, .2s box-shadow; display: flex; flex-direction: column; }
.service-photo { height: 170px; overflow: hidden; }
.service-photo img { width: 100%; height: 100%; object-fit: cover; transition: .4s transform; }
.service-card:hover .service-photo img { transform: scale(1.06); }
.service-body { padding: 26px; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon { font-size: 2rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: .98rem; }

/* How */
.how { background: var(--bg-soft); padding: 80px 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; text-align: center; }
.step-num { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 800; font-size: 1.3rem; margin: 0 auto 18px; }
.step h3 { margin-bottom: 10px; font-size: 1.15rem; }
.step p { color: var(--ink-soft); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; text-align: center; position: relative; }
.plan-featured { border: 2px solid var(--primary); box-shadow: 0 10px 30px rgba(91,33,182,.12); }
.plan-tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-size: .75rem; font-weight: 700; padding: 5px 16px; border-radius: 999px; }
.plan h3 { font-size: 1.2rem; margin-bottom: 8px; }
.price { font-size: 2.4rem; font-weight: 800; color: var(--primary); margin-bottom: 24px; }
.price span { font-size: 1rem; color: var(--ink-soft); font-weight: 600; }
.plan ul { text-align: left; margin-bottom: 26px; }
.plan ul li { padding: 8px 0; border-bottom: 1px dashed var(--border); color: var(--ink-soft); }
.plan ul li::before { content: "\2713"; color: var(--accent); font-weight: 700; margin-right: 10px; }

/* Contact */
.contact { padding: 80px 0; }
.contact-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; background: var(--bg-soft); border-radius: 20px; padding: 56px; }
.contact-copy h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 16px; }
.contact-copy p { color: var(--ink-soft); margin-bottom: 20px; }
.contact-email { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--primary); font-size: 1.1rem; }
.contact-email:hover { text-decoration: underline; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; font-size: .9rem; }
.contact-form input, .contact-form textarea {
  padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px; font-family: inherit; font-size: .95rem; background: #fff;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--primary); border-color: transparent; }
.form-note { color: var(--accent); font-weight: 700; }

/* Footer */
.site-footer { background: var(--ink); color: #e5e7eb; padding: 48px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-brand p { color: #9ca3af; font-size: .9rem; margin-top: 6px; }
.footer-brand .brand-mark { height: 40px; background: transparent; }
.footer-nav { display: flex; gap: 24px; }
.footer-nav a { color: #d1d5db; }
.footer-nav a:hover { color: #fff; }
.footer-copy { color: #9ca3af; font-size: .85rem; }

/* Responsive */
@media (max-width: 860px) {
  .hero-grid, .services-grid, .steps, .pricing-grid, .contact-panel { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.1rem; }
  .main-nav { display: none; }
  .contact-panel { padding: 32px 24px; }
  .hero-stats { gap: 24px; }
  .hero-photo { position: static; margin-bottom: 20px; inset: auto; }
}
