/* ============================================================
   NET GOOD BUSINESS / DUNNINGTON CONSULTING — Shared Styles
   ============================================================ */

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

:root {
  --forest: #1B3A2F; --forest2: #254d3f; --amber: #C4813A; --amber-l: #DFA060;
  --teal: #0D7377; --plum: #5C3D6E; --cream: #F5F0E8; --sand: #E8E0D5;
  --white: #FFFFFF; --dark: #1C1C1C; --mid: #4A4A4A; --light: #8A8A8A;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--mid); line-height: 1.65; }

/* ---- NAV ---- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--forest); display: flex; align-items: center;
  justify-content: space-between; padding: 0 5%; height: 64px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-brand { font-size: 0.9rem; font-weight: 700; color: var(--white); letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; }
.nav-brand span { color: var(--amber); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.75); font-size: 0.88rem; font-weight: 500; text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--amber); }
.btn-nav { background: var(--amber); color: var(--white) !important; padding: 0.45rem 1.2rem; border-radius: 4px; font-size: 0.85rem; font-weight: 600; text-decoration: none; }
.btn-nav:hover { background: var(--amber-l) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 0.3rem; }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 18px); left: -1rem;
  background: var(--forest2); border-radius: 8px; min-width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3); padding: 0.5rem 0;
  border: 1px solid rgba(255,255,255,0.08);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 0.65rem 1.2rem; font-size: 0.86rem; color: rgba(255,255,255,0.8) !important; border-left: 3px solid transparent; transition: background 0.15s, border-color 0.15s; }
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.06); border-left-color: var(--amber); color: var(--white) !important; }

/* Hamburger */
.nav-hamburger { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; padding: 0.4rem; }
#mobile-nav { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--forest2); z-index: 99; padding: 1rem 5% 1.5rem; border-bottom: 2px solid var(--amber); }
#mobile-nav.open { display: block; }
#mobile-nav a { display: block; padding: 0.7rem 0; color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
#mobile-nav a:hover { color: var(--amber); }

/* ---- HERO ---- */
.hero { background: var(--forest); padding: 140px 5% 100px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(196,129,58,0.12) 0%, transparent 60%); pointer-events: none; }
.hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.hero-tag { display: inline-block; background: rgba(196,129,58,0.2); border: 1px solid rgba(196,129,58,0.4);
  color: var(--amber-l); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.35rem 0.9rem; border-radius: 3px; margin-bottom: 1.8rem; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 0.4rem; max-width: 820px; }
.hero h1 em { font-style: italic; color: var(--amber); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.72); max-width: 640px;
  margin: 1.4rem 0 2.8rem; font-weight: 400; line-height: 1.7; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-stats { display: flex; gap: 3rem; margin-top: 4rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12); flex-wrap: wrap; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--amber); line-height: 1; display: block; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 0.2rem; }

/* ---- BUTTONS ---- */
.btn-primary { background: var(--amber); color: var(--white); padding: 0.85rem 2rem; border-radius: 4px;
  font-size: 0.95rem; font-weight: 700; text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--amber-l); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--white); padding: 0.85rem 2rem; border-radius: 4px;
  font-size: 0.95rem; font-weight: 600; text-decoration: none; display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.35); transition: border-color 0.2s, color 0.2s; }
.btn-secondary:hover { border-color: var(--amber); color: var(--amber); }
.btn-outline-dark { background: transparent; color: var(--forest); padding: 0.75rem 1.8rem; border-radius: 4px;
  font-size: 0.9rem; font-weight: 600; text-decoration: none; display: inline-block;
  border: 2px solid var(--forest); transition: background 0.2s, color 0.2s; }
.btn-outline-dark:hover { background: var(--forest); color: var(--white); }

/* ---- SECTIONS ---- */
section { padding: 90px 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.8rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700; color: var(--forest); line-height: 1.2; margin-bottom: 1.2rem; }
.section-lead { font-size: 1.05rem; color: var(--mid); max-width: 680px; line-height: 1.75; }
.divider { width: 48px; height: 4px; background: var(--amber); border-radius: 2px; margin: 1.2rem 0 2rem; }

/* ---- CARD GRIDS ---- */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }

