/* === VARIABLES === */
:root {
  --navy:        #002D78;
  --teal:        #3CA5C3;
  --navy-mid:    #1E4B87;
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;
  --text:        #1A1A2E;
  --text-muted:  #5A6A7A;
  --border:      #D8E4F0;
  --card-bg:     #FFFFFF;

  --font-heading: 'Lora', Georgia, serif;
  --font-body:    'DM Sans', Arial, sans-serif;

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  64px;
  --space-xl:  96px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select, button {
  font-family: var(--font-body);
}

/* === BASE === */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-xs);
}

.section-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 36px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.section-heading.centered,
.section-label.centered {
  text-align: center;
}

/* === HEADER === */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  height: 70px;
  display: flex;
  align-items: center;
  transition: border-bottom 0.2s ease;
}

header.scrolled {
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-logo img {
  height: 48px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  transition: color 0.2s ease;
}

.header-nav a:hover {
  color: var(--navy);
}

.btn-header-cta {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.btn-header-cta:hover {
  background: var(--navy-mid);
}

.hamburger {
  display: none;
  font-size: 22px;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: var(--space-sm) 24px;
  z-index: 99;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-weight: 500;
  font-size: 16px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--navy);
}

/* === HERO === */
#hero {
  background: var(--off-white);
  padding: 80px 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#hero.visible {
  opacity: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: var(--space-md);
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-xs);
}

.hero-headline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 48px;
  color: var(--navy);
  line-height: 1.2;
}

.hero-sub {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: var(--space-sm);
}

.hero-ctas {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: var(--navy-mid);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.trust-chip {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0, 45, 120, 0.08);
}

.hero-card-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
}

.hero-checklist li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: var(--teal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M10 3L5 8.5 2 5.5l-1 1L5 10.5l6-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.hero-price-box {
  background: var(--navy);
  border-radius: 8px;
  padding: 16px;
  margin-top: 20px;
}

.hero-price-service {
  font-weight: 500;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 4px;
}

.hero-price-amount {
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  line-height: 1.1;
}

.hero-price-note {
  font-weight: 400;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

/* === TRUST STRIP === */
.trust-strip {
  background: var(--navy);
  padding: 28px 0;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.trust-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.trust-strip-item i {
  font-size: 20px;
  color: var(--teal);
}

.trust-strip-label {
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
}

.trust-strip-sub {
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

/* === SERVICES === */
#diensten {
  background: var(--white);
  padding: var(--space-xl) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: var(--space-md);
  border-top: 3px solid transparent;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(0, 45, 120, 0.10);
  transform: translateY(-2px);
}

.service-card.accent-teal {
  border-top-color: var(--teal);
}

.service-card.accent-navy {
  border-top-color: var(--navy);
}

.service-card i {
  font-size: 24px;
  margin-bottom: 16px;
}

.service-card.accent-teal i {
  color: var(--teal);
}

.service-card.accent-navy i {
  color: var(--navy);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.service-card ul {
  margin-bottom: var(--space-sm);
}

.service-card ul li {
  font-size: 14px;
  color: var(--text);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-card ul li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
}

.card-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--teal);
  transition: text-decoration 0.2s ease;
}

.card-link:hover {
  text-decoration: underline;
}

/* === PROCESS === */
#werkwijze {
  background: var(--off-white);
  padding: var(--space-xl) 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
  position: relative;
}

.process-line {
  position: absolute;
  top: 24px;
  left: calc(16.666% + 24px);
  right: calc(16.666% + 24px);
  height: 2px;
  border-top: 2px dashed var(--border);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  flex-shrink: 0;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.process-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === PRICING === */
#tarieven {
  background: var(--white);
  padding: var(--space-xl) 0;
}

.pricing-subheading {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: -20px;
  margin-bottom: var(--space-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
  align-items: start;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: var(--space-md);
  background: var(--white);
}

.pricing-card.featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.pricing-badge {
  display: inline-block;
  font-weight: 600;
  font-size: 11px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 6px 12px;
  margin-bottom: var(--space-sm);
}

.pricing-label {
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.pricing-card.featured .pricing-label {
  color: rgba(255, 255, 255, 0.65);
}

.pricing-price {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 42px;
  color: var(--navy);
  line-height: 1;
}

.pricing-card.featured .pricing-price {
  color: var(--white);
}

.pricing-suffix {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  margin-top: 4px;
}

.pricing-card.featured .pricing-suffix {
  color: rgba(255, 255, 255, 0.65);
}

.pricing-features {
  margin: var(--space-sm) 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.85);
}

.pricing-features li::before {
  content: '✓';
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
}

.pricing-cta-outline {
  display: block;
  width: 100%;
  text-align: center;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  padding: 12px;
  border-radius: 6px;
  margin-top: var(--space-sm);
  transition: background 0.2s ease, color 0.2s ease;
}

.pricing-cta-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.pricing-cta-teal {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 12px;
  border-radius: 6px;
  margin-top: var(--space-sm);
  transition: opacity 0.2s ease;
}

.pricing-cta-teal:hover {
  opacity: 0.9;
}

.pricing-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: var(--space-md);
}

.pricing-cta-band {
  background: var(--teal);
  border-radius: 8px;
  padding: var(--space-md);
  margin-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  text-align: center;
}

.pricing-cta-band p {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
}

.pricing-cta-band a {
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  transition: opacity 0.2s ease;
}

.pricing-cta-band a:hover {
  opacity: 0.85;
}

/* === TRUST SIGNALS === */
#referenties {
  background: var(--off-white);
  padding: var(--space-xl) 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
}

