/* ACMSP v1 Website — Shared Styles */

:root {
  --navy: #163654;
  --navy-dark: #0A1F33;
  --navy-darker: #050E1A;
  --gold: #BF8F00;
  --gold-light: #E5C97C;
  --teal: #1A8499;
  --teal-blue: #1E5F8C;
  --orange: #E89A4D;
  --text-dark: #1F2937;
  --text-mid: #4B5563;
  --text-light: #9CA3AF;
  --bg-light: #F8FAFC;
  --bg-card: #FFFFFF;
  --border: #E5E7EB;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: #FFFFFF;
}

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

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

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

/* === Utility Bar === */
.utility-bar {
  background: var(--navy-darker);
  color: #B0C4DE;
  font-size: 13px;
  padding: 8px 0;
}
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.utility-bar a { color: #B0C4DE; }
.utility-bar a:hover { color: var(--gold-light); }
.utility-bar .left { display: flex; gap: 18px; flex-wrap: wrap; }
.utility-bar .right { display: flex; gap: 18px; align-items: center; }

/* === Main Nav === */
.main-nav {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.main-nav .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.main-nav .logo img {
  height: 56px;
  width: auto;
}
.main-nav .menu {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}
.main-nav .menu a {
  color: var(--navy);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.main-nav .menu a:hover, .main-nav .menu a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.main-nav .cta-button {
  background: linear-gradient(135deg, var(--teal-blue), var(--orange));
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.main-nav .cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30,95,140,0.3);
  color: #FFFFFF;
}

/* === Hero Section === */
.hero {
  background: linear-gradient(135deg, var(--navy-darker) 0%, var(--navy) 50%, var(--navy-dark) 100%);
  color: #FFFFFF;
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(232,154,77,0.15), transparent 70%);
  pointer-events: none;
}
.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.hero .subhead {
  font-size: 22px;
  line-height: 1.5;
  color: #C5D0DD;
  margin-bottom: 40px;
  max-width: 800px;
}
.hero .cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,154,77,0.4);
  color: #FFFFFF;
}
.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(191,143,0,0.1);
}

/* === Trust Band === */
.trust-band {
  background: var(--navy-darker);
  color: #FFFFFF;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-band .stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-band .stat-number {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--teal), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.trust-band .stat-label {
  font-size: 13px;
  color: #B0C4DE;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* === Section Base === */
section.block {
  padding: 96px 0;
}
section.block.alt {
  background: var(--bg-light);
}
.section-eyebrow {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.section-subtitle {
  font-size: 20px;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 48px;
  max-width: 760px;
}

/* === Fiduciary Line === */
.fiduciary {
  background: #FFFFFF;
  text-align: center;
  padding: 100px 0;
}
.fiduciary h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.fiduciary h3 {
  font-size: 28px;
  font-weight: 400;
  color: var(--orange);
  font-style: italic;
  margin-bottom: 40px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.fiduciary p {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 760px;
  margin: 0 auto 20px;
}
.fiduciary a.inline-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--gold);
  font-weight: 600;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

/* === Service Cards === */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  transition: all 0.3s;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(22,54,84,0.08);
}
.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-card a.learn-more {
  color: var(--teal-blue);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* === Sector Tiles === */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sector-tile {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s;
  position: relative;
}
.sector-tile:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(22,54,84,0.06);
}
.sector-tile .status-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.badge-core { background: rgba(26,132,153,0.12); color: var(--teal); }
.badge-credible { background: rgba(191,143,0,0.12); color: var(--gold); }
.badge-growing { background: rgba(232,154,77,0.12); color: var(--orange); }
.sector-tile h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}
.sector-tile p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.5;
}

/* === Leadership Card === */
.leadership-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.leadership-card .photo {
  background: linear-gradient(135deg, var(--navy), var(--teal-blue));
  border-radius: 12px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  text-align: center;
  padding: 16px;
}
.leadership-card h3 {
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 6px;
}
.leadership-card .title {
  color: var(--orange);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 24px;
}
.leadership-card p { color: var(--text-mid); margin-bottom: 14px; }
.leadership-card .creds {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-light);
}

/* === OCI Section === */
.oci-callout {
  background: var(--navy);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}
