/* ============================================
   MOUTINHO CONSULTING — Main Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #000;
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Variables --- */
:root {
  --blue: #00365c;
  --green: #126f67;
  --pink: #ef8684;
  --pink-light: #f09c9b;
  --black: #000;
  --grey: #b2b2b2;
  --white: #fff;
  --light-bg: #f6f8fa;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --container-max: 1160px;
  --container-pad: 2rem;
  --nav-height: 72px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
  font-family: var(--font-body);
  line-height: 1.8;
  color: #444;
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--pink-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(239, 134, 132, 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.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline-dark:hover {
  background: var(--blue);
  color: var(--white);
}

/* --- Section Spacing --- */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: var(--light-bg); }

/* --- Section Headers --- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  color: var(--blue);
  margin-bottom: 1rem;
}
.section-title.green { color: var(--green); }

.section-subtitle {
  font-size: 1.05rem;
  color: #555;
  max-width: 620px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.divider {
  width: 48px;
  height: 3px;
  background: var(--pink);
  margin: 1.25rem 0;
  border-radius: 2px;
}
.divider-center { margin-left: auto; margin-right: auto; }

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid #eee;
  height: var(--nav-height);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.nav-logo {
  height: 48px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.01em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo span { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--pink) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--pink-light) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.page-content { padding-top: var(--nav-height); }

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--blue);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.footer-brand .logo {
  color: var(--white);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  max-width: 300px;
  line-height: 1.75;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.25rem;
}

.footer-links li { margin-bottom: 0.625rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.45);
  font-size: 0.825rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-legal a {
  color: rgba(255,255,255,0.45);
  font-size: 0.825rem;
  font-family: var(--font-body);
  transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ============================================
   POLICY PAGES
   ============================================ */

.policy-content {
  max-width: 720px;
  padding: 80px 0 96px;
}

.policy-content h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin: 2.5rem 0 0.75rem;
}

.policy-content h3:first-of-type { margin-top: 0; }

.policy-content p {
  font-size: 0.975rem;
  color: #444;
  margin-bottom: 1rem;
}

.policy-content ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.policy-content ul li {
  font-family: var(--font-body);
  font-size: 0.975rem;
  color: #444;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  line-height: 1.7;
}

.policy-content ul li::before {
  content: '—';
  color: var(--pink);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05em;
}

.policy-content .policy-updated {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
  font-size: 0.825rem;
  color: #999;
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */

.page-header {
  background: var(--blue);
  padding: 80px 0 72px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: rgba(18,111,103,0.12);
  border-radius: 50%;
  pointer-events: none;
}
.page-header .section-label { color: var(--pink); }
.page-header h1 { color: var(--white); margin-bottom: 1rem; }
.page-header p {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  max-width: 560px;
}

/* ============================================
   HERO (Homepage)
   ============================================ */

.hero {
  background: var(--blue);
  color: var(--white);
  padding: 100px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -8%;
  width: 640px;
  height: 640px;
  background: rgba(18,111,103,0.18);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -35%;
  left: -5%;
  width: 420px;
  height: 420px;
  background: rgba(239,134,132,0.1);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.hero-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.5rem;
  display: block;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.1;
}
.hero h1 em {
  font-style: normal;
  color: var(--pink);
}
.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2.5rem;
  max-width: 560px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================
   INTRO SECTION (Homepage)
   ============================================ */

.intro-section { padding: 96px 0; }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.intro-body p {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}
.intro-body .btn { margin-top: 0.75rem; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.stat-card {
  background: var(--light-bg);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  border-top: 4px solid var(--green);
  text-align: center;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================
   CLIENTS SECTION
   ============================================ */

.clients-section {
  background: var(--light-bg);
  padding: 80px 0;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.client-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.client-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(18,111,103,0.1);
  transform: translateY(-2px);
}
.client-card img {
  max-height: 64px;
  max-width: 80%;
  width: auto;
  height: auto;
  display: block;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  background: var(--green);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-content { padding: 96px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: start;
}

.about-body p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: #444;
}

.about-photo-wrap {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 2.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 4px solid var(--white);
  outline: 3px solid #e8edf1;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}


.highlights-box {
  background: var(--light-bg);
  border-radius: 8px;
  padding: 2.5rem;
  border-left: 4px solid var(--pink);
}
.highlights-box h3 {
  color: var(--green);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}
.highlights-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #ddd;
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.highlights-list li:last-child { border-bottom: none; }
.highlights-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.expertise-section {
  background: var(--blue);
  padding: 80px 0;
}
.expertise-section .section-title { color: var(--white); }
.expertise-section .section-subtitle { color: rgba(255,255,255,0.72); }

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.expertise-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 2.25rem;
}
.expertise-card .icon {
  width: 44px;
  height: 44px;
  background: var(--pink);
  border-radius: 8px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.expertise-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.625rem;
  font-size: 1rem;
}
.expertise-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ============================================
   PHILOSOPHY PAGE
   ============================================ */

.philosophy-lead { padding: 96px 0; }

.philosophy-lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.philosophy-lead p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.philosophy-principles {
  background: var(--light-bg);
  padding: 80px 0;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.principle-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem;
  border-top: 4px solid var(--green);
}
.principle-num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--grey);
  line-height: 1;
  margin-bottom: 1rem;
}
.principle-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--blue);
  font-size: 1.05rem;
  margin-bottom: 0.625rem;
}
.principle-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
}

