@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;900&family=DM+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

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

:root {
  --navy:    #0d2a5e;
  --dark:    #080f24;
  --mid:     #152348;
  --orange:  #f5891a;
  --orlo:    #ffa840;
  --etsy:    #f16521;
  --white:   #ffffff;
  --offwhite:#f4f6fb;
  --muted:   rgba(255,255,255,0.52);
  --display: 'Barlow Condensed', sans-serif;
  --body:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--dark); color: var(--white); overflow-x: hidden; }

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  padding: 0 clamp(18px, 3.2vw, 56px); height: 68px;
  background: rgba(8,15,36,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245,137,26,0.18);
}
.logo {
  font-family: var(--display); font-weight: 900; font-size: clamp(16px, 1.35vw, 20px);
  letter-spacing: 2px; color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 10px; flex: 0 0 auto; white-space: nowrap;
}
.logo em { color: var(--orange); font-style: normal; }
.nav-links { display: flex; align-items:center; justify-content:center; gap: clamp(12px, 1.8vw, 28px); list-style: none; flex: 1 1 auto; min-width: 0; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.8px;
  color: var(--muted); text-decoration: none; transition: color .2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-dropdown { position: relative; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(4px);
  background: rgba(8,15,36,0.98); border: 1px solid rgba(245,137,26,0.2);
  border-radius: 10px; padding: 12px 8px 8px; min-width: 200px;
  opacity: 0; pointer-events: none; transition: all .2s;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.dropdown-menu a {
  display: block; padding: 9px 14px; border-radius: 6px; font-size: 13px;
  color: var(--muted); text-decoration: none; transition: all .2s; white-space: nowrap;
}
.dropdown-menu a:hover { color: var(--orange); background: rgba(245,137,26,.08); }
.etsy-btn {
  display: inline-flex; align-items: center; gap: 8px;
  flex: 0 0 auto;
  width: auto;
  max-width: max-content;
  background: var(--etsy); color: var(--white);
  font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: 1px;
  padding: 9px 20px; border-radius: 6px; text-decoration: none;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 18px rgba(241,101,33,.35);
  white-space: nowrap; line-height: 1.05; min-height: 40px; justify-content: center;
}
.etsy-btn:hover { background: #ff7535; transform: translateY(-1px); }
.etsy-btn:focus-visible {
  outline: 2px solid rgba(255,168,64,.85);
  outline-offset: 3px;
}
.marketplace-nav-btn {
  flex: 0 0 auto;
  width: 92px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0;
  border-radius: 8px;
  border: 1px solid rgba(241,101,33,.5);
  background: transparent;
  color: var(--white);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  align-self: center;
  box-shadow: none;
  transition: background .2s, transform .2s, border-color .2s;
}
.marketplace-nav-btn:hover {
  background: rgba(241,101,33,.14);
  transform: translateY(-1px);
}
.marketplace-nav-btn:focus-visible {
  outline: 2px solid rgba(255,168,64,.85);
  outline-offset: 3px;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }
nav > div:last-child { flex: 0 0 auto; min-width: max-content; }

/* ─── PAGE HERO (shared banner for inner pages) ─── */
.page-hero {
  padding: 80px 56px 64px;
  background: var(--dark);
  border-bottom: 1px solid rgba(245,137,26,.12);
  position: relative; overflow: hidden; z-index: 1;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.page-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange); border: 1px solid rgba(245,137,26,.35);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
}
.page-hero h1 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(48px, 6vw, 80px);
  line-height: .9; letter-spacing: -1px; margin-bottom: 20px;
}
.page-hero h1 em { color: var(--orange); font-style: normal; }
.page-hero p { font-size: 17px; line-height: 1.8; color: var(--muted); }

/* ─── SECTION SHARED ─── */
.sec-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.sec-tag::before { content: ''; display: block; width: 24px; height: 2px; background: currentColor; }
.sec-title {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  line-height: .92; letter-spacing: -0.5px;
}
.sec-title em { color: var(--orange); font-style: normal; }
.sec-sub { font-size: 16px; line-height: 1.8; color: var(--muted); margin-top: 16px; max-width: 560px; }

/* ─── CONVERSION SECTIONS ─── */
.proof-band, .audience-band, .blank-band, .minimum-band, .guide-band {
  padding: 64px 56px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.proof-band, .blank-band { background: rgba(255,255,255,.025); }
.proof-grid, .audience-grid, .blank-grid, .minimum-grid, .guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 18px 56px;
  background: rgba(245,137,26,.08);
  border-top: 1px solid rgba(245,137,26,.18);
  border-bottom: 1px solid rgba(245,137,26,.18);
}
.trust-pill, .proof-card, .audience-card, .blank-card, .minimum-card, .guide-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
}
.trust-pill {
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .6px;
  text-align: center;
}
.proof-card, .audience-card, .blank-card, .minimum-card, .guide-card { padding: 22px; }
.proof-card blockquote {
  color: var(--white);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.proof-card cite, .audience-card span, .blank-card span, .minimum-card span, .guide-card span {
  display: block;
  color: var(--orange);
  font-style: normal;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .8px;
}
.audience-card h3, .blank-card h3, .minimum-card h3, .guide-card h3 {
  font-family: var(--display);
  font-size: 24px;
  color: var(--white);
  margin: 8px 0 8px;
}
.audience-card p, .blank-card p, .minimum-card p, .guide-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.note-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.note-list li { margin-left: 18px; }
.section-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; margin-top: 28px; }
.section-actions .form-submit { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 24px; font-size: 16px; border-radius: 8px; }
.section-actions .form-submit:visited { color: var(--white); }
.section-actions .text-link-cta { min-height: 48px; }
.text-link-cta, .text-link-cta:visited { display: inline-flex; align-items: center; color: var(--orange); font-weight: 800; text-decoration: none; line-height: 1.2; }
.text-link-cta:hover { color: var(--orlo); }