.oci-callout h2 {
  font-size: 38px;
  margin-bottom: 16px;
  font-weight: 700;
}
.oci-callout p {
  font-size: 18px;
  color: #C5D0DD;
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.oci-callout a.btn-secondary {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* === CTA Band === */
.cta-band {
  background: linear-gradient(135deg, var(--navy-darker), var(--navy));
  color: #FFFFFF;
  padding: 90px 0;
  text-align: center;
}
.cta-band h2 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 700;
}
.cta-band p {
  font-size: 18px;
  color: #C5D0DD;
  margin-bottom: 36px;
}
.cta-band .cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-band .microcopy {
  font-size: 14px;
  color: #B0C4DE;
  margin-top: 24px;
}

/* === Footer === */
footer {
  background: var(--navy-darker);
  color: #B0C4DE;
  padding: 64px 0 32px;
}
footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}
footer h4 {
  color: #FFFFFF;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}
footer ul { list-style: none; }
footer li { margin-bottom: 10px; }
footer a { color: #B0C4DE; font-size: 14px; }
footer a:hover { color: var(--gold-light); }
footer .brand-block .logo-text {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
}
footer .brand-block p { font-size: 14px; line-height: 1.5; margin-bottom: 10px; }
footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 13px;
  color: #6B7B8C;
  text-align: center;
}

/* === Forms === */
.form-block {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  max-width: 760px;
  margin: 0 auto;
}
.form-block h3 { color: var(--navy); margin-bottom: 16px; font-size: 24px; }
.form-block label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  margin-top: 20px;
}
.form-block label .required { color: var(--orange); }
.form-block input,
.form-block select,
.form-block textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s;
}
.form-block input:focus,
.form-block select:focus,
.form-block textarea:focus {
  outline: none;
  border-color: var(--teal-blue);
}
.form-block textarea { min-height: 120px; resize: vertical; }
.form-block .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-block button[type="submit"] {
  margin-top: 28px;
  width: 100%;
}

/* === Policy Pages === */
.policy-page {
  padding: 60px 0;
  background: var(--bg-light);
  min-height: 60vh;
}
.policy-content {
  background: #FFFFFF;
  padding: 56px;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.policy-content h1 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 38px;
}
.policy-content > p:first-of-type {
  font-size: 19px;
  color: var(--text-mid);
  margin-bottom: 36px;
  font-style: italic;
}
.policy-content h2 {
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 24px;
}
.policy-content h3 {
  color: var(--navy-dark);
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 18px;
}
.policy-content p { margin-bottom: 16px; color: var(--text-dark); line-height: 1.7; }
.policy-content ul { padding-left: 24px; margin-bottom: 16px; }
.policy-content li { margin-bottom: 8px; line-height: 1.7; }
.policy-content .policy-meta {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-light);
}

/* === Calendly Sticky Button === */
.calendly-sticky-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #FFFFFF;
  padding: 14px 22px;
  border-radius: 50px;
  border: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(232,154,77,0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.calendly-sticky-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 30px rgba(232,154,77,0.55);
}
.calendly-sticky-btn .cal-icon {
  font-size: 18px;
  line-height: 1;
}

/* === Calendly Inline Embed Section === */
.calendly-embed-section {
  background: var(--bg-light);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.calendly-embed-wrap {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  overflow: hidden;
}
.calendly-inline-widget {
  min-width: 320px;
  height: 720px;
  width: 100%;
}

/* === Photo classes for founder image === */
.founder-photo,
.founder-photo-lg {
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--teal-blue));
}

