/* ─────────────────────────────────────────────
   TeeOps Golf — Marketing Site Styles
   ───────────────────────────────────────────── */

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg, video { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ─── Design Tokens ─── */
:root {
  --green:        #0F3D2E;
  --green-hover:  #16503C;
  --green-deep:   #0a2b20;
  --gold:         #B08D57;
  --gold-hover:   #9a7b4a;
  --cream:        #F7F4EE;
  --white:        #FFFFFF;
  --ink:          #111827;
  --muted:        #6B7280;
  --border:       #E7E1D8;
  --radius-sm:    4px;
  --radius:       8px;
  --radius-lg:    12px;
  --radius-xl:    16px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08);
  --shadow:       0 2px 8px rgba(0,0,0,0.08), 0 4px 20px rgba(0,0,0,0.06);
  --shadow-hover: 0 6px 16px rgba(0,0,0,0.12), 0 12px 40px rgba(0,0,0,0.10);
  --max-w:        1200px;
  --content-w:    840px;
  --narrow-w:     680px;
}

/* ─── Base ─── */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── Typography ─── */
h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h3 { font-size: 1.1rem; font-weight: 600; line-height: 1.3; }
h4 { font-size: 0.95rem; font-weight: 600; line-height: 1.4; }
p  { line-height: 1.75; color: var(--muted); }
a  { color: inherit; text-decoration: none; }

.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
  box-shadow: 0 4px 12px rgba(15,61,46,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  box-shadow: 0 4px 12px rgba(176,141,87,0.35);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-group--center { justify-content: center; }

/* ─── Layout ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container--content {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: var(--narrow-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Sections ─── */
.section { padding: 96px 24px; }
.section--sm { padding: 64px 24px; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--green {
  background: var(--green);
  color: var(--white);
}
.section--green p   { color: rgba(255,255,255,0.75); }
.section--green h1,
.section--green h2,
.section--green h3  { color: var(--white); }

.section-header {
  text-align: center;
  max-width: var(--content-w);
  margin: 0 auto 64px;
}
.section-header--narrow { max-width: var(--narrow-w); }
.section-header p {
  margin-top: 16px;
  font-size: 1.05rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section-header + .section-header { margin-top: -32px; }

/* ─── Navigation ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}


.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
}
.nav-links a {
  color: #2d3a2e;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); }

.nav-cta {
  flex-shrink: 0;
  padding: 8px 18px;
  font-size: 0.82rem;
  background: var(--gold);
  opacity: 0.88;
}
.nav-cta:hover { opacity: 1; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  background: var(--green-deep);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 8px 24px 24px;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; margin-bottom: 4px; }
.nav-mobile ul li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.nav-mobile ul li a {
  display: block;
  padding: 14px 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-mobile ul li a:hover { color: var(--white); }
.nav-mobile .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ─── Hero ─── */
.hero {
  background: var(--green);
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 88px 24px 88px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/the-jack.webp');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.13;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.hero .eyebrow { color: var(--gold); margin-bottom: 20px; }
.hero .btn-group { justify-content: center; }

/* ─── Two Sides ─── */
.two-sides {
  max-width: var(--max-w);
  margin: 0 auto;
}
.two-sides-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.side {
  padding: 40px 36px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
}
.side-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.side h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.side p { color: rgba(255,255,255,0.72); font-size: 0.97rem; }

.two-sides-connector {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 36px;
  padding: 16px 28px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}
.two-sides-connector p {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  margin: 0;
}

.two-sides-cta { text-align: center; }

/* ─── Feature Grid ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto 48px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.feature-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.feature-icon {
  width: 42px;
  height: 42px;
  color: var(--green);
  margin-bottom: 20px;
}
.feature-card h3 {
  color: var(--ink);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.92rem;
  line-height: 1.7;
}
.feature-grid-cta { text-align: center; }

/* ─── Story Section ─── */
.story-content {
  max-width: var(--narrow-w);
  margin: 0 auto;
}
.story-pull {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 32px;
}
.story-pull h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  line-height: 1.3;
  color: var(--ink);
}
.story-body p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--muted);
}
.story-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 8px;
}
.story-link:hover { text-decoration: underline; }

