/*
 Theme Name:   DiFlumeri Consulting Child
 Theme URI:    https://diflumericonsulting.com
 Description:  Astra child theme for DiFlumeri Consulting, LLC
 Author:       DiFlumeri Consulting, LLC
 Author URI:   https://diflumericonsulting.com
 Template:     astra
 Version:      1.0.0
 Text Domain:  diflumeri-child
*/

/* ============================================================
   GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@600;700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400&display=swap');

/* ============================================================
   BRAND TOKENS
   ============================================================ */
:root {
  /* Slate scale */
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;

  /* Sage scale */
  --sage-700: #5a6b4e;
  --sage-600: #6b7c5e;
  --sage-500: #7d8d71;
  --sage-100: #e8ebe6;
  --sage-50:  #f4f6f3;

  /* Stone */
  --stone-600: #78716c;
  --stone-400: #a8a29e;
  --stone-200: #e7e5e4;

  /* Base */
  --white:      #ffffff;
  --warm-white: #fafaf9;

  /* Semantic */
  --color-primary:    var(--slate-800);
  --color-accent:     var(--sage-600);
  --color-text:       var(--slate-700);
  --color-text-light: var(--stone-600);
  --color-bg:         var(--white);
  --color-bg-subtle:  var(--slate-50);
  --color-border:     var(--slate-300);

  /* Typography */
  --font-display: 'Crimson Pro', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --section-padding: 80px 0;
  --container-max:   1200px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(30, 41, 59, 0.06), 0 1px 2px rgba(30, 41, 59, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(30, 41, 59, 0.07), 0 2px 4px -1px rgba(30, 41, 59, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(30, 41, 59, 0.08), 0 4px 6px -2px rgba(30, 41, 59, 0.04);
}

/* ============================================================
   BASE / RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--slate-800);
}

h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.35;
  color: var(--slate-800);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 1.25em;
  color: var(--color-text);
}

a {
  color: var(--sage-600);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--sage-700);
}

code, pre {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--slate-100);
  border-radius: var(--radius-sm);
}

code {
  padding: 0.15em 0.4em;
}

/* ============================================================
   ASTRA OVERRIDES — Header
   ============================================================ */
.site-header,
#masthead,
.ast-site-header-wrap {
  background: var(--white) !important;
  border-bottom: 1px solid var(--slate-100) !important;
  box-shadow: 0 1px 8px rgba(30, 41, 59, 0.05) !important;
}

.site-title,
.ast-site-name a {
  font-family: var(--font-display) !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: var(--slate-800) !important;
  letter-spacing: -0.02em !important;
}

/* Nav links */
.main-header-menu a,
.ast-primary-menu > li > a {
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: var(--slate-700) !important;
  letter-spacing: 0.01em !important;
  transition: color 0.2s ease !important;
}

.main-header-menu a:hover,
.ast-primary-menu > li > a:hover,
.ast-primary-menu > li.current-menu-item > a {
  color: var(--sage-600) !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.wp-block-button__link,
.ast-button,
.button,
button[type="submit"],
input[type="submit"],
.dc-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

/* Primary button */
.dc-btn-primary,
.wp-block-button.is-style-fill .wp-block-button__link {
  background: var(--sage-600);
  color: var(--white) !important;
  border-color: var(--sage-600);
  box-shadow: 0 1px 2px rgba(107, 124, 94, 0.15);
}

.dc-btn-primary:hover,
.wp-block-button.is-style-fill .wp-block-button__link:hover {
  background: var(--sage-700);
  border-color: var(--sage-700);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(107, 124, 94, 0.25);
}

/* Outline button */
.dc-btn-outline,
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: var(--slate-800) !important;
  border-color: var(--slate-300);
}

.dc-btn-outline:hover,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--slate-50);
  border-color: var(--slate-400);
  color: var(--slate-800) !important;
  transform: translateY(-1px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.dc-hero {
  background: var(--warm-white);
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}

.dc-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, var(--sage-50) 0%, var(--slate-50) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.6;
  z-index: 0;
}

.dc-hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.dc-hero__content {
  animation: fadeInUp 0.8s ease-out both;
}

.dc-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-600);
  background: var(--sage-50);
  border: 1px solid var(--sage-100);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.dc-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--slate-800);
  margin-bottom: 20px;
}