/* ─── FORMS ─── */
.form-group { margin-bottom: 22px; }
.form-label {
  display: block; font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12); border-radius: 10px;
  padding: 14px 18px; font-family: var(--body); font-size: 15px; color: var(--white);
  transition: border-color .2s, background .2s;
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,.25); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: rgba(245,137,26,.5); background: rgba(245,137,26,.04);
}
.form-input[type="date"],
.fg input[type="date"],
.form-group input[type="date"] {
  color-scheme: dark;
  min-height: 48px;
}
.form-input[type="date"]::-webkit-calendar-picker-indicator,
.fg input[type="date"]::-webkit-calendar-picker-indicator,
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(68%) sepia(74%) saturate(1929%) hue-rotate(344deg) brightness(101%) contrast(96%);
  opacity: .9;
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-select option { background: #0d2a5e; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-submit {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: var(--white);
  font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: 1px;
  padding: 16px 44px; border-radius: 10px; border: none; cursor: pointer;
  box-shadow: 0 10px 36px rgba(245,137,26,.35); transition: all .25s;
  text-decoration: none;
}
.form-submit:hover { background: var(--orlo); transform: translateY(-2px); box-shadow: 0 16px 44px rgba(245,137,26,.5); }
.legal-layout .form-submit,
.legal-layout .form-submit:visited {
  color: var(--white);
}
.hidden { display: none !important; }

/* ─── TICKER ─── */
.strip {
  background: var(--orange); height: 52px;
  display: flex; align-items: center; overflow: hidden;
}
.strip-track {
  display: flex; gap: 56px; white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.strip-item {
  font-family: var(--display); font-size: 15px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  display: flex; align-items: center; gap: 20px; color: rgba(255,255,255,.92);
}
.strip-item::after { content: '💡'; font-size: 12px; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark); border-top: 1px solid rgba(245,137,26,.15);
  padding: 48px 56px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 32px;
}
.footer-logo {
  font-family: var(--display); font-size: 18px; font-weight: 900;
  letter-spacing: 2px; color: var(--white);
}
.footer-logo em { color: var(--orange); font-style: normal; }
.footer-copy { font-size: 12px; color: var(--muted); text-align: center; }
.footer-etsy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--etsy); color: var(--white);
  font-family: var(--display); font-weight: 700; font-size: 14px; letter-spacing: 1px;
  padding: 10px 22px; border-radius: 8px; text-decoration: none;
  transition: background .2s; justify-self: end;
}
.footer-etsy:hover { background: #ff7535; }
.footer-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 12px;
}
.footer-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px;
  margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.07);
  grid-column: 1/-1;
}
.footer-links a { font-size: 12px; color: var(--muted); text-decoration: none; transition: color .2s; padding: 2px 0; }
.footer-links a:hover { color: var(--orange); }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-social .social-icon-link {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .2s, border-color .2s, background .2s, color .2s;
}
.footer-social .social-icon-link svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}
.footer-social .social-icon-link:hover {
  transform: translateY(-2px);
  color: var(--white);
}
.footer-social .social-whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: #062714;
}
.footer-social .social-instagram:hover {
  background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4);
  border-color: rgba(255,255,255,.18);
}
.footer-social .social-facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.footer-legal {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 20px;
  padding-top: 14px; margin-top: 6px; border-top: 1px solid rgba(255,255,255,.04);
  grid-column: 1/-1;
}
.footer-legal a { font-size: 11px; color: rgba(255,255,255,.28); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: var(--muted); }

