/* ===========================================
   TOPA — Tri State Out of Network Physicians Alliance
   Brand: Navy #0c2a53 · Teal #3b989b
   =========================================== */

:root {
  --navy: #0c2a53;
  --navy-700: #0a234a;
  --navy-600: #143765;
  --navy-50: #eef2f8;
  --teal: #3b989b;
  --teal-600: #2f8487;
  --teal-100: #e3f1f1;
  --teal-50: #f1f8f8;
  --cream: #f7f5f0;
  --bg: #ffffff;
  --bg-soft: #f8fafb;
  --ink: #1a2638;
  --ink-soft: #4a5568;
  --muted: #6b7689;
  --line: #e6ecf1;
  --line-strong: #cdd7e0;
  --shadow-sm: 0 1px 2px rgba(12, 42, 83, 0.06);
  --shadow-md: 0 6px 20px rgba(12, 42, 83, 0.08);
  --shadow-lg: 0 18px 40px rgba(12, 42, 83, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --max-w: 1240px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6rem;
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--teal-600); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--navy); }
button { font-family: inherit; cursor: pointer; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 var(--space-2);
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); letter-spacing: -0.03em; }
h3 { font-size: 1.3rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; color: var(--teal-600); font-family: var(--font-sans); }
p { margin: 0 0 var(--space-2); color: var(--ink-soft); }
.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal-600);
  margin-bottom: 0.6rem;
  display: inline-block;
}
.lead { font-size: 1.13rem; color: var(--ink-soft); max-width: 60ch; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: var(--space-7) 0; }
.section-tight { padding: var(--space-6) 0; }
.section-bg { background: var(--bg-soft); }
.section-navy { background: var(--navy); color: #d8e1ee; }
.section-navy h1, .section-navy h2, .section-navy h3 { color: #ffffff; }
.section-navy p { color: #b6c3d6; }
.section-navy .eyebrow { color: #8ed2d5; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.97rem;
  border: 1.5px solid transparent;
  transition: all .25s ease;
  cursor: pointer;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: #ffffff;
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-600);
  border-color: var(--teal-600);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-navy {
  background: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-700);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--teal-600);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  padding: 0.55rem 0.4rem;
}
.btn-ghost:hover { color: var(--teal-600); }
.btn .arrow { display: inline-block; transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 88px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}
.brand img { height: 60px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.97rem;
  position: relative;
  padding: 0.4rem 0;
}
.nav-links a:hover { color: var(--teal-600); }
.nav-links a.active { color: var(--teal-600); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 0.5rem; }
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  color: var(--navy);
}
.menu-toggle svg { width: 26px; height: 26px; }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 6px;
}
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 240px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.6rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  list-style: none;
  margin: 0;
}
.dropdown li { margin: 0; }
.dropdown a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 500;
}
.dropdown a:hover { background: var(--teal-50); color: var(--teal-600); }
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-copy h1 { color: var(--navy); }
.hero-copy .lead { margin: 1.25rem 0 2rem; font-size: 1.18rem; }
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  box-shadow: var(--shadow-lg);
}
.hero-visual svg,
.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Hero trust strip */
.trust-strip {
  margin-top: 3rem;
  padding: 1.6rem 1.8rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 2rem;
  align-items: center;
}
.trust-item { display: flex; gap: 0.9rem; align-items: center; }
.trust-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 22px; height: 22px; }
.trust-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-600);
  font-weight: 600;
  margin: 0;
}
.trust-value {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}
.trust-sub { font-size: 0.83rem; color: var(--muted); margin: 0; }

/* Cards grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.benefit-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: all .3s ease;
  position: relative;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-100);
}
.benefit-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.benefit-icon svg { width: 28px; height: 28px; }
.benefit-card h3 { margin-bottom: 0.6rem; }
.benefit-card p { font-size: 0.95rem; margin-bottom: 1.25rem; }
.benefit-card .card-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal-600);
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}
.benefit-card .card-link:hover { color: var(--navy); }

/* Section header */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 1rem;
}
.section-head.left {
  text-align: left;
  margin: 0;
}
.section-head p { font-size: 1.05rem; }

