/* ═══════════════════════════════════════════════════════════════════════════════
   AcmeSkin — main bundle  (matches localhost:3000 ACMEv4 mock)
   Generated from ACMEv4 globals.css + section components.
   Tokens are pixel-equivalent to the mock's oklch values.
   Class prefix: .acme-* and (per section) .acme-{section}.
   ═════════════════════════════════════════════════════════════════════════════ */
@import url("https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700;800&family=Geist+Mono:wght@400;500&display=swap");


/* ─── Reset (Bootstrap-safe scoped) ─────────────────────────────────────── */
.acme-theme,
.acme-theme *,
.acme-theme *::before,
.acme-theme *::after { box-sizing: border-box; }
.acme-theme img, .acme-theme svg { max-width: 100%; height: auto; }
.acme-theme button { cursor: pointer; }
.acme-theme ul, .acme-theme ol { list-style: none; padding: 0; margin: 0; }
.acme-theme a { color: inherit; text-decoration: none; }

/* ─── Design tokens ─────────────────────────────────────────────────────── */
.acme-theme {
  /* Exact tokens from ACMEv4 mock (oklch → hex via canvas convert) */
  --acme-bg: #faf8f5;
  --acme-fg: #0f0a09;
  --acme-card: #ffffff;
  --acme-popover: #ffffff;
  --acme-muted: #ecebe7;
  --acme-muted-fg: #5b5352;
  --acme-primary: #df0000;
  --acme-primary-fg: #ffffff;
  --acme-secondary: #f3f2ee;
  --acme-secondary-fg: #0f0a09;
  --acme-accent: #df0000;
  --acme-border: #dfdeda;
  --acme-input: #dfdeda;
  --acme-ring: #df0000;
  --acme-radius: 0.5rem;
  --acme-radius-md: 0.625rem;
  --acme-radius-lg: 1rem;
  --acme-radius-xl: 1.5rem;
  --acme-shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --acme-shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --acme-shadow-lg: 0 12px 36px rgba(0,0,0,0.12);
  --acme-shadow-xl: 0 24px 48px rgba(0,0,0,0.18);
  --acme-trans: 220ms cubic-bezier(0.4, 0, 0.2, 1);

  font-family: "Geist", "Geist Fallback", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--acme-fg);
  background: var(--acme-bg);
  -webkit-font-smoothing: antialiased;
}

/* ─── Container + utilities ─────────────────────────────────────────────── */
.acme-container {
  box-sizing: border-box;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.acme-container *,
.acme-container *::before,
.acme-container *::after { box-sizing: border-box; }
@media (min-width: 768px) { .acme-container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .acme-container { padding-left: 2rem; padding-right: 2rem; } }

.acme-text-center { text-align: center; }
.acme-text-balance { text-wrap: balance; }
.acme-truncate-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.acme-truncate-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.acme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1.25rem;
  height: 44px;
  border-radius: var(--acme-radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--acme-trans), color var(--acme-trans), transform var(--acme-trans), box-shadow var(--acme-trans);
  border: 1px solid transparent;
  white-space: nowrap;
}
.acme-btn:hover { transform: translateY(-1px); }
.acme-btn-lg { height: 52px; padding: 0 1.5rem; font-size: 1rem; }
.acme-btn-primary { background: var(--acme-primary); color: var(--acme-primary-fg); }
.acme-btn-primary:hover { background: #b40000; box-shadow: var(--acme-shadow-md); }
.acme-btn-outline { background: transparent; color: var(--acme-fg); border-color: var(--acme-border); }
.acme-btn-outline:hover { background: var(--acme-muted); border-color: var(--acme-muted-fg); }
.acme-btn-ghost { background: transparent; color: var(--acme-fg); }
.acme-btn-ghost:hover { background: var(--acme-muted); }
.acme-btn-on-dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.acme-btn-on-dark:hover { background: rgba(255,255,255,0.1); }

/* ─── Inputs ────────────────────────────────────────────────────────────── */
.acme-input {
  display: block;
  width: 100%;
  height: 44px;
  padding: 0 1rem;
  font: inherit;
  font-size: 0.9rem;
  background: var(--acme-card);
  border: 1px solid var(--acme-input);
  border-radius: var(--acme-radius);
  color: var(--acme-fg);
  transition: border-color var(--acme-trans), box-shadow var(--acme-trans);
}
.acme-input:focus { outline: none; border-color: var(--acme-ring); box-shadow: 0 0 0 3px rgba(223, 0, 0, 0.12); }
.acme-input::placeholder { color: var(--acme-muted-fg); }
.acme-input-dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.acme-input-dark::placeholder { color: rgba(255,255,255,0.5); }
.acme-input-dark:focus { box-shadow: 0 0 0 3px rgba(223, 0, 0, 0.4); }

/* ─── Badge ─────────────────────────────────────────────────────────────── */
.acme-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.625rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--acme-muted);
  color: var(--acme-fg);
}
.acme-badge-primary { background: var(--acme-primary); color: var(--acme-primary-fg); }
.acme-badge-outline { background: transparent; border: 1px solid var(--acme-border); }

/* ─── Pane defaults ─────────────────────────────────────────────────────── */
.acme-main { background: var(--acme-bg); min-height: 50vh; }
.acme-pane:empty { display: none; }
.acme-pane-hero:empty + .acme-pane:empty { display: none; }

