:root {
  --bg: #0e0c09;
  --surface: #1a1712;
  --surface-2: #242018;
  --fg: #f5f0e8;
  --fg-muted: #a09888;
  --accent: #c97d2e;
  --accent-light: #e8a84e;
  --border: #2e2a22;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--accent);
  color: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}

.btn-nav-cta:hover {
  background: var(--accent-light);
}

/* Section label */
.section-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* Primary CTA button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: var(--accent);
  color: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

/* Hero */
.hero {
  padding: 80px 48px 100px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,125,46,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
}

.hero-overline {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.headline-fatigue {
  color: var(--accent-light);
  font-style: italic;
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-cta-note {
  font-size: 13px;
  color: var(--fg-muted);
  opacity: 0.7;
}

.hero-secondary-cta {
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  margin-top: 4px;
  display: inline-block;
  transition: color 0.2s;
}

.hero-secondary-cta:hover {
  color: var(--accent-light);
}

.hero-img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.hero-img-caption {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
  text-align: center;
  margin-top: 12px;
}

/* How It Works */
.howitworks {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}

.howitworks-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.howitworks-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 60px;
  max-width: 500px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.step-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.howitworks-columns {
  display: flex;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}

.howitworks-image {
  flex-shrink: 0;
}

.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.howitworks-visual {
  display: flex;
  justify-content: center;
}

.howitworks-img {
  width: 100%;
  max-width: 340px;
  border-radius: 16px;
  border: 1px solid var(--border);
  object-fit: cover;
}

/* Contract */
.contract {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}

.contract-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contract-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 28px;
  max-width: 600px;
}

.contract-heading em {
  font-style: italic;
  color: var(--accent-light);
}

.contract-body {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 60px;
}

.contract-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contract-rules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.rule {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.rule-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-top: 2px;
  min-width: 24px;
}

.rule-content h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 6px;
}

.rule-content p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
}

.contract-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.couple-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.couple-gallery-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.couple-img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.couple-caption {
  font-size: 11px;
  color: var(--fg-muted);
  font-style: italic;
  text-align: center;
  line-height: 1.4;
}

.contract-img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  object-fit: cover;
  aspect-ratio: 3/4;
}

.contract-img-caption {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
  text-align: center;
}

/* AI Quality */
.aiquality {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.aiquality-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.aiquality-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 24px;
  max-width: 480px;
}

.aiquality-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 420px;
}

.aiquality-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aiquality-points li {
  font-size: 15px;
  color: var(--fg);
  font-weight: 500;
  padding-left: 20px;
  position: relative;
}

.aiquality-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.aiquality-img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  object-fit: cover;
  aspect-ratio: 3/4;
}

.aiquality-img-caption {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
  text-align: center;
  margin-top: 12px;
}

/* People section */
.people {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}

.people-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.people-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 56px;
  max-width: 560px;
}

.people-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.person-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
}

.person-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.person-card h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 10px;
}

.person-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.people-note {
  font-size: 15px;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.note-text {
  color: var(--accent);
  font-weight: 500;
}

/* No returns section */
.noreturns {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}

.noreturns-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.noreturns-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
}

.noreturns-body {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 60px;
}

.noreturns-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.noreturns-visual {
  display: flex;
  justify-content: center;
}

.noreturns-img {
  width: 100%;
  max-width: 280px;
  border-radius: 16px;
  border: 1px solid var(--border);
  object-fit: cover;
}

.noreturns-pricing {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-free {
  flex: 1;
}

.price-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 10px;
}

.price-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.pricing-divider {
  color: var(--border);
}

.pricing-paid {
  text-align: left;
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.price-per {
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 4px;
}

.price-note {
  font-size: 13px;
  color: var(--accent);
  margin-top: 12px;
  font-style: italic;
}

.noreturns-cta {
  margin-top: 12px;
}

.noreturns-cta .btn-primary {
  width: 100%;
  max-width: 320px;
}

/* Footer */
.footer {
  padding: 60px 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.1em;
  color: var(--fg);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-link {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-sep {
  color: var(--fg-muted);
  opacity: 0.4;
}

.footer-note {
  font-size: 13px;
  color: var(--fg-muted);
  opacity: 0.6;
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.5;
  margin-top: 8px;
}

.footer-disclaimer a {
  color: var(--fg-muted);
  text-decoration: underline;
}

.footer-disclaimer a:hover {
  color: var(--fg);
}

/* Product Showcase */
.showcase {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}

.showcase-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.showcase-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 60px;
  max-width: 520px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.showcase-card {
  display: flex;
  flex-direction: column;
}

.showcase-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 16px;
  background: var(--surface);
}

.showcase-img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 9/16;
}

.showcase-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}

.showcase-card-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* Pricing */
.pricing {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 12px;
}

.pricing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 720px;
  margin: 0 auto 48px;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  background: var(--bg);
}