/* Upcoming Summit */
.summit-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 2rem;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.summit-meta { display: flex; gap: 1rem; align-items: center; }
.summit-meta .summit-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.summit-meta .summit-icon svg { width: 26px; height: 26px; }
.summit-meta h3 {
  margin: 0 0 0.2rem;
  font-size: 1.15rem;
}
.summit-meta .eyebrow { margin: 0 0 0.15rem; font-size: 0.7rem; }
.summit-meta .summit-sub { font-size: 0.92rem; color: var(--muted); margin: 0; }
.summit-detail h4 {
  font-family: var(--font-sans);
  color: var(--navy);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.98rem;
  margin: 0 0 0.2rem;
}
.summit-detail p { margin: 0; font-size: 0.9rem; color: var(--muted); }

/* Two-column feature */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: stretch;
}
.feature-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
}
.feature-card .feature-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  display: flex; align-items: center; justify-content: center;
}
.feature-card .feature-img svg { width: 100%; height: 100%; }
.feature-card .feature-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-card .feature-body { padding: 2rem 2rem; }
.feature-card.dark {
  background: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
}
.feature-card.dark .feature-img { background: var(--navy-600); }
.feature-card.dark h3 { color: #ffffff; }
.feature-card.dark p { color: rgba(255,255,255,0.78); }
.feature-card.dark .eyebrow { color: #8ed2d5; }

/* CTA strip */
.cta-strip {
  background:
    radial-gradient(circle at 0% 0%, rgba(59,152,155,0.35), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(59,152,155,0.2), transparent 50%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.cta-strip h2 { color: #ffffff; margin-bottom: 0.6rem; }
.cta-strip p { color: rgba(255,255,255,0.82); margin: 0; max-width: 50ch; }
.cta-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* Testimonial */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}
.testimonial::before {
  content: """;
  position: absolute;
  top: 1rem; left: 1.5rem;
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--teal-100);
  line-height: 1;
}
.testimonial blockquote {
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}
.testimonial-name { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.testimonial-role { color: var(--muted); font-size: 0.85rem; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.stat { text-align: center; padding: 1rem; }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.86rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: #b6c3d6;
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr) 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-brand img {
  height: 60px;
  filter: brightness(0) invert(1);
  width: auto;
  align-self: flex-start;
}
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.92rem; margin: 0; max-width: 28ch; }
.footer-col h4 {
  font-family: var(--font-sans);
  color: #ffffff;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer-col a:hover { color: #8ed2d5; }

.contact-block { display: flex; flex-direction: column; gap: 0.9rem; }
.contact-line { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.92rem; color: rgba(255,255,255,0.78); }
.contact-line svg { flex-shrink: 0; width: 18px; height: 18px; color: #8ed2d5; margin-top: 0.15rem; }

.social { display: flex; gap: 0.55rem; margin-top: 0.5rem; }
.social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .25s ease;
}
.social a:hover { background: var(--teal); color: #ffffff; }
.social svg { width: 16px; height: 16px; }

.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* Inner-page hero (smaller) */
.page-hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(59,152,155,0.18), transparent 50%),
    linear-gradient(180deg, var(--navy-50) 0%, #ffffff 100%);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2rem, 4.2vw, 3rem); }
.page-hero .lead { margin-top: 1rem; }

/* Breadcrumb */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--teal-600); }
.breadcrumb .sep { color: var(--line-strong); }

/* Pricing / membership tiers */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.tier {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tier.featured {
  border: 2px solid var(--teal);
  position: relative;
  box-shadow: var(--shadow-lg);
}
.tier.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #ffffff;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.tier h3 { margin-bottom: 0.4rem; }
.tier .tier-tag { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
.tier .price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.tier .price-sub { color: var(--muted); font-size: 0.88rem; margin-bottom: 1.5rem; }
.tier ul { list-style: none; padding: 0; margin: 0 0 2rem; display: flex; flex-direction: column; gap: 0.7rem; flex-grow: 1; }
.tier li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.tier li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45rem;
  width: 14px; height: 8px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}
.tier .btn { width: 100%; justify-content: center; }

/* Event list */
.event-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2.5rem; }
.event-row {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 2rem;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 2rem;
  align-items: center;
  transition: all .25s ease;
}
.event-row:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
}
.event-date {
  text-align: center;
  border-right: 1px solid var(--line);
  padding-right: 1.25rem;
}
.event-date .ed-month {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--teal-600);
  text-transform: uppercase;
  margin: 0;
}
.event-date .ed-day {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--navy);
  line-height: 1;
  margin: 0.1rem 0;
}
.event-date .ed-year { font-size: 0.8rem; color: var(--muted); margin: 0; }
.event-info h3 { margin: 0 0 0.3rem; font-size: 1.18rem; }
.event-info .event-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 0.5rem;
  flex-wrap: wrap;
}
.event-info .event-meta span { display: inline-flex; gap: 0.4rem; align-items: center; }
.event-info p { font-size: 0.93rem; margin: 0; }
.event-tag {
  display: inline-block;
  background: var(--teal-50);
  color: var(--teal-600);
  padding: 0.22rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Resource grid */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.resource-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.resource-card:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.resource-card .benefit-icon { margin-bottom: 0; }
.resource-card h3 { margin: 0; }
.resource-card p { margin: 0; font-size: 0.93rem; flex-grow: 1; }
.resource-card .card-link { font-weight: 600; color: var(--teal-600); font-size: 0.9rem; }

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 580px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 0.97rem;
  color: var(--ink);
  background: #ffffff;
  border: 1.5px solid var(--line-strong);
  border-radius: 10px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(59,152,155,0.15);
}
.field-note { font-size: 0.82rem; color: var(--muted); }

/* Contact page split */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-side {
  background: var(--navy);
  color: #ffffff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}
.contact-side h3 { color: #ffffff; }
.contact-side p { color: rgba(255,255,255,0.78); }
.contact-side .contact-line { color: #ffffff; }
.contact-side .contact-line a { color: #ffffff; }
.contact-side .contact-line a:hover { color: #8ed2d5; }

/* Timeline */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
  padding-left: 2rem;
  border-left: 2px solid var(--teal-100);
}
.timeline-item { position: relative; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 0.5rem;
  width: 16px; height: 16px;
  background: var(--teal);
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px var(--teal);
}
.timeline-item .ti-date {
  font-size: 0.85rem;
  color: var(--teal-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}
.timeline-item h3 { margin-bottom: 0.5rem; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2.5rem; max-width: 820px; margin-left: auto; margin-right: auto; }
.faq details {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: border-color .2s ease;
}
.faq details[open] { border-color: var(--teal); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.02rem;
  position: relative;
  padding-right: 2rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 1.5rem;
  color: var(--teal);
  font-weight: 400;
  line-height: 1;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 1rem 0 0; font-size: 0.97rem; }

/* Visual / illustration helpers */
.illustration {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--teal-100) 0%, var(--navy-50) 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.illustration svg { width: 70%; height: 70%; opacity: 0.92; }

/* Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 16/10; clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%); }
  .trust-strip { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .trust-strip > a { grid-column: span 2; justify-self: start; }
  .summit-card { grid-template-columns: 1fr 1fr; }
  .summit-card .btn { grid-column: span 2; justify-self: start; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { grid-template-columns: 1fr; }
  .feature-card .feature-img { min-height: 200px; }
  .cta-strip { grid-template-columns: 1fr; text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: 90px 1fr; }
  .event-row .btn { grid-column: span 2; justify-self: start; }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.85rem 0.5rem; border-bottom: 1px solid var(--line); }
  .nav-links li:last-child a { border-bottom: 0; }
  .has-dropdown .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 0.85rem;
    min-width: 0;
  }
  .has-dropdown > a::after { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-cta .btn { padding: 0.6rem 1rem; font-size: 0.88rem; }
  .nav { height: 72px; }
  .brand img { height: 48px; }
  .section { padding: 3.5rem 0; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip > a { grid-column: span 1; }
  .summit-card { grid-template-columns: 1fr; gap: 1.25rem; padding: 1.5rem; }
  .summit-card .btn { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .event-row { grid-template-columns: 1fr; gap: 1rem; }
  .event-date { border-right: 0; padding-right: 0; text-align: left; display: flex; gap: 0.5rem; align-items: baseline; }
  .event-row .btn { grid-column: auto; }
}

/* Subtle entrance animation */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fade-up .8s ease both; }
.fade-up.d1 { animation-delay: .1s; }
.fade-up.d2 { animation-delay: .2s; }
.fade-up.d3 { animation-delay: .3s; }
