:root {
  --purple: #4b19b8;
  --purple-dark: #24105b;
  --purple-900: #151033;
  --gold: #ffb000;
  --orange: #ff7a00;
  --blue-soft: #f4f1ff;
  --soft: #fbfaff;
  --white: #ffffff;
  --text: #211b3f;
  --muted: #6f6887;
  --line: rgba(75, 25, 184, 0.12);
  --shadow: 0 18px 46px rgba(35, 16, 91, 0.14);
  --shadow-soft: 0 10px 24px rgba(35, 16, 91, 0.08);
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--soft);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, 92%); margin: 0 auto; }
.center { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(75, 25, 184, 0.08);
}
.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 86px; height: 64px; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 800;
  color: #251b48;
}
.nav-links a { position: relative; padding: 8px 0; }
.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 3px;
  border-radius: 99px;
  background: var(--gold);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-header,
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  box-shadow: 0 16px 36px rgba(75, 25, 184, 0.25);
}
.btn-header { border-radius: 999px; padding-inline: 20px; }
.btn-header::before,
.btn-primary::before,
.btn-gold::before {
  content: "◉";
  font-size: 10px;
}
.btn-secondary {
  background: #fff;
  color: var(--purple);
  border: 1px solid rgba(75, 25, 184, 0.22);
}
.btn-secondary::after,
.with-arrow::after {
  content: "→";
  font-size: 22px;
  line-height: 1;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #24105b;
  box-shadow: 0 16px 36px rgba(255, 122, 0, 0.24);
}

.section-bg {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(75, 25, 184, 0.06), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(255, 176, 0, 0.13), transparent 23%),
    linear-gradient(180deg, #ffffff 0%, #f7f4ff 100%);
}
.section-bg::before,
.section-bg::after,
.portfolio::after,
.plans::after {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M32 78c17 2 25-8 25-23 0-15 10-28 26-28 13 0 23 10 23 23 0 15-5 27 8 35' fill='none' stroke='%234b19b8' stroke-opacity='.11' stroke-width='5' stroke-linecap='round'/%3E%3Ccircle cx='78' cy='44' r='5' fill='%234b19b8' fill-opacity='.11'/%3E%3C/svg%3E");
  width: 240px;
  height: 240px;
  pointer-events: none;
  opacity: 0.8;
}
.section-bg::before { left: 44%; top: 150px; }
.section-bg::after { right: 18px; bottom: 34px; }

.hero { padding: 50px 0 46px; }
.hero-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 9px 16px;
  border-radius: 999px;
  background: #fff0c9;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