.pricing-card--pro {
  background: var(--surface);
  border-color: var(--accent);
}

.pricing-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
}

.pricing-card-header {
  margin-bottom: 28px;
  padding-top: 8px;
}

.pricing-tier-name {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.pricing-tier-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.pricing-tier-period {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--fg-muted);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-feature {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-feature--included {
  color: var(--fg);
}

.pricing-feature--excluded {
  color: var(--fg-muted);
  opacity: 0.5;
}

.pricing-check {
  flex-shrink: 0;
  font-weight: 700;
}

.pricing-feature--included .pricing-check {
  color: var(--accent);
}

.pricing-feature--excluded .pricing-check {
  color: var(--fg-muted);
  opacity: 0.4;
}

.btn-pricing {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: var(--surface-2);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--border);
  transition: background 0.2s, border-color 0.2s;
}

.btn-pricing:hover {
  background: var(--surface);
  border-color: var(--accent);
}

.btn-pricing--pro {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.btn-pricing--pro:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

.pricing-anchor {
  text-align: center;
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-anchor strong {
  color: var(--accent-light);
}

.pricing-refund {
  text-align: center;
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.6;
  max-width: 480px;
  margin: 0 auto;
}

.pricing-refund a {
  color: var(--fg-muted);
  text-decoration: underline;
}

.pricing-refund a:hover {
  color: var(--fg);
}

/* FAQ */
.faq {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}

.faq-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 56px;
  max-width: 520px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
  text-align: left;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--accent-light);
}

.faq-icon {
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  font-weight: 400;
}

.faq-a {
  padding: 0 0 24px;
}

.faq-a p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.faq-bottom {
  margin-top: 40px;
  font-size: 15px;
  color: var(--fg-muted);
}

.faq-email {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.faq-email:hover {
  color: var(--accent-light);
}

/* Social proof */
.socialproof {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}

.socialproof-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.socialproof-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 20px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.socialproof-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.socialproof-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: left;
}

.trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.trust-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-content h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}

.trust-content p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
}

.socialproof-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.socialproof-note {
  font-size: 14px;
  color: var(--fg-muted);
}

@media (max-width: 768px) {
  .socialproof {
    padding: 60px 20px;
  }

  .socialproof-heading {
    font-size: 32px;
  }

  .socialproof-trust {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Responsive — Mobile First */
@media (max-width: 768px) {
  .nav {
    padding: 16px 20px;
  }

  .btn-nav-cta {
    padding: 8px 20px;
    font-size: 13px;
  }

  /* Hero */
  .hero {
    padding: 48px 20px 60px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-headline {
    font-size: 42px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-img {
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }

  .hero-actions {
    align-items: flex-start;
  }

  .hero-secondary-cta {
    font-size: 14px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    margin-top: 4px;
    display: inline-block;
  }

  /* Product Showcase */
  .showcase {
    padding: 60px 20px;
  }

  .showcase-heading {
    font-size: 34px;
    margin-bottom: 40px;
  }

  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .showcase-img-wrap {
    margin-bottom: 12px;
  }

  .showcase-card-title {
    font-size: 13px;
  }

  .showcase-card-desc {
    font-size: 12px;
  }

  /* How It Works */
  .howitworks {
    padding: 60px 20px;
  }

  .howitworks-heading {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 0;
  }

  .step-card {
    padding: 24px;
  }

  .howitworks-columns {
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
  }

  .howitworks-img {
    max-width: 100%;
  }

  /* Hero text overflow */
  .hero-headline {
    font-size: 38px;
    word-break: break-word;
  }

  .hero-sub {
    font-size: 15px;
  }

  /* Step text not clipped */
  .step-num {
    font-size: 12px;
  }

  .step-title {
    font-size: 16px;
  }

  .step-desc {
    font-size: 13px;
  }

  /* Contract section mobile */
  .contract-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contract-rules {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* AI Quality mobile */
  .aiquality-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .aiquality-heading {
    font-size: 36px;
  }

  /* No returns mobile */
  .noreturns-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* People mobile */
  .people-list {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing {
    padding: 60px 20px;
  }

  .pricing-heading {
    font-size: 36px;
  }

  .pricing-sub {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100%;
  }

  .pricing-card {
    padding: 28px;
  }

  .pricing-tier-price {
    font-size: 44px;
  }

  .pricing-features {
    gap: 10px;
  }

  .pricing-anchor {
    font-size: 14px;
  }

  /* Footer */
  .footer {
    padding: 48px 20px;
  }

  /* FAQ */
  .faq {
    padding: 60px 20px;
  }

  .faq-heading {
    font-size: 36px;
  }

  .faq-list {
    max-width: 100%;
  }

  .faq-item {
    margin-bottom: 0;
  }

  .faq-q {
    padding: 18px 20px;
    font-size: 15px;
  }

  .faq-a {
    padding: 16px 20px;
  }

  .faq-a p {
    font-size: 14px;
  }
}