:root {
  --bg: #f8f7ff;
  --card: #ffffff;
  --text: #101828;
  --muted: #667085;
  --primary: #6d28d9;
  --primary-2: #2563eb;
  --purple-soft: #ede9fe;
  --border: #ece7ff;
  --success: #16a34a;
  --warning: #f59e0b;
  --shadow: 0 18px 45px rgba(109, 40, 217, 0.13);
  --shadow-soft: 0 10px 30px rgba(16, 24, 40, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at 10% 10%, #f0e7ff 0, transparent 28%),
    radial-gradient(circle at 90% 0, #e8f0ff 0, transparent 30%),
    var(--bg);
  color: var(--text);
}

a { text-decoration: none; color: inherit; }

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(109, 40, 217, 0.08);
}

.nav-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-logo {
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -1px;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  color: transparent;
}

.brand-text {
  font-weight: 800;
  font-size: 15px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
  transition: 0.25s ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  padding: 12px 18px;
  font-weight: 850;
  border: 0;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  box-shadow: 0 14px 30px rgba(109, 40, 217, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(109, 40, 217, 0.34);
}

.btn-light,
.btn-glass {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  color: var(--primary);
}

.btn-white {
  background: white;
  color: var(--primary);
}

.btn.big {
  padding: 15px 24px;
  border-radius: 18px;
}

.btn.sm {
  padding: 10px 14px;
  border-radius: 12px;
}

.btn.full { width: 100%; }

.menu-btn {
  display: none;
  border: 0;
  background: white;
  border-radius: 12px;
  font-size: 24px;
  padding: 8px 12px;
  color: var(--primary);
}

.hero {
  padding: 90px 0 50px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 50px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  background: #efe9ff;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.02;
  margin: 18px 0 18px;
  letter-spacing: -2px;
}

.hero h1 span { color: var(--primary); }

.hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  max-width: 650px;
}

.search-box {
  margin-top: 28px;
  display: flex;
  gap: 10px;
  background: white;
  padding: 8px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  border-radius: 18px;
  max-width: 560px;
}

.search-box input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 14px;
  font-size: 15px;
}

.search-box button {
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  font-weight: 900;
  padding: 14px 20px;
  cursor: pointer;
}

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

.trust-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.trust-row div {
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 11px 15px;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.trust-row b { color: var(--success); }

.hero-visual {
  min-height: 540px;
  position: relative;
}

.service-cloud {
  position: relative;
  min-height: 520px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(245,241,255,0.95));
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  width: 360px;
  height: 360px;
  right: 80px;
  top: 70px;
  background: rgba(109, 40, 217, 0.16);
  filter: blur(10px);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.center-pod {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 190px;
  height: 130px;
  border-radius: 40px;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  color: white;
  box-shadow: 0 30px 80px rgba(109, 40, 217, 0.35);
}

.center-pod strong {
  display: block;
  font-size: 36px;
  letter-spacing: -1px;
}

.center-pod small {
  display: block;
  margin-top: -20px;
  font-weight: 800;
}

.floating-card {
  position: absolute;
  width: 145px;
  min-height: 120px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
  box-shadow: var(--shadow-soft);
  animation: float 4s ease-in-out infinite;
}

.floating-card p {
  margin: 8px 0 0;
  font-weight: 900;
  font-size: 13px;
  color: var(--text);
  line-height: 1.2;
}

.card-a { left: 52%; top: 8%; animation-delay: 0s; }
.card-b { right: 6%; top: 17%; animation-delay: 0.3s; }
.card-c { left: 14%; top: 28%; animation-delay: 0.6s; }
.card-d { right: 9%; bottom: 23%; animation-delay: 0.9s; }
.card-e { left: 12%; bottom: 18%; animation-delay: 1.2s; }
.card-f { left: 49%; bottom: 7%; animation-delay: 1.5s; }

.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: inline-grid;
  place-items: center;
  color: white;
  font-weight: 950;
  font-size: 20px;
}

