
:root {
  --brand: #1A6E8E;
  --brand-dark: #0F4A60;
  --ink: #0E1A26;
  --accent: #F2A93B;
  --accent-hot: #E89020;
  --cream: #FAF5EC;
  --sand: #EEE2CB;
  --line: rgba(14, 26, 38, 0.10);
  --muted: rgba(14, 26, 38, 0.65);
  --shadow: 0 18px 40px -22px rgba(14, 26, 38, 0.20);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.display, h1, h2, h3 {
  font-family: 'Manrope', 'Inter', -apple-system, sans-serif;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); line-height: 1.04; margin: 0; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.8rem); line-height: 1.1; margin: 0 0 0.6em; }
h3 { font-size: 1.35rem; line-height: 1.25; margin: 0 0 0.4em; }
.eyebrow {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: var(--brand);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::after { content: '//'; opacity: 0.5; font-weight: 800; }
.italic-accent { font-style: italic; font-weight: 700; color: var(--brand); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 720px) { .container { padding: 0 18px; } }

/* ---- Glass-pill nav ---- */
.site-header {
  position: fixed; top: 18px; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center;
  pointer-events: none;
}
.nav-pill {
  display: inline-flex; align-items: center; gap: 32px;
  width: fit-content;
  margin: 0 auto;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid rgba(14,26,38,0.06);
  border-radius: 999px;
  padding: 10px 14px 10px 22px;
  box-shadow: 0 12px 28px -16px rgba(14,26,38,0.25);
  pointer-events: auto;
}
.brand-mark {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Manrope', sans-serif; font-weight: 800; letter-spacing: -0.01em;
  color: var(--ink); font-size: 1.05rem;
}
.brand-mark img { height: 26px; width: auto; }
.nav-links { display: flex; gap: 22px; margin: 0; }
.nav-links a {
  font-size: 0.92rem; font-weight: 600; color: var(--ink);
  opacity: 0.78; transition: opacity 0.15s, color 0.15s;
}
.nav-links a:hover { opacity: 1; color: var(--brand); }
.nav-cta {
  background: var(--ink); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-weight: 700; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--brand); }
.nav-cta::after {
  content: ''; width: 18px; height: 18px; border-radius: 50%;
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%230E1A26' d='M5 13h11.17l-4.88 4.88L13 19l8-8-8-8-1.71 1.12L16.17 11H5z'/></svg>") center/12px no-repeat;
}
.mobile-menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ink); color: #fff; border: 0;
  cursor: pointer;
}
.mobile-menu-toggle svg { width: 20px; height: 20px; }
.mobile-panel {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(14,26,38,0.96);
  backdrop-filter: blur(8px);
  display: none;
  flex-direction: column; padding: 90px 32px 40px;
  pointer-events: auto;
}
.mobile-panel.open { display: flex; }
.mobile-panel a {
  color: #fff; font-family: 'Manrope', sans-serif;
  font-size: 1.6rem; font-weight: 700; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: -0.01em;
}
.mobile-close {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff; border: 0; cursor: pointer;
  font-size: 1.6rem;
}
.mobile-cta-row {
  margin-top: auto; display: flex; gap: 12px;
}
.mobile-cta-row a {
  flex: 1; padding: 18px; text-align: center;
  border-radius: 14px; border-bottom: 0;
  font-size: 1rem;
}
.mobile-cta-row .call-cta { background: var(--brand); color: #fff; }
.mobile-cta-row .msg-cta { background: #fff; color: var(--ink); }

@media (max-width: 1023px) {
  .nav-links, .nav-cta { display: none; }
}
@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none !important; }
}