/* ─── Pricing Teaser ─── */
.pricing-teaser-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.pricing-teaser-inner h2 { margin-bottom: 16px; }
.pricing-teaser-inner p { margin-bottom: 32px; font-size: 1.05rem; }
.pricing-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.pricing-note a {
  color: rgba(255,255,255,0.65);
  text-decoration: underline;
}
.pricing-note a:hover { color: var(--white); }

/* ─── Final CTA ─── */
.final-cta-inner {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}
.final-cta-inner h2 { margin-bottom: 16px; }
.final-cta-inner p { margin-bottom: 32px; font-size: 1.05rem; }

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  background: var(--green);
  padding: 72px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/images/the-jack.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1.1rem; margin: 0 auto; max-width: 540px; }
.page-hero .eyebrow { color: var(--gold); }

/* ─── Features Detail Page ─── */
.feature-detail-grid {
  max-width: var(--max-w);
  margin: 0 auto;
}
.feature-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.feature-detail-item:last-child { border-bottom: none; }
.feature-detail-item.reverse .feature-detail-text { order: 2; }
.feature-detail-item.reverse .feature-detail-visual { order: 1; }

.feature-detail-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(15,61,46,0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--green);
}
.feature-detail-icon-wrap svg { width: 26px; height: 26px; }

.feature-detail-text h2 { margin-bottom: 16px; font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
.feature-detail-text > p { margin-bottom: 28px; font-size: 1rem; }

.feature-bullets { list-style: none; }
.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.93rem;
  color: var(--ink);
}
.bullet-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

.feature-detail-visual {
  background: var(--cream);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: sticky;
  top: 88px;
  padding: 22px;
  min-height: 380px;
}
.feature-detail-visual img { width: 100%; height: 100%; object-fit: cover; }
.feature-detail-visual .fmockup,
.feature-detail-visual .mockup { width: 100%; }
.visual-placeholder {
  text-align: center;
  padding: 32px;
  color: var(--muted);
}
.visual-placeholder p { font-size: 0.85rem; margin-top: 8px; }
.visual-placeholder svg { width: 40px; height: 40px; color: var(--border); margin: 0 auto; }

/* ─── Pricing Page ─── */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 680px;
  margin: 0 auto 56px;
  box-shadow: var(--shadow);
}
.pricing-card h3 { color: var(--ink); margin-bottom: 8px; font-size: 1.4rem; }
.pricing-card-tagline { color: var(--muted); font-size: 0.95rem; margin-bottom: 32px; }

.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

.pricing-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-bottom: 40px; }
.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.4;
}
.check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check svg { width: 10px; height: 10px; color: var(--white); }

.pricing-card-cta { text-align: center; }

/* FAQ */
.faq-section { max-width: var(--narrow-w); margin: 0 auto; }
.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item h4 { font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.faq-item p { font-size: 0.93rem; margin: 0; }

/* ─── Demo / Contact Page ─── */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: start;
}
.demo-info h2 { margin-bottom: 16px; }
.demo-info > p { margin-bottom: 28px; }
.demo-bullets { list-style: none; margin-top: 8px; }
.demo-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--ink);
}
.demo-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}
.demo-form-card h3 { color: var(--ink); margin-bottom: 28px; font-size: 1.25rem; }

.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.form-label .required { color: var(--gold); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.93rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15,61,46,0.1);
}
.form-control::placeholder { color: #9CA3AF; }
textarea.form-control { resize: vertical; min-height: 110px; line-height: 1.6; }
select.form-control { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 16px; text-align: center; line-height: 1.5; }

/* ─── About Page ─── */
.prose {
  max-width: 680px;
  margin: 0 auto;
}
.prose p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--muted);
}
.prose h2 {
  font-size: 1.5rem;
  color: var(--ink);
  margin-top: 48px;
  margin-bottom: 16px;
}
.prose p:last-child { margin-bottom: 0; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 48px auto 0;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.value-card h4 { color: var(--ink); margin-bottom: 10px; font-size: 1rem; }
.value-card p { font-size: 0.9rem; }

/* ─── Footer ─── */
.footer {
  background: var(--green-deep);
  padding: 56px 24px 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.footer-logo-wrap { margin-bottom: 16px; }
.footer-logo-wrap img { height: 26px; width: auto; filter: brightness(0) invert(1) opacity(0.9); }
.footer-logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.02em;
}
.footer-logo-text .gold { color: var(--gold); }
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}
.footer-col-heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-nav {
  margin-top: 20px;
  font-size: 0.85rem;
}
.footer-nav a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-nav span { color: rgba(255,255,255,0.2); margin: 0 8px; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── Utility ─── */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }

