/* ============================================================
   CoachCamOfficial.com — Shared Styles
   Design inspired by aminoclub.com: clean white, bold navy
   headlines, blue accent, card grids, trust badges.
   ============================================================ */

:root {
  --navy: #0b1220;
  --ink: #1a2333;
  --gray: #5b6577;
  --light: #f5f7fa;
  --border: #e5e9f0;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --accent-soft: #eff4ff;
  --green: #16a34a;
  --gold: #f59e0b;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(11, 18, 32, 0.08);
  --shadow-lg: 0 12px 40px rgba(11, 18, 32, 0.14);
  --max-w: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: none; }

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

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: url("https://assets.skool.com/f/a64c7e2bedd24c52a5726b19d3a08289/f72b3587c1ec4092b639b72bac514db9e59b623f41434ec99792229c09f71f14-md.png") no-repeat;
  background-size: 150px auto;
  background-position: -27px -20px;
  flex-shrink: 0;
}
.logo span { color: var(--accent); }
/* footer logo circle blends on the dark footer */
.footer-brand .logo::before { border-color: #1e293e; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--accent-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--navy);
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 90px 24px 70px;
  background: linear-gradient(180deg, var(--accent-soft) 0%, #fff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  top: -80px; right: -120px;
  width: 520px; height: 520px;
  background: url("../assets/hero-motif.svg") center/contain no-repeat;
  opacity: 0.10;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -160px; left: -140px;
  width: 420px; height: 420px;
  background: url("../assets/hero-motif.svg") center/contain no-repeat;
  opacity: 0.06;
  transform: rotate(180deg);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: 850px;
  margin: 0 auto 20px;
}
.hero h1 em { color: var(--accent); font-style: normal; }

.hero p.sub {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto 32px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.12s, background 0.15s, box-shadow 0.15s;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.28);
}
.btn-primary:hover { box-shadow: 0 6px 22px rgba(37, 99, 235, 0.4); transform: translateY(-1px); }

.btn-outline {
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: #1c2940; }

.btn-lg { padding: 17px 38px; font-size: 1.1rem; }

.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Trust bar ---------- */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  padding: 22px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}
.trust-item .dot { color: var(--green); font-size: 1.1rem; }

/* ---------- Sections ---------- */
section { padding: 70px 0; }
section.alt { background: var(--light); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-head h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.section-head p { color: var(--gray); font-size: 1.08rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 10px;
}

/* ---------- Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.card h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.card p { color: var(--gray); font-size: 0.95rem; }

.card .icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft);
  border-radius: 12px;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

/* ---------- Pricing ---------- */
.price-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
}
.price-card.featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-lg);
}
.badge-popular {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.price-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--navy); }
.price-card .price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  margin: 14px 0 2px;
  letter-spacing: -0.02em;
}
.price-card .price small { font-size: 1rem; font-weight: 500; color: var(--gray); }
.price-card .price-note { color: var(--gray); font-size: 0.88rem; margin-bottom: 18px; }
.price-card ul {
  list-style: none;
  margin: 0 0 26px;
  flex-grow: 1;
}
.price-card ul li {
  padding: 7px 0 7px 28px;
  position: relative;
  font-size: 0.94rem;
  color: var(--ink);
}
.price-card ul li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--green);
  font-weight: 700;
}
.price-card .btn { width: 100%; text-align: center; }

/* ---------- Testimonials ---------- */
.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.testimonial .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial blockquote { font-size: 0.98rem; color: var(--ink); margin-bottom: 16px; }
.testimonial .who { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.testimonial .who span { display: block; font-weight: 400; color: var(--gray); font-size: 0.82rem; }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-card .avatar {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  margin: 0 auto 18px;
  overflow: hidden;
}
.team-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.25rem; }
.team-card .role { color: var(--accent); font-weight: 600; font-size: 0.9rem; margin-bottom: 10px; }

