/* ===== Variables & Reset ===== */
:root {
  --forest: #14241F;
  --forest-light: #1c332c;
  --cream: #F3EDE4;
  --cream-soft: #FAF7F2;
  --gold: #D8C9A3;
  --gold-deep: #c3ac78;
  --green-accent: #3f6b57;
  --text-muted: #5c6b64;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--forest);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Lora', serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

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

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

button {
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  position: relative;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: transform 240ms var(--ease), background-color 240ms var(--ease), color 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20, 36, 31, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid rgba(20, 36, 31, 0.25);
}

.btn-secondary:hover {
  border-color: var(--forest);
  background: rgba(20, 36, 31, 0.05);
  transform: translateY(-2px);
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: padding 300ms var(--ease), background-color 300ms var(--ease), box-shadow 300ms var(--ease), backdrop-filter 300ms var(--ease);
}

.nav.scrolled {
  padding: 12px 0;
  background: rgba(243, 237, 228, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(20, 36, 31, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 30px;
  width: auto;
  transition: height 300ms var(--ease);
}

.nav.scrolled .nav-logo img {
  height: 26px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--forest);
  position: relative;
  transition: opacity 200ms var(--ease);
}

.nav-links a:not(.btn):hover {
  opacity: 0.7;
}

.nav-links a.btn-primary {
  color: var(--cream);
}

.nav-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
}

/* ===== Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 450ms var(--ease), transform 450ms var(--ease);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > *, .nav, .nav-logo img, .btn, .shape, .chart-path {
    transition: none !important;
    animation: none !important;
  }
  .reveal, .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}

/* ===== Hero ===== */
.hero {
  padding: 180px 0 100px;
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(216, 201, 163, 0.35);
  border: 1px solid rgba(20, 36, 31, 0.1);
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  max-width: 850px;
  margin: 0 auto 22px;
}

.hero p.hero-sub {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Report Card Section ===== */
.card-stage {
  position: relative;
  padding: 90px 0 60px;
  display: flex;
  justify-content: center;
}

.shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  will-change: transform;
}

.shape-1 {
  width: 420px;
  height: 420px;
  background: var(--gold);
  opacity: 0.35;
  top: -40px;
  left: 8%;
  animation: drift1 26s ease-in-out infinite;
}

.shape-2 {
  width: 320px;
  height: 320px;
  background: var(--green-accent);
  opacity: 0.18;
  bottom: -60px;
  right: 10%;
  animation: drift2 30s ease-in-out infinite;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--gold-deep);
  opacity: 0.25;
  bottom: 10%;
  left: 20%;
  animation: drift3 22s ease-in-out infinite;
}

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 24px); }
}

@keyframes drift2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-26px, -20px); }
}

@keyframes drift3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(18px, -28px); }
}

.report-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 880px;
  background: var(--cream-soft);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 36, 31, 0.08);
  box-shadow: 0 30px 60px -20px rgba(20, 36, 31, 0.25);
  overflow: hidden;
}

.report-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(20, 36, 31, 0.08);
}

.report-card-header .tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.report-card-header .tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-accent);
}

.report-card-header .sample-label {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(216, 201, 163, 0.4);
  color: var(--forest);
}

.report-card-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
}

.report-main {
  padding: 28px;
  border-right: 1px solid rgba(20, 36, 31, 0.08);
}

.report-main-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.report-main-value-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}

.report-main-value {
  font-family: 'Lora', serif;
  font-size: 40px;
  font-weight: 600;
}

.report-badge {
  font-size: 13px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(63, 107, 87, 0.15);
  color: var(--green-accent);
}

.report-main-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.chart-wrap {
  width: 100%;
  height: 160px;
}

.chart-wrap svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-path {
  fill: none;
  stroke: var(--forest);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-fill {
  opacity: 0;
  transition: opacity 600ms var(--ease) 400ms;
}

.chart-fill.is-visible {
  opacity: 1;
}

.chart-months {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-muted);
}

.report-side {
  display: flex;
  flex-direction: column;
}

