/* ========================================
   Anna 99 Words — Master Stylesheet
   All pages, one file
   ======================================== */

/* ===== BASE / HOMEPAGE STYLES ===== */
/* ===== ANNA 99 WORDS — EDITORIAL INK DESIGN ===== */
/* Color Palette: Emerald #065f46, Gold #d97706, Cream #fefce8, Charcoal #1c1917 */

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

:root {
  --emerald: #065f46;
  --emerald-dark: #064e3b;
  --emerald-light: #ecfdf5;
  --gold: #d97706;
  --gold-light: #fef3c7;
  --cream: #fefce8;
  --cream-dark: #fef9c3;
  --charcoal: #1c1917;
  --text: #292524;
  --text-light: #78716c;
  --white: #ffffff;
  --border: #e7e5e4;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--charcoal);
}

a { color: var(--emerald); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
}
.btn-primary:hover { background: var(--emerald-dark); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--emerald);
  border-color: var(--emerald);
}
.btn-outline:hover { background: var(--emerald); color: var(--white); }
.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }
.full-width { width: 100%; }

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: 2.2rem;
  margin-bottom: 12px;
  text-align: center;
}
.section-title.left { text-align: left; }
.section-title.white { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.section-subtitle.white { color: rgba(255,255,255,0.8); }

/* ===== NAVBAR ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 64px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-icon { width: 36px; height: 36px; }
.nav-brand-text {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1.3rem;
  color: var(--charcoal);
  letter-spacing: -0.5px;
}
.nav-brand-text strong { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--emerald); }
.nav-cta {
  background: var(--emerald) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 4px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--emerald-dark) !important; }
.nav-toggle-input { display: none; }
.nav-toggle-label { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle-label span { display: block; width: 24px; height: 2px; background: var(--charcoal); transition: 0.3s; }

/* ===== HERO ===== */
.hero {
  padding: 120px 0 80px;
  background: var(--cream);
  border-bottom: 3px solid var(--gold);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--emerald-light);
  color: var(--emerald);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-left: 3px solid var(--emerald);
}
.hero-title {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
.gold { color: var(--gold); }
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 16px; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 40px; }
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-num {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--emerald);
}
.hero-trust-label { font-size: 0.8rem; color: var(--text-light); }
.hero-image-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.hero-image-wrap::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  border: 3px solid var(--gold);
  border-radius: 6px;
  z-index: -1;
}
.hero-image {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 6px;
}

/* ===== INDUSTRIES ===== */
.industries {
  padding: 64px 0;
  background: var(--white);
}
.industry-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-left: 3px solid var(--emerald);
}
.chip svg { color: var(--emerald); flex-shrink: 0; }

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
  padding: 80px 0;
  background: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.service-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 4px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}
.service-icon svg { width: 48px; height: 48px; }
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.65;
}
.service-price {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald);
  background: var(--emerald-light);
  padding: 4px 12px;
  border-radius: 2px;
}
.services-cta { text-align: center; }

/* ===== PROCESS ===== */
.process {
  padding: 80px 0;
  background: var(--emerald);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.process-step {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  transition: background 0.3s;
}
.process-step:hover { background: rgba(255,255,255,0.05); }
.step-num {
  font-family: Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.process-step h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.process-step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ===== NUMBERS ===== */
.numbers {
  padding: 60px 0;
  background: var(--charcoal);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 20px;
}
.number-item { text-align: center; }
.number-value {
  display: block;
  font-family: Georgia, serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}
.number-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.numbers-note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== WHY US ===== */
.why-us {
  padding: 80px 0;
  background: var(--white);
}
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-us-image-wrap {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.why-us-image {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.why-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.why-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg { width: 28px; height: 28px; }
.why-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.why-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 80px 0;
  background: var(--cream);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 4px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
.testimonial-stars svg { width: 18px; height: 18px; }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}
.testimonials-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 28px;
}

/* ===== LEAD FORM ===== */
.lead-form-section {
  padding: 80px 0;
  background: var(--white);
}
.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.lead-form-content p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.7;
}
.lead-form-features { display: flex; flex-direction: column; gap: 12px; }
.lead-form-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
}
.lead-form-wrap {
  background: var(--cream);
  padding: 36px;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.92rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--emerald);
}
.form-privacy {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 12px;
  text-align: center;
}
.form-privacy a { color: var(--emerald); text-decoration: underline; }

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-icon { width: 32px; height: 32px; }
.footer-brand-text {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  color: var(--white);
}
.footer-brand-text strong { color: var(--gold); }
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.6);
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--gold); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 18px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  align-items: flex-start;
}
.footer-contact-row svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 3px;
}
.footer-contact-row a { color: rgba(255,255,255,0.6); }
.footer-contact-row a:hover { color: var(--gold); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.footer-disclaimer {
  font-size: 0.75rem !important;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid, .why-us-grid, .lead-form-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { max-width: 500px; }
  .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle-label { display: flex; }
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform 0.3s;
  }
  .nav-toggle-input:checked ~ .nav-links { transform: translateY(0); }
  .hero-title { font-size: 2.2rem; }
  .hero-btns { flex-direction: column; }
  .hero-trust { gap: 24px; }
  .services-grid, .testimonials-grid, .process-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .industry-chips { gap: 10px; }
}

