@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@300;400;500;600;700;800;900&family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --green: #0ba84a;
  --green-dark: #004926;
  --green-deep: #003318;
  --green-light: #e8f7ee;
  --green-mid: #0b843c;
  --white: #ffffff;
  --off-white: #f8faf9;
  --grey-light: #f2f4f3;
  --grey-mid: #8a9490;
  --grey-dark: #3d4440;
  --black: #111714;
  --font-display: 'League Spartan', sans-serif;
  --font-serif: 'DM Serif Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 2px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.12);
  --transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--black); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { font-size: 1rem; line-height: 1.75; color: var(--grey-dark); }
.label { font-family: var(--font-display); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }

.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.03em; padding: 0.85rem 1.8rem; border-radius: var(--radius); cursor: pointer; border: none; transition: all var(--transition); }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(11,168,74,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-dark { background: var(--green-dark); color: var(--white); }
.btn-dark:hover { background: var(--green-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--green); padding: 0; font-size: 0.9rem; }
.btn-ghost:hover { color: var(--green-dark); }
.btn-ghost .arrow { transition: transform var(--transition); }
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-height); display: flex; align-items: center; transition: all var(--transition); }
.nav.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(0,0,0,0.08); }
.nav.dark { background: transparent; }
.nav.dark.scrolled { background: rgba(0,33,16,0.97); }
.nav-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; width: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; transition: opacity var(--transition); }
.nav-logo:hover { opacity: 0.85; }
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-logo .logo-light { display: none; }
.nav-logo .logo-dark { display: block; }
.nav.dark .nav-logo .logo-light { display: block; }
.nav.dark .nav-logo .logo-dark { display: none; }
.nav.dark.scrolled .nav-logo .logo-light { display: block; }
.nav.dark.scrolled .nav-logo .logo-dark { display: none; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; color: var(--grey-dark); transition: color var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px; background: var(--green); transition: width var(--transition); }
.nav-links a:hover { color: var(--green-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--green); }
.nav.dark .nav-links a, .nav.dark.scrolled .nav-links a { color: rgba(255,255,255,0.8); }
.nav.dark .nav-links a:hover { color: var(--white); }
.nav-cta { margin-left: 1rem; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--green-dark); transition: all var(--transition); }
.nav.dark .nav-hamburger span { background: var(--white); }
.nav-mobile { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; background: var(--white); padding: 1.5rem 2rem 2rem; box-shadow: var(--shadow-lg); z-index: 99; flex-direction: column; gap: 1rem; }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--grey-dark); padding: 0.5rem 0; border-bottom: 1px solid var(--grey-light); }
.nav-mobile .btn { margin-top: 0.5rem; width: 100%; justify-content: center; }

/* FOOTER */
.footer { background: var(--green-deep); color: var(--white); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { display: flex; align-items: center; margin-bottom: 1rem; }
.footer-logo img { height: 32px; width: auto; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 0.6rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-col .contact-line { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }

/* HERO */
.hero-dark { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: var(--nav-height); background: var(--green-deep); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,25,12,0.88) 0%, rgba(0,40,20,0.75) 50%, rgba(0,51,24,0.82) 100%); z-index: 1; }
.hero-dark .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-content .label { margin-bottom: 1.5rem; }
.hero-content h1 { color: var(--white); margin-bottom: 1.5rem; line-height: 1.05; }
.hero-content h1 em { font-style: normal; color: var(--green); }
.hero-content p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 2rem; max-width: 480px; }
.hero-cta-group { display: flex; align-items: center; gap: 1.5rem; }
.hero-note { color: rgba(255,255,255,0.45); font-size: 0.8rem; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.08); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.hero-stat { background: rgba(255,255,255,0.04); padding: 2rem 1.5rem; transition: background var(--transition); }
.hero-stat:hover { background: rgba(255,255,255,0.07); }
.hero-stat-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--green); line-height: 1; margin-bottom: 0.5rem; }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.4; }