h1 {
  max-width: 620px;
  font-size: clamp(42px, 5.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -2.2px;
  color: #211b59;
  margin-bottom: 24px;
}
h1 span { color: var(--gold); }
.hero-punch {
  display: block;
  width: max-content;
  margin-top: 6px;
  color: var(--purple) !important;
  font-family: "Anton", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(72px, 9vw, 112px);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 8px 0 rgba(255, 176, 0, 0.24);
}
.hero-copy p {
  max-width: 560px;
  color: #5f587a;
  font-size: 18px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.trust-row { display: flex; gap: 14px; align-items: center; color: #645d7b; font-size: 14px; }
.avatars { display: flex; }
.avatars span {
  width: 34px;
  height: 34px;
  border: 2px solid #fff;
  margin-left: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  box-shadow: 0 6px 14px rgba(35, 16, 91, 0.16);
}
.avatars span:first-child { margin-left: 0; }
.avatars span:nth-child(2) { background: linear-gradient(135deg, #ff7a00, #ffd15d); }
.avatars span:nth-child(3) { background: linear-gradient(135deg, #2b8cff, #b7dbff); }
.avatars span:nth-child(4) { background: linear-gradient(135deg, #1c985f, #b5ffe1); }
.avatars span:nth-child(5) { background: linear-gradient(135deg, #251b48, #d8ccff); }
.stars { color: var(--gold); font-weight: 900; }
.stars small { color: #645d7b; font-weight: 700; margin-left: 6px; }

.hero-visual {
  min-height: 600px;
  position: relative;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 42px 8px 34px 18px;
  border: 2px dashed rgba(75, 25, 184, 0.20);
  border-radius: 48%;
  transform: rotate(-12deg);
}
.hero-logo-card {
  width: 198px;
  height: 198px;
  position: absolute;
  left: 50%;
  top: 39%;
  transform: translate(-50%, -50%);
  border-radius: 34px;
  z-index: 5;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  box-shadow: 0 26px 60px rgba(35, 16, 91, 0.24);
}
.hero-logo-card img { width: 160px; height: 160px; object-fit: contain; border-radius: 26px; }
.floating-work {
  position: absolute;
  width: 218px;
  height: 218px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  border: 7px solid #fff;
}
.floating-work img { width: 100%; height: 100%; object-fit: cover; background: #fff; }
.print-left img,
.print-center img,
.print-right img { object-position: center; }
.work-1 { left: 0; top: 10px; transform: rotate(-6deg); }
.work-2 { right: 0; top: 56px; transform: rotate(6deg); }
.work-3 { left: 8px; bottom: 78px; width: 208px; height: 208px; transform: rotate(-4deg); }
.work-4 { right: 8px; bottom: 78px; width: 208px; height: 208px; transform: rotate(4deg); }
.work-5 { left: 50%; bottom: 10px; width: 206px; height: 206px; z-index: 4; transform: translateX(-50%) rotate(0deg); }
.reaction {
  position: absolute;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 22px rgba(35, 16, 91, 0.14);
}
.heart { right: 214px; top: 26px; color: #ff3f72; }
.like { left: 10px; top: 260px; }
.emoji { right: 0; top: 260px; }

.value-strip {
  padding: 34px 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 176, 0, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f9f7ff 100%);
  border-top: 1px solid rgba(75, 25, 184, 0.08);
  border-bottom: 1px solid rgba(75, 25, 184, 0.08);
}
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  align-items: start;
  background: #fff;
  border: 1px solid rgba(75, 25, 184, 0.16);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 16px 34px rgba(35, 16, 91, 0.10);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.value-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--purple), var(--gold));
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(35, 16, 91, 0.14);
}
.value-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--purple);
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(75, 25, 184, 0.22);
}
.value-icon.orange {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 12px 24px rgba(255, 122, 0, 0.22);
}
.value-card h3 { font-size: 16px; color: var(--purple-dark); margin-bottom: 6px; }
.value-card p { color: var(--muted); font-size: 13.5px; }

.section { padding: 72px 0; position: relative; }
.section-title { max-width: 760px; margin: 0 auto 44px; }
.tight-title { margin-bottom: 30px; }
.kicker {
  display: inline-block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.section-title h2 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
  color: var(--purple);
  letter-spacing: -1.6px;
  margin-bottom: 12px;
}
.section-title p { color: var(--muted); font-size: 16px; }
.plan-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.plan-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
  background: #efe8ff;
  color: var(--purple);
  font-size: 25px;
  font-weight: 900;
}
.plan-card h3 { color: var(--purple-dark); font-size: 18px; margin-bottom: 8px; }
.plan-card p { color: var(--muted); }

.portfolio {
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f9f7ff 100%);
}
.portfolio::after { right: 24px; bottom: 40px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.portfolio-card {
  overflow: hidden;
  border-radius: 9px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.portfolio-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.portfolio-card img { width: 100%; aspect-ratio: 1; object-fit: contain; object-position: center; background: #fff; }
.portfolio-card div { padding: 14px 12px 16px; text-align: center; }
.portfolio-card h3 { font-size: 15px; color: var(--purple-dark); margin-bottom: 4px; }
.portfolio-card p { font-size: 12.5px; color: var(--muted); }
.portfolio-cta { margin-top: 28px; }

.plans { background: #fff; overflow: hidden; padding-top: 44px; }
.plans::after { right: 20px; bottom: 50px; opacity: 0.5; }
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.plan-card { position: relative; display: flex; flex-direction: column; min-height: 430px; padding: 26px 22px; border-radius: 9px; }
.plan-card.featured { border: 2px solid var(--purple); transform: translateY(-8px); box-shadow: var(--shadow); }
.popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.plan-icon.orange { background: #fff0d5; color: var(--orange); }
.price { color: var(--purple); font-size: 28px; font-weight: 900; margin: 14px 0; }
.custom-price { color: var(--purple); font-size: 22px; }
.price span { color: var(--muted); font-size: 13px; }
.plan-card ul { list-style: none; display: grid; gap: 10px; margin: 0 0 24px; color: var(--muted); font-size: 14px; }
.plan-card li::before { content: "•"; color: var(--purple); font-weight: 900; margin-right: 8px; }
.plan-card .btn { margin-top: auto; width: 100%; }
.btn-plan { border: 1px solid var(--purple); color: var(--purple); background: #fff; }
.btn-plan.orange { border-color: var(--orange); color: var(--orange); }

.final-cta { padding: 42px 0 30px; background: #fff; }
.cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: center;
  padding: 34px 52px;
  border-radius: 14px;
  color: #fff;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M32 78c17 2 25-8 25-23 0-15 10-28 26-28 13 0 23 10 23 23 0 15-5 27 8 35' fill='none' stroke='%23ffffff' stroke-opacity='.08' stroke-width='5' stroke-linecap='round'/%3E%3Ccircle cx='78' cy='44' r='5' fill='%23ffffff' fill-opacity='.08'/%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--purple), var(--purple-dark));
  box-shadow: var(--shadow);
}
.cta-card h2 { font-size: clamp(26px, 4vw, 34px); line-height: 1.08; letter-spacing: -0.6px; margin-bottom: 12px; }
.cta-card h2 span { color: var(--gold); }
.cta-card p { max-width: 620px; color: #ded7ff; }
.cta-action { display: grid; gap: 10px; justify-items: center; border-left: 1px solid rgba(255,255,255,0.24); padding-left: 42px; }
.cta-action small { color: #ede8ff; }

.site-footer { padding: 28px 0; background: #fff; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 180px 1fr auto; align-items: center; gap: 24px; color: var(--muted); font-size: 13px; }
.footer-grid img { width: 138px; }
.socials { display: flex; gap: 16px; font-weight: 800; color: var(--purple); }

@media (max-width: 1100px) {
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .plans-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 610px; }
  .cta-card { grid-template-columns: 1fr; text-align: center; }
  .cta-action { border-left: 0; padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

@media (max-width: 640px) {
  .nav { height: 74px; }
  .brand img { width: 76px; height: 58px; }
  .btn-header { padding: 11px 15px; }
  .hero { padding: 52px 0 44px; }
  h1 { letter-spacing: -2px; }
  .hero-punch { font-size: clamp(62px, 19vw, 86px); }
  .trust-row { align-items: flex-start; }
  .hero-visual { min-height: 610px; }
  .hero-logo-card { width: 150px; height: 150px; top: 34%; }
  .hero-logo-card img { width: 118px; height: 118px; object-fit: contain; }
  .floating-work { width: 154px; height: 154px; border-width: 6px; }
  .work-1 { left: 0; top: 20px; }
  .work-2 { right: 0; top: 92px; }
  .work-3 { left: 0; bottom: 158px; width: 150px; height: 150px; }
  .work-4 { right: 0; bottom: 132px; width: 150px; height: 150px; }
  .work-5 { left: 50%; bottom: 18px; width: 152px; height: 152px; transform: translateX(-50%) rotate(0deg); }
  .value-grid, .plans-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .portfolio-card img { aspect-ratio: 1; }
  .cta-card { padding: 34px 24px; }
}
