/* ═══════════════════════════════════════════════════
   ORPHERIC DIGITAL SERVICES — Design System Complet
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&display=swap');

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

:root {
  --bg: #FFFFFF;
  --bg2: #F5F5F5;
  --white: #FFFFFF;
  --dark: #0A0A0A;
  --dark2: #1A1A1A;
  --dark3: #000000;

  --gold: #FF6600;
  --gold-l: #FF8533;
  --gold-d: rgba(255,102,0,0.10);
  --gold-glow: rgba(255,102,0,0.28);
  --gold-border: rgba(255,102,0,0.30);

  --orange: #FF6600;
  --orange-l: #FF8533;
  --orange-d: rgba(255,102,0,0.10);

  --text: #0A0A0A;
  --text-m: #555555;
  --text-d: #999999;

  --border: rgba(0,0,0,0.09);
  --border2: rgba(0,0,0,0.15);
  --border-dark: rgba(255,255,255,0.08);
  --border-dark2: rgba(255,255,255,0.15);

  --green: #1A8A3C;
  --green-d: rgba(26,138,60,0.1);
  --blue: #1860C9;
  --blue-d: rgba(24,96,201,0.08);
  --red: #C4511A;
  --red-d: rgba(196,81,26,0.08);
  --wa: #25D366;

  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --serif: 'Cormorant Garamond', Georgia, serif;

  --max: 1200px;
  --r: 10px;
  --r-l: 16px;
  --r-xl: 24px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  cursor: none;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: var(--sans); cursor: none; border: none; outline: none; }
img { display: block; max-width: 100%; }

/* ── CURSOR ── */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
  mix-blend-mode: normal;
}
.cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold-border);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease), width 0.4s var(--ease), height 0.4s var(--ease), opacity 0.3s;
  opacity: 0.7;
}
.cursor.hovering { width: 0; height: 0; }
.cursor-follower.hovering { width: 56px; height: 56px; border-color: var(--gold); opacity: 1; }
@media(hover:none) { .cursor, .cursor-follower { display: none; } }
@media(hover:none) { body { cursor: auto; } button { cursor: pointer; } }

/* ── LAYOUT ── */
.c { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section-chip {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--orange);
  background: var(--orange-d);
  padding: 4px 14px; border-radius: 20px;
  margin-bottom: 12px;
}
.section-chip.gold { color: var(--gold); background: var(--gold-d); }
.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600; line-height: 1.15;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 16px; color: var(--text-m);
  max-width: 520px; line-height: 1.75;
  font-weight: 300; margin-bottom: 48px;
}
.section-sub.wide { max-width: 680px; }