/* SERVICES STRIP */
.services-strip { background: var(--white); border-bottom: 1px solid var(--grey-light); padding: 3rem 0; }
.services-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--grey-light); }
.service-tile { background: var(--white); padding: 2rem 1.5rem; transition: all var(--transition); cursor: pointer; text-decoration: none; display: block; }
.service-tile:hover { background: var(--green-light); }
.service-tile-icon { width: 40px; height: 40px; background: var(--green-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; transition: background var(--transition); }
.service-tile:hover .service-tile-icon { background: var(--green); }
.service-tile:hover .service-tile-icon svg { stroke: var(--white); }
.service-tile h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.4rem; }
.service-tile p { font-size: 0.82rem; color: var(--grey-mid); line-height: 1.5; }

/* DIFFERENTIATORS — fixed number colour */
.diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.diff-card { background: var(--off-white); border: 1px solid var(--grey-light); border-radius: var(--radius-lg); padding: 2rem; transition: all var(--transition); }
.diff-card:hover { border-color: var(--green); box-shadow: 0 0 0 1px var(--green); }
.diff-card-num { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--grey-dark); opacity: 0.2; line-height: 1; margin-bottom: 0.75rem; }
.diff-card h3 { font-size: 1.1rem; color: var(--green-dark); margin-bottom: 0.75rem; }
.diff-card p { font-size: 0.92rem; }

