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

:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --text: #111318;
  --muted: #646b78;
  --line: #e7eaf0;
  --primary: #1f6fff;
  --primary-dark: #1557cf;
  --accent: #8b5cf6;
  --dark: #0f1726;
  --success: #18b26b;
  --shadow: 0 20px 60px rgba(15, 23, 38, 0.08);
  --radius: 28px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 247, 251, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231, 234, 240, 0.8);
}

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

.brand {
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a,
.site-footer a {
  color: var(--muted);
  text-decoration: none;
  transition: 0.2s ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--text);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
}

.nav-cta {
  background: var(--dark);
  color: white;
  padding: 12px 18px;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.hero {
  padding: 72px 0 56px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(31,111,255,0.12), transparent 28%), radial-gradient(circle at 85% 15%, rgba(139,92,246,0.12), transparent 24%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.eyebrow.light {
  color: #8fb3ff;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.3rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-text,
.section-heading p,
.card p,
.step p,
.price-card p,
.split-callout p,
.contact-grid p,
.mock-body p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 20px;
}

.btn {
  padding: 14px 22px;
  border: 1px solid transparent;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: white;
  border-color: var(--line);
  color: var(--text);
}

.btn-dark {
  background: var(--dark);
  color: white;
  border: 0;
  cursor: pointer;
}

.hero-points {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-points span {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.92rem;
  color: var(--muted);
}

.hero-card,
.card,
.price-card,
.contact-card,
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 18px;
}

.mock-window {
  border-radius: 22px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
}

.mock-top {
  padding: 14px;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}

.mock-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d6dae3;
}

.mock-body {
  padding: 22px;
}

.stat-block {
  padding: 22px;
  background: linear-gradient(135deg, #1f6fff, #7ca7ff);
  border-radius: 24px;
  color: white;
  margin-bottom: 18px;
}

.stat-block p {
  color: rgba(255,255,255,0.88);
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.stat-row > div,
.mock-site-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
}

.stat-row h3 {
  margin-bottom: 4px;
}

.mock-image {
  height: 160px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0f1726, #2a3550);
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}

.mock-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.16), transparent 30%), radial-gradient(circle at 70% 70%, rgba(31,111,255,0.6), transparent 35%);
}

.mock-lines span {
  display: block;
  height: 10px;
  background: #edf1f6;
  border-radius: 999px;
  margin-bottom: 10px;
}

.mock-lines .short {
  width: 55%;
}

.trust-strip {
  padding-bottom: 12px;
}

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

.trust-grid div {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
  padding: 16px 12px;
  font-weight: 600;
  color: var(--muted);
}

.results-band {
  padding: 12px 0 26px;
}

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

.results-grid > div {
  background: linear-gradient(180deg, #ffffff, #f8faff);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.results-grid strong {
  display: block;
  margin-bottom: 6px;
}

.results-grid p {
  color: var(--muted);
}

.section {
  padding: 88px 0;
}

.section.muted {
  background: #f0f3f8;
}

.portfolio-section {
  background: white;
}

.portfolio-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.portfolio-card,
.quote-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.portfolio-art {
  height: 190px;
  border-radius: 22px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}

.art-salon {
  background: linear-gradient(135deg, #ffefe5, #ffd4c0 45%, #f6b38f);
}

.art-trade {
  background: linear-gradient(135deg, #dff4ff, #abd8ff 50%, #72b7ff);
}

.art-coach {
  background: linear-gradient(135deg, #ece7ff, #d0c4ff 45%, #a78bfa);
}

.portfolio-art::after {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.55);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
}

.testimonials-section {
  background: #f8faff;
}

.quote-card {
  font-size: 1.05rem;
  color: var(--text);
}

.quote-card p {
  color: var(--text);
}

.section.dark {
  background: var(--dark);
  color: white;
}

.section.dark p,
.section.dark h2 {
  color: white;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.left {
  margin-bottom: 26px;
}

.cards.three-up,
.pricing-grid,
.steps,
.contact-grid {
  display: grid;
  gap: 22px;
}

.cards.three-up,
.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.price-card,
.step,
.contact-card {
  padding: 28px;
  position: relative;
}

.card ul {
  list-style: none;
  margin-top: 18px;
}

.card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.featured {
  background: linear-gradient(180deg, #ffffff, #f5f8ff);
  border-color: #cfe0ff;
}

.badge {
  position: absolute;
  right: 20px;
  top: 20px;
  background: #e8f0ff;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
}

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

.step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--primary);
  background: #edf4ff;
  margin-bottom: 18px;
}

.pricing-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: start;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}

.split-callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.contact-points {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.contact-card h3 {
  margin-bottom: 14px;
}

.contact-card label {
  display: block;
  font-weight: 600;
  margin-bottom: 14px;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  resize: vertical;
}

.contact-card input:focus,
.contact-card textarea:focus {
  outline: 2px solid #d8e6ff;
  border-color: #a9c7ff;
}

.hidden-field {
  display: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 40px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .pricing-wrap,
  .split-callout,
  .contact-grid,
  .cards.three-up,
  .pricing-grid,
  .steps,
  .trust-grid,
  .results-grid,
  .portfolio-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 42px;
  }

  .nav {
    min-height: 70px;
  }

  .nav-cta {
    display: none;
  }

  .hero-actions,
  .hero-points,
  .footer-row,
  .stat-row {
    flex-direction: column;
    display: flex;
  }

  .btn {
    width: 100%;
  }

  .card,
  .price-card,
  .step,
  .contact-card,
  .hero-card {
    padding: 22px;
  }
}