/* ---------- Link-tree (Resources) ---------- */
.link-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  color: var(--ink);
}
.link-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.link-card .icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  background: var(--accent-soft);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.link-card .meta h3 { font-size: 1rem; font-weight: 700; color: var(--navy); }
.link-card .meta p { font-size: 0.85rem; color: var(--gray); }
.link-card .arrow { margin-left: auto; color: var(--accent); font-weight: 700; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 70px 24px;
}
.cta-band h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.cta-band p { color: #b9c2d4; max-width: 560px; margin: 0 auto 28px; }

/* ---------- Embeds ---------- */
.embed-box {
  background: var(--light);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  color: var(--gray);
}
.embed-box.filled { border-style: solid; padding: 0; overflow: hidden; background: #fff; }

.calendly-inline { min-height: 660px; width: 100%; }

.tiktok-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* ---------- Forms (Kit capture) ---------- */
.capture-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.capture-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
}
.capture-form input:focus { outline: 2px solid var(--accent); border-color: transparent; }

/* ---------- FAQ ---------- */
details.faq {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 12px;
  background: #fff;
}
details.faq summary {
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
details.faq summary::after { content: "+"; font-size: 1.3rem; color: var(--accent); }
details.faq[open] summary::after { content: "–"; }
details.faq p { margin-top: 12px; color: var(--gray); font-size: 0.95rem; }

/* ---------- Calculator ---------- */
.calc-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 38px;
}
.calc-field { margin-bottom: 22px; }
.calc-field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.calc-field input, .calc-field select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  background: #fff;
}
.calc-field input:focus, .calc-field select:focus { outline: 2px solid var(--accent); border-color: transparent; }
.calc-result {
  background: var(--accent-soft);
  border-radius: 12px;
  padding: 26px;
  margin-top: 26px;
  display: none;
}
.calc-result.show { display: block; }
.calc-result h3 { color: var(--navy); margin-bottom: 14px; }
.calc-result .big {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}
.calc-result table { width: 100%; border-collapse: collapse; margin-top: 14px; }
.calc-result td { padding: 8px 4px; border-bottom: 1px solid #dbe4f5; font-size: 0.94rem; }
.calc-result td:last-child { text-align: right; font-weight: 700; color: var(--navy); }

.disclaimer {
  font-size: 0.8rem;
  color: var(--gray);
  max-width: 720px;
  margin: 24px auto 0;
  text-align: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: #b9c2d4;
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.site-footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: #b9c2d4; font-size: 0.9rem; }
.site-footer a:hover { color: #fff; }
.footer-brand .logo { color: #fff; }
.footer-brand p { font-size: 0.88rem; margin-top: 12px; max-width: 300px; }
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding: 24px 24px 0;
  border-top: 1px solid #1e293e;
  font-size: 0.82rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 50px 0; }
  .calc-wrap { padding: 26px 20px; }
}

/* ---------- Sticky ecosystem CTA bar (site-wide, injected by JS) ---------- */
.eco-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(11, 18, 32, 0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid #1e293e;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 16px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.eco-bar.show { transform: translateY(0); }
.eco-bar .eco-msg { color: #fff; font-weight: 600; font-size: 0.92rem; margin-right: 4px; }
.eco-bar .btn { padding: 9px 18px; font-size: 0.9rem; }
.eco-bar .eco-close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: #7c88a0; font-size: 1.2rem; cursor: pointer; line-height: 1;
}
@media (max-width: 640px) {
  .eco-bar { flex-wrap: wrap; gap: 8px; padding: 10px 40px 10px 14px; }
  .eco-bar .eco-msg { width: 100%; text-align: center; font-size: 0.82rem; margin: 0 0 2px; }
  .eco-bar .btn { flex: 1; text-align: center; padding: 10px 8px; font-size: 0.85rem; }
}
/* keep footer clear of the fixed bar */
body.has-eco-bar .site-footer { padding-bottom: 96px; }

/* ---------- Split hero (home) ---------- */
.hero-home { text-align: left; padding-top: 70px; padding-bottom: 70px; }
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-home .hero-copy h1 { margin-left: 0; margin-right: 0; max-width: none; }
.hero-home .btn-row { justify-content: flex-start; }
.hero-photo img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  object-fit: cover;
  aspect-ratio: 4/5;
}
@media (max-width: 820px) {
  .hero-home { text-align: center; }
  .hero-split { grid-template-columns: 1fr; gap: 30px; }
  .hero-home .btn-row { justify-content: center; }
  .hero-photo { max-width: 380px; margin: 0 auto; }
}

/* ---------- Hero logo ---------- */
.hero-logo { max-width: 260px; margin: 0 auto 20px; display: block; }

/* ---------- Product cards ---------- */
.product-card { text-align: center; padding: 18px; color: var(--ink); }
.product-card img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: 12px; margin-bottom: 14px; background: var(--light);
}
.product-card h3 { font-size: 1rem; color: var(--navy); }

/* ---------- Hero brand image ---------- */
.hero-brand-img {
  max-width: 620px;
  margin: 38px auto 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: #fff;
}
.hero-brand-img img { width: 100%; display: block; }

/* ---------- Brand logos on links ---------- */
.brand-logo {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 6px;
  background: #fff;
  border-radius: 8px;
}
.link-card .icon.has-logo,
.path-card .ico.has-logo,
.eco-promo .ico.has-logo {
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  padding: 0;
}
.path-card .ico.has-logo, .eco-promo .ico.has-logo {
  width: 54px; height: 54px;
}

/* ---------- Big stat grid ---------- */
.stat-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; text-align:center; }
.stat-grid .stat { background:#fff; border:1px solid var(--border); border-radius:var(--radius); padding:24px 14px; }
.stat-grid .stat .n { font-size:2.1rem; font-weight:800; color:var(--accent); line-height:1; letter-spacing:-.02em; }
.stat-grid .stat .l { font-size:0.82rem; color:var(--gray); font-weight:600; margin-top:8px; text-transform:uppercase; letter-spacing:.05em; }
@media (max-width:640px){ .stat-grid{ grid-template-columns:repeat(2,1fr); } }

/* ---------- Compound chips ---------- */
.chips { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }
.chip { background:#fff; border:1px solid var(--border); border-radius:30px; padding:9px 16px; font-size:0.86rem; font-weight:700; color:var(--navy); }
.chip.more { background:var(--accent); color:#fff; border-color:var(--accent); }

/* ---------- Feature checklist ---------- */
.feature-list { list-style:none; max-width:640px; margin:0 auto; }
.feature-list li { position:relative; padding:14px 0 14px 40px; border-bottom:1px solid var(--border); font-size:1rem; color:var(--ink); }
.feature-list li::before { content:"✓"; position:absolute; left:6px; top:14px; width:24px; height:24px; background:var(--accent-soft); color:var(--accent); border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:0.85rem; }
.feature-list li b { color:var(--navy); }

/* ---------- Pick-your-path hub ---------- */
.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.path-card {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; color: var(--ink);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.path-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.path-card.featured { border: 2px solid var(--accent); background: linear-gradient(180deg, var(--accent-soft) 0%, #fff 60%); }
.path-card .ico { font-size: 2rem; margin-bottom: 12px; }
.path-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.path-card p { font-size: 0.92rem; color: var(--gray); flex-grow: 1; margin-bottom: 16px; }
.path-card .go { font-weight: 700; color: var(--accent); font-size: 0.92rem; }
.path-flag {
  position: absolute; top: -12px; left: 24px;
  background: var(--accent); color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.04em;
}
@media (max-width: 900px) { .path-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .path-grid { grid-template-columns: 1fr; } }

/* ---------- Exit-intent modal ---------- */
.cc-modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(11, 18, 32, 0.6);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden; transition: opacity 0.25s;
}
.cc-modal-overlay.show { opacity: 1; visibility: visible; }
.cc-modal {
  background: #fff; border-radius: 18px; max-width: 440px; width: 100%;
  padding: 40px 34px; text-align: center; position: relative;
  box-shadow: var(--shadow-lg); transform: translateY(12px); transition: transform 0.25s;
}
.cc-modal-overlay.show .cc-modal { transform: translateY(0); }
.cc-modal-ico { font-size: 2.4rem; margin-bottom: 8px; }
.cc-modal h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 8px; }
.cc-modal p { color: var(--gray); margin-bottom: 18px; }
.cc-modal .capture-form { flex-direction: column; }
.cc-modal .capture-form input,
.cc-modal .capture-form .btn { width: 100%; }
.cc-modal-close {
  position: absolute; top: 14px; right: 16px; background: none; border: none;
  font-size: 1.6rem; color: var(--gray); cursor: pointer; line-height: 1;
}
.cc-modal-dismiss {
  background: none; border: none; color: var(--gray); font-size: 0.85rem;
  cursor: pointer; margin-top: 14px; text-decoration: underline;
}

/* ---------- Cross-sell ecosystem band ---------- */
.eco-band { padding: 60px 0; background: var(--light); }
.eco-band .eco-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.eco-promo {
  display: flex; flex-direction: column; text-align: center;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 20px; transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.eco-promo:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--accent); }
.eco-promo .ico { font-size: 1.9rem; margin-bottom: 10px; }
.eco-promo h3 { font-size: 1.02rem; color: var(--navy); margin-bottom: 6px; }
.eco-promo p { font-size: 0.85rem; color: var(--gray); flex-grow: 1; margin-bottom: 16px; }
.eco-promo .go { font-weight: 700; font-size: 0.86rem; color: var(--accent); }
@media (max-width: 900px) { .eco-band .eco-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .eco-band .eco-cards { grid-template-columns: 1fr; } }