/* STATS BAR */
.stats-bar { background: var(--green-dark); padding: 4rem 0; }
.stats-bar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.1); }
.stat-block { padding: 2rem 3rem; text-align: center; background: var(--green-dark); }
.stat-num { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* CASE CARDS */
.case-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.case-card { border: 1px solid var(--grey-light); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; }
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.case-card-bar { height: 4px; background: var(--green); }
.case-card-body { padding: 1.75rem; flex: 1; }
.case-card-industry { display: inline-block; font-family: var(--font-display); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); background: var(--green-light); padding: 0.25rem 0.6rem; border-radius: 2px; margin-bottom: 0.75rem; }
.case-card h3 { font-size: 1.15rem; color: var(--green-dark); margin-bottom: 0.75rem; }
.case-card p { font-size: 0.88rem; }
.case-card-footer { padding: 1rem 1.75rem; border-top: 1px solid var(--grey-light); display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

/* WHO */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.who-checklist li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.85rem 0; border-bottom: 1px solid var(--grey-light); font-size: 0.95rem; color: var(--grey-dark); }
.who-checklist li:last-child { border-bottom: none; }
.who-check { width: 20px; height: 20px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.who-note { margin-top: 1.5rem; font-style: italic; color: var(--grey-mid); font-size: 0.9rem; }

/* ABOUT TEASER */
.about-teaser { background: var(--green-dark); padding: 5rem 0; }
.about-teaser-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: center; }
.about-photo-wrap { position: relative; }
.about-photo-wrap::before { content: ''; position: absolute; inset: -12px -12px 12px 12px; border: 2px solid rgba(11,168,74,0.3); border-radius: var(--radius-lg); }
.about-photo { width: 100%; aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-teaser-content .label { margin-bottom: 1rem; }
.about-teaser-content h2 { color: var(--white); margin-bottom: 1.5rem; }
.about-teaser-content p { color: rgba(255,255,255,0.7); margin-bottom: 1rem; }

/* FINAL CTA */
.final-cta { background: var(--white); padding: 5rem 0; text-align: center; border-top: 1px solid var(--grey-light); }
.final-cta h2 { color: var(--green-dark); margin-bottom: 1rem; }
.final-cta p { color: var(--grey-dark); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* PAGE HERO */
.page-hero { background: var(--green-deep); padding: calc(var(--nav-height) + 4rem) 0 4rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(11,168,74,0.1) 0%, transparent 60%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .label { margin-bottom: 1rem; }
.page-hero h1 { color: var(--white); max-width: 700px; margin-bottom: 1.5rem; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 580px; font-size: 1.05rem; }

/* SERVICES PAGE */
.service-section { padding: 5rem 0; border-bottom: 1px solid var(--grey-light); }
.service-section:last-child { border-bottom: none; }
.service-section-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.service-section-grid.reverse { direction: rtl; }
.service-section-grid.reverse > * { direction: ltr; }
.service-content .label { margin-bottom: 0.75rem; }
.service-content h2 { color: var(--green-dark); margin-bottom: 0.5rem; }
.service-content .service-sub { font-family: var(--font-serif); font-size: 1.15rem; color: var(--green); font-style: italic; margin-bottom: 1.5rem; }
.service-content p { margin-bottom: 1rem; }
.includes-list { margin: 1.5rem 0; }
.includes-list li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.92rem; color: var(--grey-dark); padding: 0.5rem 0; border-bottom: 1px solid var(--grey-light); }
.includes-list li:last-child { border-bottom: none; }
.includes-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
.service-visual { background: var(--grey-light); border-radius: var(--radius-lg); aspect-ratio: 4/3; overflow: hidden; }
.service-visual img { width: 100%; height: 100%; object-fit: cover; }

/* CASE STUDIES PAGE */
.cs-full { padding: 4rem 0; border-bottom: 1px solid var(--grey-light); }
.cs-full:last-child { border-bottom: none; }
.cs-header { margin-bottom: 2.5rem; }
.cs-header .label { margin-bottom: 0.5rem; }
.cs-header h2 { color: var(--green-dark); }
.cs-meta { display: flex; gap: 1rem; margin-top: 0.75rem; flex-wrap: wrap; align-items: center; }
.cs-tag { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: var(--green-light); color: var(--green-dark); padding: 0.3rem 0.7rem; border-radius: 2px; }
/* Images hidden on desktop, shown on mobile */
.cs-image { display: none; }
.cs-body { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.cs-col h4 { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 0.75rem; }
.cs-col p { font-size: 0.92rem; margin-bottom: 0.75rem; }
.results-list { margin-top: 0.5rem; }
.results-list li { display: flex; gap: 0.75rem; align-items: flex-start; padding: 0.5rem 0; font-size: 0.9rem; color: var(--grey-dark); border-bottom: 1px solid var(--grey-light); }
.results-list li:last-child { border-bottom: none; }
.result-check { color: var(--green); font-weight: 700; flex-shrink: 0; }
.cs-status { margin-top: 1rem; font-style: italic; color: var(--green); font-size: 0.85rem; }
.cs-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1rem 0; }
.cs-stat-box { background: var(--green-light); border-radius: var(--radius); padding: 1rem; text-align: center; }
.cs-stat-box .cs-stat-num { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--green-dark); line-height: 1; margin-bottom: 0.25rem; }
.cs-stat-box .cs-stat-label { font-size: 0.68rem; color: var(--grey-mid); text-transform: uppercase; letter-spacing: 0.05em; font-family: var(--font-display); font-weight: 700; }
.cs-divider { height: 1px; background: var(--grey-light); margin: 1.5rem 0; }

/* PRICING */
.pricing-floor { background: var(--green-dark); border-radius: var(--radius-lg); padding: 3rem; text-align: center; margin-bottom: 4rem; }
.pricing-floor .floor-label { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 0.75rem; }
.pricing-floor .floor-price { font-family: var(--font-display); font-size: 3.5rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 0.5rem; }
.pricing-floor .floor-note { color: rgba(255,255,255,0.6); font-size: 1rem; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 4rem; }
.package-card { border: 1px solid var(--grey-light); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; }
.package-card.featured { border-color: var(--green); box-shadow: 0 0 0 1px var(--green); }
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.package-header { padding: 1.75rem; background: var(--off-white); border-bottom: 1px solid var(--grey-light); }
.package-card.featured .package-header { background: var(--green-dark); }
.package-badge { font-family: var(--font-display); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); background: var(--green); padding: 0.2rem 0.6rem; border-radius: 2px; display: inline-block; margin-bottom: 0.75rem; }
.package-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--green-dark); margin-bottom: 0.25rem; }
.package-card.featured .package-name { color: var(--white); }
.package-desc { font-size: 0.82rem; color: var(--grey-dark); margin-top: 0.5rem; }
.package-card.featured .package-desc { color: rgba(255,255,255,0.6); }
.package-body { padding: 1.75rem; flex: 1; }
.package-footer { padding: 1.25rem 1.75rem; border-top: 1px solid var(--grey-light); }