.quote-section {
  background: var(--blue);
  padding: 96px 0;
  text-align: center;
}
.blockquote {
  max-width: 780px;
  margin: 0 auto;
}
.quote-mark {
  font-family: var(--font-heading);
  font-size: 7rem;
  color: var(--green);
  line-height: 0.7;
  display: block;
  margin-bottom: 2rem;
  opacity: 0.55;
}
.blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--white);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 1.75rem;
}
.blockquote cite {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--pink);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.quote-section--grey { background: var(--light-bg); }
.quote-section--grey .blockquote p { color: var(--blue); }
.quote-section--grey .quote-mark { color: var(--grey); }
.quote-section--grey .blockquote cite { color: var(--green); }

/* ============================================
   SERVICES PAGE
   ============================================ */

.services-intro { padding: 80px 0 48px; }
.services-intro .section-subtitle { max-width: 700px; }

/* Process flow */
.process-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}
.process-step {
  flex: 1;
  text-align: center;
  position: relative;
}
.process-node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}
.process-arrow {
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 16px;
}
.process-arrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--pink);
  position: relative;
}
.process-arrow::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--pink);
  border-right: 2px solid var(--pink);
  transform: rotate(45deg);
  margin-left: -6px;
}
.process-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
.process-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
  max-width: 200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .process-flow {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .process-step { max-width: 300px; }
  .process-arrow {
    flex: 0 0 40px;
    flex-direction: column;
    padding-top: 0;
    position: relative;
  }
  .process-arrow::before {
    width: 2px;
    height: 24px;
  }
  .process-arrow::after {
    border-top: 2px solid var(--pink);
    border-right: 2px solid var(--pink);
    transform: rotate(135deg);
    margin-left: 0;
    margin-top: -6px;
  }
  .process-desc { max-width: 100%; }
}

.services-grid-section { padding: 0 0 96px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border: 1px solid #eaecee;
  border-radius: 10px;
  padding: 2.5rem 2.25rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: #eaecee;
  transition: background 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 8px 36px rgba(0,0,0,0.09);
  transform: translateY(-5px);
  border-color: transparent;
}
.service-card:hover::before { background: var(--pink); }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--light-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  transition: background 0.3s ease;
}
.service-card:hover .service-icon { background: #fef0ef; }

.service-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--blue);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.75;
}

.services-cta {
  background: var(--light-bg);
  padding: 80px 0;
  text-align: center;
}
.services-cta h2 { color: var(--blue); margin-bottom: 1rem; }
.services-cta p {
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section { padding: 96px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 6rem;
  align-items: start;
}

.contact-info h3 {
  color: var(--green);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.contact-info > p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.5rem;
}
.contact-detail .label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
}
.contact-detail a,
.contact-detail span {
  font-family: var(--font-body);
  color: var(--blue);
  font-weight: 500;
  font-size: 0.95rem;
}

.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 3rem;
  border: 1px solid #e8e8e8;
  box-shadow: 0 4px 32px rgba(0,0,0,0.05);
}