.card { background: var(--white); border-radius: 10px; padding: 2rem; box-shadow: 0 2px 16px rgba(27,58,47,0.07); transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(27,58,47,0.12); }
.card-icon { font-size: 1.8rem; line-height: 1; margin-bottom: 1rem; display: block; }
.card h3 { font-size: 1rem; font-weight: 700; color: var(--forest); margin-bottom: 0.7rem; }
.card p { font-size: 0.93rem; color: var(--mid); line-height: 1.65; }
.card-top-border { border-top: 4px solid var(--forest); }
.card-top-amber { border-top: 4px solid var(--amber); }
.card-highlight { font-size: 0.82rem; font-weight: 700; color: var(--amber); margin-top: 1rem; padding-top: 0.8rem; border-top: 1px solid var(--sand); }

/* ---- PAIN / PROBLEM SECTION ---- */
.pain { background: var(--white); }
.pain-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.pain-card { background: var(--cream); border-radius: 8px; padding: 2rem; border-top: 4px solid var(--forest); }
.pain-icon { font-size: 1.8rem; line-height: 1; margin-bottom: 1rem; display: block; }
.pain-card h3 { font-size: 1rem; font-weight: 700; color: var(--forest); margin-bottom: 0.7rem; }
.pain-card p { font-size: 0.93rem; color: var(--mid); line-height: 1.65; }
.pain-cost { margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--sand);
  font-size: 0.82rem; font-weight: 700; color: var(--amber); }

/* ---- OUTCOMES (dark) ---- */
.outcomes { background: var(--forest); padding: 90px 5%; }
.outcomes .section-tag { color: var(--amber-l); }
.outcomes .section-title { color: var(--white); }
.outcomes .section-lead { color: rgba(255,255,255,0.65); max-width: 720px; }
.outcomes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3.5rem; }
.outcomes-col { background: rgba(255,255,255,0.07); border-radius: 10px; padding: 2rem; border: 1px solid rgba(255,255,255,0.1); }
.outcomes-col-label { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 1.4rem; display: flex; align-items: center; gap: 0.5rem; }
.outcomes-col-label .arrow { display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%; font-size: 0.8rem; font-weight: 900; }
.outcomes-col.up .outcomes-col-label { color: #6FCFA0; }
.outcomes-col.up .arrow { background: rgba(111,207,160,0.2); color: #6FCFA0; }
.outcomes-col.down .outcomes-col-label { color: var(--amber-l); }
.outcomes-col.down .arrow { background: rgba(196,129,58,0.2); color: var(--amber-l); }
.outcome-item { display: flex; align-items: flex-start; gap: 1rem; padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.outcome-item:last-child { border-bottom: none; }
.outcome-metric { font-size: 1.5rem; font-weight: 800; line-height: 1; min-width: 72px; flex-shrink: 0; }
.outcomes-col.up .outcome-metric { color: #6FCFA0; }
.outcomes-col.down .outcome-metric { color: var(--amber-l); }
.outcome-desc { font-size: 0.9rem; color: rgba(255,255,255,0.72); line-height: 1.5; }
.outcome-desc strong { color: var(--white); display: block; font-size: 0.95rem; margin-bottom: 0.1rem; }

/* ---- PROCESS / PHASES ---- */
.phase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.phase-card { border-radius: 10px; overflow: hidden; box-shadow: 0 2px 12px rgba(27,58,47,0.07); }
.phase-header { padding: 1.4rem 1.6rem; background: var(--forest); }
.phase-num { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.3rem; }
.phase-title { font-size: 1.05rem; font-weight: 800; color: var(--white); margin-bottom: 0.2rem; }
.phase-weeks { font-size: 0.8rem; color: var(--amber-l); font-style: italic; }
.phase-body { background: var(--cream); padding: 1.4rem 1.6rem; }
.phase-body ul { list-style: none; padding: 0; }
.phase-body ul li { font-size: 0.88rem; color: var(--mid); padding: 0.3rem 0 0.3rem 1.2rem; position: relative; line-height: 1.5; }
.phase-body ul li::before { content: '→'; position: absolute; left: 0; color: var(--amber); font-size: 0.8rem; }
.phase-result { margin-top: 1rem; padding-top: 0.8rem; border-top: 1px solid var(--sand); font-size: 0.8rem; font-weight: 700; color: var(--forest); }

/* ---- QUOTE BAND ---- */
.quote-band { background: var(--forest); padding: 70px 5%; }
.quote-band blockquote { max-width: 820px; margin: 0 auto; text-align: center; }
.quote-band blockquote p { font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic; color: var(--white); line-height: 1.55; margin-bottom: 1.5rem; }
.quote-band blockquote p em { color: var(--amber); font-style: normal; font-weight: 700; }
.quote-author { font-size: 0.88rem; color: rgba(255,255,255,0.5); font-weight: 500; }

/* ---- STATS BAR ---- */
.stats-bar { background: var(--amber); padding: 50px 5%; }
.stats-bar-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem; text-align: center; }
.stat-item .stat-num { color: var(--white); font-size: 2.4rem; }
.stat-item .stat-label { color: rgba(255,255,255,0.8); font-size: 0.88rem; font-weight: 600; }

/* ---- ABOUT ---- */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
.about-avatar { display: block; margin: 0 auto; border-radius: 12px; width: 220px; }
.about-name { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--forest); margin-bottom: 0.3rem; }
.about-title { font-size: 0.9rem; color: var(--amber); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.2rem; }
.about-bio { font-size: 0.98rem; color: var(--mid); line-height: 1.8; margin-bottom: 1.2rem; }
.about-contact { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--forest); font-weight: 600; font-size: 0.95rem; text-decoration: none; padding: 0.6rem 1.2rem; border: 2px solid var(--forest); border-radius: 4px; transition: background 0.2s, color 0.2s; }
.about-contact:hover { background: var(--forest); color: var(--white); }

/* ---- DOMAIN GRID (CEI) ---- */
.domain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.domain-card { background: var(--white); border-radius: 10px; padding: 1.6rem; border-left: 4px solid var(--amber); box-shadow: 0 2px 14px rgba(27,58,47,0.06); }
.domain-num { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--light); margin-bottom: 0.4rem; }
.domain-title { font-size: 1rem; font-weight: 700; color: var(--forest); margin-bottom: 0.5rem; }
.domain-desc { font-size: 0.88rem; color: var(--mid); line-height: 1.6; }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.testi-card { background: var(--cream); border-radius: 10px; padding: 2rem; position: relative; }
.testi-stars { color: var(--amber); font-size: 1rem; margin-bottom: 1rem; }
.testi-quote { font-size: 0.95rem; color: var(--mid); line-height: 1.7; font-style: italic; margin-bottom: 1.2rem; }
.testi-author { font-size: 0.85rem; font-weight: 700; color: var(--forest); }
.testi-role { font-size: 0.8rem; color: var(--light); }