/* FAQ */
.faq-list { max-width: 750px; }
.faq-item { border-bottom: 1px solid var(--grey-light); padding: 1.5rem 0; }
.faq-q { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--green-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; user-select: none; }
.faq-q .faq-icon { width: 24px; height: 24px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all var(--transition); font-size: 1.1rem; color: var(--green); }
.faq-item.open .faq-icon { background: var(--green); color: var(--white); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding: 1rem 0 0; font-size: 0.92rem; }
.faq-item.open .faq-a { max-height: 300px; }

/* ABOUT */
.about-bio-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.about-photo-main { background: var(--grey-light); border-radius: var(--radius-lg); aspect-ratio: 3/4; overflow: hidden; position: sticky; top: calc(var(--nav-height) + 2rem); }
.about-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.about-bio p { margin-bottom: 1.25rem; }
.philosophy-block { background: var(--green-deep); border-radius: var(--radius-lg); padding: 3rem; margin-top: 3rem; position: relative; overflow: hidden; }
.philosophy-block::before { content: '"'; position: absolute; top: -1rem; left: 2rem; font-family: var(--font-serif); font-size: 8rem; color: rgba(11,168,74,0.15); line-height: 1; }
.philosophy-block p { color: rgba(255,255,255,0.8); font-style: italic; font-family: var(--font-serif); font-size: 1.1rem; line-height: 1.8; position: relative; z-index: 1; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 5rem; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey-dark); }
.form-group input, .form-group select, .form-group textarea { font-family: var(--font-body); font-size: 0.95rem; color: var(--black); background: var(--off-white); border: 1px solid var(--grey-light); border-radius: var(--radius); padding: 0.8rem 1rem; transition: border-color var(--transition); width: 100%; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); background: var(--white); box-shadow: 0 0 0 3px rgba(11,168,74,0.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info { position: sticky; top: calc(var(--nav-height) + 2rem); }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 2rem; }
.contact-detail-icon { width: 40px; height: 40px; background: var(--green-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail h4 { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey-mid); margin-bottom: 0.25rem; }
.contact-detail p { font-size: 0.95rem; color: var(--black); font-weight: 500; }

/* THANK YOU PAGE */
.thankyou-hero { background: var(--green-dark); padding: calc(var(--nav-height) + 3rem) 0 3rem; text-align: center; position: relative; overflow: hidden; }
.thankyou-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(11,168,74,0.12) 0%, transparent 70%); }
.thankyou-hero .container { position: relative; z-index: 1; }
.thankyou-hero h1 { color: var(--white); margin-bottom: 1rem; }
.thankyou-hero p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.thankyou-check { width: 72px; height: 72px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.prepare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 4rem; }
.prepare-card { background: var(--off-white); border: 1px solid var(--grey-light); border-radius: var(--radius-lg); padding: 1.75rem; }
.prepare-card-num { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--grey-dark); opacity: 0.2; line-height: 1; margin-bottom: 0.5rem; }
.prepare-card h3 { font-size: 1rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.prepare-card p { font-size: 0.88rem; }
.calendly-section { background: var(--off-white); border-top: 1px solid var(--grey-light); padding: 4rem 0; }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* UTILITIES */
.section-header { margin-bottom: 3.5rem; }
.section-header .label { margin-bottom: 0.75rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 560px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }
.divider { height: 1px; background: var(--grey-light); margin: 0; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-bio-grid { grid-template-columns: 1fr; }
  .about-photo-main { position: static; aspect-ratio: 16/9; max-height: 400px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .section { padding: 4rem 0; }
  .services-strip-grid { grid-template-columns: 1fr 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .stats-bar-grid { grid-template-columns: 1fr; }
  .stat-block { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .case-cards { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-teaser-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-wrap { display: none; }
  .packages-grid { grid-template-columns: 1fr; }
  .cs-body { grid-template-columns: 1fr; gap: 2rem; }
  .cs-stat-grid { grid-template-columns: 1fr 1fr; }
  /* Show case study images on mobile */
  .cs-image { display: block; width: 100%; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1.5rem; }
  .cs-image img { width: 100%; height: auto; display: block; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-section-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-section-grid.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .prepare-grid { grid-template-columns: 1fr; }
  .pricing-floor .floor-price { font-size: 2.5rem; }
}