@media (max-width: 480px) {
  .hero { padding: 90px 0 50px; }
  .hero-title { font-size: 1.8rem; }
  .hero-trust { flex-wrap: wrap; gap: 16px; }
  .lead-form-wrap { padding: 24px 18px; }
  .numbers-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* Logo Images */
.nav-logo-img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
}
.footer-logo-img {
    height: 56px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 12px;
}

/* ===== ABOUT PAGE ===== */
/* ===== PAGE HERO (shared across inner pages) ===== */
.page-hero {
  padding: 120px 0 60px;
  background: #fefce8;
  border-bottom: 3px solid #d97706;
  text-align: center;
}
.page-badge {
  display: inline-block;
  background: #ecfdf5;
  color: #065f46;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-left: 3px solid #065f46;
}
.page-title {
  font-size: 2.6rem;
  margin-bottom: 16px;
  color: #1c1917;
}
.page-desc {
  font-size: 1.05rem;
  color: #78716c;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ABOUT STORY ===== */
.about-story { padding: 80px 0; background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }
.about-text h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #1c1917;
}
.about-text p {
  font-size: 0.95rem;
  color: #78716c;
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-image-wrap {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.about-image {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.about-contact-info { margin-top: 20px; }
.about-contact-info p { margin-bottom: 8px; font-size: 0.92rem; }
.about-contact-info a { color: #065f46; }

/* ===== VALUES ===== */
.about-values { padding: 80px 0; background: #fefce8; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.value-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 8px;
  border-top: 3px solid #d97706;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}
.value-icon svg { width: 48px; height: 48px; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.value-card p { font-size: 0.88rem; color: #78716c; line-height: 1.6; }

/* ===== ABOUT OFFICE ===== */
.about-office { padding: 80px 0; background: #fff; }

/* ===== CTA BOX ===== */
.about-cta { padding: 80px 0; background: #ecfdf5; }
.cta-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-box h2 { font-size: 2rem; margin-bottom: 16px; }
.cta-box p { font-size: 1rem; color: #78716c; margin-bottom: 28px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid.reverse { direction: ltr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .page-title { font-size: 2rem; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: 1fr; }
  .timeline-item { padding-left: 40px; }
  .timeline-item::before { left: 0; }
  .timeline-marker { font-size: 0.75rem; padding: 4px 10px; }
}

/* ===== SERVICES PAGE ===== */
/* ===== PAGE HERO (imported from about.css via index.css shared) ===== */
.page-hero {
  padding: 120px 0 60px;
  background: #fefce8;
  border-bottom: 3px solid #d97706;
  text-align: center;
}
.page-badge {
  display: inline-block;
  background: #ecfdf5;
  color: #065f46;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-left: 3px solid #065f46;
}
.page-title {
  font-size: 2.6rem;
  margin-bottom: 16px;
  color: #1c1917;
}
.page-desc {
  font-size: 1.05rem;
  color: #78716c;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SERVICES DETAILED ===== */
.services-detailed { padding: 80px 0; background: #fff; }
.service-detail-card {
  background: #fefce8;
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 32px;
  border-left: 4px solid #065f46;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.service-detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.service-detail-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.service-detail-icon svg { width: 48px; height: 48px; }
.service-detail-header h2 { font-size: 1.4rem; margin-bottom: 4px; }
.service-detail-price {
  display: inline-block;
  background: #065f46;
  color: #fff;
  padding: 4px 14px;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 600;
}
.service-detail-card p { font-size: 0.92rem; color: #57534e; line-height: 1.7; margin-bottom: 12px; }
.service-detail-card h4 { font-size: 0.95rem; color: #1c1917; margin-bottom: 10px; margin-top: 20px; }
.service-detail-card ul { padding-left: 20px; margin-bottom: 12px; }
.service-detail-card li { font-size: 0.9rem; color: #57534e; margin-bottom: 6px; line-height: 1.6; }
.service-note {
  font-size: 0.82rem !important;
  color: #a8a29e !important;
  font-style: italic;
  border-top: 1px solid #e7e5e4;
  padding-top: 12px;
  margin-top: 16px;
}

/* ===== PROCESS ===== */
.process-section { padding: 80px 0; background: #ecfdf5; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.step-number {
  display: inline-block;
  background: #065f46;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.process-step-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.process-step-card p { font-size: 0.88rem; color: #78716c; line-height: 1.6; }

/* ===== FAQ ===== */
.services-faq { padding: 80px 0; background: #fff; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.faq-item {
  background: #fefce8;
  padding: 28px;
  border-radius: 4px;
  border-left: 3px solid #d97706;
}
.faq-item h3 { font-size: 1rem; margin-bottom: 10px; color: #1c1917; }
.faq-item p { font-size: 0.9rem; color: #78716c; line-height: 1.6; }

/* ===== CTA ===== */
.about-cta { padding: 80px 0; background: #ecfdf5; }
.cta-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-box h2 { font-size: 2rem; margin-bottom: 16px; }
.cta-box p { font-size: 1rem; color: #78716c; margin-bottom: 28px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .page-title { font-size: 2rem; }
  .service-detail-card { padding: 24px; }
  .process-steps { grid-template-columns: 1fr; }
}

/* ===== PORTFOLIO PAGE ===== */
/* ===== PAGE HERO ===== */
.page-hero {
  padding: 120px 0 60px;
  background: #fefce8;
  border-bottom: 3px solid #d97706;
  text-align: center;
}
.page-badge {
  display: inline-block;
  background: #ecfdf5;
  color: #065f46;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-left: 3px solid #065f46;
}
.page-title { font-size: 2.6rem; margin-bottom: 16px; color: #1c1917; }
.page-desc { font-size: 1.05rem; color: #78716c; max-width: 600px; margin: 0 auto; }

/* ===== CASE STUDIES ===== */
.portfolio-cases { padding: 80px 0; background: #fff; }
.case-study {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid #e7e5e4;
}
.case-study:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.case-study.reverse { direction: rtl; }
.case-study.reverse > * { direction: ltr; }
.case-image-wrap {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.case-image { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.case-tag {
  display: inline-block;
  background: #ecfdf5;
  color: #065f46;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.case-content h2 { font-size: 1.4rem; margin-bottom: 16px; color: #1c1917; }
.case-content p { font-size: 0.9rem; color: #57534e; line-height: 1.7; margin-bottom: 12px; }
.case-disclaimer {
  font-size: 0.8rem !important;
  color: #a8a29e !important;
  font-style: italic;
  border-top: 1px solid #e7e5e4;
  padding-top: 12px;
  margin-top: 16px;
}

/* ===== CTA ===== */
.about-cta { padding: 80px 0; background: #ecfdf5; }
.cta-box { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-box h2 { font-size: 2rem; margin-bottom: 16px; }
.cta-box p { font-size: 1rem; color: #78716c; margin-bottom: 28px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .case-study { grid-template-columns: 1fr; gap: 32px; }
  .case-study.reverse { direction: ltr; }
}
@media (max-width: 768px) {
  .page-title { font-size: 2rem; }
}

/* ===== BLOG PAGE ===== */
/* ===== PAGE HERO ===== */
.page-hero {
  padding: 120px 0 60px;
  background: #fefce8;
  border-bottom: 3px solid #d97706;
  text-align: center;
}
.page-badge {
  display: inline-block;
  background: #ecfdf5;
  color: #065f46;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-left: 3px solid #065f46;
}
.page-title { font-size: 2.6rem; margin-bottom: 16px; color: #1c1917; }
.page-desc { font-size: 1.05rem; color: #78716c; max-width: 600px; margin: 0 auto; }

/* ===== BLOG LISTING ===== */
.blog-listing { padding: 80px 0; background: #fff; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.blog-card {
  background: #fefce8;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.blog-image-wrap { overflow: hidden; }
.blog-image { width: 100%; aspect-ratio: 5/3; object-fit: cover; }
.blog-card-content { padding: 24px; }
.blog-tag {
  display: inline-block;
  background: #065f46;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-card-content h2 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card-content h2 a { color: #1c1917; text-decoration: none; }
.blog-card-content h2 a:hover { color: #065f46; }
.blog-card-content p { font-size: 0.88rem; color: #78716c; line-height: 1.6; margin-bottom: 16px; }
.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: #a8a29e;
}

/* ===== NEWSLETTER ===== */
.blog-newsletter { padding: 80px 0; background: #ecfdf5; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto 12px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #d6d3d1;
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: inherit;
}
.newsletter-form input:focus { border-color: #065f46; outline: none; }
.cta-box { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-box h2 { font-size: 2rem; margin-bottom: 16px; }
.cta-box p { font-size: 1rem; color: #78716c; margin-bottom: 28px; }
.form-privacy { font-size: 0.78rem; color: #a8a29e; text-align: center; }
.form-privacy a { color: #065f46; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .page-title { font-size: 2rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
}

/* ===== CONTACT PAGE ===== */
/* ===== PAGE HERO ===== */
.page-hero {
  padding: 120px 0 60px;
  background: #fefce8;
  border-bottom: 3px solid #d97706;
  text-align: center;
}
.page-badge {
  display: inline-block;
  background: #ecfdf5;
  color: #065f46;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-left: 3px solid #065f46;
}
.page-title { font-size: 2.6rem; margin-bottom: 16px; color: #1c1917; }
.page-desc { font-size: 1.05rem; color: #78716c; max-width: 600px; margin: 0 auto; }

/* ===== CONTACT MAIN ===== */
.contact-main { padding: 80px 0; background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { font-size: 1.6rem; margin-bottom: 12px; }
.contact-info > p { font-size: 0.92rem; color: #78716c; margin-bottom: 32px; line-height: 1.6; }

.contact-method {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-method-icon {
  width: 40px;
  height: 40px;
  background: #ecfdf5;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
}
.contact-method-icon svg { width: 24px; height: 24px; }
.contact-method h3 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-method p { font-size: 0.88rem; color: #57534e; margin-bottom: 2px; }
.contact-method a { color: #065f46; text-decoration: none; }
.contact-method a:hover { text-decoration: underline; }
.contact-note { font-size: 0.78rem !important; color: #a8a29e !important; }

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  background: #fefce8;
  padding: 40px;
  border-radius: 4px;
  border-top: 3px solid #d97706;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.contact-form-wrap h2 { font-size: 1.4rem; margin-bottom: 24px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid #d6d3d1;
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: inherit;
  background: #fff;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #065f46;
  outline: none;
}
.full-width { width: 100%; }
.form-privacy { font-size: 0.78rem; color: #a8a29e; margin-top: 12px; text-align: center; }
.form-privacy a { color: #065f46; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .page-title { font-size: 2rem; }
  .contact-form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===== LEGAL PAGES ===== */
/* ===== PAGE HERO ===== */
.page-hero {
  padding: 120px 0 60px;
  background: #fefce8;
  border-bottom: 3px solid #d97706;
  text-align: center;
}
.page-badge {
  display: inline-block;
  background: #ecfdf5;
  color: #065f46;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-left: 3px solid #065f46;
}
.page-title { font-size: 2.6rem; margin-bottom: 16px; color: #1c1917; }
.page-desc { font-size: 1.05rem; color: #78716c; max-width: 600px; margin: 0 auto; }

/* ===== LEGAL CONTENT ===== */
.legal-content { padding: 80px 0; background: #fff; }
.legal-container { max-width: 780px; margin: 0 auto; }
.legal-container h2 {
  font-size: 1.3rem;
  color: #1c1917;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ecfdf5;
}
.legal-container h2:first-child { margin-top: 0; }
.legal-container h3 {
  font-size: 1.05rem;
  color: #1c1917;
  margin-top: 20px;
  margin-bottom: 10px;
}
.legal-container p {
  font-size: 0.92rem;
  color: #57534e;
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-container ul,
.legal-container ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-container li {
  font-size: 0.92rem;
  color: #57534e;
  line-height: 1.8;
  margin-bottom: 6px;
}
.legal-container a { color: #065f46; }
.legal-container a:hover { text-decoration: underline; }
.legal-container strong { color: #1c1917; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .page-title { font-size: 2rem; }
  .legal-container { padding: 0 16px; }
}


/* ===== BLOG PAGE — NEW SECTIONS ===== */

.blog-intro { padding: 40px 0 10px; }
.blog-intro-text { font-size: 1.05rem; color: var(--text-light); line-height: 1.8; max-width: 900px; }

.featured-blog { border: 2px solid var(--gold-light); background: var(--cream); }
.featured-blog .blog-card-content { padding: 28px; }

.blog-read-more {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--emerald);
  border-bottom: 2px solid var(--emerald);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.blog-read-more:hover { color: var(--gold); border-color: var(--gold); }

.blog-categories { padding: 80px 0; background: var(--cream); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  transition: box-shadow 0.2s;
}
.category-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.category-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--emerald-dark);
}
.category-card p { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; margin-bottom: 12px; }
.category-count { font-size: 0.85rem; font-weight: 600; color: var(--gold); }

@media (max-width: 768px) {
  .categories-grid { grid-template-columns: 1fr; }
}

/* ===== CONTACT PAGE — NEW SECTIONS ===== */

.contact-brief-guide { padding: 80px 0; background: var(--cream); }
.brief-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.brief-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
}
.brief-item h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--emerald-dark); }
.brief-item p { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }

.contact-next-steps { padding: 80px 0; }
.next-steps-grid { margin-top: 40px; }
.next-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.next-step:last-child { border-bottom: none; }
.next-step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--emerald);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
}
.next-step h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--charcoal); }
.next-step p { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }

.contact-map { padding: 80px 0; background: var(--cream); }
.map-wrap { margin-top: 30px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.map-directions { margin-top: 40px; }
.map-directions h3 { font-size: 1.3rem; margin-bottom: 20px; }
.directions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.direction-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}
.direction-item h4 { font-size: 1rem; margin-bottom: 8px; color: var(--emerald-dark); }
.direction-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

.contact-faq { padding: 80px 0; }
.contact-faq .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.contact-faq .faq-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}
.contact-faq .faq-item h3 { font-size: 1rem; margin-bottom: 10px; color: var(--charcoal); }
.contact-faq .faq-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.contact-faq .faq-item p a { color: var(--emerald); font-weight: 500; }

@media (max-width: 768px) {
  .brief-grid { grid-template-columns: 1fr; }
  .directions-grid { grid-template-columns: 1fr; }
  .contact-faq .faq-grid { grid-template-columns: 1fr; }
  .next-step { flex-direction: column; gap: 12px; }
}

/* ===== LEGAL PAGES — TABLE STYLING ===== */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 30px;
  font-size: 0.92rem;
}
.legal-table th, .legal-table td {
  border: 1px solid var(--border);
  padding: 12px 16px;
  text-align: left;
  line-height: 1.6;
}
.legal-table th {
  background: var(--emerald);
  color: var(--white);
  font-weight: 600;
  font-family: Georgia, 'Times New Roman', Times, serif;
}
.legal-table td { background: var(--white); color: var(--text); }
.legal-table tr:nth-child(even) td { background: var(--cream); }

/* ===== HOMEPAGE: WHAT MAKES OUR COPY DIFFERENT ===== */
.copy-difference { padding: 80px 0; background: var(--white); }
.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.difference-item {
  background: var(--cream);
  padding: 32px 24px;
  border-radius: 8px;
  border-top: 3px solid var(--emerald);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.difference-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.difference-item h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}
.difference-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}
@media (max-width: 1024px) {
  .difference-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .difference-grid { grid-template-columns: 1fr; }
}

/* ===== HOMEPAGE: A CLOSER LOOK AT OUR SERVICES ===== */
.service-breakdown { padding: 80px 0; background: var(--emerald-light); }
.breakdown-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-bottom: 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.breakdown-card:last-child { margin-bottom: 0; }
.breakdown-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.breakdown-card h3 {
  font-size: 1.15rem;
  margin-bottom: 16px;
  color: var(--emerald-dark);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.breakdown-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}
.breakdown-card p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
  .breakdown-card { padding: 24px 20px; }
}

/* ===== ABOUT PAGE: OUR WRITING METHODOLOGY ===== */
.about-methodology { padding: 80px 0; background: var(--white); }
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.methodology-step {
  background: var(--cream);
  padding: 32px 24px;
  border-radius: 8px;
  border-top: 3px solid var(--emerald);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.methodology-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.methodology-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--emerald);
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 16px;
}
.methodology-step h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}
.methodology-step p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}
@media (max-width: 1024px) {
  .methodology-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .methodology-grid { grid-template-columns: 1fr; }
}

/* ===== ABOUT PAGE — TEAM SECTION ===== */
.about-team { padding: 80px 0; background: var(--white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.team-card {
  background: var(--cream);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  text-align: center;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.team-photo {
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-card h3 {
  font-size: 1.15rem;
  margin: 20px 20px 4px;
  color: var(--charcoal);
}
.team-role {
  display: block;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin: 0 20px 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.team-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
  padding: 0 20px 24px;
  text-align: left;
}
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== ABOUT PAGE — TIMELINE SECTION ===== */
.about-timeline { padding: 80px 0; background: var(--cream); }
.timeline {
  position: relative;
  margin-top: 40px;
  padding-left: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--emerald);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  padding-left: 72px;
  padding-bottom: 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 6px;
  width: 19px;
  height: 19px;
  background: var(--gold);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--emerald);
  z-index: 1;
}
.timeline-marker {
  display: inline-block;
  background: var(--emerald);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.timeline-content h3 {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 700px;
}

/* ===== ABOUT PAGE — TOOLS SECTION ===== */
.about-tools { padding: 80px 0; background: var(--white); }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.tool-item {
  background: var(--cream);
  padding: 28px 20px;
  border-radius: 8px;
  border-left: 3px solid var(--emerald);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}
.tool-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.tool-item svg {
  margin-bottom: 12px;
}
.tool-item span {
  display: block;
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.tool-item p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== ABOUT PAGE — STATS BAR ===== */
.about-stats { padding: 60px 0; background: var(--emerald); }
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {
  padding: 20px 10px;
}
.stat-number {
  display: block;
  font-family: Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.about-stats .disclaimer-text {
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 2.2rem; }
}

/* ===== ABOUT PAGE — CLIENTS / WHO WE WORK WITH ===== */
.about-clients { padding: 80px 0; background: var(--cream); }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.client-type {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 8px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.client-type:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.client-type h3 {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-light);
}
.client-type p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== ABOUT PAGE — OFFICE DETAILS ===== */
.office-details {
  margin-top: 24px;
}
.office-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding: 14px 16px;
  background: var(--cream);
  border-radius: 6px;
  border-left: 3px solid var(--gold);
}
.office-detail-row svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.office-detail-row strong {
  display: block;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.office-detail-row p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}
.office-detail-row a {
  color: var(--emerald);
  font-weight: 500;
}

/* ============================================
   SERVICES PAGE — PRICING TRANSPARENCY CARDS
   ============================================ */
.pricing-transparency {
  padding: 80px 0;
  background: #f0fdf4;
}
.transparency-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.transparency-item {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  border-top: 4px solid #065f46;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.transparency-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.transparency-item h3 {
  font-size: 1.1rem;
  color: #1c1917;
  margin-bottom: 12px;
  font-weight: 700;
}
.transparency-item p {
  font-size: 0.92rem;
  color: #57534e;
  line-height: 1.7;
}

/* ============================================
   SERVICES PAGE — IMPROVED SERVICE DETAIL CARDS
   Sub-section styling for h4 blocks
   ============================================ */
.service-detail-card h4 {
  font-size: 0.95rem;
  color: #065f46;
  margin-bottom: 10px;
  margin-top: 24px;
  padding: 8px 14px;
  background: #f0fdf4;
  border-left: 3px solid #065f46;
  border-radius: 0 4px 4px 0;
  font-weight: 700;
  display: block;
}
.service-detail-card ul {
  padding-left: 24px;
  margin-bottom: 16px;
  background: #fffbeb;
  border-radius: 6px;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-right: 14px;
}
.service-detail-card li {
  font-size: 0.9rem;
  color: #57534e;
  margin-bottom: 8px;
  line-height: 1.7;
  position: relative;
}
.service-detail-card li::marker {
  color: #065f46;
}

/* Responsive for pricing transparency */
@media (max-width: 768px) {
  .transparency-grid {
    grid-template-columns: 1fr;
  }
}