.green { background: linear-gradient(135deg, #10b981, #059669); }
.blue { background: linear-gradient(135deg, #06b6d4, #2563eb); }
.dark { background: linear-gradient(135deg, #111827, #000000); }
.red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.lime { background: linear-gradient(135deg, #84cc16, #22c55e); }

.section { padding: 75px 0; }

.soft-section {
  background: rgba(255, 255, 255, 0.58);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-head.centered {
  justify-content: center;
  text-align: center;
}

.section-head h2 {
  margin: 12px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -1px;
}

.section-head a {
  color: var(--primary);
  font-weight: 900;
}

.deal-banner {
  margin-top: -10px;
  border-radius: 28px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  gap: 22px;
  align-items: center;
  background: radial-gradient(circle at 15% 15%, rgba(255,255,255,0.26), transparent 30%), linear-gradient(135deg, #6d28d9, #2563eb);
  color: white;
  box-shadow: var(--shadow);
}

.deal-label {
  display: inline-flex;
  background: rgba(255,255,255,0.18);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
}

.deal-banner h2 { margin: 12px 0 8px; }

.deal-banner p {
  margin: 0;
  color: rgba(255,255,255,0.8);
}

.countdown {
  display: flex;
  gap: 10px;
}

.countdown div {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px 14px;
  border-radius: 16px;
  text-align: center;
  min-width: 70px;
}

.countdown strong {
  display: block;
  font-size: 24px;
}

.countdown span {
  font-size: 11px;
  opacity: 0.8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.service-card:hover,
.market-card:hover,
.why-card:hover,
.review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin: 14px 0 6px;
  font-size: 16px;
}

.service-card p {
  color: var(--primary);
  margin: 0 0 8px;
  font-weight: 900;
}

.service-card small {
  display: block;
  color: var(--success);
  font-weight: 800;
  margin-bottom: 18px;
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8ccff;
  color: var(--primary);
  font-weight: 900;
  border-radius: 12px;
  padding: 10px 14px;
  background: white;
  transition: 0.25s ease;
}

.outline-btn:hover { background: var(--purple-soft); }

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

.market-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.theme-thumb {
  height: 150px;
  position: relative;
  color: white;
  font-size: 28px;
  font-weight: 950;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-thumb span {
  position: absolute;
  right: 12px;
  top: 12px;
  background: #22c55e;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.thumb-avada { background: linear-gradient(135deg, #051b13, #16a34a); }
.thumb-porto { background: linear-gradient(135deg, #111827, #334155); }
.thumb-seven { background: linear-gradient(135deg, #0f172a, #7c3aed); }
.thumb-wood { background: linear-gradient(135deg, #3f6212, #84cc16); }

.market-body { padding: 18px; }

.market-body h3 {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.35;
}

.market-body p {
  display: flex;
  align-items: center;
  gap: 12px;
}

.market-body b {
  color: var(--primary);
  font-size: 18px;
}

.market-body del { color: var(--muted); }

.market-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

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

.step {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.step span {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  border-radius: 50%;
  font-weight: 950;
}

.step p {
  color: var(--muted);
  line-height: 1.6;
}

.request-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #f3efff, #ffffff);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.request-strip h2 { margin: 12px 0 10px; }

.request-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.why-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card,
.review-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.why-card span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--purple-soft);
  color: var(--primary);
  font-size: 24px;
}

.why-card p,
.review-card p {
  color: var(--muted);
  line-height: 1.65;
}

.review-user {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  font-weight: 950;
}

.review-card span {
  color: var(--warning);
  font-weight: 900;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

details {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  color: var(--muted);
  line-height: 1.7;
}

.live-toast {
  position: fixed;
  left: 24px;
  bottom: 28px;
  z-index: 110;
  width: 320px;
  background: rgba(17, 24, 39, 0.96);
  color: white;
  border-radius: 20px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transform: translateY(120px);
  opacity: 0;
  transition: 0.45s ease;
}

.live-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-weight: 950;
}

.live-toast p {
  margin: 4px 0 0;
  color: rgba(255,255,255,0.75);
}

.chat-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 0;
  background: #22c55e;
  color: white;
  font-size: 26px;
  box-shadow: 0 16px 40px rgba(34, 197, 94, 0.35);
  cursor: pointer;
}

.chat-widget {
  position: fixed;
  right: 24px;
  bottom: 100px;
  width: 330px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  z-index: 120;
  overflow: hidden;
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.chat-widget.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.chat-close {
  position: absolute;
  right: 14px;
  top: 12px;
  border: 0;
  background: transparent;
  color: white;
  font-size: 22px;
  cursor: pointer;
}

.chat-head {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  padding: 20px;
}

.chat-head span {
  display: block;
  font-weight: 950;
}

.chat-head small { opacity: 0.85; }

.chat-body { padding: 20px; }

.chat-body p {
  color: var(--muted);
  line-height: 1.6;
}

.footer {
  background: white;
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer a {
  display: block;
  color: var(--muted);
  margin: 10px 0;
  font-weight: 800;
}

.footer p {
  color: var(--muted);
  max-width: 420px;
  line-height: 1.65;
}

.footer-bottom {
  text-align: center;
  color: var(--muted);
  margin-top: 35px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.08); opacity: 1; }
}

@media (max-width: 1100px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .market-grid,
  .why-grid,
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .deal-banner { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .menu-btn { display: inline-flex; }

  .nav-links {
    position: fixed;
    right: 18px;
    top: 90px;
    width: min(320px, calc(100vw - 36px));
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 18px;
    display: grid;
    gap: 6px;
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 12px;
    border-radius: 14px;
  }

  .nav-actions .btn { display: none; }

  .hero { padding-top: 55px; }

  .hero-grid { grid-template-columns: 1fr; }

  .hero-visual { min-height: 430px; }

  .service-cloud { min-height: 420px; }

  .floating-card {
    width: 120px;
    min-height: 105px;
  }

  .service-grid,
  .market-grid,
  .steps,
  .why-grid,
  .reviews-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .request-strip { grid-template-columns: 1fr; }

  .countdown { flex-wrap: wrap; }

  .chat-widget {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 90px;
  }

  .live-toast {
    width: calc(100vw - 32px);
    left: 16px;
    bottom: 18px;
  }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1180px); }

  .nav-inner { height: 70px; }

  .brand-logo { font-size: 26px; }

  .search-box { display: grid; }

  .search-box input { min-height: 48px; }

  .hero-actions { display: grid; }

  .btn.big { width: 100%; }

  .hero-visual { min-height: 380px; }

  .service-cloud { min-height: 380px; }

  .floating-card {
    width: 106px;
    min-height: 92px;
    border-radius: 18px;
    padding: 10px;
  }

  .floating-card p { font-size: 11px; }

  .service-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 15px;
  }

  .center-pod {
    width: 145px;
    height: 100px;
    border-radius: 30px;
  }

  .center-pod strong { font-size: 30px; }

  .card-a { left: 48%; top: 6%; }
  .card-b { right: 4%; top: 25%; }
  .card-c { left: 4%; top: 24%; }
  .card-d { right: 6%; bottom: 20%; }
  .card-e { left: 7%; bottom: 18%; }
  .card-f { left: 46%; bottom: 4%; }

  .section { padding: 55px 0; }

  .deal-banner { padding: 22px; }

  .countdown div {
    min-width: 62px;
    padding: 10px;
  }

  .market-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