.dc-hero__subtitle {
  font-size: 1.1rem;
  color: var(--stone-600);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.dc-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.dc-hero__image {
  animation: fadeIn 1s ease-out 0.2s both;
  position: relative;
}

.dc-hero__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}

.dc-hero__cred-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
}

.dc-hero__cred-badge strong {
  font-size: 1.4rem;
  color: var(--slate-800);
  font-family: var(--font-display);
}

.dc-hero__cred-badge span {
  font-size: 0.75rem;
  color: var(--stone-600);
  line-height: 1.3;
}

/* ============================================================
   CREDENTIALS BAR
   ============================================================ */
.dc-cred-bar {
  background: var(--slate-50);
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
  padding: 28px 24px;
}

.dc-cred-bar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.dc-cred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.dc-cred-item__number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--slate-800);
  line-height: 1;
}

.dc-cred-item__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--stone-600);
  letter-spacing: 0.03em;
}

/* ============================================================
   SECTION WRAPPER
   ============================================================ */
.dc-section {
  padding: var(--section-padding);
}

.dc-section--alt {
  background: var(--slate-50);
}

.dc-section--dark {
  background: var(--slate-800);
  color: var(--stone-200);
}

.dc-section--dark h2,
.dc-section--dark h3 {
  color: var(--white);
}

.dc-section--dark p {
  color: var(--stone-400);
}

.dc-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.dc-section__header {
  text-align: center;
  margin-bottom: 56px;
}

.dc-section__title {
  margin-bottom: 12px;
}

.dc-section__subtitle {
  font-size: 1.05rem;
  color: var(--stone-600);
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================================
   TWO-PATH CARDS (Home page)
   ============================================================ */
.dc-path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.dc-path-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dc-path-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--sage-600);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.dc-path-card:hover {
  border-color: var(--slate-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.dc-path-card:hover::before {
  transform: scaleY(1);
}

.dc-path-card__icon {
  width: 52px;
  height: 52px;
  background: var(--sage-50);
  border: 1px solid var(--sage-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--sage-600);
  font-size: 1.4rem;
}

.dc-path-card__title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.dc-path-card__desc {
  font-size: 0.95rem;
  color: var(--stone-600);
  margin-bottom: 20px;
}

.dc-path-card__list {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
}

.dc-path-card__list li {
  font-size: 0.9rem;
  color: var(--slate-700);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.dc-path-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage-600);
  font-weight: 600;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.dc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dc-service-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all 0.3s ease;
}

.dc-service-card:hover {
  transform: translateY(-2px);
  border-color: var(--slate-700);
  box-shadow: var(--shadow-lg);
}

.dc-service-card__icon {
  color: var(--sage-600);
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.dc-service-card__title {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--slate-800);
}

.dc-service-card__desc {
  font-size: 0.9rem;
  color: var(--stone-600);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   PRICING TABLE
   ============================================================ */
.dc-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.dc-pricing-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
}

.dc-pricing-card--featured {
  border-color: var(--sage-600);
  box-shadow: 0 0 0 2px var(--sage-600);
}

.dc-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage-600);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.dc-pricing-card__tier {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage-600);
  margin-bottom: 8px;
}

.dc-pricing-card__name {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.dc-pricing-card__ideal {
  font-size: 0.85rem;
  color: var(--stone-600);
  margin-bottom: 20px;
}

.dc-pricing-card__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 4px;
  line-height: 1;
}

.dc-pricing-card__price-note {
  font-size: 0.8rem;
  color: var(--stone-600);
  margin-bottom: 24px;
}

