:root {
  --bg: #fef8f3;
  --text: #34322d;
  --muted: #625f59;
  --surface: #ffffff;
  --surface-low: #f8f3ed;
  --primary: #7e572e;
  --primary-dim: #704b23;
  --secondary: #6c548b;
  --secondary-soft: #eedcff;
  --tertiary-soft: #ffe9b3;
  --radius-xl: 2rem;
  --radius-pill: 999px;
  --shadow: 0 20px 60px rgba(52, 50, 45, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 0%, #f9ebdf 0%, transparent 40%),
    radial-gradient(circle at 80% 30%, #efe3ff 0%, transparent 45%), var(--bg);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Noto Serif", serif;
  line-height: 1.15;
  margin: 0;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-top: 0.4rem;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  margin-bottom: 1.25rem;
}

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

.bg-orb {
  position: fixed;
  z-index: -1;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
}

.orb-1 {
  top: -8rem;
  left: -10rem;
  background: #f3d0b3;
}

.orb-2 {
  right: -8rem;
  top: 16rem;
  background: #d8c0fa;
}

.section-shell {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 4rem 0;
}

.section-alt {
  background: color-mix(in srgb, var(--surface-low) 70%, #ffffff);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.site-header {
  width: min(1120px, 92vw);
  margin: 1rem auto 0;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
}

.brand {
  font-family: "Noto Serif", serif;
  font-weight: 700;
  font-size: 1.3rem;
}

.main-nav {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}

.menu-btn {
  display: none;
  border: 0;
  background: var(--secondary-soft);
  border-radius: var(--radius-pill);
  padding: 0.55rem 0.95rem;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding-top: 3rem;
}

.eyebrow {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0;
}

.lead {
  color: var(--muted);
  max-width: 60ch;
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-pill);
  color: #fff7f4;
  background: linear-gradient(135deg, var(--primary), var(--primary-dim));
  font-weight: 700;
}

.btn-sm {
  padding: 0.6rem 1rem;
}

.btn-muted {
  background: var(--secondary-soft);
  color: #4b3469;
}

.hero-card {
  background: var(--surface);
  border-radius: 2.2rem;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.hero-card-title {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
}

.hero-card-body {
  font-family: "Noto Serif", serif;
  font-size: 1.12rem;
}

.hero-card-meta {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.logos {
  padding-top: 1.5rem;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.logo-row span {
  background: var(--surface-low);
  border-radius: var(--radius-pill);
  padding: 0.65rem 1rem;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.feature-grid,
.steps,
.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border-radius: 2rem;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.step {
  background: var(--surface);
  border-radius: 2rem;
  padding: 1.2rem;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  margin-bottom: 0.65rem;
  background: var(--secondary-soft);
  font-weight: 800;
}

.quote {
  font-family: "Noto Serif", serif;
}

.quote cite {
  margin-top: 1rem;
  display: block;
  font-family: "Manrope", sans-serif;
  color: var(--muted);
  font-style: normal;
}

.pricing {
  width: min(520px, 100%);
}

.price {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0.25rem 0 0.75rem;
  font-family: "Noto Serif", serif;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
}

.pricing ul {
  padding-left: 1.1rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  background: var(--surface);
  border-radius: 1.3rem;
  padding: 0.9rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

.site-footer {
  margin-top: 4rem;
  color: var(--muted);
}

.footer-surface {
  background: #F0DFD3;
  color: var(--text);
}

.site-footer-inner {
  width: min(64rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3.25rem 2.25rem 2.5rem;
  display: grid;
  grid-template-columns: minmax(14rem, 1fr) minmax(16rem, 0.95fr) minmax(18rem, 1.15fr);
  gap: 2rem;
  align-items: start;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
  align-items: start;
}

.footer-qr-block {
  width: 170px;
  min-width: 170px;
  flex: 0 0 170px;
  max-width: 170px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-qr-img {
  display: block;
  width: 160px;
  height: 160px;
  max-width: 160px;
  max-height: 160px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.footer-nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(134, 77, 40, 0.72);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s;
}

.footer-nav-link:hover {
  color: var(--primary);
}

.footer-qr-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(134, 77, 40, 0.8);
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.15s;
}

.footer-qr-label:hover {
  color: var(--primary);
}

.footer-company {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.footer-company strong {
  display: block;
  color: var(--primary);
  font-size: 0.98rem;
  line-height: 1.35;
}

.footer-company + .footer-company {
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(134, 77, 40, 0.08);
  width: min(64rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 1.5rem;
  font-size: 0.75rem;
  color: rgba(122, 100, 89, 0.55);
}

.footer-brand {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-main-logo {
  display: block;
  height: 1.55rem;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.65rem;
  opacity: 0.9;
}

.footer-deep-edge-logo {
  display: block;
  height: 1.65rem;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  width: fit-content;
  text-align: left;
  padding-top: 1.1rem;
}

.footer-qr-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding-top: 1.1rem;
}

@media (max-width: 960px) {
  .hero,
  .feature-grid,
  .steps,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .logo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-alt {
    padding: 1.4rem;
  }
}

@media (max-width: 760px) {
  .menu-btn {
    display: inline-flex;
  }

  .main-nav {
    display: none;
  }

  .main-nav.open {
    display: flex;
    position: absolute;
    top: 4rem;
    right: 1rem;
    left: 1rem;
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.97);
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
  }

  .site-header {
    position: sticky;
    top: 0.6rem;
    z-index: 30;
  }

  .section-shell {
    padding: 2.75rem 0;
  }

  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.4rem 1.35rem 1.8rem;
    width: min(64rem, calc(100% - 2rem));
    display: flex;
  }

  .footer-links {
    width: 100%;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .footer-qr-row {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-qr-block {
    width: 100%;
    min-width: 0;
    flex: 0 0 auto;
    max-width: none;
  }

  .footer-links-column,
  .footer-qr-row {
    padding-top: 0;
  }

  .footer-qr-img {
    width: min(100%, 8.25rem);
    height: auto;
  }

  .footer-bottom {
    width: min(64rem, calc(100% - 2rem));
    padding: 0.9rem 0 1.2rem;
  }
}