.report-stat {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(20, 36, 31, 0.08);
}

.report-stat:last-child {
  border-bottom: none;
}

.report-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.report-stat-value {
  font-family: 'Lora', serif;
  font-size: 22px;
  font-weight: 600;
}

.report-stat-value.positive {
  color: var(--green-accent);
}

.report-card-footer {
  padding: 16px 28px;
  border-top: 1px solid rgba(20, 36, 31, 0.08);
  font-size: 12px;
  color: var(--text-muted);
  background: rgba(216, 201, 163, 0.15);
}

/* ===== How It Works ===== */
.how-it-works {
  padding: 120px 0 100px;
}

.section-heading {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.section-heading .eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 14px;
  display: block;
}

.section-heading h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 14px;
}

.section-heading p {
  color: var(--text-muted);
  font-size: 16px;
}

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

.step-card {
  background: var(--cream-soft);
  border: 1px solid rgba(20, 36, 31, 0.08);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -12px rgba(20, 36, 31, 0.15);
}

.step-number {
  font-family: 'Lora', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  background: var(--forest);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14.5px;
  color: var(--text-muted);
}

/* ===== Clarity CTA Section ===== */
.clarity-cta {
  padding: 40px 0 130px;
}

.clarity-cta-box {
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.clarity-cta-box::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.12;
  top: -100px;
  right: -60px;
}

.clarity-cta-text {
  position: relative;
  z-index: 1;
}

.clarity-cta-text .eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.clarity-cta-text h2 {
  font-size: clamp(26px, 3.4vw, 34px);
  margin-bottom: 14px;
  max-width: 480px;
}

.clarity-cta-text p {
  color: rgba(243, 237, 228, 0.75);
  max-width: 460px;
  font-size: 15px;
  margin-bottom: 8px;
}

.clarity-price {
  font-family: 'Lora', serif;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 24px;
}

.clarity-price span {
  font-size: 14px;
  color: rgba(243, 237, 228, 0.6);
  font-family: 'Poppins', sans-serif;
}