.dc-pricing-card__features {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
  border-top: 1px solid var(--slate-100);
  padding-top: 20px;
}

.dc-pricing-card__features li {
  font-size: 0.9rem;
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  color: var(--slate-700);
  border-bottom: 1px solid var(--slate-50);
}

.dc-pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage-600);
  font-weight: 700;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.dc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.dc-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--sage-100), var(--sage-300), var(--sage-100));
}

.dc-step {
  text-align: center;
  position: relative;
}

.dc-step__number {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 2px solid var(--sage-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sage-600);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.dc-step__title {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.dc-step__desc {
  font-size: 0.9rem;
  color: var(--stone-600);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.dc-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.dc-testimonial {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}

.dc-testimonial::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 28px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--sage-100);
  pointer-events: none;
}

.dc-testimonial__quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--slate-700);
  line-height: 1.8;
  margin-bottom: 20px;
  padding-top: 16px;
}

.dc-testimonial__author {
  font-weight: 600;
  color: var(--slate-800);
  font-size: 0.9rem;
}

.dc-testimonial__role {
  font-size: 0.85rem;
  color: var(--stone-600);
}

.dc-testimonial__stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.dc-cta-band {
  background: var(--slate-800);
  padding: 72px 24px;
  text-align: center;
}

.dc-cta-band h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.dc-cta-band p {
  color: var(--stone-400);
  max-width: 540px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

.dc-cta-band .dc-btn-primary {
  background: var(--sage-600);
  border-color: var(--sage-600);
}

.dc-cta-band .dc-btn-phone {
  background: transparent;
  border-color: var(--slate-500);
  color: var(--white) !important;
}

.dc-cta-band .dc-btn-phone:hover {
  background: var(--slate-700);
  border-color: var(--slate-400);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.dc-about-hero {
  background: var(--warm-white);
  padding: 80px 24px;
}

.dc-about-hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.dc-about-photo {
  position: sticky;
  top: 100px;
}

.dc-about-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.dc-credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.dc-credential {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.dc-credential__icon {
  font-size: 1.2rem;
  color: var(--sage-600);
  flex-shrink: 0;
  margin-top: 2px;
}

.dc-credential__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-800);
  line-height: 1.3;
}

.dc-credential__sub {
  font-size: 0.8rem;
  color: var(--stone-600);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.dc-contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.dc-contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.dc-contact-info-item__icon {
  width: 44px;
  height: 44px;
  background: var(--sage-50);
  border: 1px solid var(--sage-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-600);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.dc-contact-info-item__title {
  font-weight: 600;
  color: var(--slate-800);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.dc-contact-info-item__value {
  font-size: 1.05rem;
  color: var(--slate-700);
}

.dc-contact-info-item__note {
  font-size: 0.85rem;
  color: var(--stone-600);
}

/* Contact form styles */
.dc-form input,
.dc-form textarea,
.dc-form select,
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--slate-800);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 16px;
}

.dc-form input:focus,
.dc-form textarea:focus,
.dc-form select:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
  outline: none;
  border-color: var(--sage-600);
  box-shadow: 0 0 0 3px rgba(107, 124, 94, 0.12);
}

.wpcf7-submit {
  background: var(--sage-600) !important;
  color: var(--white) !important;
  border: none !important;
  padding: 14px 36px !important;
  border-radius: var(--radius-md) !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  width: 100%;
  font-size: 1rem !important;
}

.wpcf7-submit:hover {
  background: var(--sage-700) !important;
  transform: translateY(-1px) !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer,
#colophon {
  background: var(--slate-800) !important;
  color: var(--stone-400) !important;
  padding: 60px 0 0 !important;
}

.dc-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px 48px;
}

.dc-footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.dc-footer__tagline {
  font-size: 0.9rem;
  color: var(--stone-400);
  line-height: 1.6;
  margin-bottom: 20px;
}