/* ---- CTA BAND ---- */
.cta-band { background: var(--forest); padding: 90px 5%; text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 5px; background: var(--amber); }
.cta-band .section-tag { color: var(--amber-l); }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white); max-width: 720px; margin: 0 auto 1.2rem; line-height: 1.3; }
.cta-band h2 em { color: var(--amber); font-style: italic; }
.cta-band p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 540px; margin: 0 auto 2.8rem; }
.cta-band .hero-ctas { justify-content: center; }

/* ---- BREADCRUMB ---- */
.breadcrumb { background: var(--sand); padding: 0.7rem 5%; }
.breadcrumb-inner { max-width: 1100px; margin: 0 auto; font-size: 0.82rem; color: var(--light); }
.breadcrumb-inner a { color: var(--forest); text-decoration: none; font-weight: 500; }
.breadcrumb-inner a:hover { color: var(--amber); }
.breadcrumb-inner span { margin: 0 0.5rem; }

/* ---- FOOTER ---- */
footer { background: #111e19; padding: 2.5rem 5%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
footer .footer-brand { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; text-transform: uppercase; }
footer .footer-brand span { color: var(--amber); }
footer p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--amber-l); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .phase-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .card-grid-3, .pain-grid, .testi-grid, .outcomes-grid, .domain-grid { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
}
@media (max-width: 600px) {
  section { padding: 60px 5%; }
  .phase-grid { grid-template-columns: 1fr; }
  .card-grid-4 { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
}