.clarity-cta-actions {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.clarity-cta-box .btn-primary {
  background: var(--gold);
  color: var(--forest);
}

.clarity-cta-box .btn-primary:hover {
  background: var(--cream);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.retainer-note {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 28px;
}

.retainer-note a {
  color: var(--forest);
  font-weight: 500;
  border-bottom: 1px solid rgba(20, 36, 31, 0.3);
  transition: border-color 200ms var(--ease);
}

.retainer-note a:hover {
  border-color: var(--forest);
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  padding: 170px 0 70px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  max-width: 720px;
  margin: 0 auto 18px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto;
}

/* ===== Pricing / Services ===== */
.pricing-section {
  padding: 40px 0 110px;
}

.pricing-block {
  max-width: 900px;
  margin: 0 auto 56px;
}

.plan-card {
  background: var(--cream-soft);
  border: 1px solid rgba(20, 36, 31, 0.08);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.plan-card.plan-primary {
  border-color: rgba(20, 36, 31, 0.15);
  box-shadow: 0 24px 48px -24px rgba(20, 36, 31, 0.2);
}

.plan-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.plan-header h2 {
  font-size: clamp(24px, 3vw, 30px);
  margin-bottom: 8px;
}

.plan-header p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 460px;
}

.plan-price {
  text-align: right;
  flex-shrink: 0;
}

.plan-price .amount {
  font-family: 'Lora', serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--forest);
}

.plan-price .cadence {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
}

.plan-turnaround {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(216, 201, 163, 0.35);
  margin: 18px 0 28px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-item .feature-mark {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-top: 2px;
}

.feature-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
}

.feature-item p {
  font-size: 13.5px;
  color: var(--text-muted);
}

.plan-card-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.plan-note {
  font-size: 13px;
  color: var(--text-muted);
}

.scope-note {
  max-width: 900px;
  margin: 0 auto 56px;
  background: rgba(216, 201, 163, 0.2);
  border: 1px solid rgba(20, 36, 31, 0.1);
  border-radius: var(--radius-md);
  padding: 24px 28px;
}

.scope-note h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.scope-note p {
  font-size: 14px;
  color: var(--text-muted);
}

.plan-card.plan-secondary {
  max-width: 900px;
  margin: 0 auto;
  padding: 36px 44px;
  opacity: 0.94;
}

.plan-card.plan-secondary .plan-header h2 {
  font-size: 22px;
}

.plan-card.plan-secondary .plan-price .amount {
  font-size: 26px;
}

.plan-secondary-list {
  list-style: none;
  font-size: 14px;
  color: var(--text-muted);
  margin: 18px 0 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
}

.plan-secondary-list li::before {
  content: '—';
  margin-right: 8px;
  color: var(--gold-deep);
}

/* ===== About page ===== */
.about-section {
  padding: 20px 0 110px;
}

.founder-block {
  max-width: 760px;
  margin: 0 auto 64px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.founder-avatar {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold);
  font-family: 'Lora', serif;
  font-size: 28px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-text h2 {
  font-size: 24px;
  margin-bottom: 4px;
}

.founder-text .founder-title {
  font-size: 14px;
  color: var(--green-accent);
  font-weight: 500;
  margin-bottom: 16px;
}

.founder-text p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.about-principles {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.principle-card {
  padding: 26px 22px;
  background: var(--cream-soft);
  border: 1px solid rgba(20, 36, 31, 0.08);
  border-radius: var(--radius-md);
}

.principle-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.principle-card p {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ===== Contact page ===== */
.contact-section {
  padding: 20px 0 120px;
}

.contact-layout {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.contact-form-card {
  background: var(--cream-soft);
  border: 1px solid rgba(20, 36, 31, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-row .hint {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 12.5px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(20, 36, 31, 0.15);
  background: var(--cream);
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  color: var(--forest);
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.form-row textarea {
  resize: vertical;
  min-height: 90px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(20, 36, 31, 0.08);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  margin-top: 16px;
  font-size: 14px;
  display: none;
}

.form-status.success {
  color: var(--green-accent);
  display: block;
}

.form-status.error {
  color: #a4453a;
  display: block;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--cream-soft);
  border: 1px solid rgba(20, 36, 31, 0.08);
  border-radius: var(--radius-md);
  padding: 26px 26px;
}

.contact-info-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-info-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.contact-info-card a.contact-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--forest);
  border-bottom: 1px solid rgba(20, 36, 31, 0.25);
  transition: border-color 200ms var(--ease);
}

.contact-info-card a.contact-value:hover {
  border-color: var(--forest);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid rgba(20, 36, 31, 0.1);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-inner img {
  height: 24px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 200ms var(--ease);
}

.footer-links a:hover {
  color: var(--forest);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .report-card-body {
    grid-template-columns: 1fr;
  }
  .report-main {
    border-right: none;
    border-bottom: 1px solid rgba(20, 36, 31, 0.08);
  }
  .report-side {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .report-stat {
    flex: 1 1 50%;
    border-bottom: 1px solid rgba(20, 36, 31, 0.08);
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .clarity-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 48px 32px;
  }
  .clarity-cta-text h2, .clarity-cta-text p {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: var(--cream-soft);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transition: right 320ms var(--ease);
    box-shadow: -10px 0 40px rgba(20, 36, 31, 0.15);
  }
  .nav-links.open {
    right: 0;
  }
  .nav-menu-toggle {
    display: flex;
  }
  .hero {
    padding: 140px 0 70px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .shape-1 { width: 260px; height: 260px; }
  .shape-2 { width: 200px; height: 200px; }
  .shape-3 { width: 140px; height: 140px; }
  .report-stat {
    flex: 1 1 100%;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .plan-header {
    flex-direction: column;
  }
  .plan-price {
    text-align: left;
  }
  .about-principles {
    grid-template-columns: 1fr;
  }
  .founder-block {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .plan-secondary-list {
    grid-template-columns: 1fr;
  }
  .plan-card, .plan-card.plan-secondary, .contact-form-card {
    padding: 32px 24px;
  }
}