/* ─── Eyebrow bar (skin-rendered, hosts DNN Login/User/ControlPanel) ────── */
.acme-eyebrow { background: var(--acme-fg); color: var(--acme-bg); font-size: 0.75rem; }
.acme-eyebrow-inner { max-width: 1280px; margin: 0 auto; padding: 0.5rem 1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.acme-eyebrow-left { display: inline-flex; align-items: center; gap: 1rem; }
.acme-eyebrow-cell { display: inline-flex; align-items: center; gap: 0.375rem; }
.acme-eyebrow-cell svg { width: 12px; height: 12px; flex-shrink: 0; }
.acme-eyebrow-hours { display: none; }
@media (min-width: 640px) { .acme-eyebrow-hours { display: inline-flex; } }
.acme-eyebrow-right { display: inline-flex; align-items: center; gap: 0.875rem; }
/* Use direct hex (not var()) — DNN's high-specificity link rules can otherwise win */
.acme-eyebrow .acme-eyebrow-link,
.acme-eyebrow .acme-eyebrow-auth a,
.acme-eyebrow .acme-eyebrow-auth span {
  color: #faf8f5 !important;
  opacity: 0.85;
  transition: opacity 200ms ease, color 200ms ease;
  font-size: 0.75rem !important;
  text-decoration: none !important;
}
.acme-eyebrow .acme-eyebrow-link:hover,
.acme-eyebrow .acme-eyebrow-auth a:hover { opacity: 1; color: #df0000 !important; }
.acme-eyebrow-sep { color: rgba(255,255,255,0.3); font-size: 0.75rem; }
.acme-eyebrow-auth { display: inline-flex; align-items: center; gap: 0.5rem; }
.acme-eyebrow-cell { color: #faf8f5; }
/* DNN ControlPanel — its own bar is fine; just make it inline-friendly */
.acme-eyebrow-admin { display: inline-flex; align-items: center; gap: 0.5rem; }
.acme-eyebrow-admin .ControlPanelTabs, .acme-eyebrow-admin .ControlBar { font-size: 0.7rem; }
/* Admin-only "Edit menu" pill: visible white-on-red so it stands out as a
   call-to-action. Hidden for anonymous visitors via <asp:LoginView>. */
.acme-eyebrow .acme-edit-menu-link {
  display: inline-flex !important;
  align-items: center;
  gap: 0.375rem;
  padding: 3px 10px !important;
  background: #df0000 !important;
  color: #ffffff !important;
  border-radius: 999px;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  opacity: 1 !important;
  text-decoration: none !important;
  transition: background 200ms ease, transform 200ms ease;
}
.acme-eyebrow .acme-edit-menu-link:hover { background: #b40000 !important; color: #ffffff !important; transform: translateY(-1px); }
.acme-eyebrow .acme-edit-menu-link svg { stroke: #ffffff; }

/* PersonaBar handling: DNN sets body { margin-left: <pb width> } when
   admin is signed in.  We let DNN's body offset push everything right
   naturally — that's the standard DNN pattern.  No additional CSS.
   The previous attempt (margin-right balance OR negative-margin extend)
   was reverted because both produced white gaps on the right edge. */

/* Wider container on ultra-wide screens so content doesn't feel
   marooned in the middle of empty space. */
@media (min-width: 1700px) {
  .acme-eyebrow-inner,
  .am-header-inner { max-width: 1440px; }
  .acme-container { max-width: 1440px; }
}
@media (max-width: 640px) {
  .acme-eyebrow-inner { padding: 0.375rem 0.75rem; font-size: 0.7rem; }
  .acme-eyebrow-right > .acme-eyebrow-link:not(:nth-last-child(-n+2)) { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION  (matches components/hero-section.tsx — dark gradient + image grid)
   Use class .acme-hero on the outermost section
   ═══════════════════════════════════════════════════════════════════════════ */
.acme-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0a09 0%, #1a1411 50%, #0f0a09 100%);
  color: #fff;
  padding: 5rem 0;
}
@media (min-width: 768px) { .acme-hero { padding: 8rem 0; } }
.acme-hero::before {
  content: "";
  position: absolute; inset: 0; opacity: 0.1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.acme-hero-inner {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) { .acme-hero-inner { grid-template-columns: 1fr 1fr; padding: 0 2rem; } }

.acme-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  background: rgba(223, 0, 0, 0.2);
  color: var(--acme-primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.acme-hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-wrap: balance;
  margin: 0 0 1.5rem;
}
@media (min-width: 640px) { .acme-hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .acme-hero-title { font-size: 3.75rem; } }
.acme-hero-title .acme-hero-accent { display: block; color: var(--acme-primary); margin-top: 0.5rem; }
.acme-hero-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  max-width: 36rem;
  margin: 0 0 2rem;
  text-wrap: pretty;
}
.acme-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.acme-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}
.acme-hero-stat-num { font-size: 2rem; font-weight: 700; line-height: 1; }
@media (min-width: 768px) { .acme-hero-stat-num { font-size: 2.25rem; } }
.acme-hero-stat-label { margin-top: 0.25rem; font-size: 0.875rem; color: rgba(255,255,255,0.6); }

.acme-hero-images { display: none; position: relative; }
@media (min-width: 1024px) { .acme-hero-images { display: block; } }
.acme-hero-images-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.acme-hero-images-col { display: flex; flex-direction: column; gap: 1rem; }
.acme-hero-images-col:nth-child(2) { padding-top: 2rem; }
.acme-hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: var(--acme-shadow-xl);
}
.acme-hero-image-43 { aspect-ratio: 4 / 3; }
.acme-hero-image-1 { aspect-ratio: 1 / 1; }
.acme-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.acme-hero-floating {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--acme-card);
  color: var(--acme-fg);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: var(--acme-shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.acme-hero-floating-avatars { display: flex; }
.acme-hero-floating-avatars img {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--acme-card);
  object-fit: cover;
  margin-left: -8px;
}
.acme-hero-floating-avatars img:first-child { margin-left: 0; }
.acme-hero-floating strong { display: block; font-size: 0.875rem; font-weight: 600; }
.acme-hero-floating small { display: block; font-size: 0.75rem; color: var(--acme-muted-fg); }

/* ═══════════════════════════════════════════════════════════════════════════
   PARTNERS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.acme-partners {
  padding: 3rem 0;
  border-top: 1px solid var(--acme-border);
  border-bottom: 1px solid var(--acme-border);
  background: rgba(241, 238, 234, 0.4);
}
@media (min-width: 768px) { .acme-partners { padding: 4rem 0; } }
.acme-partners-label {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--acme-muted-fg);
  margin: 0 0 2rem;
}
.acme-partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (min-width: 768px) { .acme-partners-grid { gap: 3rem; } }
@media (min-width: 1024px) { .acme-partners-grid { gap: 4rem; } }
.acme-partner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--acme-muted-fg);
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter var(--acme-trans), opacity var(--acme-trans);
}
.acme-partner:hover { filter: grayscale(0%); opacity: 1; }
.acme-partner-mark {
  display: inline-block;
  width: 32px; height: 32px;
  background: rgba(107, 98, 88, 0.2);
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.acme-about { padding: 4rem 0; }
@media (min-width: 768px) { .acme-about { padding: 6rem 0; } }
.acme-about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .acme-about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.acme-about-image-wrap { position: relative; }
.acme-about-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: var(--acme-shadow-xl);
}
.acme-about-image img { width: 100%; height: 100%; object-fit: cover; }
.acme-about-stat-card {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--acme-primary);
  color: var(--acme-primary-fg);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--acme-shadow-xl);
}
@media (min-width: 768px) { .acme-about-stat-card { right: -2rem; } }
.acme-about-stat-card .num { font-size: 2.5rem; font-weight: 700; line-height: 1; }
.acme-about-stat-card .lbl { font-size: 0.875rem; opacity: 0.9; }
.acme-about-deco {
  position: absolute;
  top: -1rem; left: -1rem;
  width: 6rem; height: 6rem;
  border-radius: 1rem;
  background: rgba(223, 0, 0, 0.1);
  z-index: -1;
}

.acme-about-eyebrow {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--acme-primary);
}
.acme-about-title {
  margin-top: 0.75rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
@media (min-width: 768px) { .acme-about-title { font-size: 2.25rem; } }
.acme-about-lead {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--acme-muted-fg);
}
.acme-about-body { margin-top: 1rem; color: var(--acme-muted-fg); }
.acme-about-milestones { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.acme-about-milestone { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; font-weight: 500; }
.acme-about-milestone .acme-i-check { color: var(--acme-primary); flex-shrink: 0; }
.acme-about-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* Values */
.acme-values { margin-top: 5rem; }
@media (min-width: 768px) { .acme-values { margin-top: 7rem; } }
.acme-values-header { text-align: center; margin-bottom: 3rem; }
.acme-values-eyebrow {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--acme-primary);
}
.acme-values-title {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 768px) { .acme-values-title { font-size: 1.875rem; } }
.acme-values-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .acme-values-grid { grid-template-columns: repeat(3, 1fr); } }
.acme-value {
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--acme-card);
  border: 1px solid var(--acme-border);
  box-shadow: var(--acme-shadow-sm);
  transition: box-shadow var(--acme-trans), border-color var(--acme-trans);
}
.acme-value:hover { box-shadow: var(--acme-shadow-lg); border-color: rgba(223, 0, 0, 0.2); }
.acme-value-icon {
  margin: 0 auto 1rem;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(223, 0, 0, 0.1);
  color: var(--acme-primary);
  transition: background var(--acme-trans), color var(--acme-trans);
}
.acme-value:hover .acme-value-icon { background: var(--acme-primary); color: var(--acme-primary-fg); }
.acme-value-title { font-size: 1.125rem; font-weight: 600; }
.acme-value-desc { margin-top: 0.5rem; font-size: 0.875rem; color: var(--acme-muted-fg); }

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.acme-services {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--acme-bg) 0%, rgba(241, 238, 234, 0.3) 100%);
}
@media (min-width: 768px) { .acme-services { padding: 6rem 0; } }
.acme-services-header { text-align: center; margin-bottom: 3rem; }
@media (min-width: 768px) { .acme-services-header { margin-bottom: 4rem; } }
.acme-services-eyebrow {
  font-size: 0.875rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--acme-primary);
}
.acme-services-title {
  margin-top: 0.5rem;
  font-size: 1.875rem; font-weight: 700;
  line-height: 1.15; letter-spacing: -0.025em;
  text-wrap: balance;
}
@media (min-width: 768px) { .acme-services-title { font-size: 2.25rem; } }
.acme-services-desc {
  margin: 1rem auto 0;
  max-width: 42rem;
  color: var(--acme-muted-fg);
}
.acme-services-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .acme-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .acme-services-grid { grid-template-columns: repeat(3, 1fr); } }
.acme-service {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--acme-card);
  border: 1px solid var(--acme-border);
  box-shadow: var(--acme-shadow-sm);
  transition: box-shadow var(--acme-trans), border-color var(--acme-trans);
}
.acme-service:hover { box-shadow: var(--acme-shadow-xl); border-color: rgba(223, 0, 0, 0.2); }
.acme-service-icon {
  display: inline-flex;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  transition: transform var(--acme-trans);
}
.acme-service:hover .acme-service-icon { transform: scale(1.1); }
.acme-service-icon-blue { background: rgba(59, 130, 246, 0.1); color: #2563eb; }
.acme-service-icon-emerald { background: rgba(16, 185, 129, 0.1); color: #059669; }
.acme-service-icon-purple { background: rgba(168, 85, 247, 0.1); color: #7c3aed; }
.acme-service-icon-orange { background: rgba(249, 115, 22, 0.1); color: #ea580c; }
.acme-service-icon-pink { background: rgba(236, 72, 153, 0.1); color: #db2777; }
.acme-service-icon-red { background: rgba(239, 68, 68, 0.1); color: #dc2626; }
.acme-service-title {
  font-size: 1.125rem; font-weight: 600;
  transition: color var(--acme-trans);
}
.acme-service:hover .acme-service-title { color: var(--acme-primary); }
.acme-service-desc { margin-top: 0.5rem; font-size: 0.875rem; color: var(--acme-muted-fg); }
.acme-service-cta {
  margin-top: 1rem;
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.875rem; font-weight: 500; color: var(--acme-primary);
  opacity: 0;
  transition: opacity var(--acme-trans);
}
.acme-service:hover .acme-service-cta { opacity: 1; }
.acme-service-corner {
  position: absolute;
  bottom: -0.5rem; right: -0.5rem;
  width: 4rem; height: 4rem;
  border-top-left-radius: 1rem;
  background: rgba(223, 0, 0, 0.05);
  transition: background var(--acme-trans);
}
.acme-service:hover .acme-service-corner { background: rgba(223, 0, 0, 0.1); }
.acme-services-cta { margin-top: 3rem; text-align: center; }

/* ═══════════════════════════════════════════════════════════════════════════
   NEWS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.acme-news {
  padding: 4rem 0;
  background: rgba(241, 238, 234, 0.3);
}
@media (min-width: 768px) { .acme-news { padding: 6rem 0; } }
.acme-news-header {
  display: flex; flex-direction: column;
  gap: 1rem; margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .acme-news-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.acme-news-eyebrow {
  font-size: 0.875rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--acme-primary);
}
.acme-news-title {
  margin-top: 0.5rem;
  font-size: 1.875rem; font-weight: 700;
  line-height: 1.15; letter-spacing: -0.025em;
}
@media (min-width: 768px) { .acme-news-title { font-size: 2.25rem; } }
.acme-news-desc { margin-top: 0.75rem; max-width: 36rem; color: var(--acme-muted-fg); }
.acme-news-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .acme-news-grid { grid-template-columns: 7fr 5fr; } }

.acme-news-featured {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--acme-card);
  box-shadow: var(--acme-shadow-md);
  transition: box-shadow var(--acme-trans);
}
.acme-news-featured:hover { box-shadow: var(--acme-shadow-xl); }
.acme-news-featured-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.acme-news-featured-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 500ms ease;
}
.acme-news-featured:hover .acme-news-featured-image img { transform: scale(1.05); }
.acme-news-featured-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,22,18,0.8), rgba(26,22,18,0.2) 60%, transparent);
}
.acme-news-featured .acme-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
}
.acme-news-featured-text {
  position: absolute; inset: 0;
  padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff;
}
.acme-news-featured-meta {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}
.acme-news-featured-meta .acme-i { width: 16px; height: 16px; }
.acme-news-featured-h3 {
  font-size: 1.5rem; font-weight: 700;
  text-wrap: balance;
  margin-bottom: 0.5rem;
  transition: color var(--acme-trans);
}
.acme-news-featured:hover .acme-news-featured-h3 { color: var(--acme-primary); }
.acme-news-featured-excerpt { color: rgba(255,255,255,0.8); }
.acme-news-featured-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem; font-weight: 600; color: var(--acme-primary);
}

.acme-news-list { display: flex; flex-direction: column; gap: 1rem; }
.acme-news-card {
  display: flex; gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: var(--acme-card);
  box-shadow: var(--acme-shadow-sm);
  transition: box-shadow var(--acme-trans), background var(--acme-trans);
}
.acme-news-card:hover { box-shadow: var(--acme-shadow-md); background: rgba(241,238,234,0.5); }
.acme-news-card-image {
  width: 96px; height: 96px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0.5rem;
}
.acme-news-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 300ms ease;
}
.acme-news-card:hover .acme-news-card-image img { transform: scale(1.1); }
.acme-news-card-body { flex: 1; min-width: 0; }
.acme-news-card-meta {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.25rem;
  font-size: 0.75rem; color: var(--acme-muted-fg);
}
.acme-news-card-meta .acme-badge {
  font-size: 0.625rem; padding: 0 0.5rem;
}
.acme-news-card-h4 {
  font-size: 0.95rem; font-weight: 600;
  line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color var(--acme-trans);
}
.acme-news-card:hover .acme-news-card-h4 { color: var(--acme-primary); }
.acme-news-card-excerpt {
  margin-top: 0.25rem; font-size: 0.875rem; color: var(--acme-muted-fg);
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}

.acme-news-trending {
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: var(--acme-card);
  border: 1px solid var(--acme-border);
  box-shadow: var(--acme-shadow-sm);
}
.acme-news-trending h4 {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.95rem; font-weight: 600;
}
.acme-news-trending-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.acme-news-trending-tag {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  background: var(--acme-muted);
  font-size: 0.875rem; font-weight: 500;
  transition: background var(--acme-trans), color var(--acme-trans);
}
.acme-news-trending-tag:hover { background: var(--acme-primary); color: var(--acme-primary-fg); }
.acme-news-trending-tag span {
  background: rgba(255,255,255,0.8);
  color: var(--acme-fg);
  padding: 0.0625rem 0.375rem;
  border-radius: 999px;
  font-size: 0.7rem;
}
.acme-news-trending-tag:hover span { background: rgba(255,255,255,0.85); }

/* ═══════════════════════════════════════════════════════════════════════════
   EVENTS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.acme-events { padding: 4rem 0; }
@media (min-width: 768px) { .acme-events { padding: 6rem 0; } }
.acme-events-header {
  display: flex; flex-direction: column;
  gap: 1rem; margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .acme-events-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.acme-events-eyebrow {
  font-size: 0.875rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--acme-primary);
}
.acme-events-title {
  margin-top: 0.5rem;
  font-size: 1.875rem; font-weight: 700;
  line-height: 1.15; letter-spacing: -0.025em;
}
@media (min-width: 768px) { .acme-events-title { font-size: 2.25rem; } }
.acme-events-desc { margin-top: 0.75rem; max-width: 36rem; color: var(--acme-muted-fg); }
.acme-events-grid { display: grid; gap: 2rem; }
.acme-events-grid > * { min-width: 0; }
@media (min-width: 1024px) { .acme-events-grid { grid-template-columns: 1fr 1fr; } }

.acme-event-featured {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--acme-card);
  box-shadow: var(--acme-shadow-md);
  transition: box-shadow var(--acme-trans);
}
@media (min-width: 1024px) { .acme-event-featured { grid-row: span 2; height: 100%; } }
.acme-event-featured:hover { box-shadow: var(--acme-shadow-xl); }
.acme-event-featured-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
@media (min-width: 1024px) { .acme-event-featured-image { aspect-ratio: auto; height: 100%; } }
.acme-event-featured-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 500ms ease;
}
.acme-event-featured:hover .acme-event-featured-image img { transform: scale(1.05); }
.acme-event-featured-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,22,18,0.95), rgba(26,22,18,0.5), transparent);
}
.acme-event-badges {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  display: flex; gap: 0.5rem;
}
.acme-event-text {
  position: absolute; inset: 0;
  padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff;
}
.acme-event-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}
.acme-event-h3 {
  font-size: 1.5rem; font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color var(--acme-trans);
}
@media (min-width: 1024px) { .acme-event-h3 { font-size: 1.875rem; } }
.acme-event-featured:hover .acme-event-h3 { color: var(--acme-primary); }
.acme-event-desc { color: rgba(255,255,255,0.8); margin-bottom: 1rem; }
.acme-event-bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.875rem;
}
.acme-event-bottom .acme-i { width: 16px; height: 16px; }
.acme-event-cta { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--acme-primary); }

.acme-events-list { display: flex; flex-direction: column; gap: 1.5rem; }
.acme-event-card {
  display: flex; gap: 1rem;
  min-width: 0;
  padding: 1rem;
  border-radius: 0.75rem;
  background: var(--acme-card);
  border: 1px solid var(--acme-border);
  box-shadow: var(--acme-shadow-sm);
  transition: box-shadow var(--acme-trans), border-color var(--acme-trans);
}
.acme-event-card:hover { box-shadow: var(--acme-shadow-md); border-color: rgba(223, 0, 0, 0.2); }
.acme-event-card-image {
  position: relative;
  width: 144px; height: 112px; flex-shrink: 0;
  overflow: hidden;
  border-radius: 0.5rem;
}
.acme-event-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 300ms ease;
}
.acme-event-card:hover .acme-event-card-image img { transform: scale(1.1); }
.acme-event-card-image .acme-badge {
  position: absolute; top: 0.5rem; left: 0.5rem;
  font-size: 0.625rem;
}
.acme-event-card-body { flex: 1; min-width: 0; }
.acme-event-card-meta {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; color: var(--acme-muted-fg);
  margin-bottom: 0.25rem;
}
.acme-event-card-h4 {
  font-size: 0.95rem; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: color var(--acme-trans);
}
.acme-event-card:hover .acme-event-card-h4 { color: var(--acme-primary); }
.acme-event-card-desc {
  margin-top: 0.25rem; font-size: 0.875rem; color: var(--acme-muted-fg);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.acme-event-card-loc {
  margin-top: 0.5rem;
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.75rem; color: var(--acme-muted-fg);
}
@media (max-width: 480px) {
  .acme-event-card { flex-direction: column; }
  .acme-event-card-image { width: 100%; height: auto; aspect-ratio: 16 / 10; }
  .acme-event-card-meta { flex-wrap: wrap; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER  (rendered by partials/_footer.ascx)
   ═══════════════════════════════════════════════════════════════════════════ */
.acme-footer {
  background: var(--acme-fg);
  color: var(--acme-bg);
}
.acme-footer-newsletter { border-bottom: 1px solid rgba(251, 250, 249, 0.1); }
.acme-footer-newsletter-inner {
  display: grid; gap: 2rem;
  align-items: center;
  padding: 3rem 0;
}
@media (min-width: 768px) { .acme-footer-newsletter-inner { grid-template-columns: 1fr 1fr; } }
.acme-footer-newsletter-title { font-size: 1.5rem; font-weight: 700; }
.acme-footer-newsletter-desc { margin-top: 0.5rem; color: rgba(251, 250, 249, 0.7); }
.acme-footer-newsletter-form { display: flex; gap: 0.75rem; }
.acme-footer-newsletter-form .acme-input { flex: 1; }

.acme-footer-main { padding: 3rem 0; }
@media (min-width: 768px) { .acme-footer-main { padding: 4rem 0; } }
.acme-footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .acme-footer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .acme-footer-grid { grid-template-columns: repeat(6, 1fr); } }
.acme-footer-brand { grid-column: span 2; }
@media (min-width: 768px) { .acme-footer-brand { grid-column: span 3; } }
@media (min-width: 1024px) { .acme-footer-brand { grid-column: span 2; } }

.acme-footer-logo { display: inline-flex; align-items: baseline; gap: 0.25rem; margin-bottom: 1rem; }
.acme-footer-logo-mark { font-size: 1.5rem; font-weight: 700; color: var(--acme-bg); }
.acme-footer-logo-corp { font-size: 1.5rem; font-weight: 300; color: rgba(251, 250, 249, 0.6); }
.acme-footer-tagline { font-size: 0.875rem; color: rgba(251, 250, 249, 0.7); max-width: 20rem; }
.acme-footer-contacts { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.acme-footer-contacts li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.875rem; color: rgba(251, 250, 249, 0.7);
}
.acme-footer-contacts .acme-i { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.7; }

.acme-footer-col h4 { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; color: var(--acme-bg); }
.acme-footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.acme-footer-col a {
  font-size: 0.875rem;
  color: rgba(251, 250, 249, 0.7);
  transition: color var(--acme-trans);
}
.acme-footer-col a:hover { color: var(--acme-primary); }

.acme-footer-bottom {
  border-top: 1px solid rgba(251, 250, 249, 0.1);
  padding: 1.5rem 0;
}
.acme-footer-bottom-inner {
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) { .acme-footer-bottom-inner { flex-direction: row; } }
.acme-footer-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  font-size: 0.875rem; color: rgba(251, 250, 249, 0.6);
}
.acme-footer-meta a:hover { color: var(--acme-primary); }
.acme-footer-social { display: flex; align-items: center; gap: 1rem; }
.acme-footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  color: rgba(251, 250, 249, 0.6);
  transition: color var(--acme-trans);
}
.acme-footer-social a:hover { color: var(--acme-primary); }

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE-SPECIFIC TEMPLATES (about/services/news/events/shop/careers/contact)
   ═══════════════════════════════════════════════════════════════════════════ */
.acme-page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0a09 0%, #1a1411 100%);
  color: #fff;
  padding: 5rem 0 4rem;
}
.acme-page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  background: rgba(223, 0, 0, 0.2);
  color: var(--acme-primary);
  font-size: 0.875rem; font-weight: 500;
  margin-bottom: 1.5rem;
}
.acme-page-hero-title {
  font-size: 2.25rem; font-weight: 700;
  line-height: 1.1; letter-spacing: -0.025em;
  text-wrap: balance;
}
@media (min-width: 768px) { .acme-page-hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .acme-page-hero-title { font-size: 3.75rem; } }
.acme-page-hero-desc {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  max-width: 48rem;
}

/* Cards for shop/news/events listing pages */
.acme-card-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .acme-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .acme-card-grid { grid-template-columns: repeat(3, 1fr); } }
.acme-card-grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1024px) { .acme-card-grid-4 { grid-template-columns: repeat(4, 1fr); } }

