/* ============================================
   ADC Risk Horizon — Main Stylesheet
   ============================================ */

:root {
  --navy:         #1a3a5c;
  --navy-dark:    #0f2238;
  --navy-mid:     #2a4f76;
  --teal:         #2d6b7c;
  --teal-dark:    #1f4f5c;
  --gold:         #f4a829;
  --gold-light:   #fcc357;
  --heading-blue: #5573a0;
  --slate:        #5b7a99;
  --light:        #f5f7fa;
  --white:        #ffffff;
  --text:         #2c3e50;
  --text-muted:   #6b7f93;
  --border:       #dce4ed;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --max-w:    1180px;
  --radius:   4px;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

*, *::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(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

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

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
}
.btn--teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn--teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}
.btn--sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.78rem;
}
.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
}

/* ── Section Helpers ───────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--heading-blue);
  line-height: 1.25;
}
.section-header--light h2 { color: var(--white); }

.section-rule {
  width: 48px;
  height: 2px;
  background: var(--border);
  margin: 1.1rem auto 0;
}

/* ── NAV ───────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15, 34, 56, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
}
.nav__logo-adc { color: var(--gold); font-weight: 600; }

.nav__links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav__links a {
  color: rgba(255,255,255,0.78);
  font-size: 0.83rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--gold); }

.nav__avatar-link {
  color: var(--gold) !important;
  border: 1px solid rgba(244,168,41,0.35);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius);
}
.nav__avatar-link:hover {
  background: rgba(244,168,41,0.1);
  color: var(--gold-light) !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

/* ── Nav Dropdown ──────────────────────────── */
.nav__dropdown-item {
  position: relative;
}
.nav__dropdown-trigger {
  cursor: default;
}
.nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 34, 56, 0.97);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  min-width: 220px;
  list-style: none;
  padding: 0.4rem 0;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.nav__dropdown li a {
  display: block;
  padding: 0.6rem 1.2rem;
  color: rgba(255,255,255,0.78);
  font-size: 0.83rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav__dropdown li a:hover {
  color: var(--gold);
  background: rgba(255,255,255,0.05);
}
.nav__dropdown-item:hover .nav__dropdown,
.nav__dropdown-item:focus-within .nav__dropdown {
  display: block;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── HERO ──────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 7rem 4rem 4rem;
  max-width: 100%;
  background:
    linear-gradient(to right, rgba(12,25,45,0.88) 52%, rgba(120,115,108,0.42) 100%),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1800&q=80') center/cover no-repeat;
}

.hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__sub {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.hero__phone {
  margin-top: 1.25rem;
  font-size: 0.92rem;
}
.hero__phone a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.hero__phone a:hover { color: var(--white); }

.hero__logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__logo-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.28);
  max-width: 380px;
  width: 100%;
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.hero__logo-svg { width: 100%; max-width: 300px; }

/* ── SERVICES ──────────────────────────────── */
.services {
  background: var(--white);
  padding: 5.5rem 0;
}
.services__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.services__photo {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,58,92,0.12);
  aspect-ratio: 4/3;
}
.services__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.service-item {
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}
.service-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.service-item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.service-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ── ABOUT / EXPERT CONSULTING ─────────────── */
.about {
  background: var(--white);
  padding: 5.5rem 0;
  border-top: 1px solid var(--border);
}
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about__photo {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,58,92,0.12);
  aspect-ratio: 4/3;
}
.about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about__content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
}
.about__content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about__content p:last-child { margin-bottom: 0; }

/* ── REVIEWS ───────────────────────────────── */
.reviews__bg {
  background:
    linear-gradient(rgba(15,34,56,0.72), rgba(15,34,56,0.72)),
    url('https://images.unsplash.com/photo-1556761175-b413da4baf72?w=1400&q=80') center/cover no-repeat;
  padding: 5rem 0;
}
.reviews__placeholder {
  text-align: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 4px;
  padding: 1.5rem 2rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ── APPOINTMENTS ──────────────────────────── */
.appointments {
  background: var(--white);
  padding: 5.5rem 0;
  border-top: 1px solid var(--border);
}
.appointments__grid {
  display: flex;
  justify-content: center;
}
.appt-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  width: 280px;
  transition: var(--transition);
}
.appt-card:hover {
  box-shadow: 0 12px 40px rgba(26,58,92,0.1);
  transform: translateY(-3px);
}
.appt-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.appt-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.appt-card:hover .appt-card__image img { transform: scale(1.04); }
.appt-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
}
.appt-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.appt-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.appt-card__sep { color: var(--border); }

