/* ═════════════════════════════════════════════════════════════════════
   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; }