/* ── SCROLL ANIMATION CLASSES ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0; transform: scale(0.9);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease-bounce);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(10, 15, 26, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s, box-shadow 0.3s;
}
header.scrolled {
  background: rgba(10, 15, 26, 0.97);
  box-shadow: 0 4px 40px rgba(0,0,0,0.3);
}
.hd {
  display: flex; align-items: center;
  height: 68px; gap: 32px;
}
.logo {
  display: flex; flex-direction: column;
  line-height: 1.2; flex-shrink: 0;
}
.logo-name {
  font-family: var(--serif);
  font-size: 20px; font-weight: 600;
  color: var(--gold); letter-spacing: 0.01em;
}
.logo-tag {
  font-size: 10px; font-weight: 400;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase; letter-spacing: .12em;
}
.hn {
  display: flex; gap: 8px;
  margin-left: auto; align-items: center;
}
.hn a {
  font-size: 13px; color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  padding: 6px 10px; border-radius: 6px;
  font-weight: 400; white-space: nowrap;
}
.hn a:hover, .hn a.active { color: #fff; background: rgba(255,255,255,0.06); }
.hn a.active { color: var(--gold); background: var(--gold-d); }
.wa-btn {
  display: flex; align-items: center; gap: 7px;
  background: var(--wa); color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 9px 18px; border-radius: 22px;
  transition: all 0.2s; white-space: nowrap;
  margin-left: 8px; flex-shrink: 0;
}
.wa-btn:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.wa-btn svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

/* Mobile menu */
.menu-toggle {
  display: none; flex-direction: column;
  gap: 5px; padding: 8px; margin-left: auto;
  background: transparent;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-nav {
  display: none; flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(10,15,26,0.98);
}
.mobile-nav a {
  color: rgba(255,255,255,0.7); font-size: 15px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .wa-btn { margin: 12px 0 0; justify-content: center; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--orange); color: #fff;
  font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: 12px;
  transition: all 0.2s; position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity 0.2s;
}
.btn-primary:hover { background: var(--orange-l); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,93,4,0.4); }
.btn-primary:hover::after { opacity: 1; }
.btn-gold {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--gold); color: var(--dark);
  font-size: 15px; font-weight: 700;
  padding: 14px 28px; border-radius: 12px;
  transition: all 0.2s;
}
.btn-gold:hover { background: var(--gold-l); transform: translateY(-2px); box-shadow: 0 8px 24px var(--gold-glow); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: rgba(255,255,255,0.7);
  font-size: 15px; font-weight: 500;
  padding: 14px 24px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  transition: all 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-ghost.dark {
  color: var(--text); border-color: var(--border2);
}
.btn-ghost.dark:hover { background: var(--dark); color: #fff; }
.btn-sm { font-size: 13px; padding: 9px 18px; }

/* ── PAGE HERO (small) ── */
.page-hero {
  background: var(--dark);
  padding: 120px 0 64px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold-d) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 5px 14px; border-radius: 22px; margin-bottom: 20px;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 600; color: #fff;
  line-height: 1.1; letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p {
  font-size: 17px; color: rgba(255,255,255,0.5);
  max-width: 520px; line-height: 1.7; font-weight: 300;
}

/* ── SERVICE CARDS ── */
.sc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-l); overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}
.sc:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.sc-img {
  position: relative; height: 180px; overflow: hidden;
}
.sc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.sc:hover .sc-img img { transform: scale(1.06); }
.sc-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,21,32,0.7));
}
.sc-cat-tag {
  position: absolute; top: 12px; left: 12px;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--dark); background: var(--gold);
  padding: 3px 10px; border-radius: 20px;
}
.sc-top {
  padding: 16px 18px 12px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 8px;
}
.sc-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--gold-d);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sc-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.sc-badges { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.delay-badge {
  font-size: 10px; font-weight: 600;
  padding: 3px 9px; border-radius: 20px; white-space: nowrap;
}
.d-fast { background: rgba(26,138,60,0.1); color: var(--green); }
.d-medium { background: var(--blue-d); color: var(--blue); }
.d-slow { background: var(--red-d); color: var(--red); }
.d-plan { background: rgba(100,80,30,.08); color: #8B6914; }
.tag-badge {
  font-size: 10px; font-weight: 600;
  padding: 2px 8px; border-radius: 20px;
  background: var(--orange-d); color: var(--orange);
}
.sc-body { padding: 14px 18px; flex: 1; }
.sc-name { font-size: 15px; font-weight: 600; margin-bottom: 5px; line-height: 1.3; }
.sc-desc {
  font-size: 13px; color: var(--text-m); line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.sc-inc { list-style: none; }
.sc-inc li {
  display: flex; align-items: flex-start; gap: 7px;
  font-size: 12px; color: var(--text-m); padding: 3px 0; line-height: 1.35;
}
.sc-inc li::before {
  content: '✓'; font-size: 11px; font-weight: 700;
  color: var(--green); flex-shrink: 0; margin-top: 1px;
}
.sc-provides { padding: 0 18px 14px; }
.provides-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--text-d); margin-bottom: 5px;
}
.provides-items { display: flex; flex-wrap: wrap; gap: 4px; }
.pil {
  font-size: 11px; background: var(--bg);
  border: 1px solid var(--border);
  padding: 2px 8px; border-radius: 20px; color: var(--text-m);
}
.sc-footer {
  padding: 14px 18px; border-top: 1px solid var(--border);
  display: flex; align-items: center;
  justify-content: space-between; gap: 10px;
  background: rgba(247,244,239,0.5);
}
.sc-price { display: flex; flex-direction: column; }
.price-range { font-size: 16px; font-weight: 700; color: var(--text); }
.price-unit { font-size: 11px; color: var(--text-d); }
.sc-cta {
  display: flex; align-items: center; gap: 6px;
  background: var(--dark); color: #fff;
  font-size: 12px; font-weight: 600;
  padding: 9px 14px; border-radius: 9px;
  transition: all 0.2s; white-space: nowrap; flex-shrink: 0;
}
.sc-cta:hover { background: var(--dark2); transform: translateY(-1px); }
.sc-cta svg { width: 14px; height: 14px; fill: #fff; flex-shrink: 0; }

/* ── GRID LAYOUTS ── */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(480px,1fr)); gap: 24px; }