/* ── SUBSCRIBE ─────────────────────────────── */
.subscribe {
  background: var(--white);
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.subscribe__form {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 700px;
}
.subscribe__label {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--heading-blue);
  white-space: nowrap;
  padding-right: 1.25rem;
  flex-shrink: 0;
}
.subscribe__form input[type="email"] {
  flex: 1;
  padding: 0.72rem 1rem;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.subscribe__form input[type="email"]:focus { border-color: var(--teal); }
.subscribe__form .btn--teal {
  border-radius: 0 var(--radius) var(--radius) 0;
  white-space: nowrap;
}
.subscribe__note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* ── CONTACT ───────────────────────────────── */
.contact {
  background: var(--white);
  padding: 5.5rem 0;
}
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact__text h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.contact__text p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.contact__info {
  margin: 1.5rem 0;
}
.contact__info p {
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}
.contact__info a { color: var(--teal); }
.contact__info a:hover { text-decoration: underline; }

.contact__reasons { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.contact__reason {
  padding: 1.25rem;
  border-left: 3px solid var(--teal);
  background: var(--light);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.contact__reason h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.contact__reason p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.contact__form { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.75rem; }
.contact__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.contact__form input,
.contact__form textarea {
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.contact__form input:focus,
.contact__form textarea:focus { border-color: var(--teal); }
.contact__form-msg { font-size: 0.85rem; min-height: 1.2em; }

.contact__hours { margin-top: 1.5rem; }
.contact__hours h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.contact__hours details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact__hours summary {
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
}
.contact__hours summary::-webkit-details-marker { display: none; }
.hours__chevron {
  margin-left: auto;
  font-size: 0.7rem;
  transition: transform var(--transition);
}
details[open] .hours__chevron { transform: rotate(180deg); }
.hours__table {
  width: 100%;
  border-collapse: collapse;
  padding: 0.75rem 1rem;
  display: table;
}
.hours__table td {
  padding: 0.35rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hours__table td:first-child {
  font-weight: 500;
  color: var(--text);
  width: 45%;
}

.contact__chart-wrap {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
}
.contact__chart-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.contact__chart-wrap canvas { width: 100% !important; }

/* ── BLOG ──────────────────────────────────── */
.blog__bg {
  background:
    linear-gradient(rgba(15,34,56,0.72), rgba(15,34,56,0.72)),
    url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1400&q=80') center/cover no-repeat;
  padding: 5rem 0;
}
.blog__carousel-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.blog__nav {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog__nav:hover { background: rgba(255,255,255,0.28); }

.blog__carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  flex: 1;
  padding-bottom: 4px;
}
.blog__carousel::-webkit-scrollbar { display: none; }

.blog-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  flex: 0 0 240px;
  scroll-snap-align: start;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.22);
  transform: translateY(-3px);
}
.blog-card a {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
}
.blog-card--plain a {
  flex: 1;
}
.blog-card__img {
  height: 150px;
  flex-shrink: 0;
  overflow: hidden;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card--plain .blog-card__body {
  padding: 1.5rem 1.25rem;
}
.blog-card__date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.blog-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: auto;
  padding-bottom: 1rem;
}
.blog-card__read {
  font-size: 0.8rem;
  color: var(--teal);
  letter-spacing: 0.03em;
  font-weight: 500;
  margin-top: 0.75rem;
}
.blog-card:hover .blog-card__read { text-decoration: underline; }

/* ── FOOTER ────────────────────────────────── */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.footer__links a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--teal); }
.footer__brand {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
}
.footer__phone a,
.footer__email a {
  color: var(--teal);
  font-size: 0.88rem;
}
.footer__phone a:hover,
.footer__email a:hover { text-decoration: underline; }
.footer__copy {
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* ── BLOG POST PAGES ───────────────────────── */
.blog-post { padding-top: 68px; }
.blog-post__header {
  background: var(--navy-dark);
  padding: 4rem 0 3rem;
  color: var(--white);
}
.blog-post__date {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.blog-post__header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.blog-post__sub {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 640px;
  line-height: 1.7;
}
.blog-post__body {
  padding: 3rem 2rem 4rem;
  max-width: 740px;
  margin: 0 auto;
}
.blog-post__body p { margin-bottom: 1.25rem; color: var(--text); line-height: 1.8; }
.blog-post__body h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}
.blog-post__body ul { margin: 0 0 1.25rem 1.5rem; }
.blog-post__body li { margin-bottom: 0.4rem; color: var(--text); line-height: 1.7; }
.blog-post__back { margin-top: 3rem; }

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 6rem 2rem 4rem;
    text-align: center;
  }
  .hero__sub { max-width: 100%; }
  .hero__logo-col { order: -1; }
  .hero__logo-card { max-width: 260px; margin: 0 auto; padding: 2rem 1.5rem; }

  .services__layout,
  .about__layout,
  .contact__layout { grid-template-columns: 1fr; gap: 2.5rem; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

@media (max-width: 600px) {
  .subscribe__form { flex-direction: column; align-items: stretch; }
  .subscribe__label { padding-right: 0; padding-bottom: 0.5rem; }
  .subscribe__form input[type="email"] {
    border-right: 1px solid var(--border);
    border-radius: var(--radius);
  }
  .subscribe__form .btn--teal { border-radius: var(--radius); }

  .blog-card { flex: 0 0 200px; }
  .hero { padding: 5.5rem 1.5rem 3rem; }
}

/* ── ParkinsonLife Page ─────────────────────── */
.pl-hero {
  padding: 7rem 0 3.5rem;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}
.pl-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(45,107,124,0.18);
}
.pl-tag {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
}
.pl-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.25;
}
.pl-hero h1 span { color: var(--gold); }

.pl-body { padding: 4rem 0 5rem; }

.pl-container { max-width: 820px; }

.pl-lead {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.8rem;
  border-left: 3px solid var(--teal);
  padding-left: 1.2rem;
}
.pl-lead a { color: var(--teal); font-weight: 500; }
.pl-lead a:hover { text-decoration: underline; }

.pl-body p { margin-bottom: 1.2rem; line-height: 1.8; color: var(--text); }

.pl-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.pl-pillar {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
  border-top: 3px solid var(--teal);
}
.pl-pillar__icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.pl-pillar h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.pl-pillar p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

.pl-cta-strip {
  margin-top: 2.5rem;
  background: var(--navy-dark);
  border-radius: var(--radius);
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.pl-cta-strip p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }

@media (max-width: 600px) {
  .pl-pillars { grid-template-columns: 1fr; }
  .pl-cta-strip { flex-direction: column; align-items: flex-start; }
}