.acme-card {
  display: flex; flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--acme-card);
  border: 1px solid var(--acme-border);
  box-shadow: var(--acme-shadow-sm);
  transition: box-shadow var(--acme-trans), border-color var(--acme-trans), transform var(--acme-trans);
}
.acme-card:hover { box-shadow: var(--acme-shadow-xl); border-color: rgba(223, 0, 0, 0.2); transform: translateY(-2px); }
.acme-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--acme-muted);
}
.acme-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 500ms ease;
}
.acme-card:hover .acme-card-image img { transform: scale(1.05); }
.acme-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.acme-card-eyebrow {
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--acme-primary);
}
.acme-card-title {
  font-size: 1.125rem; font-weight: 600;
  line-height: 1.3;
}
.acme-card-desc { font-size: 0.875rem; color: var(--acme-muted-fg); flex: 1; }
.acme-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.875rem;
}
.acme-card-price { font-size: 1.25rem; font-weight: 700; color: var(--acme-fg); }
.acme-card-price-old { font-size: 0.875rem; color: var(--acme-muted-fg); text-decoration: line-through; margin-right: 0.5rem; }

.acme-section { padding: 4rem 0; }
.acme-section-tight { padding: 2.5rem 0; }
@media (min-width: 768px) { .acme-section { padding: 5rem 0; } }
.acme-section-header { text-align: center; margin-bottom: 2.5rem; }
.acme-section-eyebrow {
  font-size: 0.875rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--acme-primary);
}
.acme-section-title {
  margin-top: 0.5rem;
  font-size: 1.875rem; font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.15;
}
@media (min-width: 768px) { .acme-section-title { font-size: 2.25rem; } }
.acme-section-desc {
  margin: 0.75rem auto 0;
  max-width: 42rem;
  color: var(--acme-muted-fg);
}

.acme-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) { .acme-stat-grid { grid-template-columns: repeat(4, 1fr); } }
.acme-stat {
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--acme-card);
  border: 1px solid var(--acme-border);
}
.acme-stat-num {
  font-size: 2.25rem; font-weight: 700;
  color: var(--acme-primary);
  line-height: 1;
}
.acme-stat-label { margin-top: 0.5rem; font-size: 0.875rem; color: var(--acme-muted-fg); }

/* Form */
.acme-form { display: flex; flex-direction: column; gap: 1.25rem; }
.acme-form-row { display: grid; gap: 1rem; }
@media (min-width: 768px) { .acme-form-row { grid-template-columns: 1fr 1fr; } }
.acme-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem; font-weight: 500;
}
.acme-textarea {
  display: block;
  width: 100%;
  min-height: 150px;
  padding: 0.75rem 1rem;
  font: inherit;
  background: var(--acme-card);
  border: 1px solid var(--acme-input);
  border-radius: var(--acme-radius);
  color: var(--acme-fg);
  resize: vertical;
}
.acme-textarea:focus { outline: none; border-color: var(--acme-ring); box-shadow: 0 0 0 3px rgba(223, 0, 0, 0.12); }

/* Generic icon (SVG inline; class hooks just pad the inline-block to a square) */
.acme-i { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; flex-shrink: 0; }

/* ─── DNN edit-mode helpers ─────────────────────────────────────────────── */
.acme-dnn-admin { position: relative; z-index: 9000; }
.dnnSortableContainer { background: rgba(223, 0, 0, 0.04); }
.dnnSortableItem { background: rgba(255,255,255,0.6); padding: 0.25rem; border: 1px dashed rgba(223, 0, 0, 0.3); border-radius: 4px; }
/* ═════════════════════════════════════════════════════════════════════
   ACMESKIN — Landing-page templates (9 variants)
   Loaded only when a page uses one of the tpl-* skin variants.
   Each template is wrapped in a top-level scope class:
     .tpl-c1 / .tpl-c2 / .tpl-c3                 (corporate-1/2/3)
     .tpl-s1 / .tpl-s2 / .tpl-s3                 (shop-1/2/3)
     .tpl-u1 / .tpl-u2 / .tpl-u3                 (startup-1/2/3)
   so styles never leak between templates or affect the rest of the site.
   ═════════════════════════════════════════════════════════════════════ */

/* ─── Empty pane handling for landing variants ─────────────────────
   Hide empty panes so admin-only zones don't add visual gaps. DNN's
   edit mode still surfaces "Add Module Here" zones because edit-mode
   adds its own .dnnEditState class to the body. */
.acme-landing .acme-pane:empty { display: none; }
.acme-landing-rails { display: none; }
.acme-landing-rails:has(> .acme-pane:not(:empty)) {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  max-width: 1280px; margin: 2rem auto; padding: 0 1.5rem;
}
/* In edit mode, force panes visible so admin can drop modules into them */
body.dnnEditState .acme-landing .acme-pane:empty {
  display: block; min-height: 60px;
  border: 2px dashed #d4d2cd; border-radius: 8px;
  margin: 1rem auto; padding: 1rem;
  max-width: 1280px;
  background: rgba(15,10,9,0.02);
}
body.dnnEditState .acme-landing .acme-pane:empty::before {
  content: attr(id) " (empty pane — drop a module here)";
  display: block; color: #9b9690; font: 500 12px/1.4 system-ui, sans-serif;
  text-align: center;
}
body.dnnEditState .acme-landing-rails { display: grid !important; }