/* ─── ANIMATIONS ─── */
@keyframes up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse {
  0%,100% { filter: drop-shadow(0 0 18px rgba(245,137,26,.4)); transform: scale(1); }
  50%     { filter: drop-shadow(0 0 36px rgba(245,137,26,.7)); transform: scale(1.04); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ─── MOBILE ─── */
@media (max-width: 1240px) {
  nav { gap: 12px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 12px; letter-spacing: .55px; }
  .quote-btn, .rush-nav, .etsy-btn { font-size: 14px; padding: 8px 13px; }
}
@media (max-width: 1140px) {
  .marketplace-nav-btn, .secondary-etsy { display:none; }
}
@media (max-width: 1020px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; z-index: 100; background: rgba(8,15,36,.98); padding: 20px; gap: 4px; border-bottom: 1px solid rgba(245,137,26,.15); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 12px; border-radius: 8px; }
  .hamburger { display: flex; }
  .etsy-btn, .marketplace-nav-btn, .secondary-etsy { display: none; }
  .page-hero { padding: 48px 20px 40px; }
  footer { grid-template-columns: 1fr; text-align: center; padding: 32px 20px; gap: 16px; }
  .footer-actions { justify-self: center; justify-content: center; flex-wrap: wrap; }
  .footer-etsy { justify-self: center; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── Logo image ── */
.logo-img { height: 38px; width: auto; display: inline-block; vertical-align: middle; filter: drop-shadow(0 0 6px rgba(245,137,26,.25)); }
@media (max-width: 768px) { .logo-img { height: 32px; } }
@media (max-width: 640px) {
  nav { height: 64px; padding: 0 14px; }
  .logo { font-size: 15px; letter-spacing: 1px; gap: 6px; min-width: 0; }
  .logo-img { height: 30px; }
  nav > div:last-child { gap: 8px !important; }
  nav > div:last-child .quote-btn { display: none; }
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS — Smart Merch Design (single source)
   ═══════════════════════════════════════════════════ */

html { transition: opacity 0.45s ease; }

nav.nav-scrolled {
  box-shadow: 0 4px 48px rgba(0,0,0,.55);
  border-bottom-color: rgba(245,137,26,.32);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition:
    opacity 0.72s cubic-bezier(.22,1,.36,1) var(--reveal-delay,0s),
    transform 0.72s cubic-bezier(.22,1,.36,1) var(--reveal-delay,0s);
}
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── Hero entrance ── */
.page-tag { animation: heroFade .65s cubic-bezier(.22,1,.36,1) both; }
.page-hero h1 { animation: heroSlide .9s cubic-bezier(.22,1,.36,1) .1s both; }
.page-hero p  { animation: heroSlide .9s cubic-bezier(.22,1,.36,1) .25s both; }

@keyframes heroFade  { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
@keyframes heroSlide { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* ── Hero parallax dot grid ── */
.page-hero::after { transform:translateY(var(--px,0)); will-change:transform; }

/* ── Button shimmer sweep ── */
.form-submit, .etsy-btn, .price-cta, .hero-etsy {
  position:relative; overflow:hidden;
}
.form-submit::after, .etsy-btn::after, .price-cta::after, .hero-etsy::after {
  content:''; position:absolute; top:0; left:-110%;
  width:60%; height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.18),transparent);
  transform:skewX(-20deg); transition:left .55s ease; pointer-events:none;
}
.form-submit:hover::after, .etsy-btn:hover::after,
.price-cta:hover::after, .hero-etsy:hover::after { left:150%; }

/* ── Logo float (single definition) ── */
.logo-img { animation:float 5.5s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-3px)} }

/* ── Animated gradient on featured card borders ── */
.price-card.popular::before, .svc-card.featured::before {
  background:linear-gradient(90deg,var(--orange),var(--orlo),#ffcc70,var(--orange));
  background-size:250% 100%;
  animation:borderShift 3s linear infinite;
  opacity:1;
}
@keyframes borderShift { 0%{background-position:0%} 100%{background-position:250%} }

/* ── Card hover glow ── */
.svc-card:hover,.value-card:hover,.tier-card:hover,.price-card:hover {
  box-shadow:0 12px 48px rgba(245,137,26,.18);
}

/* ── Stat number pop ── */
.stat-box .n { display:inline-block; transition:transform .3s cubic-bezier(.34,1.56,.64,1); }
.stat-box:hover .n { transform:scale(1.12); }

/* ── Orange strip pulse ── */
.strip { animation:stripPulse 5s ease-in-out infinite; }
@keyframes stripPulse { 0%,100%{filter:brightness(1)} 50%{filter:brightness(1.1)} }

/* ── Scroll progress bar ── */
#scroll-progress {
  position:fixed; top:0; left:0; height:3px; width:0%; z-index:9999;
  background:linear-gradient(90deg,var(--orange),var(--orlo),#ffcc70);
  box-shadow:0 0 10px rgba(245,137,26,.6); transition:width .1s linear;
}

/* ── Cursor glow ── */
#cursor-glow {
  position:fixed; pointer-events:none; z-index:9998;
  width:320px; height:320px; border-radius:50%;
  background:radial-gradient(circle,rgba(245,137,26,.07) 0%,transparent 70%);
  transform:translate(-50%,-50%); transition:opacity .3s; opacity:0;
}

/* ── Click ripple ── */
.ripple-ring {
  position:absolute; border-radius:50%;
  background:rgba(255,255,255,.25); transform:scale(0);
  animation:rippleOut .55s ease-out forwards; pointer-events:none;
}
@keyframes rippleOut { to{transform:scale(4);opacity:0} }

/* ── 3D tilt ── */
.svc-card,.value-card,.price-card,.port-card,.team-card,.tier-card,.tc,.si-card {
  transform-style:preserve-3d; will-change:transform;
}

/* ── Scroll-to-top ── */
#scroll-top {
  position:fixed; bottom:86px; right:28px; z-index:1001;
  width:44px; height:44px; border-radius:50%;
  background:var(--orange); color:#fff; border:none;
  font-size:22px; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 24px rgba(245,137,26,.45);
  opacity:0; visibility:hidden; transform:translateY(18px) scale(.8);
  transition:opacity .3s, visibility .3s, transform .3s cubic-bezier(.34,1.56,.64,1);
  pointer-events:none;
}
#scroll-top.visible { opacity:1; visibility:visible; transform:translateY(0) scale(1); pointer-events:all; }
#scroll-top:hover { background:var(--orlo); transform:translateY(-3px) scale(1.08); }

/* ── Glitch ── */
@keyframes glitch {
  0%,100%{text-shadow:none;transform:none}
  20%{text-shadow:-2px 0 #00ffff,2px 0 #ff00ff;transform:skewX(-2deg)}
  40%{text-shadow:2px 0 #ff00ff,-2px 0 #00ffff;transform:skewX(2deg)}
  60%{text-shadow:-1px 0 #00ffff;transform:skewX(0)}
  80%{text-shadow:none;transform:skewX(-1deg)}
}
.glitch-active { animation:glitch .4s steps(1) forwards; }

/* ── Typed cursor ── */
.typed-cursor {
  display:inline-block; color:var(--orange); font-weight:300;
  animation:blink .75s step-end infinite; margin-left:1px;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── Reduced motion ── */
@media (prefers-reduced-motion:reduce) {
  .reveal{opacity:1;transform:none;transition:none}
  .logo-img{animation:none}
  html{transition:none}
  #scroll-progress,#cursor-glow,.ripple-ring{display:none}
  .glitch-active{animation:none}
  .svc-card,.value-card,.price-card,.port-card,
  .team-card,.tier-card,.tc,.si-card{transform:none !important}
}

/* =========================================================
   Smart Merch Design — Conversion & Local SEO Enhancements
   ========================================================= */
.quote-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: 1px;
  padding: 9px 20px; border-radius: 6px; text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(245,137,26,.35);
  white-space: nowrap; line-height: 1.05; min-height: 40px; justify-content: center;
}
.quote-btn:hover { background: var(--orlo); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(245,137,26,.45); }
.secondary-etsy { background: transparent; border: 1px solid rgba(241,101,33,.45); box-shadow: none; padding-inline: 16px; width:auto !important; max-width:max-content; }
.secondary-etsy:hover { background: rgba(241,101,33,.14); }
.local-seo-section {
  padding: 64px 56px;
  background: linear-gradient(145deg, rgba(13,42,94,.98), rgba(8,15,36,.98));
  border-top: 1px solid rgba(245,137,26,.16);
  border-bottom: 1px solid rgba(245,137,26,.16);
}
.local-seo-inner { max-width: 980px; margin: 0 auto; }
.local-seo-section h2 { font-family: var(--display); font-size: clamp(30px,4vw,48px); line-height: 1; color: var(--white); margin-bottom: 16px; }
.local-seo-section h2 em { color: var(--orange); font-style: normal; }
.local-seo-section p { color: var(--muted); font-size: 15px; line-height: 1.85; max-width: 760px; }
.local-keywords { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.local-keywords span { border: 1px solid rgba(245,137,26,.28); background: rgba(245,137,26,.08); color: rgba(255,255,255,.78); padding: 8px 13px; border-radius: 999px; font-size: 13px; }
@media (max-width: 900px) {
  .quote-btn { display: inline-flex; }
  .secondary-etsy { display: none; }
  .local-seo-section { padding: 48px 24px; }
}


/* Conversion additions */
.rush-nav {
  display:inline-flex; align-items:center; gap:8px;
  color:var(--orange); background:rgba(245,137,26,.1);
  border:1px solid rgba(245,137,26,.35); border-radius:6px;
  font-family:var(--display); font-weight:700; font-size:15px; letter-spacing:1px;
  padding:9px 15px; text-decoration:none; transition:all .2s; white-space:nowrap; line-height:1.05; min-height:40px;
}
.rush-nav:hover { background:var(--orange); color:var(--white); transform:translateY(-1px); }
.newsletter-band { padding:52px 56px; background:rgba(255,255,255,.035); border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06); display:flex; justify-content:space-between; align-items:center; gap:32px; }
.newsletter-band h2 { font-family:var(--display); font-size:clamp(28px,4vw,44px); line-height:1; color:var(--white); }
.newsletter-band h2 em { color:var(--orange); font-style:normal; }
.newsletter-band p { color:var(--muted); margin-top:10px; line-height:1.7; max-width:560px; }
.newsletter-form { display:flex; gap:10px; min-width:min(420px,100%); }
.newsletter-form input { flex:1; min-width:0; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); border-radius:10px; padding:14px 16px; color:var(--white); font:inherit; }
.newsletter-form button { background:var(--orange); color:var(--white); border:0; border-radius:10px; padding:14px 20px; font-family:var(--display); font-weight:700; letter-spacing:1px; cursor:pointer; }
.quick-chat { position:fixed; right:28px; bottom:22px; z-index:1000; display:flex; flex-direction:column; align-items:flex-end; gap:10px; }
.quick-chat-panel { width:min(310px,calc(100vw - 32px)); background:linear-gradient(145deg, rgba(21,35,72,.98), rgba(8,15,36,.98)); border:1px solid rgba(245,137,26,.28); border-radius:14px; padding:18px; box-shadow:0 18px 54px rgba(0,0,0,.42); display:none; }
.quick-chat.open .quick-chat-panel { display:block; animation:slideDown .2s ease both; }
.quick-chat-title { font-family:var(--display); font-size:22px; font-weight:900; margin-bottom:6px; }
.quick-chat-panel p { color:var(--muted); font-size:13px; line-height:1.55; margin-bottom:14px; }
.quick-chat-form { display:grid; gap:10px; }
.quick-chat-form label { display:grid; gap:5px; }
.quick-chat-form span {
  color:var(--orange); font-family:var(--display); font-size:11px;
  font-weight:700; letter-spacing:1.2px; text-transform:uppercase;
}
.quick-chat-form input,
.quick-chat-form textarea {
  width:100%; border:1px solid rgba(255,255,255,.12); border-radius:8px;
  background:rgba(255,255,255,.06); color:var(--white);
  padding:10px 11px; font:inherit; font-size:13px; outline:none;
  transition:border-color .2s, background .2s, box-shadow .2s;
}
.quick-chat-form textarea { resize:vertical; min-height:78px; }
.quick-chat-form input:focus,
.quick-chat-form textarea:focus {
  border-color:rgba(245,137,26,.55); background:rgba(245,137,26,.06);
  box-shadow:0 0 0 3px rgba(245,137,26,.12);
}
.quick-chat-form button {
  border:0; border-radius:9px; padding:11px 14px; margin-top:2px;
  background:var(--orange); color:var(--white); cursor:pointer;
  font-family:var(--display); font-size:14px; font-weight:700; letter-spacing:1px;
  box-shadow:0 10px 28px rgba(245,137,26,.28);
  transition:background .2s, transform .2s, box-shadow .2s;
}
.quick-chat-form button:hover { background:var(--orlo); transform:translateY(-1px); box-shadow:0 14px 34px rgba(245,137,26,.35); }
.form-error-message {
  margin:12px 0 0;
  color:#ffb4b4;
  font-size:14px;
  line-height:1.5;
}
.quick-chat-actions { display:grid; gap:8px; }
.quick-chat-actions a, .quick-chat-toggle { border:0; text-decoration:none; cursor:pointer; font-family:var(--display); font-weight:700; letter-spacing:1px; }
.quick-chat-actions a { border-radius:10px; }
.quick-chat-actions a { padding:12px 14px; color:var(--white); background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.08); }
.quick-chat-actions a:first-child { background:rgba(37,211,102,.14); border-color:rgba(37,211,102,.34); color:#8df0ad; }
.quick-chat-toggle {
  width:44px; height:44px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  padding:0; background:var(--orange); color:transparent;
  box-shadow:0 6px 24px rgba(245,137,26,.45);
  font-size:0; line-height:1;
  transition:background .2s, transform .2s, box-shadow .2s;
}
.quick-chat-toggle::before {
  content:'💬'; color:var(--white); font-family:var(--body);
  font-size:18px; line-height:1; letter-spacing:0;
  transform:translate(1px,1px);
}
.quick-chat-toggle:hover { background:var(--orlo); transform:translateY(-3px) scale(1.08); }
.mobile-call-text {
  position:fixed; left:18px; bottom:22px; z-index:1000;
  display:none; align-items:center; gap:8px;
  min-height:44px; padding:0 14px; border-radius:999px;
  background:rgba(21,35,72,.96); color:var(--white);
  border:1px solid rgba(245,137,26,.35);
  text-decoration:none; box-shadow:0 10px 30px rgba(0,0,0,.32);
}
.mobile-call-text strong {
  font-family:var(--display); font-size:14px; letter-spacing:.8px;
}
.sample-grid, .size-grid, .proof-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.info-card { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.09); border-radius:14px; padding:24px; }
.info-card h3 { font-family:var(--display); font-size:24px; margin-bottom:8px; }
.info-card p, .info-card li { color:var(--muted); font-size:14px; line-height:1.7; }
.info-card ul { padding-left:18px; }
.table-wrap { overflow-x:auto; border:1px solid rgba(255,255,255,.08); border-radius:14px; }
.size-chart { width:100%; border-collapse:collapse; min-width:680px; background:rgba(255,255,255,.03); }
.size-chart th, .size-chart td { padding:14px 16px; text-align:left; border-bottom:1px solid rgba(255,255,255,.07); }
.size-chart th { color:var(--orange); font-size:12px; text-transform:uppercase; letter-spacing:1.3px; }
.size-chart td { color:rgba(255,255,255,.78); font-size:14px; }
@media (max-width:900px) {
  .rush-nav { display:none; }
  .newsletter-band { padding:40px 20px; flex-direction:column; align-items:flex-start; }
  .newsletter-form { flex-direction:column; }
  .proof-band, .audience-band, .blank-band, .minimum-band, .guide-band { padding:48px 20px; }
  .trust-strip { grid-template-columns:1fr 1fr; padding:16px 20px; }
  .sample-grid, .size-grid, .proof-grid, .audience-grid, .blank-grid, .minimum-grid, .guide-grid { grid-template-columns:1fr; }
}
@media (max-width:700px) {
  .mobile-call-text { display:inline-flex; }
}