/* ─── 404 Page ─── */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}
.error-code {
  font-size: 6rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}
.error-page h2 { margin-bottom: 12px; }
.error-page p { margin-bottom: 32px; }

/* ─────────────────────────────────────────────
   Home Page — Split Hero, Trust Strip, Pillars,
   Simple Cards, Mockups
   ───────────────────────────────────────────── */

/* ─── Mockup base (used in pillars and Features page) ─── */
.mockup {
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 20px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.06);
  overflow: hidden;
  font-size: 0.85rem;
  color: var(--ink);
}
.mockup--teesheet { max-width: 540px; }
.mockup-header {
  background: var(--cream);
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mockup-header h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
}
.mockup-sub {
  font-size: 0.72rem;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}
.mockup-pill {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.mockup-pill--live {
  background: rgba(15,61,46,0.08);
  color: var(--green);
}
.mockup-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* Tee sheet — mirrors react-big-calendar event bars in manager_calendar.js */
.mockup-cal {
  background: var(--white);
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mockup-cal-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 10px;
  align-items: center;
}
.mockup-cal-time {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.mockup-event {
  border-radius: 7px;
  padding: 9px 14px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
  background-image: linear-gradient(to bottom, rgba(255,255,255,0.04), rgba(0,0,0,0.06));
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), inset 0 -1px 0 rgba(0,0,0,0.1);
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.mockup-event--available { background-color: #2E7D32; }
.mockup-event--partial   { background-color: #946B2D; }
.mockup-event--full      { background-color: #B23A3A; }
.mockup-event--blocked   { background-color: #5C6370; }
.mockup-event--held      { background-color: #3B82F6; }

.mockup-event-cap {
  font-weight: 600;
  font-size: 0.75rem;
  flex-shrink: 0;
  letter-spacing: 0.3px;
}
.mockup-event-names {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.95;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mockup-event-names .member-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.85;
  text-transform: uppercase;
}
.mockup-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.7);
  font-size: 8px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  flex-shrink: 0;
}
.dot--paid       { background: #3B82F6; }
.dot--checkedin  { background: #22C55E; }
.dot--unpaid     {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
  color: transparent;
}

/* ─── Trust Strip ─── */
.trust-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 24px 24px;
  text-align: center;
}
.trust-strip-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.trust-strip-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}
.trust-strip p {
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.005em;
}
.trust-strip-pill {
  display: block;
  width: fit-content;
  margin: 12px auto 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  white-space: nowrap;
}

/* ─── Pillars ─── */
.pillar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 56px 0;
}
.pillar + .pillar { border-top: 1px solid var(--border); }
.pillar--reverse .pillar-text { order: 2; }
.pillar--reverse .pillar-visual { order: 1; }
.pillar-text { max-width: 480px; }
.pillar-headline {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 700;
  color: var(--ink);
  margin: 14px 0 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.pillar-bullets { list-style: none; margin: 0; padding: 0; }
.pillar-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.55;
}
.pillar-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ─── Phone Mockup (Pillar A) ─── */
.mockup-phone {
  width: 280px;
  background: #1a1a1a;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.20), 0 10px 30px rgba(0,0,0,0.10);
  position: relative;
}
.mockup-phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #1a1a1a;
  border-radius: 999px;
  z-index: 2;
}
.mockup-phone-screen {
  background: var(--white);
  border-radius: 26px;
  overflow: hidden;
  padding-top: 48px;
}
.mockup-phone-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 18px 14px;
  border-bottom: 1px solid var(--border);
}
.mockup-phone-back {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 600;
}
.mockup-phone-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}
.mockup-phone-context {
  padding: 12px 18px 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.mockup-phone-cards {
  padding: 8px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Tee time card — mirrors .card-modern in TeeTimes.css */
.mockup-tt-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.mockup-tt-time {
  background: var(--green);
  color: var(--white);
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 9px 0;
  line-height: 1;
  letter-spacing: 0.01em;
}
.mockup-tt-body {
  position: relative;
  padding: 22px 14px 12px;
}
.mockup-tt-badge {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 9px;
  border-radius: 10px;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.mockup-tt-badge--hot {
  background: linear-gradient(135deg, #e07840 0%, #c96a3a 50%, #b85c30 100%);
}
.mockup-tt-badge--member {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}
.mockup-tt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.74rem;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}
.mockup-tt-row:last-of-type { border-bottom: none; }
.mockup-tt-row span:first-child { color: var(--muted); font-weight: 500; }
.mockup-tt-row span:last-child  { color: var(--ink); font-weight: 600; }
.mockup-tt-btn {
  background: var(--green);
  color: var(--white);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 9px 0;
  border-radius: 8px;
  margin-top: 10px;
  letter-spacing: 0.02em;
}

/* ─── Pro Shop Order Summary Mockup (Pillar B) — mirrors /login proshop.css ─── */
.mockup--order {
  max-width: 460px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.10), 0 2px 4px -1px rgba(0,0,0,0.06);
  overflow: hidden;
}
.mockup-order-header {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mockup-order-header h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.mockup-order-count {
  background: rgba(255,255,255,0.25);
  padding: 3px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
}

.mockup-order-body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mockup-order-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #f8fafc;
  border-radius: 10px;
}
.mockup-order-info { flex: 1; min-width: 0; }
.mockup-order-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  line-height: 1.3;
}
.mockup-tax-tag {
  font-size: 0.55rem;
  font-weight: 500;
  background: #dbeafe;
  color: #1e40af;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.mockup-order-cat {
  font-size: 0.68rem;
  color: #64748b;
}
.mockup-order-qty {
  display: flex;
  align-items: center;
  gap: 5px;
}
.mockup-order-qty button {
  width: 22px;
  height: 22px;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  background: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.mockup-order-qty span {
  min-width: 16px;
  text-align: center;
  font-weight: 600;
  color: #1e293b;
  font-size: 0.78rem;
}
.mockup-order-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: #10b981;
  min-width: 56px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.mockup-order-remove {
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 5px;
  background: #fee2e2;
  color: #ef4444;
  font-size: 0.72rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-family: inherit;
  flex-shrink: 0;
}

.mockup-order-totals {
  padding: 14px 20px 12px;
  background: #f8fafc;
  border-top: 2px solid #e2e8f0;
}
.mockup-order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #64748b;
  padding: 4px 0;
}
.mockup-order-row--final {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 2px dashed #e2e8f0;
  color: #1e293b;
  font-weight: 700;
  font-size: 0.92rem;
}
.mockup-order-final-amt {
  color: #10b981;
  font-size: 1.15rem;
  font-weight: 700;
}

.mockup-order-actions {
  padding: 14px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mockup-pay-btn {
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mockup-pay-btn--card {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  box-shadow: 0 4px 12px rgba(59,130,246,0.25);
}
.mockup-pay-btn--cash {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 4px 12px rgba(16,185,129,0.25);
}
.mockup-pay-icon {
  font-size: 1rem;
  line-height: 1;
}

/* ─── Simple-on-purpose Cards ─── */
.simple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.simple-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.simple-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.simple-icon {
  width: 38px;
  height: 38px;
  color: var(--green);
  margin-bottom: 18px;
}
.simple-icon svg { width: 100%; height: 100%; }
.simple-card h3 {
  color: var(--ink);
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.simple-card p {
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ─── Home Responsive ─── */
@media (max-width: 1024px) {
  .pillar { grid-template-columns: 1fr; gap: 40px; padding: 48px 0; }
  .pillar--reverse .pillar-text { order: unset; }
  .pillar--reverse .pillar-visual { order: unset; }
  .pillar-text { max-width: 580px; margin: 0 auto; text-align: left; }
}

@media (max-width: 768px) {
  .simple-grid { grid-template-columns: 1fr; gap: 16px; }
  .mockup--teesheet { max-width: 380px; }
  .mockup-phone { width: 240px; }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .feature-detail-item { grid-template-columns: 1fr; gap: 36px; }
  .feature-detail-item.reverse .feature-detail-text { order: unset; }
  .feature-detail-item.reverse .feature-detail-visual { order: unset; }
  .feature-detail-visual { position: static; aspect-ratio: 16/9; }
  .demo-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 20px; }
  .section--sm { padding: 48px 20px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .two-sides-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .pricing-list { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; gap: 16px; }
  .hero { min-height: 48vh; padding: 72px 20px 64px; }
  .page-hero { padding: 56px 20px 48px; }
}

@media (max-width: 640px) {
  .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { justify-content: center; }
  .hero h1 { font-size: 2.2rem; }
  .side { padding: 28px 22px; }
  .demo-form-card { padding: 28px 20px; }
  .pricing-card { padding: 32px 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ─────────────────────────────────────────────
   Features Page — Mockups (fmockup-*)
   ───────────────────────────────────────────── */

.fmockup {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  overflow: hidden;
  font-size: 0.78rem;
}

/* Shared status pills (used in #1 and #6) */
.fmockup-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.fmockup-pill--paid   { background: #217a38; color: #fff; }
.fmockup-pill--unpaid { background: #dc3545; color: #fff; }
.fmockup-pill--cash   { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }

/* ─── 1. Tee Time Edit Modal ─── */
.fmockup--tt {
  width: 100%;
  max-width: 560px;
}
.fmockup-tt-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: #fff;
  text-align: center;
}
.fmockup-tt-header h4 {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}
.fmockup-tt-table-wrap { padding: 8px; }
.fmockup-tt-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.7rem;
}
.fmockup-tt-table th,
.fmockup-tt-table td {
  padding: 8px 6px;
  text-align: center;
  border-bottom: 1px solid #f3f4f6;
}
.fmockup-tt-table th {
  font-weight: 600;
  color: #6b7280;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #f9fafb;
}
.fmockup-tt-table tbody tr:last-child td { border-bottom: none; }
.fmockup-cb {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 1.5px solid #cbd5e1;
  border-radius: 3px;
  background: #fff;
}
.fmockup-checkin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: #e9ecef;
  border: 1px solid #6c757d;
  color: #6c757d;
  font-size: 0.7rem;
  font-weight: 700;
}
.fmockup-checkin--in     { background: #d4edda; border-color: #217a38; color: #217a38; }
.fmockup-checkin--noshow { background: #f8d7da; border-color: #dc3545; color: #dc3545; }

/* ─── 2. Booking Cards (3-up) ─── */
.fmockup--booking {
  width: 100%;
  max-width: 540px;
  background: #fff;
  padding: 16px 14px;
}
.fmockup-booking-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 4px 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.fmockup-booking-back {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
}
.fmockup-booking-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.fmockup-booking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.fmockup-booking-grid .mockup-tt-card { font-size: 0.74rem; }
.fmockup-booking-grid .mockup-tt-time { font-size: 0.95rem; padding: 7px 0; }
.fmockup-booking-grid .mockup-tt-body { padding: 22px 10px 10px; }
.fmockup-booking-grid .mockup-tt-row { font-size: 0.66rem; padding: 4px 0; }
.fmockup-booking-grid .mockup-tt-btn { font-size: 0.7rem; padding: 7px 0; }
/* Reserve same vertical space on the un-badged middle card */
.fmockup-booking-body--plain { padding-top: 22px; }

/* ─── 4. Members Table + Drawer ─── */
.fmockup--members {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 0;
  width: 100%;
  max-width: 580px;
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
}
.fmockup-mem-table-wrap {
  overflow: hidden;
  border-right: 1px solid var(--border);
}
.fmockup-mem-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.72rem;
}
.fmockup-mem-table th,
.fmockup-mem-table td {
  padding: 9px 12px;
  text-align: left;
  border-bottom: 1px solid #f3f4f6;
}
.fmockup-mem-table th {
  font-weight: 600;
  color: #6b7280;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #f9fafb;
}
.fmockup-mem-table tbody tr { transition: background 0.1s; }
.fmockup-mem-row--selected {
  background: #eff6ff;
  border-left: 3px solid #3b82f6;
}
.fmockup-mem-row--selected td:first-child { font-weight: 600; }
.fmockup-status {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 600;
  border: 1px solid;
}
.fmockup-status--active  { background: #f0fdf4; border-color: #bbf7d0; color: #16a34a; }
.fmockup-status--expired { background: #fef2f2; border-color: #fecaca; color: #dc2626; }

.fmockup-mem-drawer {
  padding: 14px 14px 16px;
  background: #fff;
}
.fmockup-mem-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
}
.fmockup-mem-drawer-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.fmockup-mem-drawer-phone {
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 1px;
}
.fmockup-mem-close {
  background: #f3f4f6;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1;
}
.fmockup-mem-section-label {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
  margin-top: 14px;
  margin-bottom: 6px;
}
.fmockup-mem-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.fmockup-mem-stat {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 6px;
  padding: 8px 6px;
  text-align: center;
}
.fmockup-mem-stat strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1px;
}
.fmockup-mem-stat span {
  font-size: 0.58rem;
  color: var(--muted);
}
.fmockup-mem-fields {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 6px;
  padding: 6px 10px;
}
.fmockup-mem-field {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 0.7rem;
}
.fmockup-mem-field span { color: var(--muted); }
.fmockup-mem-field strong { color: var(--ink); font-weight: 600; }

/* ─── 5. Payments — three methods ─── */
.fmockup--payments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: transparent;
  box-shadow: none;
  width: 100%;
  max-width: 540px;
}
.fmockup-pay-method {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, transform 0.2s;
}
.fmockup-pay-method--featured {
  border-color: var(--green);
  box-shadow: 0 6px 18px rgba(15,61,46,0.14);
  transform: translateY(-4px);
}
.fmockup-pay-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(15,61,46,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.fmockup-pay-icon-wrap svg { width: 22px; height: 22px; }
.fmockup-pay-method h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin: 4px 0 0;
}
.fmockup-pay-method p {
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}
.fmockup-pay-tag {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--gold);
  padding: 3px 8px;
  border-radius: 999px;
  margin-top: 2px;
}

/* ─── 6. Dashboard ─── */
.fmockup--dash {
  width: 100%;
  max-width: 580px;
  padding: 14px;
  background: #fff;
}
.fmockup-dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.fmockup-dash-stat {
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid;
}
.fmockup-dash-stat span {
  display: block;
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.fmockup-dash-stat strong {
  font-size: 0.95rem;
  font-weight: 700;
  display: block;
}
.fmockup-dash-stat--green  { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); border-color: #a5d6a7; }
.fmockup-dash-stat--green span  { color: #2e7d32; }
.fmockup-dash-stat--green strong{ color: #1b5e20; }
.fmockup-dash-stat--blue   { background: linear-gradient(135deg, #e3f2fd, #bbdefb); border-color: #90caf9; }
.fmockup-dash-stat--blue span   { color: #1565c0; }
.fmockup-dash-stat--blue strong { color: #0d47a1; }
.fmockup-dash-stat--orange { background: linear-gradient(135deg, #fff3e0, #ffe0b2); border-color: #ffcc80; }
.fmockup-dash-stat--orange span { color: #e65100; }
.fmockup-dash-stat--orange strong { color: #bf360c; }
.fmockup-dash-stat--purple { background: linear-gradient(135deg, #f3e5f5, #e1bee7); border-color: #ce93d8; }
.fmockup-dash-stat--purple span { color: #6a1b9a; }
.fmockup-dash-stat--purple strong { color: #4a148c; }
.fmockup-dash-stat--teal   { background: linear-gradient(135deg, #e0f2f1, #b2dfdb); border-color: #80cbc4; }
.fmockup-dash-stat--teal span   { color: #00695c; }
.fmockup-dash-stat--teal strong { color: #004d40; }
.fmockup-dash-stat--red    { background: linear-gradient(135deg, #ffebee, #ffcdd2); border-color: #ef9a9a; }
.fmockup-dash-stat--red span    { color: #c62828; }
.fmockup-dash-stat--red strong  { color: #b71c1c; }

.fmockup-dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.72rem;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 8px;
  overflow: hidden;
}
.fmockup-dash-table th,
.fmockup-dash-table td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid #f3f4f6;
}
.fmockup-dash-table th {
  font-weight: 600;
  color: #6b7280;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #f9fafb;
}
.fmockup-dash-table tbody tr:last-child td { border-bottom: none; }
.fmockup-dash-table td:last-child { text-align: right; font-weight: 600; }

/* ─── Features mockups responsive ─── */
@media (max-width: 1024px) {
  .feature-detail-visual {
    position: static;
    min-height: 0;
    padding: 18px;
  }
  .fmockup--members {
    grid-template-columns: 1fr;
  }
  .fmockup-mem-table-wrap {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}
@media (max-width: 640px) {
  .fmockup--payments,
  .fmockup-booking-grid,
  .fmockup-dash-stats {
    grid-template-columns: 1fr;
  }
  .fmockup--tt { font-size: 0.7rem; }
  .fmockup-tt-table th, .fmockup-tt-table td { padding: 6px 4px; font-size: 0.62rem; }
}