/* ─── Shared primitives (used by multiple templates) ───────────────── */
.tpl { font-family: "Geist", "Geist Fallback", system-ui, -apple-system, sans-serif; }
.tpl *, .tpl *::before, .tpl *::after { box-sizing: border-box; }
.tpl img { max-width: 100%; height: auto; display: block; }
.tpl a { color: inherit; text-decoration: none; }
.tpl-section { position: relative; padding: 6rem 0; }
.tpl-container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) { .tpl-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .tpl-container { padding: 0 2rem; } }
.tpl-eyebrow { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; }
.tpl-h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
.tpl-h2 { font-size: clamp(1.875rem, 3.6vw, 2.5rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.015em; }
.tpl-h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.3; }
.tpl-lead { font-size: 1.125rem; line-height: 1.6; }
.tpl-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 1.5rem; border-radius: 0.5rem; font-weight: 600; font-size: 0.95rem; transition: background 200ms ease, transform 200ms ease, color 200ms ease; cursor: pointer; border: 1px solid transparent; line-height: 1; }
.tpl-btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }
.tpl-btn:hover { transform: translateY(-1px); }
.tpl-btn-arrow { width: 18px; height: 18px; }
.tpl-grid-cards { display: grid; gap: 2rem; }
@media (min-width: 768px) { .tpl-grid-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .tpl-grid-cards { grid-template-columns: repeat(4, 1fr); } }
.tpl-grid-3 { display: grid; gap: 2rem; }
@media (min-width: 768px) { .tpl-grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* ═════════════════════════════════════════════════════════════════════
   1. CORPORATE-1  — Classic Corporate (slate + amber)
   ═════════════════════════════════════════════════════════════════════ */
.tpl-c1 { background: #ffffff; color: #0f172a; }
.tpl-c1 .tpl-hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #0f172a, #1e293b 50%, #0f172a); color: #fff; padding: 8rem 0; }
.tpl-c1 .tpl-hero::before { content: ""; position: absolute; inset: 0; background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&h=1080&fit=crop") center/cover no-repeat; opacity: 0.2; }
.tpl-c1 .tpl-hero-inner { position: relative; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.tpl-c1 .tpl-hero-eye { color: #fbbf24; margin-bottom: 1rem; }
.tpl-c1 .tpl-hero-title { max-width: 48rem; }
.tpl-c1 .tpl-hero-title span { display: block; color: #fbbf24; }
.tpl-c1 .tpl-hero-desc { margin-top: 1.5rem; max-width: 36rem; color: #cbd5e1; }
.tpl-c1 .tpl-hero-cta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.tpl-c1 .tpl-btn-primary { background: #f59e0b; color: #0f172a; }
.tpl-c1 .tpl-btn-primary:hover { background: #d97706; }
.tpl-c1 .tpl-btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.tpl-c1 .tpl-btn-outline:hover { background: rgba(255,255,255,0.1); }
.tpl-c1 .tpl-stats { background: #0f172a; border-top: 1px solid #334155; padding: 3rem 0; }
.tpl-c1 .tpl-stats-grid { display: grid; gap: 2rem; grid-template-columns: repeat(2, 1fr); text-align: center; }
@media (min-width: 768px) { .tpl-c1 .tpl-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.tpl-c1 .tpl-stat-num { font-size: 2.25rem; font-weight: 700; color: #fbbf24; }
.tpl-c1 .tpl-stat-label { margin-top: 0.5rem; font-size: 0.875rem; color: #94a3b8; }
.tpl-c1 .tpl-about { padding: 6rem 0; background: #fff; }
.tpl-c1 .tpl-about-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .tpl-c1 .tpl-about-grid { grid-template-columns: 1fr 1fr; } }
.tpl-c1 .tpl-about-eye { color: #d97706; margin-bottom: 1rem; }
.tpl-c1 .tpl-about-desc { margin-top: 1.5rem; color: #475569; line-height: 1.65; }
.tpl-c1 .tpl-checklist { margin-top: 2rem; padding-left: 0; list-style: none; }
.tpl-c1 .tpl-checklist li { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0; color: #334155; }
.tpl-c1 .tpl-check-ico { width: 20px; height: 20px; color: #f59e0b; flex-shrink: 0; }
.tpl-c1 .tpl-about-img-wrap { position: relative; }
.tpl-c1 .tpl-about-img-wrap img { border-radius: 0.5rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.tpl-c1 .tpl-about-badge { position: absolute; bottom: -1.5rem; left: -1.5rem; background: #f59e0b; color: #0f172a; padding: 1.5rem; border-radius: 0.5rem; box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
.tpl-c1 .tpl-about-badge p:first-child { font-size: 2.25rem; font-weight: 700; line-height: 1; }
.tpl-c1 .tpl-about-badge p:last-child { font-size: 0.875rem; font-weight: 500; margin-top: 0.25rem; }
.tpl-c1 .tpl-services { padding: 6rem 0; background: #f8fafc; }
.tpl-c1 .tpl-services-head { text-align: center; max-width: 36rem; margin: 0 auto 4rem; }
.tpl-c1 .tpl-services-head .tpl-eyebrow { color: #d97706; }
.tpl-c1 .tpl-services-head h2 { color: #0f172a; margin-top: 1rem; }
.tpl-c1 .tpl-services-head p { margin-top: 1rem; color: #475569; }
.tpl-c1 .tpl-svc-card { padding: 2rem; background: #fff; border: 1px solid #e2e8f0; border-radius: 0.5rem; box-shadow: 0 1px 2px rgba(0,0,0,0.04); transition: border-color 200ms ease, box-shadow 200ms ease; }
.tpl-c1 .tpl-svc-card:hover { border-color: #fde68a; box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.tpl-c1 .tpl-svc-icon { display: inline-flex; padding: 0.75rem; background: #fef3c7; color: #d97706; border-radius: 0.5rem; margin-bottom: 1rem; transition: background 200ms ease, color 200ms ease; }
.tpl-c1 .tpl-svc-card:hover .tpl-svc-icon { background: #f59e0b; color: #fff; }
.tpl-c1 .tpl-svc-icon svg { width: 24px; height: 24px; }
.tpl-c1 .tpl-svc-title { font-size: 1.125rem; font-weight: 600; color: #0f172a; margin-bottom: 0.5rem; }
.tpl-c1 .tpl-svc-desc { color: #475569; font-size: 0.875rem; line-height: 1.5; }
.tpl-c1 .tpl-testi { padding: 6rem 0; background: #0f172a; color: #fff; }
.tpl-c1 .tpl-testi-head { text-align: center; max-width: 36rem; margin: 0 auto 4rem; }
.tpl-c1 .tpl-testi-head .tpl-eyebrow { color: #fbbf24; }
.tpl-c1 .tpl-testi-card { padding: 2rem; background: #1e293b; border: 1px solid #334155; border-radius: 0.5rem; }
.tpl-c1 .tpl-testi-quote { color: #cbd5e1; font-style: italic; line-height: 1.65; }
.tpl-c1 .tpl-testi-author { margin-top: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.tpl-c1 .tpl-testi-author img { width: 48px; height: 48px; border-radius: 999px; object-fit: cover; }
.tpl-c1 .tpl-testi-author p { margin: 0; }
.tpl-c1 .tpl-testi-author .tpl-name { font-weight: 600; color: #fff; }
.tpl-c1 .tpl-testi-author .tpl-role { font-size: 0.875rem; color: #94a3b8; }
.tpl-c1 .tpl-cta { padding: 6rem 0; background: #f59e0b; text-align: center; }
.tpl-c1 .tpl-cta h2 { color: #0f172a; }
.tpl-c1 .tpl-cta p { margin-top: 1rem; color: #1e293b; max-width: 36rem; margin-left: auto; margin-right: auto; }
.tpl-c1 .tpl-cta-buttons { margin-top: 2.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.tpl-c1 .tpl-cta .tpl-btn-primary { background: #0f172a; color: #fff; }
.tpl-c1 .tpl-cta .tpl-btn-primary:hover { background: #1e293b; }
.tpl-c1 .tpl-cta .tpl-btn-outline { background: transparent; color: #0f172a; border-color: #0f172a; }
.tpl-c1 .tpl-cta .tpl-btn-outline:hover { background: #0f172a; color: #fff; }

/* ═════════════════════════════════════════════════════════════════════
   2. CORPORATE-2  — Modern Corporate (violet → indigo gradient)
   ═════════════════════════════════════════════════════════════════════ */
.tpl-c2 { background: #fff; color: #0f172a; }
.tpl-c2 .tpl-hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #2e1065 0%, #4c1d95 50%, #312e81 100%); color: #fff; padding: 8rem 0; }
.tpl-c2 .tpl-hero::before, .tpl-c2 .tpl-hero::after { content: ""; position: absolute; width: 24rem; height: 24rem; border-radius: 999px; filter: blur(96px); pointer-events: none; }
.tpl-c2 .tpl-hero::before { top: 0; left: 25%; background: rgba(139,92,246,0.3); }
.tpl-c2 .tpl-hero::after { bottom: 0; right: 25%; background: rgba(99,102,241,0.3); }
.tpl-c2 .tpl-hero-inner { position: relative; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .tpl-c2 .tpl-hero-inner { grid-template-columns: 1fr 1fr; } }
.tpl-c2 .tpl-hero-chip { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border-radius: 999px; font-size: 0.875rem; color: #ddd6fe; margin-bottom: 2rem; }
.tpl-c2 .tpl-hero-title span { display: block; background: linear-gradient(to right, #a78bfa, #818cf8); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tpl-c2 .tpl-hero-desc { margin-top: 1.5rem; color: #ddd6fe; max-width: 32rem; }
.tpl-c2 .tpl-hero-cta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.tpl-c2 .tpl-btn-primary { background: #fff; color: #4c1d95; }
.tpl-c2 .tpl-btn-primary:hover { background: #ede9fe; }
.tpl-c2 .tpl-btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.tpl-c2 .tpl-btn-outline:hover { background: rgba(255,255,255,0.1); }
.tpl-c2 .tpl-hero-trust { margin-top: 3rem; display: flex; align-items: center; gap: 2rem; }
.tpl-c2 .tpl-avatars { display: inline-flex; }
.tpl-c2 .tpl-avatars img { width: 40px; height: 40px; border-radius: 999px; border: 2px solid #2e1065; object-fit: cover; margin-left: -10px; }
.tpl-c2 .tpl-avatars img:first-child { margin-left: 0; }
.tpl-c2 .tpl-trust-text p:first-child { font-weight: 600; color: #fff; }
.tpl-c2 .tpl-trust-text p:last-child { font-size: 0.875rem; color: #c4b5fd; }
.tpl-c2 .tpl-hero-img { position: relative; display: none; }
@media (min-width: 1024px) { .tpl-c2 .tpl-hero-img { display: block; } }
.tpl-c2 .tpl-hero-img img { border-radius: 1rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); }
.tpl-c2 .tpl-hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(46,16,101,0.5), transparent); border-radius: 1rem; }
.tpl-c2 .tpl-hero-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background: #fff; padding: 1.5rem; border-radius: 0.75rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); display: flex; align-items: center; gap: 1rem; }
.tpl-c2 .tpl-hero-badge .tpl-check-circle { display: inline-flex; padding: 0.5rem; background: #d1fae5; border-radius: 999px; color: #059669; }
.tpl-c2 .tpl-hero-badge .tpl-check-circle svg { width: 24px; height: 24px; }
.tpl-c2 .tpl-hero-badge p:first-child { font-weight: 600; color: #0f172a; margin: 0; }
.tpl-c2 .tpl-hero-badge p:last-child { font-size: 0.875rem; color: #64748b; margin: 0; }
.tpl-c2 .tpl-clients { background: #f1f5f9; padding: 2rem 0; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
.tpl-c2 .tpl-clients-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; }
.tpl-c2 .tpl-clients-label { font-size: 0.875rem; font-weight: 500; color: #64748b; }
.tpl-c2 .tpl-clients-logos { display: flex; align-items: center; gap: 3rem; opacity: 0.5; }
.tpl-c2 .tpl-client-logo { height: 32px; width: 96px; background: #94a3b8; border-radius: 0.25rem; }
.tpl-c2 .tpl-features { padding: 6rem 0; background: #fff; }
.tpl-c2 .tpl-features-head { text-align: center; max-width: 36rem; margin: 0 auto 4rem; }
.tpl-c2 .tpl-features-head .tpl-eyebrow { color: #7c3aed; }
.tpl-c2 .tpl-features-head h2 { color: #0f172a; margin-top: 1rem; }
.tpl-c2 .tpl-features-head p { margin-top: 1rem; color: #475569; }
.tpl-c2 .tpl-feat-card { position: relative; padding: 2rem; background: #fff; border: 1px solid #e2e8f0; border-radius: 1rem; transition: border-color 200ms ease, box-shadow 200ms ease; }
.tpl-c2 .tpl-feat-card:hover { border-color: #ddd6fe; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1); }
.tpl-c2 .tpl-feat-num { position: absolute; top: -0.75rem; right: -0.75rem; padding: 0.25rem 0.75rem; background: #ede9fe; color: #6d28d9; border-radius: 999px; font-size: 0.75rem; font-weight: 500; opacity: 0; transition: opacity 200ms ease; }
.tpl-c2 .tpl-feat-card:hover .tpl-feat-num { opacity: 1; }
.tpl-c2 .tpl-feat-icon { display: inline-flex; padding: 0.75rem; background: linear-gradient(135deg, #8b5cf6, #6366f1); color: #fff; border-radius: 0.75rem; box-shadow: 0 10px 15px rgba(0,0,0,0.1); margin-bottom: 1.5rem; }
.tpl-c2 .tpl-feat-icon svg { width: 24px; height: 24px; }
.tpl-c2 .tpl-feat-title { font-size: 1.25rem; font-weight: 600; color: #0f172a; margin-bottom: 0.75rem; }
.tpl-c2 .tpl-feat-desc { color: #475569; line-height: 1.6; }
.tpl-c2 .tpl-feat-link { display: inline-flex; align-items: center; margin-top: 1rem; color: #7c3aed; font-weight: 500; }
.tpl-c2 .tpl-feat-link svg { width: 16px; height: 16px; margin-left: 0.25rem; }
.tpl-c2 .tpl-impact { padding: 6rem 0; background: linear-gradient(135deg, #0f172a, #1e293b); color: #fff; }
.tpl-c2 .tpl-impact-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .tpl-c2 .tpl-impact-grid { grid-template-columns: 1fr 1fr; } }
.tpl-c2 .tpl-impact-img-wrap { position: relative; }
.tpl-c2 .tpl-impact-img-wrap img { border-radius: 1rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); }
.tpl-c2 .tpl-impact-badges { position: absolute; bottom: -2rem; right: -2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.tpl-c2 .tpl-impact-badges > div { padding: 1.5rem; border-radius: 0.75rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); min-width: 7rem; }
.tpl-c2 .tpl-impact-badge-violet { background: #7c3aed; color: #fff; }
.tpl-c2 .tpl-impact-badge-violet p:first-child { font-size: 1.875rem; font-weight: 700; }
.tpl-c2 .tpl-impact-badge-violet p:last-child { font-size: 0.875rem; color: #ddd6fe; }
.tpl-c2 .tpl-impact-badge-white { background: #fff; }
.tpl-c2 .tpl-impact-badge-white p:first-child { font-size: 1.875rem; font-weight: 700; color: #0f172a; }
.tpl-c2 .tpl-impact-badge-white p:last-child { font-size: 0.875rem; color: #64748b; }
.tpl-c2 .tpl-impact-eye { color: #a78bfa; margin-bottom: 1rem; }
.tpl-c2 .tpl-impact-stats { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.tpl-c2 .tpl-impact-stats > div p:first-child { font-size: 1.875rem; font-weight: 700; color: #fff; }
.tpl-c2 .tpl-impact-stats > div p:last-child { color: #94a3b8; }
.tpl-c2 .tpl-cta { padding: 6rem 0; background: linear-gradient(to right, #7c3aed, #4f46e5); text-align: center; color: #fff; }
.tpl-c2 .tpl-cta h2 { color: #fff; }
.tpl-c2 .tpl-cta p { margin-top: 1rem; color: #ddd6fe; max-width: 36rem; margin-left: auto; margin-right: auto; }
.tpl-c2 .tpl-cta-buttons { margin-top: 2.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ═════════════════════════════════════════════════════════════════════
   3. CORPORATE-3  — Bold Editorial (dark stone + orange)
   ═════════════════════════════════════════════════════════════════════ */
.tpl-c3 { background: #0c0a09; color: #f5f5f4; }
.tpl-c3 .tpl-hero { position: relative; overflow: hidden; min-height: 100vh; display: flex; align-items: center; }
.tpl-c3 .tpl-hero::before { content: ""; position: absolute; inset: 0; background: url("https://images.unsplash.com/photo-1554469384-e58fac16e23a?w=1920&h=1080&fit=crop") center/cover no-repeat; }
.tpl-c3 .tpl-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, rgba(12,10,9,1), rgba(12,10,9,0.8) 50%, transparent); }
.tpl-c3 .tpl-hero-inner { position: relative; max-width: 1280px; width: 100%; margin: 0 auto; padding: 0 2rem; }
.tpl-c3 .tpl-hero-eye { display: inline-flex; align-items: center; gap: 0.75rem; color: #f97316; letter-spacing: 0.3em; font-size: 0.75rem; }
.tpl-c3 .tpl-hero-dot { width: 12px; height: 12px; border-radius: 999px; background: #f97316; box-shadow: 0 0 0 4px rgba(249,115,22,0.2); }
.tpl-c3 .tpl-hero-title { margin-top: 1.5rem; font-size: clamp(3rem, 8vw, 6rem); font-weight: 300; line-height: 1; max-width: 56rem; }
.tpl-c3 .tpl-hero-title span { display: block; font-weight: 700; color: #f97316; }
.tpl-c3 .tpl-hero-desc { margin-top: 2rem; max-width: 36rem; color: #a8a29e; font-size: 1.125rem; line-height: 1.6; }
.tpl-c3 .tpl-hero-cta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1.5rem; }
.tpl-c3 .tpl-btn-primary { background: #f97316; color: #0c0a09; border-radius: 0; }
.tpl-c3 .tpl-btn-primary:hover { background: #ea580c; }
.tpl-c3 .tpl-btn-link { color: #f5f5f4; padding: 0.875rem 0; border-bottom: 1px solid #44403c; border-radius: 0; }
.tpl-c3 .tpl-btn-link:hover { border-bottom-color: #f97316; color: #f97316; }
.tpl-c3 .tpl-services { background: #0c0a09; border-top: 1px solid #292524; padding: 6rem 0; }
.tpl-c3 .tpl-svc-list .tpl-svc-row { display: grid; gap: 2rem; padding: 2.5rem 0; border-bottom: 1px solid #292524; align-items: start; transition: padding-left 200ms ease; }
@media (min-width: 768px) { .tpl-c3 .tpl-svc-list .tpl-svc-row { grid-template-columns: 5rem 1fr 8rem; } }
.tpl-c3 .tpl-svc-row:hover { padding-left: 1rem; }
.tpl-c3 .tpl-svc-num { font-size: 1.5rem; font-weight: 300; color: #57534e; font-family: ui-monospace, monospace; }
.tpl-c3 .tpl-svc-row h3 { font-size: 1.5rem; font-weight: 600; color: #f5f5f4; margin: 0 0 0.5rem; }
.tpl-c3 .tpl-svc-row p { color: #a8a29e; }
.tpl-c3 .tpl-svc-arrow { color: #57534e; transition: color 200ms ease; }
.tpl-c3 .tpl-svc-row:hover .tpl-svc-arrow { color: #f97316; }
.tpl-c3 .tpl-svc-arrow svg { width: 24px; height: 24px; }
.tpl-c3 .tpl-work { background: #1c1917; padding: 6rem 0; }
.tpl-c3 .tpl-work-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 4rem; flex-wrap: wrap; gap: 1rem; }
.tpl-c3 .tpl-work-head h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; }
.tpl-c3 .tpl-work-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .tpl-c3 .tpl-work-grid { grid-template-columns: repeat(3, 1fr); } }
.tpl-c3 .tpl-work-card { display: block; position: relative; aspect-ratio: 3 / 4; overflow: hidden; }
.tpl-c3 .tpl-work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.tpl-c3 .tpl-work-card:hover img { transform: scale(1.05); }
.tpl-c3 .tpl-work-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,10,9,0.95), transparent 50%); padding: 1.5rem; display: flex; flex-direction: column; justify-content: end; color: #fff; }
.tpl-c3 .tpl-work-cat { color: #f97316; font-size: 0.75rem; letter-spacing: 0.15em; font-weight: 600; text-transform: uppercase; margin-bottom: 0.5rem; }
.tpl-c3 .tpl-stats { background: #f97316; color: #0c0a09; padding: 4rem 0; }
.tpl-c3 .tpl-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; text-align: center; }
@media (min-width: 768px) { .tpl-c3 .tpl-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.tpl-c3 .tpl-stat-num { font-size: 3rem; font-weight: 700; }
.tpl-c3 .tpl-stat-label { font-size: 0.875rem; font-weight: 500; opacity: 0.7; }
.tpl-c3 .tpl-faq { background: #0c0a09; padding: 6rem 0; }
.tpl-c3 .tpl-faq-inner { max-width: 48rem; margin: 0 auto; }
.tpl-c3 .tpl-faq-head { text-align: center; margin-bottom: 4rem; }
.tpl-c3 .tpl-faq-list { border-top: 1px solid #292524; }
.tpl-c3 .tpl-faq-item { border-bottom: 1px solid #292524; }
.tpl-c3 .tpl-faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; background: transparent; border: 0; color: #f5f5f4; font-size: 1.125rem; font-weight: 500; text-align: left; cursor: pointer; }
.tpl-c3 .tpl-faq-icon { width: 24px; height: 24px; color: #f97316; flex-shrink: 0; transition: transform 200ms ease; }
.tpl-c3 .tpl-faq-item.tpl-open .tpl-faq-icon { transform: rotate(45deg); }
.tpl-c3 .tpl-faq-a { display: none; padding: 0 0 1.5rem; color: #a8a29e; line-height: 1.6; }
.tpl-c3 .tpl-faq-item.tpl-open .tpl-faq-a { display: block; }
.tpl-c3 .tpl-cta { background: #1c1917; border-top: 1px solid #292524; padding: 6rem 0; text-align: center; }
.tpl-c3 .tpl-cta h2 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 300; }
.tpl-c3 .tpl-cta h2 span { color: #f97316; font-weight: 700; }
.tpl-c3 .tpl-cta p { margin-top: 1.5rem; color: #a8a29e; max-width: 36rem; margin-left: auto; margin-right: auto; }

/* ═════════════════════════════════════════════════════════════════════
   4. SHOP-1  — Luxury Fashion (warm off-white, stone neutral)
   ═════════════════════════════════════════════════════════════════════ */
.tpl-s1 { background: #fafaf9; color: #1c1917; }
.tpl-s1 .tpl-hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; }
.tpl-s1 .tpl-hero::before { content: ""; position: absolute; inset: 0; background: url("https://images.unsplash.com/photo-1490481651871-ab68de25d43d?w=1920&h=1080&fit=crop") center/cover no-repeat; }
.tpl-s1 .tpl-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, rgba(12,10,9,0.8), rgba(12,10,9,0.5) 50%, transparent); }
.tpl-s1 .tpl-hero-inner { position: relative; max-width: 1280px; margin: 0 auto; padding: 0 2rem; color: #fff; max-width: 32rem; padding-left: 2rem; }
.tpl-s1 .tpl-hero-eye { letter-spacing: 0.3em; opacity: 0.8; font-size: 0.75rem; }
.tpl-s1 .tpl-hero-title { margin-top: 1.5rem; font-size: clamp(3rem, 6vw, 5rem); font-weight: 300; line-height: 1.1; }
.tpl-s1 .tpl-hero-title span { display: block; font-family: Georgia, serif; font-style: italic; font-weight: 400; }
.tpl-s1 .tpl-hero-desc { margin-top: 1.5rem; font-size: 1.125rem; opacity: 0.85; }
.tpl-s1 .tpl-hero-cta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.tpl-s1 .tpl-btn-primary { background: #fafaf9; color: #1c1917; border-radius: 0; padding: 1rem 2rem; }
.tpl-s1 .tpl-btn-primary:hover { background: #e7e5e4; }
.tpl-s1 .tpl-btn-outline { background: transparent; color: #fff; border-color: #fff; border-radius: 0; padding: 1rem 2rem; }
.tpl-s1 .tpl-btn-outline:hover { background: rgba(255,255,255,0.1); }
.tpl-s1 .tpl-features-strip { background: #1c1917; color: #fff; padding: 1.5rem 0; }
.tpl-s1 .tpl-features-strip-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .tpl-s1 .tpl-features-strip-inner { grid-template-columns: repeat(4, 1fr); } }
.tpl-s1 .tpl-features-strip-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; }
.tpl-s1 .tpl-features-strip-item svg { width: 20px; height: 20px; color: #d6d3d1; }
.tpl-s1 .tpl-cats { padding: 6rem 0; background: #fff; }
.tpl-s1 .tpl-cats-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 4rem; flex-wrap: wrap; gap: 1rem; }
.tpl-s1 .tpl-cats-head h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; }
.tpl-s1 .tpl-cats-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .tpl-s1 .tpl-cats-grid { grid-template-columns: repeat(3, 1fr); } }
.tpl-s1 .tpl-cat-card { display: block; position: relative; aspect-ratio: 3 / 4; overflow: hidden; }
.tpl-s1 .tpl-cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms ease; }
.tpl-s1 .tpl-cat-card:hover img { transform: scale(1.05); }
.tpl-s1 .tpl-cat-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); padding: 2rem; display: flex; flex-direction: column; justify-content: end; color: #fff; }
.tpl-s1 .tpl-cat-name { font-size: 1.5rem; font-weight: 300; }
.tpl-s1 .tpl-cat-count { font-size: 0.875rem; opacity: 0.8; margin-top: 0.25rem; }
.tpl-s1 .tpl-products { padding: 6rem 0; background: #fafaf9; }
.tpl-s1 .tpl-products-head { text-align: center; margin-bottom: 4rem; }
.tpl-s1 .tpl-products-head h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; }
.tpl-s1 .tpl-products-grid { display: grid; gap: 2rem; }
@media (min-width: 640px) { .tpl-s1 .tpl-products-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .tpl-s1 .tpl-products-grid { grid-template-columns: repeat(4, 1fr); } }
.tpl-s1 .tpl-prod-card { display: block; }
.tpl-s1 .tpl-prod-img { position: relative; aspect-ratio: 3 / 4; background: #e7e5e4; overflow: hidden; margin-bottom: 1rem; }
.tpl-s1 .tpl-prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.tpl-s1 .tpl-prod-card:hover .tpl-prod-img img { transform: scale(1.06); }
.tpl-s1 .tpl-prod-badge { position: absolute; top: 0.75rem; left: 0.75rem; background: #1c1917; color: #fff; padding: 0.25rem 0.625rem; font-size: 0.625rem; letter-spacing: 0.1em; font-weight: 600; text-transform: uppercase; }
.tpl-s1 .tpl-prod-actions { position: absolute; right: 0.75rem; top: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; opacity: 0; transition: opacity 200ms ease; }
.tpl-s1 .tpl-prod-card:hover .tpl-prod-actions { opacity: 1; }
.tpl-s1 .tpl-prod-action { width: 36px; height: 36px; background: #fff; border: 0; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; border-radius: 999px; }
.tpl-s1 .tpl-prod-action svg { width: 18px; height: 18px; }
.tpl-s1 .tpl-prod-add { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; padding: 0.75rem 0; background: #1c1917; color: #fff; border: 0; opacity: 0; transform: translateY(8px); transition: opacity 200ms ease, transform 200ms ease; cursor: pointer; font-weight: 500; font-size: 0.875rem; letter-spacing: 0.05em; text-transform: uppercase; }
.tpl-s1 .tpl-prod-card:hover .tpl-prod-add { opacity: 1; transform: translateY(0); }
.tpl-s1 .tpl-prod-name { font-weight: 500; font-size: 0.95rem; }
.tpl-s1 .tpl-prod-price { font-size: 0.875rem; color: #57534e; margin-top: 0.25rem; }
.tpl-s1 .tpl-prod-price del { color: #a8a29e; margin-right: 0.5rem; }
.tpl-s1 .tpl-editorial { padding: 6rem 0; background: #fff; }
.tpl-s1 .tpl-editorial-grid { display: grid; gap: 0; min-height: 24rem; }
@media (min-width: 768px) { .tpl-s1 .tpl-editorial-grid { grid-template-columns: 1fr 1fr; } }
.tpl-s1 .tpl-editorial-img { background-size: cover; background-position: center; min-height: 20rem; }
.tpl-s1 .tpl-editorial-copy { padding: 4rem; background: #f5f5f4; display: flex; flex-direction: column; justify-content: center; }
.tpl-s1 .tpl-editorial-copy h2 { font-size: 2rem; font-weight: 300; margin: 1rem 0 1rem; }
.tpl-s1 .tpl-editorial-copy h2 span { font-family: Georgia, serif; font-style: italic; }
.tpl-s1 .tpl-editorial-copy p { color: #57534e; line-height: 1.7; }
.tpl-s1 .tpl-newsletter { padding: 6rem 0; background: #1c1917; color: #fff; text-align: center; }
.tpl-s1 .tpl-newsletter h2 { font-size: 2rem; font-weight: 300; }
.tpl-s1 .tpl-newsletter h2 span { font-family: Georgia, serif; font-style: italic; }
.tpl-s1 .tpl-newsletter p { color: #a8a29e; max-width: 36rem; margin: 1rem auto 0; }
.tpl-s1 .tpl-newsletter-form { margin-top: 2rem; max-width: 28rem; margin-left: auto; margin-right: auto; display: flex; gap: 0; }
.tpl-s1 .tpl-newsletter-input { flex: 1; padding: 1rem 0; background: transparent; border: 0; border-bottom: 1px solid #44403c; color: #fff; font: inherit; outline: none; }
.tpl-s1 .tpl-newsletter-input::placeholder { color: #78716c; }
.tpl-s1 .tpl-newsletter-input:focus { border-bottom-color: #fff; }
.tpl-s1 .tpl-newsletter-btn { padding: 1rem 2rem; background: #fff; color: #1c1917; border: 0; cursor: pointer; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.875rem; }

/* ═════════════════════════════════════════════════════════════════════
   5. SHOP-2  — Tech Electronics (dark slate, blue→purple gradient)
   ═════════════════════════════════════════════════════════════════════ */
.tpl-s2 { background: #020617; color: #fff; }
.tpl-s2 .tpl-hero { position: relative; overflow: hidden; padding: 6rem 0; background: radial-gradient(ellipse at top, rgba(37,99,235,0.2), transparent 50%), radial-gradient(ellipse at bottom right, rgba(168,85,247,0.2), transparent 50%), #020617; }
.tpl-s2 .tpl-hero::before { content: ""; position: absolute; top: 50%; left: 50%; width: 800px; height: 800px; background: rgba(59,130,246,0.1); border-radius: 999px; filter: blur(96px); transform: translate(-50%,-50%); pointer-events: none; }
.tpl-s2 .tpl-hero-inner { position: relative; max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .tpl-s2 .tpl-hero-inner { grid-template-columns: 1fr 1fr; } }
.tpl-s2 .tpl-hero-chip { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2); color: #60a5fa; border-radius: 999px; font-size: 0.875rem; margin-bottom: 1.5rem; }
.tpl-s2 .tpl-hero-title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; line-height: 1.05; }
.tpl-s2 .tpl-hero-title span { background: linear-gradient(to right, #60a5fa, #c084fc); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tpl-s2 .tpl-hero-desc { margin-top: 1.5rem; color: #cbd5e1; max-width: 32rem; }
.tpl-s2 .tpl-hero-cta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.tpl-s2 .tpl-btn-primary { background: linear-gradient(to right, #2563eb, #9333ea); color: #fff; box-shadow: 0 10px 25px rgba(37,99,235,0.3); border-radius: 999px; padding: 1rem 2rem; }
.tpl-s2 .tpl-btn-primary:hover { box-shadow: 0 15px 35px rgba(37,99,235,0.4); }
.tpl-s2 .tpl-btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.2); border-radius: 999px; padding: 1rem 2rem; }
.tpl-s2 .tpl-btn-outline:hover { background: rgba(255,255,255,0.05); }
.tpl-s2 .tpl-hero-product { position: relative; }
.tpl-s2 .tpl-hero-product img { width: 100%; border-radius: 1rem; }
.tpl-s2 .tpl-hero-rating { position: absolute; bottom: 2rem; left: -2rem; background: #1e293b; padding: 1rem 1.25rem; border-radius: 0.75rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); display: flex; align-items: center; gap: 0.5rem; }
.tpl-s2 .tpl-hero-rating-stars { color: #fbbf24; }
.tpl-s2 .tpl-hero-rating-text { font-weight: 600; }
.tpl-s2 .tpl-hero-price { position: absolute; top: -1rem; right: -1rem; background: linear-gradient(to right, #2563eb, #9333ea); padding: 1.25rem 1.5rem; border-radius: 0.75rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); text-align: center; }
.tpl-s2 .tpl-hero-price-from { font-size: 0.75rem; color: rgba(255,255,255,0.8); }
.tpl-s2 .tpl-hero-price-amt { font-size: 1.5rem; font-weight: 700; }
.tpl-s2 .tpl-cats { padding: 4rem 0; background: rgba(15,23,42,0.5); border-top: 1px solid #1e293b; border-bottom: 1px solid #1e293b; }
.tpl-s2 .tpl-cats-head h2 { font-size: 1.875rem; font-weight: 700; text-align: center; margin-bottom: 3rem; }
.tpl-s2 .tpl-cats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 1024px; margin: 0 auto; }
@media (min-width: 768px) { .tpl-s2 .tpl-cats-grid { grid-template-columns: repeat(4, 1fr); } }
.tpl-s2 .tpl-cat-tile { background: linear-gradient(135deg, #1e293b, #0f172a); border: 1px solid #1e293b; padding: 2rem 1.5rem; text-align: center; border-radius: 1rem; transition: border-color 200ms ease; }
.tpl-s2 .tpl-cat-tile:hover { border-color: rgba(59,130,246,0.5); }
.tpl-s2 .tpl-cat-icon { display: inline-flex; padding: 1rem; background: linear-gradient(135deg, #2563eb, #9333ea); color: #fff; border-radius: 999px; margin-bottom: 1rem; }
.tpl-s2 .tpl-cat-icon svg { width: 28px; height: 28px; }
.tpl-s2 .tpl-cat-tile h3 { font-weight: 600; }
.tpl-s2 .tpl-cat-tile p { font-size: 0.875rem; color: #94a3b8; margin-top: 0.25rem; }
.tpl-s2 .tpl-products { padding: 6rem 0; background: #020617; }
.tpl-s2 .tpl-products-head { text-align: center; margin-bottom: 3rem; }
.tpl-s2 .tpl-products-head h2 { font-size: 1.875rem; font-weight: 700; }
.tpl-s2 .tpl-products-grid { display: grid; gap: 1.5rem; max-width: 1024px; margin: 0 auto; }
@media (min-width: 640px) { .tpl-s2 .tpl-products-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .tpl-s2 .tpl-products-grid { grid-template-columns: repeat(4, 1fr); } }
.tpl-s2 .tpl-prod-card { background: linear-gradient(135deg, #1e293b, #0f172a); border: 1px solid #1e293b; border-radius: 1rem; padding: 1rem; transition: border-color 200ms ease; }
.tpl-s2 .tpl-prod-card:hover { border-color: rgba(59,130,246,0.5); }
.tpl-s2 .tpl-prod-card .tpl-prod-img { aspect-ratio: 1 / 1; border-radius: 0.5rem; overflow: hidden; margin-bottom: 1rem; background: #0f172a; }
.tpl-s2 .tpl-prod-card .tpl-prod-name { font-weight: 600; font-size: 0.95rem; }
.tpl-s2 .tpl-prod-card .tpl-prod-rating { color: #fbbf24; font-size: 0.75rem; margin-top: 0.25rem; }
.tpl-s2 .tpl-prod-card .tpl-prod-price { color: #60a5fa; font-weight: 700; font-size: 1.125rem; margin-top: 0.5rem; }
.tpl-s2 .tpl-promo { padding: 5rem 0; background: linear-gradient(to right, #2563eb, #9333ea); text-align: center; }
.tpl-s2 .tpl-promo-pill { display: inline-flex; padding: 0.5rem 1rem; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); border-radius: 999px; font-size: 0.875rem; margin-bottom: 1.5rem; }
.tpl-s2 .tpl-promo h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
.tpl-s2 .tpl-promo p { margin-top: 1rem; font-size: 1.125rem; opacity: 0.9; }
.tpl-s2 .tpl-features { padding: 6rem 0; background: #020617; }
.tpl-s2 .tpl-features-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; max-width: 1024px; margin: 0 auto; }
@media (min-width: 768px) { .tpl-s2 .tpl-features-grid { grid-template-columns: repeat(4, 1fr); } }
.tpl-s2 .tpl-feat-row { text-align: center; }
.tpl-s2 .tpl-feat-row svg { width: 32px; height: 32px; color: #60a5fa; margin: 0 auto 0.75rem; }
.tpl-s2 .tpl-feat-row h3 { font-weight: 600; }
.tpl-s2 .tpl-feat-row p { font-size: 0.875rem; color: #94a3b8; margin-top: 0.25rem; }
.tpl-s2 .tpl-newsletter { padding: 6rem 0; background: #0f172a; border-top: 1px solid #1e293b; text-align: center; }

/* ═════════════════════════════════════════════════════════════════════
   6. SHOP-3  — Sustainable Lifestyle (cream, sage green)
   ═════════════════════════════════════════════════════════════════════ */
.tpl-s3 { background: #FAF8F5; color: #1c1917; --sage: #6B8E6B; --tan: #8B7355; --cream-deep: #E8E0D5; }
.tpl-s3 .tpl-hero { padding: 0; background: #FAF8F5; }
.tpl-s3 .tpl-hero-grid { display: grid; align-items: center; }
@media (min-width: 768px) { .tpl-s3 .tpl-hero-grid { grid-template-columns: 1fr 1fr; min-height: 90vh; } }
.tpl-s3 .tpl-hero-copy { padding: 4rem 2rem; }
@media (min-width: 768px) { .tpl-s3 .tpl-hero-copy { padding: 4rem; } }
.tpl-s3 .tpl-hero-eye { color: var(--tan); margin-bottom: 1rem; }
.tpl-s3 .tpl-hero-title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; line-height: 1.1; }
.tpl-s3 .tpl-hero-title span { display: block; font-family: Georgia, serif; font-style: italic; color: var(--sage); }
.tpl-s3 .tpl-hero-desc { margin-top: 1.5rem; color: #57534e; font-size: 1.125rem; line-height: 1.6; }
.tpl-s3 .tpl-hero-cta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.tpl-s3 .tpl-btn-primary { background: var(--sage); color: #fff; border-radius: 999px; padding: 1rem 2rem; }
.tpl-s3 .tpl-btn-primary:hover { background: #5a7a5a; }
.tpl-s3 .tpl-btn-outline { background: transparent; color: #1c1917; border: 1px solid #d6d3d1; border-radius: 999px; padding: 1rem 2rem; }
.tpl-s3 .tpl-btn-outline:hover { background: #f5f5f4; }
.tpl-s3 .tpl-hero-img { background-size: cover; background-position: center; min-height: 24rem; }
.tpl-s3 .tpl-values { background: #F5F0E8; border-top: 1px solid var(--cream-deep); border-bottom: 1px solid var(--cream-deep); padding: 4rem 0; }
.tpl-s3 .tpl-values-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .tpl-s3 .tpl-values-grid { grid-template-columns: repeat(3, 1fr); } }
.tpl-s3 .tpl-value-card { text-align: center; }
.tpl-s3 .tpl-value-card svg { width: 32px; height: 32px; color: var(--sage); margin: 0 auto 1rem; }
.tpl-s3 .tpl-value-card h3 { font-size: 1.125rem; font-weight: 500; }
.tpl-s3 .tpl-value-card p { color: #57534e; margin-top: 0.5rem; max-width: 16rem; margin-left: auto; margin-right: auto; }
.tpl-s3 .tpl-collection { padding: 6rem 0; background: #FAF8F5; }
.tpl-s3 .tpl-collection-head { text-align: center; margin-bottom: 4rem; }
.tpl-s3 .tpl-collection-head h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; }
.tpl-s3 .tpl-collection-head h2 span { font-family: Georgia, serif; font-style: italic; color: var(--sage); }
.tpl-s3 .tpl-collection-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .tpl-s3 .tpl-collection-grid { grid-template-columns: repeat(3, 1fr); } }
.tpl-s3 .tpl-prod-card { display: block; }
.tpl-s3 .tpl-prod-img { aspect-ratio: 4 / 5; background: #f5f5f4; overflow: hidden; margin-bottom: 1rem; border-radius: 0.5rem; position: relative; }
.tpl-s3 .tpl-prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.tpl-s3 .tpl-prod-card:hover .tpl-prod-img img { transform: scale(1.05); }
.tpl-s3 .tpl-prod-quickadd { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%) translateY(8px); background: var(--sage); color: #fff; padding: 0.5rem 1.5rem; border-radius: 999px; font-size: 0.875rem; font-weight: 500; opacity: 0; transition: opacity 200ms ease, transform 200ms ease; border: 0; cursor: pointer; }
.tpl-s3 .tpl-prod-card:hover .tpl-prod-quickadd { opacity: 1; transform: translateX(-50%) translateY(0); }
.tpl-s3 .tpl-prod-stars { color: var(--tan); font-size: 0.75rem; margin-bottom: 0.25rem; }
.tpl-s3 .tpl-prod-name { font-weight: 500; }
.tpl-s3 .tpl-prod-price { color: #57534e; margin-top: 0.25rem; }
.tpl-s3 .tpl-swatches { margin-top: 0.5rem; display: flex; gap: 0.375rem; }
.tpl-s3 .tpl-swatch { width: 16px; height: 16px; border-radius: 999px; border: 1px solid #e7e5e4; }
.tpl-s3 .tpl-lifestyle { background: var(--cream-deep); padding: 6rem 0; }
.tpl-s3 .tpl-lifestyle-grid { display: grid; gap: 4rem; align-items: center; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
@media (min-width: 768px) { .tpl-s3 .tpl-lifestyle-grid { grid-template-columns: 1fr 1fr; } }
.tpl-s3 .tpl-lifestyle-img { aspect-ratio: 4 / 3; border-radius: 0.5rem; overflow: hidden; }
.tpl-s3 .tpl-lifestyle-img img { width: 100%; height: 100%; object-fit: cover; }
.tpl-s3 .tpl-lifestyle-copy h2 { font-size: 2rem; font-weight: 300; }
.tpl-s3 .tpl-lifestyle-copy h2 span { font-family: Georgia, serif; font-style: italic; color: var(--sage); }
.tpl-s3 .tpl-lifestyle-copy p { color: #57534e; margin-top: 1rem; line-height: 1.7; }
.tpl-s3 .tpl-lifestyle-list { margin-top: 1.5rem; padding: 0; list-style: none; }
.tpl-s3 .tpl-lifestyle-list li { padding: 0.375rem 0; padding-left: 1.5rem; position: relative; color: #44403c; }
.tpl-s3 .tpl-lifestyle-list li::before { content: ""; position: absolute; left: 0; top: 0.875rem; width: 6px; height: 6px; background: var(--sage); border-radius: 999px; }
.tpl-s3 .tpl-testi { padding: 6rem 0; background: #FAF8F5; }
.tpl-s3 .tpl-testi-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .tpl-s3 .tpl-testi-grid { grid-template-columns: repeat(3, 1fr); } }
.tpl-s3 .tpl-testi-card { background: #fff; padding: 2rem; border-radius: 0.5rem; }
.tpl-s3 .tpl-testi-card .tpl-prod-stars { font-size: 1rem; margin-bottom: 1rem; }
.tpl-s3 .tpl-testi-quote { color: #44403c; font-style: italic; line-height: 1.6; }
.tpl-s3 .tpl-testi-author { margin-top: 1.5rem; font-weight: 500; }
.tpl-s3 .tpl-newsletter { padding: 6rem 0; background: var(--sage); color: #fff; text-align: center; }

/* ═════════════════════════════════════════════════════════════════════
   7. STARTUP-1  — Classic SaaS (white, indigo)
   ═════════════════════════════════════════════════════════════════════ */
.tpl-u1 { background: #fff; color: #111827; }
.tpl-u1 .tpl-hero { position: relative; overflow: hidden; padding: 6rem 0 5rem; background: linear-gradient(180deg, #eef2ff, #fff 70%); text-align: center; }
.tpl-u1 .tpl-hero::before { content: ""; position: absolute; top: -10rem; left: 50%; transform: translateX(-50%); width: 60rem; height: 60rem; background: radial-gradient(closest-side, rgba(165,180,252,0.4), transparent); border-radius: 999px; pointer-events: none; }
.tpl-u1 .tpl-hero-inner { position: relative; max-width: 56rem; margin: 0 auto; padding: 0 1.5rem; }
.tpl-u1 .tpl-hero-chip { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.375rem 1rem; background: #e0e7ff; color: #4338ca; border-radius: 999px; font-size: 0.875rem; margin-bottom: 1.5rem; }
.tpl-u1 .tpl-hero-title { font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: #111827; }
.tpl-u1 .tpl-hero-title span { color: #4f46e5; }
.tpl-u1 .tpl-hero-desc { margin-top: 1.5rem; font-size: 1.25rem; color: #4b5563; max-width: 36rem; margin-left: auto; margin-right: auto; }
.tpl-u1 .tpl-hero-cta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.tpl-u1 .tpl-btn-primary { background: #4f46e5; color: #fff; border-radius: 0.5rem; padding: 0.875rem 1.75rem; }
.tpl-u1 .tpl-btn-primary:hover { background: #4338ca; }
.tpl-u1 .tpl-btn-outline { background: transparent; color: #111827; border-color: #d1d5db; border-radius: 0.5rem; padding: 0.875rem 1.75rem; }
.tpl-u1 .tpl-btn-outline:hover { background: #f9fafb; }
.tpl-u1 .tpl-hero-trust { margin-top: 2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; color: #6b7280; font-size: 0.875rem; }
.tpl-u1 .tpl-hero-trust > span { display: inline-flex; align-items: center; gap: 0.5rem; }
.tpl-u1 .tpl-hero-trust svg { width: 18px; height: 18px; color: #10b981; }
.tpl-u1 .tpl-hero-screenshot { margin-top: 4rem; max-width: 64rem; margin-left: auto; margin-right: auto; padding: 0.5rem; background: #111827; border-radius: 0.75rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.tpl-u1 .tpl-hero-screenshot img { width: 100%; border-radius: 0.5rem; display: block; }
.tpl-u1 .tpl-logo-cloud { padding: 4rem 0; background: #f9fafb; border-top: 1px solid #f3f4f6; border-bottom: 1px solid #f3f4f6; }
.tpl-u1 .tpl-logo-cloud-label { text-align: center; font-size: 0.875rem; color: #6b7280; margin-bottom: 1.5rem; }
.tpl-u1 .tpl-logo-cloud-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 3rem; }
.tpl-u1 .tpl-logo-bar { height: 32px; width: 112px; background: #9ca3af; border-radius: 0.25rem; opacity: 0.6; }
.tpl-u1 .tpl-features { padding: 6rem 0; background: #fff; }
.tpl-u1 .tpl-features-head { text-align: center; max-width: 36rem; margin: 0 auto 4rem; }
.tpl-u1 .tpl-features-head h2 { font-size: 2rem; font-weight: 700; }
.tpl-u1 .tpl-features-head p { margin-top: 1rem; color: #4b5563; }
.tpl-u1 .tpl-features-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .tpl-u1 .tpl-features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .tpl-u1 .tpl-features-grid { grid-template-columns: repeat(4, 1fr); } }
.tpl-u1 .tpl-feat-card { padding: 2rem; background: #f9fafb; border: 1px solid transparent; border-radius: 1rem; transition: border-color 200ms ease, background 200ms ease; }
.tpl-u1 .tpl-feat-card:hover { background: #fff; border-color: #e5e7eb; box-shadow: 0 10px 15px rgba(0,0,0,0.05); }
.tpl-u1 .tpl-feat-icon { display: inline-flex; padding: 0.75rem; background: #e0e7ff; color: #4f46e5; border-radius: 0.75rem; margin-bottom: 1rem; }
.tpl-u1 .tpl-feat-icon svg { width: 24px; height: 24px; }
.tpl-u1 .tpl-feat-title { font-weight: 600; font-size: 1.125rem; }
.tpl-u1 .tpl-feat-desc { color: #4b5563; font-size: 0.95rem; line-height: 1.5; margin-top: 0.5rem; }
.tpl-u1 .tpl-pricing { padding: 6rem 0; background: #f9fafb; }
.tpl-u1 .tpl-pricing-head { text-align: center; max-width: 36rem; margin: 0 auto 4rem; }
.tpl-u1 .tpl-pricing-head h2 { font-size: 2rem; font-weight: 700; }
.tpl-u1 .tpl-pricing-grid { display: grid; gap: 2rem; max-width: 1024px; margin: 0 auto; }
@media (min-width: 768px) { .tpl-u1 .tpl-pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.tpl-u1 .tpl-price-card { padding: 2.5rem; background: #fff; border: 1px solid #e5e7eb; border-radius: 1rem; position: relative; }
.tpl-u1 .tpl-price-card.tpl-popular { border-color: #4f46e5; box-shadow: 0 0 0 2px rgba(79,70,229,0.2); }
.tpl-u1 .tpl-price-popular-tag { position: absolute; top: -1rem; left: 50%; transform: translateX(-50%); background: #4f46e5; color: #fff; padding: 0.25rem 1rem; border-radius: 999px; font-size: 0.75rem; font-weight: 600; }
.tpl-u1 .tpl-price-tier { font-size: 0.875rem; color: #6b7280; text-transform: uppercase; letter-spacing: 0.1em; }
.tpl-u1 .tpl-price-amt { font-size: 3rem; font-weight: 700; margin: 0.5rem 0; }
.tpl-u1 .tpl-price-amt small { font-size: 1rem; color: #6b7280; font-weight: 400; }
.tpl-u1 .tpl-price-list { padding: 0; list-style: none; margin: 1.5rem 0; }
.tpl-u1 .tpl-price-list li { padding: 0.375rem 0; padding-left: 1.75rem; position: relative; color: #374151; }
.tpl-u1 .tpl-price-list li::before { content: "✓"; position: absolute; left: 0; color: #10b981; font-weight: 700; }
.tpl-u1 .tpl-testi { padding: 6rem 0; background: #fff; }
.tpl-u1 .tpl-cta { padding: 6rem 0; background: #4f46e5; color: #fff; text-align: center; }
.tpl-u1 .tpl-cta h2 { font-size: 2rem; font-weight: 700; }
.tpl-u1 .tpl-cta p { margin-top: 1rem; color: #c7d2fe; }
.tpl-u1 .tpl-cta-buttons { margin-top: 2.5rem; display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ═════════════════════════════════════════════════════════════════════
   8. STARTUP-2  — Dev Platform (near-black, emerald→cyan)
   ═════════════════════════════════════════════════════════════════════ */
.tpl-u2 { background: #0a0a0a; color: #fff; }
.tpl-u2 .tpl-hero { position: relative; overflow: hidden; padding: 8rem 0; text-align: center; }
.tpl-u2 .tpl-hero::before { content: ""; position: absolute; top: -10rem; left: -10rem; width: 30rem; height: 30rem; background: rgba(16,185,129,0.2); border-radius: 999px; filter: blur(120px); pointer-events: none; }
.tpl-u2 .tpl-hero::after { content: ""; position: absolute; bottom: -10rem; right: -10rem; width: 30rem; height: 30rem; background: rgba(34,211,238,0.2); border-radius: 999px; filter: blur(120px); pointer-events: none; }
.tpl-u2 .tpl-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(to right, #1a1a1a 1px, transparent 1px), linear-gradient(to bottom, #1a1a1a 1px, transparent 1px); background-size: 4rem 4rem; mask-image: radial-gradient(ellipse at center, black 50%, transparent 90%); -webkit-mask-image: radial-gradient(ellipse at center, black 50%, transparent 90%); pointer-events: none; }
.tpl-u2 .tpl-hero-inner { position: relative; max-width: 56rem; margin: 0 auto; padding: 0 2rem; }
.tpl-u2 .tpl-hero-eye { display: inline-flex; align-items: center; gap: 1rem; color: #34d399; letter-spacing: 0.15em; font-size: 0.75rem; margin-bottom: 1rem; }
.tpl-u2 .tpl-hero-eye::before, .tpl-u2 .tpl-hero-eye::after { content: ""; height: 1px; width: 2rem; background: #34d399; }
.tpl-u2 .tpl-hero-title { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; line-height: 1.05; }
.tpl-u2 .tpl-hero-title span { background: linear-gradient(to right, #34d399, #22d3ee, #60a5fa); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tpl-u2 .tpl-hero-desc { margin-top: 1.5rem; color: #9ca3af; max-width: 36rem; margin-left: auto; margin-right: auto; font-size: 1.125rem; }
.tpl-u2 .tpl-hero-cta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.tpl-u2 .tpl-btn-primary { background: linear-gradient(to right, #10b981, #06b6d4); color: #0a0a0a; box-shadow: 0 0 30px rgba(16,185,129,0.25); border-radius: 0.5rem; padding: 1rem 2rem; }
.tpl-u2 .tpl-btn-primary:hover { box-shadow: 0 0 40px rgba(16,185,129,0.4); }
.tpl-u2 .tpl-btn-outline { background: transparent; color: #fff; border-color: #374151; border-radius: 0.5rem; padding: 1rem 2rem; }
.tpl-u2 .tpl-btn-outline:hover { background: #1a1a1a; }
.tpl-u2 .tpl-terminal { margin: 4rem auto 0; max-width: 48rem; background: rgba(17,24,39,0.8); backdrop-filter: blur(8px); border: 1px solid #1f2937; border-radius: 0.75rem; overflow: hidden; text-align: left; }
.tpl-u2 .tpl-terminal-bar { padding: 0.75rem 1rem; border-bottom: 1px solid #1f2937; display: flex; gap: 0.5rem; }
.tpl-u2 .tpl-terminal-dot { width: 12px; height: 12px; border-radius: 999px; }
.tpl-u2 .tpl-terminal-dot.r { background: #ef4444; }
.tpl-u2 .tpl-terminal-dot.y { background: #fbbf24; }
.tpl-u2 .tpl-terminal-dot.g { background: #22c55e; }
.tpl-u2 .tpl-terminal-body { padding: 1.5rem; font-family: ui-monospace, "Cascadia Code", monospace; font-size: 0.875rem; color: #d1d5db; line-height: 1.7; }
.tpl-u2 .tpl-terminal-body .tok-c { color: #6b7280; }
.tpl-u2 .tpl-terminal-body .tok-cmd { color: #34d399; }
.tpl-u2 .tpl-terminal-body .tok-str { color: #fbbf24; }
.tpl-u2 .tpl-stats { padding: 4rem 0; border-top: 1px solid #1f2937; border-bottom: 1px solid #1f2937; }
.tpl-u2 .tpl-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 1024px; margin: 0 auto; padding: 0 2rem; text-align: center; }
@media (min-width: 768px) { .tpl-u2 .tpl-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.tpl-u2 .tpl-stat-num { font-size: 2.5rem; font-weight: 700; background: linear-gradient(to right, #34d399, #22d3ee); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tpl-u2 .tpl-stat-label { color: #9ca3af; font-size: 0.875rem; margin-top: 0.5rem; }
.tpl-u2 .tpl-usecases { padding: 6rem 0; }
.tpl-u2 .tpl-usecases-head { text-align: center; max-width: 36rem; margin: 0 auto 4rem; }
.tpl-u2 .tpl-usecases-head h2 { font-size: 2rem; font-weight: 700; }
.tpl-u2 .tpl-uc-grid { display: grid; gap: 2rem; max-width: 1024px; margin: 0 auto; padding: 0 2rem; }
@media (min-width: 768px) { .tpl-u2 .tpl-uc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tpl-u2 .tpl-uc-grid { grid-template-columns: repeat(4, 1fr); } }
.tpl-u2 .tpl-uc-card { padding: 1.5rem; background: rgba(17,24,39,0.5); border: 1px solid #1f2937; border-radius: 0.75rem; transition: border-color 200ms ease; }
.tpl-u2 .tpl-uc-card:hover { border-color: rgba(16,185,129,0.5); }
.tpl-u2 .tpl-uc-icon { display: inline-flex; padding: 0.75rem; background: rgba(16,185,129,0.1); color: #34d399; border-radius: 0.5rem; margin-bottom: 1rem; }
.tpl-u2 .tpl-uc-icon svg { width: 24px; height: 24px; }
.tpl-u2 .tpl-uc-card h3 { font-weight: 600; }
.tpl-u2 .tpl-uc-card p { color: #9ca3af; font-size: 0.875rem; margin-top: 0.5rem; line-height: 1.5; }
.tpl-u2 .tpl-feat-highlight { padding: 6rem 0; background: linear-gradient(180deg, #0a0a0a, rgba(17,24,39,0.5), #0a0a0a); }
.tpl-u2 .tpl-feat-grid { display: grid; gap: 4rem; align-items: center; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
@media (min-width: 1024px) { .tpl-u2 .tpl-feat-grid { grid-template-columns: 1fr 1fr; } }
.tpl-u2 .tpl-editor { position: relative; background: rgba(17,24,39,0.8); border: 1px solid #1f2937; border-radius: 0.75rem; overflow: hidden; }
.tpl-u2 .tpl-editor .tpl-terminal-body { color: #cbd5e1; }
.tpl-u2 .tpl-editor-rocket { position: absolute; bottom: -1rem; right: -1rem; padding: 0.75rem; background: linear-gradient(135deg, #10b981, #06b6d4); color: #0a0a0a; border-radius: 999px; box-shadow: 0 10px 25px rgba(16,185,129,0.4); }
.tpl-u2 .tpl-community { padding: 6rem 0; }
.tpl-u2 .tpl-community-panel { max-width: 64rem; margin: 0 auto; padding: 4rem; background: linear-gradient(to right, rgba(16,185,129,0.1), rgba(34,211,238,0.1), rgba(59,130,246,0.1)); border: 1px solid #1f2937; border-radius: 1rem; text-align: center; }
.tpl-u2 .tpl-community h2 { font-size: 2rem; font-weight: 700; }
.tpl-u2 .tpl-community-cta { margin-top: 2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.tpl-u2 .tpl-community-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.625rem 1rem; background: #1a1a1a; border: 1px solid #1f2937; color: #fff; border-radius: 0.5rem; transition: border-color 200ms ease; }
.tpl-u2 .tpl-community-btn:hover { border-color: rgba(16,185,129,0.5); }
.tpl-u2 .tpl-community-btn svg { width: 18px; height: 18px; }
.tpl-u2 .tpl-cta { padding: 6rem 0; border-top: 1px solid #1f2937; text-align: center; }
.tpl-u2 .tpl-cta h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; background: linear-gradient(to right, #34d399, #22d3ee); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ═════════════════════════════════════════════════════════════════════
   9. STARTUP-3  — App Launch (white, rose→orange + animated blobs)
   ═════════════════════════════════════════════════════════════════════ */
.tpl-u3 { background: #fff; color: #111827; }
.tpl-u3 .tpl-hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #fff1f2, #fff 50%, #fff7ed); padding: 6rem 0; }
.tpl-u3 .tpl-hero-blob { position: absolute; border-radius: 999px; filter: blur(48px); mix-blend-mode: multiply; opacity: 0.7; }
.tpl-u3 .tpl-blob1 { top: 0; left: 1rem; width: 18rem; height: 18rem; background: #fecdd3; animation: tpl-blob 7s infinite ease-in-out; }
.tpl-u3 .tpl-blob2 { top: 0; right: 1rem; width: 18rem; height: 18rem; background: #fed7aa; animation: tpl-blob 7s infinite ease-in-out 2s; }
.tpl-u3 .tpl-blob3 { bottom: 1rem; left: 33%; width: 18rem; height: 18rem; background: #fef08a; animation: tpl-blob 7s infinite ease-in-out 4s; }
@keyframes tpl-blob {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}
.tpl-u3 .tpl-hero-inner { position: relative; max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .tpl-u3 .tpl-hero-inner { grid-template-columns: 1fr 1fr; } }
.tpl-u3 .tpl-hero-chip { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.375rem 1rem; background: #ffe4e6; color: #be123c; border-radius: 999px; font-size: 0.875rem; margin-bottom: 1.5rem; }
.tpl-u3 .tpl-hero-chip svg { width: 16px; height: 16px; }
.tpl-u3 .tpl-hero-title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; line-height: 1.1; }
.tpl-u3 .tpl-hero-title span { color: #f43f5e; }
.tpl-u3 .tpl-hero-desc { margin-top: 1.5rem; color: #4b5563; font-size: 1.125rem; max-width: 32rem; }
.tpl-u3 .tpl-app-buttons { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.tpl-u3 .tpl-app-btn { display: inline-flex; align-items: center; gap: 0.625rem; padding: 0.875rem 1.25rem; background: #111827; color: #fff; border-radius: 0.625rem; font-weight: 600; }
.tpl-u3 .tpl-app-btn:hover { background: #1f2937; }
.tpl-u3 .tpl-app-btn svg { width: 28px; height: 28px; }
.tpl-u3 .tpl-app-btn .small { font-size: 0.6875rem; font-weight: 400; opacity: 0.8; line-height: 1; }
.tpl-u3 .tpl-app-btn .big { font-size: 1rem; line-height: 1.1; }
.tpl-u3 .tpl-hero-stats { margin-top: 2.5rem; display: flex; gap: 2rem; font-size: 0.875rem; color: #4b5563; }
.tpl-u3 .tpl-hero-stats strong { display: block; color: #111827; font-size: 1.5rem; font-weight: 700; }
.tpl-u3 .tpl-phone-wrap { position: relative; display: flex; justify-content: center; }
.tpl-u3 .tpl-phone { position: relative; width: 280px; height: 580px; background: #111827; border-radius: 3rem; padding: 0.75rem; }
.tpl-u3 .tpl-phone::before { content: ""; position: absolute; top: 1.25rem; left: 50%; transform: translateX(-50%); width: 6rem; height: 1.25rem; background: #111827; border-radius: 999px; z-index: 2; }
.tpl-u3 .tpl-phone img, .tpl-u3 .tpl-phone-screen { width: 100%; height: 100%; object-fit: cover; border-radius: 2.25rem; background: linear-gradient(135deg, #fef3c7, #fed7aa); display: block; }
.tpl-u3 .tpl-floating-card { position: absolute; padding: 0.75rem 1rem; background: #fff; border-radius: 0.75rem; box-shadow: 0 10px 25px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 0.625rem; font-size: 0.875rem; }
.tpl-u3 .tpl-floating-card svg { width: 20px; height: 20px; }
.tpl-u3 .tpl-fc-1 { left: -4rem; top: 5rem; }
.tpl-u3 .tpl-fc-1 svg { color: #10b981; }
.tpl-u3 .tpl-fc-2 { right: -4rem; bottom: 8rem; }
.tpl-u3 .tpl-fc-2 svg { color: #f43f5e; }
.tpl-u3 .tpl-features-grid { padding: 6rem 0; background: #fff; }
.tpl-u3 .tpl-features-grid-inner { display: grid; gap: 2rem; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
@media (min-width: 768px) { .tpl-u3 .tpl-features-grid-inner { grid-template-columns: repeat(3, 1fr); } }
.tpl-u3 .tpl-feat-card { padding: 2rem; background: rgba(249,250,251,0.5); border-radius: 1rem; transition: background 200ms ease, box-shadow 200ms ease; }
.tpl-u3 .tpl-feat-card:hover { background: #fff; box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.tpl-u3 .tpl-feat-icon { display: inline-flex; padding: 0.75rem; background: linear-gradient(135deg, #f43f5e, #fb923c); color: #fff; border-radius: 0.75rem; margin-bottom: 1rem; }
.tpl-u3 .tpl-feat-icon svg { width: 24px; height: 24px; }
.tpl-u3 .tpl-feat-title { font-weight: 600; }
.tpl-u3 .tpl-feat-desc { color: #4b5563; font-size: 0.95rem; line-height: 1.5; margin-top: 0.5rem; }
.tpl-u3 .tpl-screenshots { padding: 6rem 0; background: linear-gradient(135deg, #fff1f2, #fff7ed); }
.tpl-u3 .tpl-screenshots-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.tpl-u3 .tpl-screenshots-row .tpl-phone { width: 240px; height: 480px; }
.tpl-u3 .tpl-reviews { padding: 6rem 0; background: #fff; }
.tpl-u3 .tpl-reviews-grid { display: grid; gap: 2rem; max-width: 1024px; margin: 0 auto; padding: 0 2rem; }
@media (min-width: 768px) { .tpl-u3 .tpl-reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.tpl-u3 .tpl-review-card { padding: 2rem; background: #f9fafb; border-radius: 1rem; }
.tpl-u3 .tpl-review-stars { color: #fbbf24; margin-bottom: 1rem; }
.tpl-u3 .tpl-review-quote { color: #374151; line-height: 1.6; }
.tpl-u3 .tpl-review-author { margin-top: 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.tpl-u3 .tpl-review-author img { width: 40px; height: 40px; border-radius: 999px; object-fit: cover; }
.tpl-u3 .tpl-cta { padding: 6rem 0; background: linear-gradient(to right, #f43f5e, #fb923c); color: #fff; text-align: center; }
.tpl-u3 .tpl-cta h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
.tpl-u3 .tpl-cta p { margin-top: 1rem; max-width: 36rem; margin-left: auto; margin-right: auto; opacity: 0.9; }
.tpl-u3 .tpl-cta .tpl-app-buttons { margin-top: 2.5rem; justify-content: center; }
.tpl-u3 .tpl-cta .tpl-app-btn { background: #fff; color: #111827; }
.tpl-u3 .tpl-cta .tpl-app-btn:hover { background: #f9fafb; }

/* ─── Oqtane ACMESKIN: SURGICAL inline admin chrome in eyebrow ───
   The Oqtane ControlPanel renders TWO things:
     1. <button class="app-editmode btn ..."> — pencil icon (edit mode toggle)
     2. ControlPanelInteractive — emits a gear button + a Bootstrap offcanvas drawer
   We ONLY want to inline the buttons themselves. The offcanvas (when opened)
   stays as-is (Bootstrap fixed-positioned slide-out from right edge).
*/
.acme-eyebrow .acme-eyebrow-admin-inline {
  display: inline-flex; align-items: center; gap: 0.375rem;
}
/* Style the visible buttons inside the inline wrapper */
.acme-eyebrow-admin-inline button.btn,
.acme-eyebrow-admin-inline form.app-form-inline > button.btn {
  width: 26px !important; height: 26px !important;
  min-width: 0 !important; min-height: 0 !important;
  padding: 0 !important; margin: 0 !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  color: #fafaf9 !important;
  display: inline-flex !important;
  align-items: center; justify-content: center;
  font-size: 11px !important;
  line-height: 1 !important;
  position: static !important;
  bottom: auto !important; right: auto !important; top: auto !important; left: auto !important;
}
.acme-eyebrow-admin-inline button.btn:hover {
  background: rgba(255,255,255,0.2) !important;
  color: #fff !important; border-color: rgba(255,255,255,0.4) !important;
}
.acme-eyebrow-admin-inline .oi { font-size: 11px; line-height: 1; }
.acme-eyebrow-admin-inline form.app-form-inline {
  display: inline-flex !important;
  margin: 0 !important; padding: 0 !important;
}
/* Hide everything that's NOT a button — language switcher dropdown, offcanvas
   drawer, etc. These can still operate but we don't show them inline. */
.acme-eyebrow-admin-inline .offcanvas,
.acme-eyebrow-admin-inline .offcanvas-backdrop,
.acme-eyebrow-admin-inline .modal,
.acme-eyebrow-admin-inline .modal-backdrop {
  /* Bootstrap controls these — let them keep their fixed positioning */
  position: fixed !important;
}

/* Hide Oqtane's default floating bottom-left ControlPanel pair (the very pencil
   + gear that the user circled in the screenshot) — we've moved them into the eyebrow. */
body > div > .controlpanel,
body > div > .controlpanel-fixed,
.acme-theme > .controlpanelactionsbutton,
.acme-theme > form.app-form-inline {
  display: none !important;
}

/* Edit menu pill */
.acme-eyebrow .acme-edit-menu-link {
  display: inline-flex !important;
  align-items: center; gap: 0.375rem;
  padding: 3px 10px !important;
  background: #df0000 !important;
  color: #ffffff !important;
  border-radius: 999px;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  opacity: 1 !important;
  text-decoration: none !important;
  transition: background 200ms ease, transform 200ms ease;
}
.acme-eyebrow .acme-edit-menu-link:hover {
  background: #b40000 !important; color: #ffffff !important; transform: translateY(-1px);
}
.acme-eyebrow .acme-edit-menu-link svg { stroke: #ffffff; }

/* ─── Oqtane ACMESKIN: SURGICAL inline admin chrome in eyebrow ─── */
.acme-eyebrow .acme-eyebrow-admin-inline {
  display: inline-flex; align-items: center; gap: 0.375rem;
}
.acme-eyebrow-admin-inline button.btn,
.acme-eyebrow-admin-inline form.app-form-inline > button.btn {
  width: 26px !important; height: 26px !important;
  min-width: 0 !important; min-height: 0 !important;
  padding: 0 !important; margin: 0 !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  color: #fafaf9 !important;
  display: inline-flex !important;
  align-items: center; justify-content: center;
  font-size: 11px !important;
  line-height: 1 !important;
  position: static !important;
  bottom: auto !important; right: auto !important; top: auto !important; left: auto !important;
}
.acme-eyebrow-admin-inline button.btn:hover {
  background: rgba(255,255,255,0.2) !important;
  color: #fff !important; border-color: rgba(255,255,255,0.4) !important;
}
.acme-eyebrow-admin-inline .oi { font-size: 11px; line-height: 1; }
.acme-eyebrow-admin-inline form.app-form-inline {
  display: inline-flex !important;
  margin: 0 !important; padding: 0 !important;
}
.acme-eyebrow-admin-inline .offcanvas,
.acme-eyebrow-admin-inline .offcanvas-backdrop,
.acme-eyebrow-admin-inline .modal,
.acme-eyebrow-admin-inline .modal-backdrop {
  position: fixed !important;
}
/* Hide Oqtane's default floating ControlPanel — moved into eyebrow */
body > div > .controlpanel,
body > div > .controlpanel-fixed,
.acme-theme > .controlpanelactionsbutton,
.acme-theme > form.app-form-inline {
  display: none !important;
}
.acme-eyebrow .acme-edit-menu-link {
  display: inline-flex !important;
  align-items: center; gap: 0.375rem;
  padding: 3px 10px !important;
  background: #df0000 !important;
  color: #ffffff !important;
  border-radius: 999px;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  opacity: 1 !important;
  text-decoration: none !important;
  transition: background 200ms ease, transform 200ms ease;
}
.acme-eyebrow .acme-edit-menu-link:hover {
  background: #b40000 !important; color: #ffffff !important; transform: translateY(-1px);
}
.acme-eyebrow .acme-edit-menu-link svg { stroke: #ffffff; }

/* ─── Oqtane ACMESKIN: header layout — search ALWAYS on right ─── */
.acme-theme .am-search {
  flex: 0 0 280px !important;
  max-width: 280px !important;
  margin-left: auto !important;
  margin-right: 0.5rem !important;
}
@media (max-width: 1100px) {
  .acme-theme .am-search { flex: 0 0 200px !important; max-width: 200px !important; }
}
.acme-theme .am-actions { margin-left: 0 !important; }

/* Site-logo brand: when an <img> is present, hide text and constrain image */
.acme-theme .am-brand.am-brand-logo { gap: 0; max-height: 56px; align-items: center; }
.acme-theme .am-brand-img {
  display: block; max-height: 44px; width: auto; max-width: 220px;
  object-fit: contain;
}
.acme-theme .am-sticky.am-scrolled .am-brand-img { max-height: 36px; }

/* ─── Oqtane ControlPanel offcanvas: reset color cascade ───
   The offcanvas / modal may briefly render inside the dark eyebrow before
   our JS relocates it. Force light theme always. */
.offcanvas, .modal,
.acme-eyebrow .offcanvas, .acme-eyebrow .modal {
  color: #212529 !important;
  background-color: #fff !important;
}
.offcanvas .form-label, .modal .form-label,
.offcanvas label, .modal label,
.acme-eyebrow .offcanvas label, .acme-eyebrow .modal label,
.acme-eyebrow .offcanvas .form-label, .acme-eyebrow .modal .form-label {
  color: #212529 !important;
}
.offcanvas .form-select, .modal .form-select,
.offcanvas .form-control, .modal .form-control {
  color: #212529 !important;
  background-color: #fff !important;
  border-color: #ced4da !important;
}
.offcanvas .btn-close, .modal .btn-close { filter: none !important; }

/* The offcanvas trigger button (cog/pencil) is fine with dark-eyebrow look,
   but its descendants (drawer text) needs reset above. */

body.acme-mock-oqtane,
body:has(.acme-mock-page) {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body.acme-mock-oqtane .acme-theme,
body.acme-mock-oqtane .acme-main,
body:has(.acme-mock-page) .acme-theme,
body:has(.acme-mock-page) .acme-main {
  max-width: 100vw;
  overflow-x: clip;
}

/* Mock pages use their own full-bleed sections with internal max-w-7xl /
   container mx-auto wrappers, so the AcmeSkin .acme-container max-width
   1280px + 1-2rem padding causes a ~60px side gap on each side of the hero.
   When the body is in mock-oqtane mode, drop the default-pane container
   constraints so mock content extends to the viewport edges like the mock.
   Other panes (Top 100%, layout grid) still get the standard container. */
body.acme-mock-oqtane .acme-pane-default.acme-container,
body:has(.acme-mock-page) .acme-pane-default.acme-container {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

/* Oqtane wraps each module via its module-container theme. The default
   container emits Bootstrap .container > .row markup with max-width 1320px
   + 12px gutters, which clips full-bleed mock heroes (60px side gap on
   1440 viewport). Reset only when the wrapped content is a mock-page. */
body.acme-mock-oqtane .container:has(> .row > .acme-mock-page),
body.acme-mock-oqtane .container:has(> .row > section > .acme-mock-page),
body:has(.acme-mock-page) .container:has(> .row > .acme-mock-page),
body:has(.acme-mock-page) .container:has(> .row > section > .acme-mock-page) {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
body.acme-mock-oqtane .container:has(> .row > .acme-mock-page) > .row,
body.acme-mock-oqtane .container:has(> .row > section > .acme-mock-page) > .row,
body:has(.acme-mock-page) .container:has(> .row > .acme-mock-page) > .row,
body:has(.acme-mock-page) .container:has(> .row > section > .acme-mock-page) > .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
body.acme-mock-oqtane .acme-mock-page,
body:has(.acme-mock-page) .acme-mock-page {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Oqtane module container emits a .section-title with empty <h2> when the
   module has no Title. On mock pages this causes phantom 0px-height empty
   h2 elements that throw off structural diffs. Hide them in mock mode. */
body.acme-mock-oqtane .section-title:has(h2:empty),
body.acme-mock-oqtane .section-title h2:empty,
body:has(.acme-mock-page) .section-title:has(h2:empty),
body:has(.acme-mock-page) .section-title h2:empty {
  display: none !important;
}

/* Oqtane ships Bootstrap utility classes globally. The imported mock snapshots
   also use Tailwind names like text-primary/bg-primary, so keep those values
   scoped to demo content instead of letting Bootstrap recolor the page. */
.acme-mock-page .text-primary { color: var(--primary) !important; }
.acme-mock-page .text-primary-foreground { color: var(--primary-foreground) !important; }
.acme-mock-page .bg-primary { background-color: var(--primary) !important; }
.acme-mock-page .bg-primary-foreground { background-color: var(--primary-foreground) !important; }
.acme-mock-page .border-primary { border-color: var(--primary) !important; }
.acme-mock-page .text-secondary { color: var(--secondary) !important; }
.acme-mock-page .text-secondary-foreground { color: var(--secondary-foreground) !important; }
.acme-mock-page .bg-secondary { background-color: var(--secondary) !important; }
.acme-mock-page .bg-secondary-foreground { background-color: var(--secondary-foreground) !important; }
.acme-mock-page .border-secondary { border-color: var(--secondary) !important; }
.acme-mock-page.bg-\[\#0a0f1c\],
.acme-mock-page .bg-\[\#0a0f1c\] { background-color: #0a0f1c !important; }
.acme-mock-page .bg-\[\#0d1424\] { background-color: #0d1424 !important; }
.acme-mock-page .bg-\[\#0d1422\] { background-color: #0d1422 !important; }
.acme-mock-page .bg-\[\#1a1a1a\] { background-color: #1a1a1a !important; }
.acme-mock-page .text-white { color: #fff !important; }
.acme-mock-page .text-white\/60 { color: rgba(255,255,255,0.6) !important; }
.acme-mock-page .text-white\/40 { color: rgba(255,255,255,0.4) !important; }
.acme-mock-page .border-white\/10 { border-color: rgba(255,255,255,0.1) !important; }

/* MINIMAL BOOTSTRAP CONFLICT SHIM (Iter 3 home QA).
   Bootstrap ships .px-4 / .py-4 / etc. with `!important`. Override ONLY the
   specific base utilities, preserving md:* / lg:* responsive variants. */
.acme-mock-page .px-3 { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
.acme-mock-page .px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.acme-mock-page .px-5 { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
.acme-mock-page .py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
.acme-mock-page .py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.acme-mock-page .py-5 { padding-top: 1.25rem !important; padding-bottom: 1.25rem !important; }
.acme-mock-page .p-3 { padding: 0.75rem !important; }
.acme-mock-page .p-4 { padding: 1rem !important; }
.acme-mock-page .p-5 { padding: 1.25rem !important; }
.acme-mock-page .mt-4 { margin-top: 1rem !important; }
.acme-mock-page .mb-4 { margin-bottom: 1rem !important; }
.acme-mock-page .gap-4 { gap: 1rem !important; }
.acme-mock-page .gap-5 { gap: 1.25rem !important; }

body.acme-mock-oqtane .acme-pane-top-full > .container-fluid,
body.acme-mock-oqtane .acme-pane-top-full > .container-fluid > .row,
body.acme-mock-oqtane .acme-pane-top-full > .container-fluid > .row > .container-fluid,
body:has(.acme-mock-page) .acme-pane-top-full > .container-fluid,
body:has(.acme-mock-page) .acme-pane-top-full > .container-fluid > .row,
body:has(.acme-mock-page) .acme-pane-top-full > .container-fluid > .row > .container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body:has(.acme-mock-page) .acme-pane-top-full > .container-fluid > .row:has([data-acme-disable-design-renderer]):not(:has(.acme-mock-page)) {
  display: none !important;
}

body:has(.acme-mock-page) .acme-pane-top-full > .container-fluid > .row:has(.app-moduletitle:empty):not(:has(.acme-mock-page)) {
  display: none !important;
}

body:has(.acme-mock-page) #acmeFooter.acme-footer {
  display: none !important;
}

body.acme-mock-oqtane .acme-mock-page,
body:has(.acme-mock-page) .acme-mock-page {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

/* Generated SPA pages still use the platform menu. The mock source supplies
   page content only; the skin/CISS navigation remains visible and data-driven. */
