:root {
  --bg: #f6f4f8;
  --surface: #ffffff;
  --surface-alt: #efe9f7;
  --text: #18151d;
  --muted: #635a6f;
  --primary: #4a1f78;
  --primary-dark: #341153;
  --line: #e3dae9;
  --shadow: 0 12px 36px rgba(42, 19, 68, 0.12);
  --radius: 22px;
}

* { 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(--bg);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 244, 248, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(74, 31, 120, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-logo {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.brand-name {
  font-weight: 800;
  font-size: 1.2rem;
}
.brand-sub {
  color: var(--muted);
  font-size: 0.92rem;
}
.nav {
  display: flex;
  gap: 24px;
}
.nav a {
  font-weight: 600;
  color: var(--muted);
}
.nav a:hover { color: var(--primary); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 28px rgba(74, 31, 120, .28);
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline {
  border: 1px solid rgba(74, 31, 120, .2);
  color: var(--primary);
  background: #fff;
}
.btn-small { padding: 11px 18px; font-size: 0.95rem; }
.btn-full { width: 100%; }
.hero {
  padding: 72px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}
.hero-copy, .hero-card, .card, .contact-form, .info-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-copy {
  padding: 42px;
  background:
    radial-gradient(circle at top right, rgba(97, 45, 153, .12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,1), rgba(250,248,252,1));
}
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(74, 31, 120, .08);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.84rem;
}
h1, h2, h3 {
  line-height: 1.1;
  margin: 0 0 16px;
}
h1 { font-size: clamp(2.2rem, 4vw, 4.3rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: 1.2rem; }
.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 64ch;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}
.hero-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--primary-dark);
  font-weight: 600;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}
.hero-card { padding: 20px; }
.contact-card {
  border-radius: calc(var(--radius) - 2px);
  padding: 28px;
  min-height: 100%;
  background: linear-gradient(180deg, #4d207d, #32124f);
  color: #fff;
}
.contact-card h2 { margin-bottom: 10px; }
.contact-card p { color: rgba(255,255,255,.82); }
.contact-item {
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.18);
}
.contact-item span {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 4px;
}
.section { padding: 38px 0; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(74, 31, 120, .03)); }
.section-head { max-width: 760px; margin-bottom: 24px; }
.section-head p, .about-grid p, .form-note { color: var(--muted); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  padding: 24px;
}
.card p { margin: 0; color: var(--muted); }
.accent-card {
  background: linear-gradient(180deg, rgba(74,31,120,.95), rgba(50,18,79,.96));
  color: #fff;
}
.accent-card p { color: rgba(255,255,255,.85); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.check-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 18px 18px 48px;
  position: relative;
  box-shadow: var(--shadow);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 16px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(74,31,120,.12);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 800;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}
.contact-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.info-box {
  padding: 18px;
}
.info-box span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.contact-form {
  padding: 24px;
}
.contact-form label {
  display: block;
  margin-bottom: 16px;
}
.contact-form span {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 600;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: #fff;
  color: var(--text);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(74,31,120,.18);
  border-color: rgba(74,31,120,.45);
}
textarea { resize: vertical; min-height: 140px; }
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.text-link {
  color: var(--primary);
  font-weight: 700;
}
.site-footer {
  padding: 22px 0 32px;
}
.footer-wrap {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .nav { display: none; }
  .hero-grid,
  .about-grid,
  .contact-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .contact-boxes { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .hero { padding-top: 36px; }
  .nav-wrap { gap: 10px; }
  .brand-logo { width: 56px; height: 56px; }
  .hero-copy,
  .contact-card,
  .card,
  .contact-form,
  .info-box { padding: 18px; }
  .contact-boxes { grid-template-columns: 1fr; }
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn, .btn-small { width: 100%; }
  .brand-sub { display: none; }
}
.service-image {

  width: 100%;

  max-width: 300px;

  display: block;

  margin: 10px auto;

  border-radius: 10px;

}
.card-link {

  text-decoration: none;

  color: inherit;

  display: block;

  transition: transform .2s ease, box-shadow .2s ease;

}

.card-link:hover {

  transform: translateY(-4px);

  box-shadow: 0 16px 36px rgba(42, 19, 68, 0.16);

}
.card {

  transition: transform 0.3s ease, box-shadow 0.3s ease;

  cursor: pointer;

}

.card:hover {

  transform: translateY(-8px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);

}

.service-image {

  transition: transform 0.3s ease;

}

.card:hover .service-image {

  transform: scale(1.05);

}

.card-link {

  display: block;

  height: 100%;

  text-decoration: none;

  color: inherit;

}