.trust-card i {
  font-size: 24px;
  margin-bottom: 12px;
}

.trust-card.icon-teal i {
  color: var(--teal);
}

.trust-card.icon-navy i {
  color: var(--navy);
}

.trust-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

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

.trust-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: var(--space-md);
  font-style: italic;
}

/* === ABOUT === */
#over-mayke {
  background: var(--white);
  padding: var(--space-xl) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-photo {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 5;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.about-initials {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 64px;
  color: var(--white);
  line-height: 1;
}

.about-name {
  font-weight: 500;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
}

.about-role {
  font-weight: 400;
  font-size: 14px;
  color: var(--teal);
}

.about-content h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 30px;
  color: var(--navy);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.about-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.about-badge {
  font-weight: 500;
  font-size: 13px;
  color: var(--navy);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
}

.about-tagline {
  font-style: italic;
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 20px;
}

/* === CONTACT === */
#contact {
  background: var(--off-white);
  padding: var(--space-xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

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

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

.contact-item i {
  font-size: 18px;
  color: var(--teal);
  margin-top: 2px;
  min-width: 20px;
}

.contact-item-content label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-item-content a {
  color: var(--navy);
  font-weight: 600;
  font-size: 20px;
  transition: color 0.2s ease;
}

.contact-item-content a:hover {
  color: var(--teal);
}

.contact-item-content span {
  font-size: 15px;
  color: var(--text);
}

.contact-info-box {
  border-left: 3px solid var(--teal);
  background: var(--white);
  padding: 16px;
  border-radius: 0 6px 6px 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: var(--space-xs);
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-size: 15px;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px;
  background: var(--white);
  transition: outline 0.15s ease;
  outline: 2px solid transparent;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--teal);
  border-color: var(--teal);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  display: block;
  width: 100%;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  padding: 14px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.btn-submit:hover {
  background: var(--navy-mid);
}

.form-success {
  display: none;
  border-left: 3px solid var(--teal);
  background: var(--white);
  padding: 20px;
  border-radius: 0 8px 8px 0;
  font-weight: 500;
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
}

/* === FOOTER === */
footer {
  background: var(--navy);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: var(--space-md);
}

.footer-logo-wrap {
  display: inline-block;
  background: var(--white);
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 16px;
}

.footer-logo-wrap img {
  height: 44px;
  width: auto;
}

.footer-col p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.footer-phone {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  margin-top: var(--space-xs);
  transition: opacity 0.2s ease;
}

.footer-phone:hover {
  opacity: 0.8;
}

.footer-col-label {
  font-weight: 600;
  font-size: 11px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-sm);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

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

.footer-contact-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-lines span,
.footer-contact-lines a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: var(--space-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.footer-bottom span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.50);
}

/* === MOBILE CTA BAR === */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 56px;
  z-index: 200;
}

.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 100%;
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  transition: opacity 0.2s ease;
}

.mobile-cta-bar a:hover {
  opacity: 0.9;
}

.mobile-cta-bar a.cta-call {
  background: var(--navy);
}

.mobile-cta-bar a.cta-message {
  background: var(--teal);
}

/* === UTILITIES === */
.text-center {
  text-align: center;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: 40px;
  }

  .hero-grid {
    gap: var(--space-sm);
  }

  .services-grid {
    gap: var(--space-sm);
  }

  .pricing-grid {
    gap: var(--space-sm);
  }
}

@media (max-width: 960px) {
  header {
    height: 60px;
  }

  .mobile-nav {
    top: 60px;
  }

  .header-nav,
  .btn-header-cta {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 56px;
  }

  /* Hero */
  #hero {
    padding: 56px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

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

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

  .hero-ctas {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
  }

  /* Trust strip */
  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    font-size: 28px;
  }

  /* Process */
  .process-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .process-line {
    display: none;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  /* Trust signals */
  .trust-grid {
    grid-template-columns: 1fr;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 100%;
    aspect-ratio: 3 / 2;
    order: -1;
  }

  .about-initials {
    font-size: 48px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Mobile CTA bar */
  .mobile-cta-bar {
    display: flex;
  }

  /* Pricing band */
  .pricing-cta-band {
    flex-direction: column;
    gap: var(--space-xs);
  }
}
