:root {
  --bg-dark: #071121;
  --bg-darker: #050b16;
  --purple: #6426e8;
  --purple-2: #8b5cf6;
  --green: #7ee83f;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e5e7eb;
  --soft: #f8fafc;
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(15, 23, 42, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  height: 42px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 32px;
  font-weight: 700;
  font-size: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple), #4c1d95);
  color: white;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(100, 38, 232, .28);
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-small {
  min-height: 42px;
  padding: 0 20px;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, .6);
  box-shadow: none;
}

.hero .btn-outline {
  color: white;
}

.hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(100, 38, 232, .48), transparent 32%),
    linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
  color: white;
  overflow: hidden;
}

.hero-grid {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 70px 0;
}

.eyebrow {
  color: var(--green);
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 14px;
}

.hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(52px, 7vw, 84px);
  line-height: .95;
  letter-spacing: -3px;
}

.hero h1 span {
  color: var(--purple-2);
}

.hero h2 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.15;
}

.hero-text {
  max-width: 540px;
  color: #d8dee9;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.trust-row {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 34px;
  color: #e5e7eb;
  font-size: 14px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.mockup-card {
  width: min(440px, 100%);
  background: white;
  color: var(--text);
  border-radius: 34px;
  padding: 18px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.mockup-top {
  height: 24px;
  border-radius: 18px;
  background: #eef2ff;
  margin-bottom: 18px;
}

.mockup-content {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
}

.mockup-title {
  font-weight: 900;
  margin-top: 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stats div {
  background: var(--soft);
  padding: 14px;
  border-radius: 16px;
}

.stats small {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.green {
  color: #16a34a;
}

.red {
  color: #dc2626;
}

.chart {
  width: 180px;
  height: 180px;
  margin: 30px auto;
  border-radius: 50%;
  background: conic-gradient(#6426e8 0 38%, #8b5cf6 38% 60%, #22c55e 60% 78%, #f59e0b 78% 100%);
  position: relative;
}

.chart::after {
  content: "$18,420";
  position: absolute;
  inset: 45px;
  border-radius: 50%;
  background: white;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.bars {
  height: 110px;
  display: flex;
  align-items: end;
  gap: 12px;
}

.bars span {
  flex: 1;
  display: block;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, var(--purple-2), var(--purple));
}

.section {
  padding: 74px 0;
}

.center {
  text-align: center;
}

.section h2,
.cta-section h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  margin: 0 0 16px;
}

.section-lead {
  max-width: 760px;
  margin: 0 auto 44px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.cards {
  display: grid;
  gap: 24px;
}

.cards.five {
  grid-template-columns: repeat(5, 1fr);
}

.card {
  padding: 24px 16px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
}

.icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 28px;
  background: #ecfdf5;
}

.card h3 {
  margin: 0 0 8px;
}

.card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.section-split {
  background: var(--soft);
}

.split-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.image-placeholder {
  min-height: 390px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(100, 38, 232, .12), rgba(126, 232, 63, .10)),
    #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.phone-placeholder {
  width: 230px;
  height: 360px;
  border-radius: 38px;
  background: white;
  border: 10px solid #111827;
  display: grid;
  place-items: center;
  transform: rotate(-7deg);
}

.circle-chart {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: conic-gradient(#6426e8 0 42%, #22c55e 42% 66%, #f59e0b 66% 100%);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
}

.feature-list {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.feature {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.feature span {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #ede9fe;
  color: var(--purple);
  font-weight: 900;
  font-size: 24px;
}

.feature h3 {
  margin: 0 0 6px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.price-section {
  padding: 34px 0;
}

.price-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 36px 48px;
  border-radius: 26px;
  color: white;
  background: linear-gradient(135deg, #071121, #0f172a);
  box-shadow: var(--shadow);
}

.price-label {
  color: white;
  font-weight: 800;
  margin: 0 0 8px;
}

.price {
  color: var(--green);
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 950;
  line-height: 1;
}

.price span {
  color: white;
  font-size: 22px;
  font-weight: 500;
}

.price-box p {
  color: #d1d5db;
}

.price-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.price-box li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 10px;
}

.badge {
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: var(--green);
  color: #071121;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 950;
  padding: 20px;
}

.cta-section {
  padding-top: 44px;
}

.cta-section p {
  color: var(--muted);
  font-size: 18px;
}

.center-actions {
  justify-content: center;
}

.cta-section .btn-outline {
  border-color: var(--purple);
  color: var(--text);
}

.footer {
  background: #071121;
  color: white;
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.footer strong {
  font-size: 32px;
  letter-spacing: 2px;
}

.footer span {
  color: #cbd5e1;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .price-box {
    grid-template-columns: 1fr;
  }

  .cards.five {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    min-height: auto;
    padding: 54px 0;
  }

  .price-box {
    text-align: center;
  }

  .price-box ul {
    justify-content: center;
  }

  .badge {
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    height: 66px;
  }

  .brand {
    font-size: 25px;
  }

  .header-inner .btn-small {
    display: none;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

  .hero-actions,
  .trust-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .cards.five {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 0;
  }

  .price-box {
    padding: 28px 22px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
.phone-image{
    width:540px;
    max-width: 100%;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