/* ============================================================
   HAMBURGER TOGGLE — hidden on desktop, shown on mobile
   ============================================================ */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #FFFFFF;
  border: 1px solid #D4D4D4;
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
  box-sizing: border-box;
}
.nav-toggle:active,
.nav-toggle:focus {
  background: #F5F5F5;
  border-color: var(--navy);
  outline: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  margin: 2.5px 0;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.main-nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.main-nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.main-nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   MOBILE — 768px and below
   ============================================================ */
@media (max-width: 768px) {

  /* Utility bar: hide address, keep contact links */
  .utility-bar .left { display: none; }
  .utility-bar .right { margin-left: auto; }

  /* Nav: switch to stacking layout */
  .nav-toggle { display: flex; }

  .main-nav .container {
    flex-wrap: wrap;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 0;
  }

  .main-nav .logo img { height: 44px; }

  .main-nav .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    list-style: none;
    gap: 0;
    padding: 12px 0 8px;
    border-top: 1px solid var(--border);
    margin-top: 12px;
  }
  .main-nav.nav-open .menu { display: flex; }

  .main-nav .menu a {
    display: block;
    padding: 11px 0;
    font-size: 16px;
    border-bottom: none;
  }

  /* CTA button lives inside the open menu on mobile */
  .main-nav .cta-button {
    display: none;
    width: 100%;
    text-align: center;
    margin-top: 4px;
    margin-bottom: 8px;
    padding: 14px 20px;
    border-radius: 6px;
  }
  .main-nav.nav-open .cta-button { display: block; }

  /* Hero */
  .hero { padding: 56px 0 72px; }
  .hero h1 { font-size: 30px; letter-spacing: -0.3px; }
  .hero .subhead { font-size: 17px; margin-bottom: 28px; }
  .hero .cta-row { flex-direction: column; gap: 12px; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; box-sizing: border-box; }

  /* Trust band */
  .trust-band .stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .trust-band .stat-number { font-size: 28px; }
  .trust-band .stat-label { font-size: 12px; }

  /* Section base */
  section.block { padding: 56px 0; }
  .section-title { font-size: 26px; letter-spacing: -0.3px; }
  .section-subtitle { font-size: 16px; margin-bottom: 32px; }

  /* Fiduciary */
  .fiduciary { padding: 60px 0; }
  .fiduciary h2 { font-size: 28px; }
  .fiduciary h3 { font-size: 19px; }
  .fiduciary p { font-size: 16px; }

  /* Service grid: 1 col */
  .service-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 24px; }

  /* Sector grid: 1 col */
  .sector-grid { grid-template-columns: 1fr; }
  .sector-tile { padding: 24px; }

  /* Leadership card: stack vertically */
  .leadership-card {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    gap: 24px;
  }
  .leadership-card .photo { height: 220px; }
  .leadership-card h3 { font-size: 24px; }

  /* OCI callout */
  .oci-callout { padding: 56px 0; }
  .oci-callout h2 { font-size: 24px; }
  .oci-callout p { font-size: 16px; }

  /* CTA band */
  .cta-band { padding: 60px 0; }
  .cta-band h2 { font-size: 26px; }
  .cta-band p { font-size: 16px; }
  .cta-band .cta-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-band .btn-primary, .cta-band .btn-secondary { width: 100%; text-align: center; }

  /* Footer: 2-col, brand spans full width */
  footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  footer .brand-block { grid-column: 1 / -1; }

  /* Contact page inline grid */
  [style*="grid-template-columns:1fr 1fr"] {
    display: block !important;
  }
  [style*="grid-template-columns:1fr 1fr"] > * {
    margin-bottom: 16px;
  }

  /* Form */
  .form-block { padding: 24px 20px; }
  .form-block .form-row { grid-template-columns: 1fr; }

  /* Policy pages */
  .policy-content { padding: 28px 20px; }
  .policy-content h1 { font-size: 26px; }

  /* Calendly sticky button */
  .calendly-sticky-btn {
    bottom: 14px;
    right: 14px;
    font-size: 14px;
    padding: 11px 16px;
  }
}

/* ============================================================
   SMALL MOBILE — 480px and below
   ============================================================ */
@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .hero .subhead { font-size: 16px; }
  .trust-band .stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  footer .footer-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 23px; }
  .fiduciary h2 { font-size: 24px; }
}
/* === Core Values - Warm Card Style === */
.values-section {
  background: #FAF7F2;
  padding: 96px 0;
}
.values-header {
  text-align: center;
  margin-bottom: 56px;
}
.values-header .eyebrow {
  font-size: 13px;
  color: var(--teal-blue);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.values-header h2 {
  font-family: 'Inter', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.values-header p {
  font-size: 19px;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.value-card-warm {
  background: #F1EBE1;
  border-radius: 14px;
  padding: 28px 24px 32px;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.value-card-warm:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(22,54,84,0.08);
}
.value-card-warm .value-number {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 64px;
  font-weight: 700;
  color: #E5D5B7;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1;
  pointer-events: none;
  font-style: italic;
}
.value-card-warm h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.value-card-warm p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.55;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .values-header h2 { font-size: 36px; }
}
@media (max-width: 768px) {
  .values-section { padding: 64px 0; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .values-header h2 { font-size: 28px; }
  .value-card-warm { min-height: 180px; padding: 24px 20px; }
  .value-card-warm .value-number { font-size: 52px; }
}
@media (max-width: 540px) {
  .values-grid { grid-template-columns: 1fr; }
  .value-card-warm { min-height: 0; padding: 24px 22px; }
}
