@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --purple: #8A2FFF;
  --purple-dark: #5D15D6;
  --purple-soft: #B66DFF;
  --black: #111111;
  --text: #2B2B2B;
  --muted: #6E6E78;
  --line: #E9E5F4;
  --surface: #FFFFFF;
  --surface-soft: #F8F6FC;
  --shadow: 0 24px 70px rgba(28, 16, 48, 0.12);
  --radius: 28px;
}

* {
  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:
    radial-gradient(circle at 80% 0%, rgba(138, 47, 255, 0.10), transparent 32%),
    linear-gradient(180deg, #FFFFFF 0%, #FBFAFE 100%);
}

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

.site-header {
  width: min(1180px, calc(100% - 36px));
  margin: 18px auto 0;
  padding: 14px 18px;
  position: sticky;
  top: 14px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(138, 47, 255, 0.10);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 14px 45px rgba(40, 26, 70, 0.08);
}

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

.brand-mark {
  width: 7px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--purple), var(--purple-dark));
  display: inline-block;
}

.brand strong {
  display: block;
  color: var(--black);
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  color: #3D3944;
  font-size: 0.92rem;
  border-radius: 999px;
  transition: 0.2s ease;
}

.site-nav a:hover {
  color: var(--purple);
  background: rgba(138, 47, 255, 0.08);
}

.site-nav .nav-cta {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 12px 30px rgba(138, 47, 255, 0.25);
}

.site-nav .nav-cta:hover {
  color: #fff;
  background: var(--purple-dark);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--black);
  border-radius: 999px;
}

.hero {
  width: min(1240px, calc(100% - 36px));
  margin: 52px auto 0;
  min-height: 650px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 30px;
}

.hero-content {
  position: relative;
  padding-left: 34px;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 330px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--purple), var(--purple-dark));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  color: var(--black);
  font-size: clamp(2.6rem, 5.2vw, 5.45rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}

.hero-lead {
  max-width: 570px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.22s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
  box-shadow: 0 18px 36px rgba(138, 47, 255, 0.26);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(138, 47, 255, 0.32);
}

.btn.secondary {
  background: #fff;
  color: var(--black);
  border-color: var(--line);
}

.btn.secondary:hover {
  border-color: rgba(138, 47, 255, 0.35);
  color: var(--purple);
}

.btn.full {
  width: 100%;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-meta span {
  padding: 9px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #59555F;
  font-size: 0.9rem;
}

.hero-card {
  min-height: 590px;
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at 28% 10%, rgba(255,255,255,0.30), transparent 22%),
    linear-gradient(145deg, #B66DFF 0%, #8A2FFF 45%, #5D15D6 100%);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  left: -260px;
  top: -100px;
  width: 535px;
  height: 810px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 0 100% 100% 0 / 0 50% 50% 0;
  filter: blur(0.2px);
}

.circle-panel {
  position: relative;
  z-index: 2;
  min-height: 590px;
  margin-left: clamp(255px, 43%, 300px);
  padding: 78px 42px 58px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list.large {
  width: min(100%, 300px);
}

.check-list.large li {
  position: relative;
  color: #fff;
  font-size: clamp(1.35rem, 1.85vw, 1.95rem);
  line-height: 1.12;
  font-weight: 500;
  margin-bottom: 28px;
  padding-left: 46px;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.check-list.large li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 1em;
  font-weight: 500;
}

.circle-contact {
  margin-top: 40px;
  display: grid;
  gap: 12px;
  width: min(100%, 300px);
}

.circle-contact a {
  color: rgba(255,255,255,0.96);
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  text-align: left;
  white-space: nowrap;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 96px auto 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.section-heading.compact {
  margin-bottom: 0;
}

h2 {
  color: var(--black);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  margin-bottom: 16px;
}

.section-heading p,
.why-grid p,
.service-card p,
.contact-panel p {
  color: var(--muted);
  line-height: 1.7;
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 14px 45px rgba(40, 26, 70, 0.05);
  transition: 0.22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(138, 47, 255, 0.26);
  box-shadow: 0 22px 52px rgba(40, 26, 70, 0.10);
}

.service-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(138, 47, 255, 0.10);
  color: var(--purple);
  font-weight: 800;
  margin-bottom: 20px;
}

.service-card h3,
.why-grid h3 {
  color: var(--black);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
  background: linear-gradient(135deg, #fff, #F8F5FF);
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow);
}

.pricing-card {
  background: #fff;
  border-radius: 28px;
  padding: 18px;
  border: 1px solid rgba(138, 47, 255, 0.10);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 14px;
  border-bottom: 1px solid #EFEAF8;
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span {
  color: #47424D;
}

.price-row strong {
  color: var(--black);
  white-space: nowrap;
}

.why-section {
  background: #111;
  color: #fff;
  border-radius: 38px;
  padding: clamp(28px, 5vw, 56px);
  overflow: hidden;
  position: relative;
}

.why-section::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138,47,255,0.9), transparent 68%);
}