.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #333;
  background: #fafafa;
  transition: all 0.2s ease;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,54,92,0.08);
}
.form-group textarea {
  resize: vertical;
  min-height: 150px;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 0.5rem;
}
.form-submit:hover {
  background: var(--pink-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(239,134,132,0.4);
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success .check {
  width: 64px;
  height: 64px;
  background: #e8f5f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
}
.form-success h3 {
  color: var(--green);
  margin-bottom: 0.75rem;
}
.form-success p { color: #666; }

/* ============================================
   TEAM TOOLS PAGE
   ============================================ */

.tool-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.tool-header {
  margin-bottom: 3rem;
}

/* Filter buttons */
.filter-group {
  display: flex;
  gap: 0.625rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.375rem;
  border-radius: 100px;
  border: 2px solid #ddd;
  background: transparent;
  color: #888;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.filter-btn.active[data-filter="practical"] {
  background: #00365c;
  border-color: #00365c;
  color: #fff;
}

.filter-btn.active[data-filter="reflective"] {
  background: #126f67;
  border-color: #126f67;
  color: #fff;
}

.filter-btn.active[data-filter="fun"] {
  background: #ef8684;
  border-color: #ef8684;
  color: #fff;
}

/* Category-specific card backgrounds */
.question-card.has-question.cat-practical  { background: #00365c; border-color: #00365c; box-shadow: 0 6px 32px rgba(0,54,92,0.2); }
.question-card.has-question.cat-reflective { background: #126f67; border-color: #126f67; box-shadow: 0 6px 32px rgba(18,111,103,0.2); }
.question-card.has-question.cat-fun        { background: #ef8684; border-color: #ef8684; box-shadow: 0 6px 32px rgba(239,134,132,0.3); }

.question-card.cat-practical .question-text,
.question-card.cat-reflective .question-text,
.question-card.cat-fun .question-text { color: #fff; }

.question-card.cat-practical .question-tag,
.question-card.cat-reflective .question-tag,
.question-card.cat-fun .question-tag { color: rgba(255,255,255,0.7); }

/* Question card */
.question-card {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 3rem 3.5rem;
  text-align: center;
  min-height: 196px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 0 2rem;
  transition: opacity 0.18s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid transparent;
}

.question-card.has-question {
  background: var(--white);
  border-color: #e4e8ec;
  box-shadow: 0 6px 32px rgba(0,0,0,0.07);
}

.question-placeholder {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #bbb;
  margin: 0;
}

.question-text {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  color: var(--blue);
  line-height: 1.45;
  font-style: italic;
  font-weight: 700;
  margin: 0 0 1rem;
}

.question-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
}

/* Tool actions */
.tool-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Coming soon inline link */
.cta-inline-link {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-inline-link:hover {
  opacity: 0.85;
}

/* ============================================
   TOOL OVERVIEW CARDS (Team Tools page)
   ============================================ */

.tool-overview-section {
  padding: 64px 0 0;
}

.tool-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .tool-overview-grid { grid-template-columns: 1fr 1fr; }
}

.tool-overview-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e4e8ec;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.tool-overview-header {
  padding: 2rem 2.25rem 1.75rem;
}

.tool-overview-header--navy { background: #00365c; }
.tool-overview-header--teal { background: #126f67; }

.tool-overview-header h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  white-space: nowrap;
}

.tool-overview-body {
  padding: 1.75rem 2.25rem 2rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tool-overview-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  min-height: 72px;
}

.tool-overview-stats {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin-bottom: 1.75rem;
  padding: 0;
}

.tool-overview-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.tool-stat-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  display: block;
}

.tool-stat-label {
  font-family: var(--font-body);
  font-size: 0.775rem;
  color: #888;
  font-weight: 500;
  display: block;
}

.tool-overview-body .btn {
  border-radius: 24px;
  padding: 12px 32px;
  align-self: flex-start;
  margin-top: auto;
}

/* ============================================
   MAILING LIST SECTION (Team Tools page)
   ============================================ */

.mailing-section {
  background: var(--green);
  padding: 80px 0;
  text-align: center;
}

.mailing-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.mailing-section .mailing-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.mailing-fields {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}

.mailing-fields input[type="email"] {
  flex: 1;
  padding: 0.875rem 1rem;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #333;
  outline: none;
  min-width: 0;
}

.mailing-fields input[type="email"]::placeholder {
  color: #aaa;
}

.mailing-success {
  display: none;
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
  font-family: var(--font-body);
  margin-top: 0.5rem;
}

/* ============================================
   COMING SOON PIPELINE (Team Tools page)
   ============================================ */

.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.coming-soon-card {
  background: var(--light-bg);
  border-radius: 8px;
  padding: 1.75rem 2rem;
  border: 1px solid #e8eaec;
  opacity: 0.7;
}

.coming-soon-badge {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
  background: #e2e4e6;
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 1rem;
}

.coming-soon-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.coming-soon-card p {
  font-size: 0.875rem;
  color: #bbb;
  line-height: 1.7;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .intro-grid,
  .about-grid,
  .philosophy-lead-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .clients-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  :root { --container-pad: 1.25rem; }

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.875rem 1.5rem;
    width: 100%;
  }
  .nav-links a::after { display: none; }
  .nav-links a:hover,
  .nav-links a.active { background: var(--light-bg); color: var(--blue); }
  .nav-cta { margin: 0.5rem 1.5rem !important; width: calc(100% - 3rem); text-align: center; }

  .section, .about-content, .philosophy-lead, .contact-section, .services-intro { padding: 64px 0; }
  .services-grid-section { padding: 0 0 64px; }
  .hero { padding: 80px 0 64px; }
  .page-header { padding: 64px 0 56px; }
  .section-sm { padding: 48px 0; }

  .services-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem 1.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .question-card { padding: 2.25rem 1.75rem; }
  .tool-overview-grid { grid-template-columns: 1fr; }
  .coming-soon-grid { grid-template-columns: 1fr; }
  .mailing-fields { flex-direction: column; }
  .mailing-fields input[type="email"],
  .mailing-fields .btn { width: 100%; }
}

@media (max-width: 480px) {
  .clients-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}