/* ── FAQ ── */
.faq-list { max-width: 740px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 20px 0; cursor: none; gap: 16px;
}
.faq-q span { font-size: 15px; font-weight: 500; }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold-d); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--gold); flex-shrink: 0;
  transition: transform 0.25s var(--ease), background 0.25s;
  font-weight: 300;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--dark); }
.faq-a {
  font-size: 14px; color: var(--text-m); line-height: 1.75;
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s var(--ease), padding 0.3s;
}
.faq-item.open .faq-a { max-height: 250px; padding-bottom: 18px; }

/* ── FILTER PILLS ── */
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.fp {
  background: var(--white); border: 1px solid var(--border);
  color: var(--text-m); padding: 9px 20px; border-radius: 22px;
  font-size: 13px; font-weight: 500; cursor: none;
  transition: all 0.2s;
}
.fp:hover { border-color: var(--border2); color: var(--text); }
.fp.on { background: var(--dark); color: #fff; border-color: var(--dark); }

/* ── RESULT COUNT ── */
.result-count {
  font-size: 13px; color: var(--text-d);
  background: var(--white); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 20px;
}

/* ── FOOTER ── */
footer {
  background: var(--dark3);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; padding: 64px 0 48px;
}
.footer-brand .logo-name { font-size: 22px; }
.footer-brand p {
  font-size: 13px; color: rgba(255,255,255,0.4);
  line-height: 1.7; margin: 14px 0 20px;
  max-width: 260px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 16px;
  transition: all 0.2s;
}
.footer-social:hover { background: var(--gold-d); border-color: var(--gold-border); color: var(--gold); }
.footer-col h4 {
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,0.3); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px; color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ── WA FLOAT BUTTON ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 400;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s var(--ease-bounce);
  animation: wa-pulse 3s infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.wa-float svg { width: 26px; height: 26px; fill: #fff; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.65); }
}

/* ── BACK TO TOP ── */
.back-top {
  position: fixed; bottom: 28px; right: 96px; z-index: 400;
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 18px;
  opacity: 0; pointer-events: none;
  transition: all 0.3s;
}
.back-top.show { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--gold-d); color: var(--gold); }

/* ── CARD SHIMMER (loading) ── */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.shimmer {
  background: linear-gradient(90deg, var(--bg2) 25%, var(--white) 50%, var(--bg2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* ── TOAST ── */
.toast-container {
  position: fixed; bottom: 24px; left: 24px;
  z-index: 9990; display: flex; flex-direction: column; gap: 10px;
}
.toast {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transform: translateX(-120%);
  transition: transform 0.4s var(--ease-bounce), opacity 0.3s;
  max-width: 320px;
}
.toast.show { transform: translateX(0); }
.toast.success { border-left: 3px solid var(--green); }
.toast.error { border-left: 3px solid var(--red); }
.toast.info { border-left: 3px solid var(--gold); }

/* ── SEARCH BAR ── */
.search-wrap {
  position: relative; max-width: 400px;
}
.search-wrap input {
  width: 100%; padding: 12px 16px 12px 44px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 22px; font-family: var(--sans);
  font-size: 14px; color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.search-wrap input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-d); }
.search-wrap::before {
  content: '⌕'; position: absolute;
  left: 15px; top: 50%; transform: translateY(-50%);
  color: var(--text-d); font-size: 18px; pointer-events: none;
}

/* ── PAGINATION ── */
.pagination { display: flex; gap: 8px; align-items: center; margin-top: 40px; }
.page-btn {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-m);
  cursor: none; transition: all 0.2s;
}
.page-btn:hover { border-color: var(--gold); color: var(--gold); }
.page-btn.active { background: var(--dark); color: #fff; border-color: var(--dark); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); }
}
@media (max-width: 768px) {
  .hn { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav.open { display: flex; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 32px; }
  .section-sub { margin-bottom: 32px; }
  .grid-2 { grid-template-columns: 1fr; }
  .back-top { display: none; }
}
@media (max-width: 480px) {
  .btn-primary, .btn-gold, .btn-ghost { font-size: 14px; padding: 12px 20px; }
}