/* ---- Hero ---- */
.hero {
  padding: 130px 0 80px;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  position: relative; overflow: hidden;
}
.hero-wrap {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 64px; align-items: center;
}
.hero-content .eyebrow { margin-bottom: 18px; }
.hero-content h1 { margin: 12px 0 18px; }
.hero-tag { font-size: 1.18rem; color: var(--muted); max-width: 540px; margin: 0 0 32px; line-height: 1.5; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px; border-radius: 999px;
  font-weight: 700; font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer; transition: transform 0.15s, background 0.15s, color 0.15s;
}
.btn::after {
  content: ''; width: 26px; height: 26px; border-radius: 50%;
  background: var(--ink) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M5 13h11.17l-4.88 4.88L13 19l8-8-8-8-1.71 1.12L16.17 11H5z'/></svg>") center/14px no-repeat;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary::after { background-color: #fff; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%231A6E8E' d='M5 13h11.17l-4.88 4.88L13 19l8-8-8-8-1.71 1.12L16.17 11H5z'/></svg>"); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink::after { background-color: var(--accent); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%230E1A26' d='M5 13h11.17l-4.88 4.88L13 19l8-8-8-8-1.71 1.12L16.17 11H5z'/></svg>"); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline::after { background-color: var(--ink); }
.btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.3); backdrop-filter: blur(4px); }
.btn-ghost::after { background-color: #fff; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%230E1A26' d='M5 13h11.17l-4.88 4.88L13 19l8-8-8-8-1.71 1.12L16.17 11H5z'/></svg>"); }
.btn:hover { transform: translateY(-2px); }
.badge-row { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 8px; }
.badge { display: inline-flex; align-items: center; gap: 8px; font-size: 0.92rem; font-weight: 600; color: var(--muted); }
.badge::before {
  content: ''; width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/12px no-repeat;
}
.hero-photo {
  position: relative; aspect-ratio: 4/5;
  border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-stack {
  position: absolute; bottom: -28px; left: -28px;
  width: 200px; aspect-ratio: 1; border-radius: 18px; overflow: hidden;
  border: 6px solid #fff; box-shadow: var(--shadow);
}
.hero-photo-stack img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo { aspect-ratio: 3/4; max-width: 460px; margin: 0 auto; }
  .hero-photo-stack { width: 130px; left: -10px; bottom: -16px; }
  .hero { padding: 110px 0 60px; }
}

/* ---- Sections ---- */
.section { padding: 80px 0; }
.section-cream { background: var(--cream); }
.section-ink { background: var(--ink); color: #fff; }
.section-ink h2, .section-ink h3 { color: #fff; }
.section-ink .eyebrow { color: var(--accent); }
.section-brand { background: var(--brand); color: #fff; }
.section-brand h2, .section-brand h3 { color: #fff; }
.section-brand .eyebrow { color: #fff; }
.section-brand .eyebrow::after { opacity: 0.8; }
.section-header { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-header.left { margin: 0 0 48px; text-align: left; }

/* 4-up icon grid */
.icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.icon-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 32px 24px; transition: transform 0.2s, box-shadow 0.2s;
}
.icon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.icon-card .num {
  display: inline-block; font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 0.95rem;
  color: var(--brand); margin-bottom: 16px;
  background: rgba(26, 110, 142, 0.08); padding: 6px 12px; border-radius: 999px;
}
.icon-card h3 { margin-bottom: 10px; }
.icon-card p { margin: 0; color: var(--muted); font-size: 0.96rem; }
@media (max-width: 900px) { .icon-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .icon-grid { grid-template-columns: 1fr; } }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-photo { aspect-ratio: 5/4; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); }
.split-photo img { width: 100%; height: 100%; object-fit: cover; }
.checklist { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 14px; font-size: 1rem; }
.checklist li::before {
  content: ''; flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/12px no-repeat;
  margin-top: 2px;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }

/* Service cards in brand band */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: #fff; color: var(--ink);
  border-radius: 20px; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -20px rgba(0,0,0,0.3); }
.service-card .photo { aspect-ratio: 4/3; overflow: hidden; }
.service-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.service-card:hover .photo img { transform: scale(1.05); }
.service-card .body { padding: 22px 24px 26px; }
.service-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.service-card p { font-size: 0.94rem; color: var(--muted); margin: 0 0 14px; }
.service-card .link {
  font-weight: 700; color: var(--brand); font-size: 0.92rem;
  display: inline-flex; align-items: center; gap: 8px;
}
.service-card .link::after {
  content: '→'; transition: transform 0.2s;
}
.service-card:hover .link::after { transform: translateX(4px); }
@media (max-width: 900px) { .service-grid { grid-template-columns: 1fr; } }

/* Numbered process steps */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.process-step {
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  padding: 32px 28px 28px; position: relative;
}
.process-step .photo {
  aspect-ratio: 5/3; border-radius: 14px; overflow: hidden; margin-bottom: 20px;
}
.process-step .photo img { width: 100%; height: 100%; object-fit: cover; }
.process-step .step-num {
  font-family: 'Manrope', sans-serif;
  font-size: 2.4rem; font-weight: 800; color: var(--brand);
  letter-spacing: -0.02em; line-height: 1; display: block; margin-bottom: 8px;
}
.process-step h3 { margin-bottom: 10px; }
.process-step p { margin: 0; color: var(--muted); font-size: 0.95rem; }
@media (max-width: 900px) { .process { grid-template-columns: 1fr; gap: 18px; } }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: #fff; border-radius: 22px;
  padding: 32px 26px 26px; border: 1px solid var(--line);
  position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 16px; right: 26px;
  font-family: Georgia, serif; font-size: 4rem; line-height: 1;
  color: var(--brand); opacity: 0.18;
}
.testimonial-card p.quote { margin: 0 0 18px; font-size: 0.98rem; line-height: 1.6; color: var(--ink); }
.testimonial-author { display: flex; align-items: center; gap: 14px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.05rem;
}
.author-meta { line-height: 1.3; }
.author-meta .name { font-weight: 700; font-size: 0.95rem; }
.author-meta .role { font-size: 0.82rem; color: var(--muted); }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* Location panel */
.location-panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.location-card {
  background: #fff; border-radius: 22px; padding: 38px 36px;
  box-shadow: var(--shadow);
}
.location-card h3 { margin-bottom: 18px; }
.location-meta { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.location-meta li { display: flex; gap: 14px; align-items: flex-start; font-size: 0.98rem; }
.location-meta li strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 2px; font-weight: 700; }
.map-graphic {
  aspect-ratio: 5/4; border-radius: 22px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.map-pin {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--accent); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 2.2rem; box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  position: relative;
}
.map-pin::after {
  content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0; border-left: 14px solid transparent; border-right: 14px solid transparent;
  border-top: 18px solid var(--accent);
}
.map-grid { position: absolute; inset: 0; opacity: 0.18; background-image: linear-gradient(rgba(255,255,255,0.4) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.4) 1px, transparent 1px); background-size: 36px 36px; }
@media (max-width: 900px) { .location-panel { grid-template-columns: 1fr; } }

/* Contact form */
.contact-section {
  background: var(--ink); color: #fff;
  position: relative;
}
.contact-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('/clients/freedom-fitness/img/6d439c4bd1.jpg') center/cover;
  opacity: 0.18;
}
.contact-wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-wrap h2 { color: #fff; margin-bottom: 18px; }
.contact-wrap p.lede { font-size: 1.1rem; color: rgba(255,255,255,0.78); margin-bottom: 28px; }
.contact-meta { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.contact-meta li { font-size: 0.98rem; }
.contact-meta li strong { display: block; color: var(--accent); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.contact-card {
  background: #fff; color: var(--ink);
  border-radius: 22px; padding: 36px;
  box-shadow: 0 28px 60px -24px rgba(0,0,0,0.4);
}
.contact-card h3 { margin-bottom: 24px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 0.98rem; color: var(--ink); background: #fff;
  transition: border-color 0.15s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand); }
.field textarea { min-height: 120px; resize: vertical; }
.form-submit {
  width: 100%; padding: 16px; border: 0; border-radius: 14px;
  background: var(--brand); color: #fff; font-weight: 700;
  font-size: 1rem; cursor: pointer; transition: background 0.15s;
}
.form-submit:hover { background: var(--brand-dark); }
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }

/* Footer */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-grid h4 { color: #fff; font-family: 'Manrope', sans-serif; font-size: 0.92rem; letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 18px; font-weight: 700; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul a { font-size: 0.93rem; color: rgba(255,255,255,0.7); transition: color 0.15s; }
.footer-grid ul a:hover { color: #fff; }
.footer-brand-block .brand-mark { color: #fff; margin-bottom: 16px; }
.footer-brand-block p { font-size: 0.92rem; color: rgba(255,255,255,0.6); margin: 0 0 18px; max-width: 280px; }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.92rem; transition: background 0.15s;
}
.social-row a:hover { background: var(--brand); }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; font-size: 0.82rem; color: rgba(255,255,255,0.45);
}
.footer-credit a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* Mobile sticky CTA */
.mobile-sticky {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--ink); color: #fff;
}
.mobile-sticky a {
  flex: 1; padding: 16px 18px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 0.96rem; color: #fff;
}
.mobile-sticky .call-half { background: var(--brand); }
.mobile-sticky .msg-half { background: #0a0a0a; }
@media (max-width: 900px) {
  .mobile-sticky { display: flex; }
  body { padding-bottom: 60px; }
}

/* Breadcrumb */
.breadcrumb { padding: 110px 0 0; }
.breadcrumb ol {
  display: flex; gap: 8px; list-style: none; padding: 0; margin: 0;
  font-size: 0.85rem; color: var(--muted); flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb li:not(:first-child)::before { content: '/'; margin-right: 8px; opacity: 0.5; }

/* Sub-page hero */
.subhero { padding: 28px 0 64px; }
.subhero .eyebrow { margin-bottom: 18px; }
.subhero h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); max-width: 780px; margin: 0 0 18px; }
.subhero p.lede { font-size: 1.15rem; color: var(--muted); max-width: 680px; margin: 0; }
.subhero .subhero-photo {
  aspect-ratio: 21/9; border-radius: 22px; overflow: hidden; margin-top: 40px;
  box-shadow: var(--shadow);
}
.subhero .subhero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Pricing cards */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pricing-card {
  background: #fff; border: 1.5px solid var(--line); border-radius: 22px;
  padding: 32px 28px 28px; position: relative;
}
.pricing-card.featured { border-color: var(--brand); }
.pricing-card.featured::before {
  content: 'POPULAR'; position: absolute; top: -12px; left: 24px;
  background: var(--brand); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  padding: 5px 12px; border-radius: 999px;
}
.pricing-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.pricing-card .price {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 2.4rem; color: var(--ink); letter-spacing: -0.02em; line-height: 1.1;
  margin: 14px 0 6px;
}
.pricing-card .price small { font-size: 0.95rem; font-weight: 600; color: var(--muted); }
.pricing-card .meta { font-size: 0.85rem; color: var(--muted); margin: 0 0 18px; }
.pricing-card ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.pricing-card ul li { font-size: 0.92rem; display: flex; gap: 10px; align-items: flex-start; }
.pricing-card ul li::before {
  content: '✓'; color: var(--brand); font-weight: 800;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

/* FAQ details */
.faq-list { display: grid; gap: 14px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 22px 26px; font-weight: 700; font-size: 1.04rem;
  list-style: none; display: flex; justify-content: space-between; gap: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--brand); font-size: 1.4rem; line-height: 1; }
.faq-item[open] summary::after { content: '−'; }
.faq-item-body { padding: 0 26px 22px; font-size: 0.96rem; color: var(--muted); line-height: 1.6; }

/* Team grid */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.team-member {
  text-align: center;
}
.team-avatar {
  width: 100%; aspect-ratio: 1; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 2.6rem;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.team-member h3 { font-size: 1.05rem; margin: 0 0 4px; }
.team-role { font-size: 0.88rem; color: var(--muted); }
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }

/* About bio */
.bio-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: center; }
.bio-photo { aspect-ratio: 1; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); }
.bio-photo img { width: 100%; height: 100%; object-fit: cover; }
.bio-content p { font-size: 1.04rem; line-height: 1.65; color: var(--ink); }
@media (max-width: 900px) { .bio-grid { grid-template-columns: 1fr; } }

/* Notice bar */
.notice-bar {
  background: var(--accent); color: var(--ink); padding: 12px 0;
  text-align: center; font-weight: 600; font-size: 0.95rem;
}
.notice-bar a { text-decoration: underline; text-underline-offset: 3px; font-weight: 800; }

/* 404 */
.error-page {
  min-height: 60vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 160px 0 80px;
}
.error-page .big-num {
  font-family: 'Manrope', sans-serif; font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 800; color: var(--brand); line-height: 1; margin: 0;
  letter-spacing: -0.04em;
}