.why-section h2,
.why-section h3 {
  color: #fff;
}

.why-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-grid div {
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 24px;
  background: rgba(255,255,255,0.045);
}

.why-grid p {
  color: rgba(255,255,255,0.68);
}

.contact-section {
  margin-bottom: 60px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow);
}

.contact-links {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}

.contact-links a,
.contact-links span {
  color: var(--black);
  font-weight: 700;
}

.contact-links a:hover {
  color: var(--purple);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: #27232F;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #E4DDEC;
  background: #FCFBFE;
  color: var(--black);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  outline: none;
  transition: 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(138, 47, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(138, 47, 255, 0.10);
  background: #fff;
}

.checkbox-label {
  grid-template-columns: 18px 1fr !important;
  align-items: start;
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 500 !important;
  color: var(--muted) !important;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-note {
  font-size: 0.86rem;
  margin: 0;
  color: var(--muted);
}

.contact-form button:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none !important;
}

.form-status {
  padding: 12px 14px;
  border-radius: 14px;
  background: #F7F4FF;
}


.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 24px;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px;
}

.site-footer p {
  margin: 4px 0 0;
  color: var(--muted);
}

.footer-links,
.footer-socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a,
.footer-socials a {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links a:hover,
.footer-socials a:hover {
  color: var(--purple);
}

.legal-main {
  width: min(900px, calc(100% - 36px));
  margin: 64px auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(24px, 5vw, 56px);
  box-shadow: var(--shadow);
}

.legal-main h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.legal-main h2 {
  font-size: 1.45rem;
  margin-top: 34px;
  letter-spacing: -0.03em;
}

.legal-main p,
.legal-main li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-main a {
  color: var(--purple);
  font-weight: 700;
}

.back-link {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--purple);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    min-height: 520px;
  }

  .hero-card::before {
    left: -265px;
    width: 520px;
  }

  .circle-panel {
    margin-left: clamp(230px, 41%, 280px);
    padding-right: 30px;
  }

  .check-list.large li {
    font-size: clamp(1.25rem, 2.35vw, 1.65rem);
    padding-left: 42px;
    margin-bottom: 24px;
  }

  .circle-contact a {
    font-size: 0.78rem;
  }

  .services-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    border-radius: 24px;
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    display: block;
  }

  .hero {
    margin-top: 34px;
  }

  .hero-content {
    padding-left: 22px;
  }

  .hero-content::before {
    width: 5px;
    height: 275px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 4.2rem);
  }

  .hero-card {
    border-radius: 30px;
    min-height: 560px;
  }

  .hero-card::before {
    left: -250px;
    width: 430px;
  }

  .circle-panel {
    margin-left: 165px;
    padding-right: 18px;
  }

  .check-list.large li {
    font-size: clamp(1.02rem, 5.2vw, 1.42rem);
    padding-left: 34px;
    margin-bottom: 22px;
  }

  .circle-contact a {
    font-size: 0.82rem;
  }

  .services-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .site-footer {
    margin-bottom: 18px;
  }
}

@media (max-width: 420px) {
  .brand strong {
    font-size: 0.86rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  .hero-card::before {
    display: none;
  }

  .circle-panel {
    margin-left: 0;
    padding: 54px 24px;
  }

  .check-list.large li {
    font-size: clamp(1.25rem, 7.2vw, 1.75rem);
    padding-left: 40px;
  }

  .circle-contact a {
    text-align: left;
  }
}


.footer-socials:empty {
  display: none;
}
