/* ═══════════════════════════════════════════════
   STAND OUT BOOKKEEPING — styles.css
   Aesthetic: Warm editorial · Forest green + Sunflower gold
═══════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  --cream:        #FDFAF3;
  --cream-dark:   #F4EFE1;
  --forest:       #3e166a;
  --forest-mid:   #642d91;
  --sage:         #8272b4;
  --gold:         #ffde1d;
  --gold-dark:    #fbb040;
  --gold-light:   #fff3a0;
  --charcoal:     #13226a;
  --muted:        #8272b4;
  --white:        #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    24px;
  --radius-full:  9999px;

  --shadow-soft:  0 4px 24px rgba(62, 22, 106, 0.10);
  --shadow-card:  0 2px 12px rgba(62, 22, 106, 0.08);

  --transition:   0.25s ease;
  --max-w:        1140px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── UTILITY ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 6rem 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(74, 124, 111, 0.10);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.section-label.light {
  color: var(--gold-light);
  background: rgba(251, 233, 122, 0.15);
}

.section-label.centered { display: block; text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  color: var(--forest-mid);
}

.section-title.light     { color: var(--cream); }
.section-title.light em  { color: var(--gold-light); }
.section-title.centered  { text-align: center; }

.section-intro {
  font-size: 1.05rem;
  color: var(--forest);
  max-width: 620px;
  margin-bottom: 3rem;
}

.section-intro.light    { color: rgba(253, 250, 243, 0.75); }
.section-intro.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--forest);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 185, 42, 0.35);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--forest);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  border: 2px solid rgba(28, 58, 47, 0.25);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.btn-ghost:hover {
  border-color: var(--forest);
  background: rgba(28, 58, 47, 0.05);
}

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253, 250, 243, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(62, 22, 106, 0.10);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

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

.logo-full { height: 52px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--forest);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.nav-links li a:hover {
  background: var(--cream-dark);
  color: var(--forest-mid);
}

.nav-links li a.nav-cta {
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
}

.nav-links li a.nav-cta:hover { background: var(--gold-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.25rem;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
  position: relative;
  background-color: var(--cream);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(232, 185, 42, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(28, 58, 47, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  padding: 5rem 2rem 5rem max(2rem, calc((100vw - var(--max-w)) / 2 + 2rem));
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  background: rgba(74, 124, 111, 0.10);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
  animation: fadeSlideUp 0.8s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.9s 0.1s ease both;
}

.hero-title em {
  font-style: italic;
  color: var(--forest-mid);
  display: block;
  line-height: 1.15;
}

.hero-you {
  font-style: normal;
  color: var(--forest-mid);
  font-weight: 700;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 2.5rem;
  animation: fadeSlideUp 0.9s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.9s 0.3s ease both;
}

.hero-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 400px;
  position: relative;
}

.spinning-flower {
  width: 380px;
  height: 380px;
  object-fit: contain;
  animation: rotateSlow 60s linear infinite;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════
   BOOKKEEPING
═══════════════════════════════════════════════ */
.bookkeeping-section {
  background-color: var(--cream);
  background-image: linear-gradient(rgba(253, 250, 243, 0.88), rgba(253, 250, 243, 0.88)), url('source/sun.avif');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-top: 1px solid rgba(62, 22, 106, 0.06);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(62, 22, 106, 0.08);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.service-icon { font-size: 2rem; margin-bottom: 1rem; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 1rem;
}

.service-card ul li {
  font-size: 0.93rem;
  color: var(--muted);
  padding: 0.4rem 0;
  line-height: 1.6;
}

/* Tiers */
.tiers-block {
  background: var(--cream-dark);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  max-width: 560px;
  margin: 0 auto;
}

.tiers-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--forest);
  margin-bottom: 0.5rem;
  text-align: center;
}

.tiers-sub {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
  text-align: center;
}

.table-wrapper {
  overflow-x: auto;
  display: flex;
  justify-content: center;
}

.tiers-table {
  width: 100%;
  border-collapse: collapse;
}

.tiers-table thead { background: var(--white); }

.tiers-table th {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--forest);
  padding: 1rem 1.5rem;
  text-align: center;
  border-bottom: 2px solid rgba(62, 22, 106, 0.10);
}

.tiers-table td {
  padding: 1rem 1.5rem;
  font-size: 0.93rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(62, 22, 106, 0.06);
  text-align: center;
}

.tier-name { color: var(--forest); font-weight: 500; }

.tier-tag {
  display: inline-block;
  background: var(--gold-light);
  color: var(--charcoal);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.tier-tag.popular { background: var(--gold); color: var(--charcoal); }

.tier-highlight { background: rgba(255, 222, 29, 0.10); }

/* Service details */
.service-details-block {
  margin-bottom: 5rem;
  padding: 1.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(62, 22, 106, 0.08);
  box-shadow: var(--shadow-card);
}

.service-details-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.service-details-heading em { font-style: italic; color: var(--forest-mid); }

.service-details-block .faq-item {
  border-bottom: 1px solid rgba(62, 22, 106, 0.08);
}

.service-details-block .faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest);
}

/* ═══════════════════════════════════════════════
   ANALYSIS
═══════════════════════════════════════════════ */
.analysis-section {
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.analysis-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(232, 185, 42, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(100, 45, 145, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.analysis-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.analysis-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  transition: background var(--transition), border-color var(--transition);
}

.analysis-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.analysis-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1;
}

.analysis-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.analysis-what {
  font-size: 0.93rem;
  color: rgba(253, 250, 243, 0.65);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.analysis-benefit {
  font-size: 0.88rem;
  color: rgba(253, 250, 243, 0.55);
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  margin: 0;
}

.analysis-benefit-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.about-section { background: var(--cream); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
}

.about-name-display {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--forest-mid);
  font-style: italic;
  text-align: center;
  line-height: 1.1;
  margin-bottom: -0.5rem;
}

.about-title {
  font-size: clamp(2.8rem, 5vw, 4rem);
}

.about-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest);
  font-style: italic;
  line-height: 1.6;
}