.dc-footer__col-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--stone-200);
  margin-bottom: 16px;
}

.dc-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dc-footer__links li {
  margin-bottom: 8px;
}

.dc-footer__links a {
  color: var(--stone-400);
  font-size: 0.9rem;
  transition: color 0.2s ease;
  text-decoration: none;
}

.dc-footer__links a:hover {
  color: var(--white);
}

.dc-footer__bottom {
  border-top: 1px solid var(--slate-700);
  padding: 20px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--stone-600);
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
.dc-service-area-towns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.dc-town-tag {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.85rem;
  color: var(--slate-700);
  font-weight: 500;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.dc-faq-item {
  border-bottom: 1px solid var(--slate-100);
}

.dc-faq-item summary {
  font-weight: 600;
  color: var(--slate-800);
  padding: 18px 0;
  cursor: pointer;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dc-faq-item summary::-webkit-details-marker { display: none; }

.dc-faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--sage-600);
  font-weight: 400;
  transition: transform 0.2s ease;
}

.dc-faq-item[open] summary::after {
  transform: rotate(45deg);
}

.dc-faq-item p {
  padding-bottom: 16px;
  color: var(--stone-600);
  font-size: 0.95rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scroll-triggered (add .dc-animate class via JS) */
.dc-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.dc-animate.dc-animate--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .dc-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dc-hero__image {
    display: none;
  }

  .dc-services-grid,
  .dc-pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dc-about-hero__inner {
    grid-template-columns: 1fr;
  }

  .dc-about-photo {
    position: static;
    max-width: 340px;
  }

  .dc-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 56px 0;
  }

  body {
    font-size: 16px;
  }

  .dc-hero {
    padding: 72px 16px 56px;
  }

  .dc-hero__actions {
    flex-direction: column;
  }

  .dc-hero__actions .dc-btn-primary,
  .dc-hero__actions .dc-btn-outline {
    width: 100%;
    text-align: center;
  }

  .dc-path-grid,
  .dc-services-grid,
  .dc-pricing-grid,
  .dc-steps,
  .dc-testimonials-grid,
  .dc-contact-grid,
  .dc-credentials-grid {
    grid-template-columns: 1fr;
  }

  .dc-steps::before {
    display: none;
  }

  .dc-cred-bar__inner {
    gap: 28px;
  }

  .dc-footer-grid {
    grid-template-columns: 1fr;
  }

  /* Sticky mobile CTA */
  .dc-mobile-cta {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--slate-800);
    padding: 12px 16px;
    gap: 10px;
    z-index: 9999;
    border-top: 1px solid var(--slate-700);
  }

  .dc-mobile-cta a {
    flex: 1;
    padding: 12px;
    font-size: 0.9rem;
    text-align: center;
    border-radius: var(--radius-md);
    font-weight: 600;
  }

  .dc-mobile-cta .dc-call {
    background: var(--sage-600);
    color: var(--white) !important;
  }

  .dc-mobile-cta .dc-schedule {
    background: var(--slate-700);
    color: var(--white) !important;
  }
}

/* Mobile CTA hidden on desktop */
.dc-mobile-cta {
  display: none;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.dc-text-center { text-align: center; }
.dc-text-sage   { color: var(--sage-600); }
.dc-text-stone  { color: var(--stone-600); }
.dc-mt-sm  { margin-top: 16px; }
.dc-mt-md  { margin-top: 32px; }
.dc-mt-lg  { margin-top: 56px; }
.dc-mb-sm  { margin-bottom: 16px; }
.dc-mb-md  { margin-bottom: 32px; }
.dc-mb-lg  { margin-bottom: 56px; }
.dc-gap-sm { gap: 16px; }
.dc-gap-md { gap: 32px; }
.dc-flex   { display: flex; }
.dc-flex-wrap { flex-wrap: wrap; }
.dc-align-center { align-items: center; }