.about-text-col p {
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.85;
  font-weight: 400;
  max-width: 680px;
  text-align: left;
}

.about-cta-wrap { margin-top: 0.5rem; }

/* ═══════════════════════════════════════════════
   CREDENTIALS
═══════════════════════════════════════════════ */
.credentials-section {
  background: var(--white);
  border-top: 1px solid rgba(62, 22, 106, 0.06);
  overflow: hidden;
}

.cred-track-wrapper {
  position: relative;
  width: 100%;
  margin-top: 2rem;
  overflow: hidden;
  height: 140px;
}

.cred-track-wrapper::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to right, var(--white) 0%, var(--white) 40%, transparent 100%);
}

.cred-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to left, var(--white) 0%, var(--white) 40%, transparent 100%);
}

.cred-track {
  display: flex;
  align-items: center;
  will-change: transform;
  transform: translateZ(0);
  animation: conveyor 30s linear infinite;
}

.cred-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.cred-item {
  flex-shrink: 0;
  width: 200px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(20%);
  opacity: 0.85;
}

.cred-item img {
  max-width: 150px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* 6 items × 200px = 1200px per set */
@keyframes conveyor {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-1200px, 0, 0); }
}

/* ═══════════════════════════════════════════════
   FAQ + TERMINOLOGY + CLARITY
═══════════════════════════════════════════════ */
.faq-section {
  background: var(--cream-dark);
  border-top: 1px solid rgba(62, 22, 106, 0.06);
}

.faq-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 5rem;
}

.faq-col { display: flex; flex-direction: column; }

.faq-intro-text {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0.5rem;
}

.faq-item {
  border-bottom: 1px solid rgba(62, 22, 106, 0.10);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--forest);
  cursor: pointer;
  text-align: left;
  line-height: 1.45;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--forest-mid); }

.faq-chevron {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--gold-dark);
  font-weight: 400;
  transition: transform var(--transition);
  line-height: 1;
}

.faq-item.open .faq-chevron { transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding-bottom: 0;
}

.faq-item.open .faq-answer {
  max-height: 1200px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer strong { color: var(--forest); }

.faq-links {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.faq-links li a {
  font-size: 0.88rem;
  color: var(--forest-mid);
  font-weight: 500;
  text-decoration: underline;
  transition: color var(--transition);
}

.faq-links li a:hover { color: var(--gold-dark); }

/* Term grid inside answers */
.term-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.25rem;
}

.term-item strong {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--forest);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.term-item p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.term-example {
  font-size: 0.8rem;
  color: var(--sage);
  font-style: italic;
  margin-top: 0.2rem;
  display: block;
}

.term-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-mid);
  background: rgba(62, 22, 106, 0.08);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

/* Clarity section */
.clarity-section {
  border-top: 1px solid rgba(62, 22, 106, 0.10);
  padding: 4rem 1.5rem 2rem;
  max-width: 780px;
  margin: 0 auto;
}

/* Diagrams inside Bill vs Expense answer */
.clarity-diagrams {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.25rem;
}

.clarity-diagram {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.clarity-diagram img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(62, 22, 106, 0.08);
}

.clarity-diagram figcaption {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  font-style: italic;
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact-section {
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 100%, rgba(232, 185, 42, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.contact-text p.light {
  color: rgba(253, 250, 243, 0.70);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.contact-cta { white-space: nowrap; }

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
}

.contact-detail { display: flex; flex-direction: column; gap: 0.3rem; }

.contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-detail span:not(.contact-label),
.contact-detail a {
  font-size: 0.97rem;
  color: rgba(253, 250, 243, 0.80);
  line-height: 1.6;
  transition: color var(--transition);
}

.contact-detail a:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer {
  background: #8272b4;
  padding: 2rem 0;
}

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

.footer-brand { display: flex; align-items: center; }

.footer-brand .logo-full { height: 80px; width: auto; }

.footer-copy { 
  font-size: 0.8rem; 
  color: rgba(255, 255, 255, 0.7); 
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

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

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero               { grid-template-columns: 1fr; }
  .hero-graphic       { display: none; }
  .hero-inner         { padding: 6rem 2rem 4rem; }
  .services-grid      { grid-template-columns: 1fr; }
  .analysis-grid      { grid-template-columns: 1fr; gap: 1rem; }
  .about-inner        { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-top-row        { grid-template-columns: 1fr; gap: 3rem; }
  .contact-inner      { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: rgba(253, 250, 243, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 2rem 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(62, 22, 106, 0.10);
    z-index: 99;
  }

  .nav-links.open { display: flex; }

  .nav-links li a { padding: 0.75rem 0.5rem; }

  .cred-track-wrapper { display: none; }

  .clarity-section { padding: 3rem 2rem; max-width: 100%; }

  .footer-inner   { flex-direction: column; text-align: center; }
  .footer-links   { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-title    { font-size: 2.4rem; }
  .hero-actions  { flex-direction: column; }
  .btn-primary,
  .btn-ghost     { text-align: center; }
  .tiers-block   { padding: 1.5rem; }
  .service-details-block { padding: 1.5rem; }
}