/*
  happydesign3d.com -- style.css
  Theme: PLAYFUL CREATIVE STUDIO
  Colors: ink #0F0E17 + cyan #00D4FF + hot pink #FF4785 + ivory #FFFFF0
  Fonts: Outfit (headings) + Inter (body)
  Nav: FULL-PAGE OVERLAY MENU (unique - not used in previous builds)
  Hero: CENTERED TYPOGRAPHIC with floating badge stats
  Services: LARGE NUMBERED CARD GRID
  Portfolio: FULL-WIDTH ALTERNATING
  Pricing: 3-CARD COLUMNS
  Process: HORIZONTAL TIMELINE
  CSS prefix: hd3-
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===================== TOKENS ===================== */
:root {
  --hd3-ink:      #0F0E17;
  --hd3-ink2:     #1C1B2A;
  --hd3-ink3:     #2A2840;
  --hd3-ivory:    #FFFFF0;
  --hd3-off:      #F9F7F1;
  --hd3-cyan:     #00D4FF;
  --hd3-cyan2:    #00A8CC;
  --hd3-cyanbg:   rgba(0,212,255,.08);
  --hd3-cyanbd:   rgba(0,212,255,.2);
  --hd3-pink:     #FF4785;
  --hd3-pink2:    #E8376F;
  --hd3-pinkbg:   rgba(255,71,133,.08);
  --hd3-pinkbd:   rgba(255,71,133,.2);
  --hd3-lime:     #CCFF00;
  --hd3-slate:    #5F5D75;
  --hd3-muted:    #8B89A4;
  --hd3-dim:      #B5B3CC;
  --hd3-edge:     #E8E7F4;
  --hd3-edge2:    #F2F1FA;

  --hd3-max:  1140px;
  --hd3-r:    6px;
  --hd3-r2:   14px;
  --hd3-r3:   28px;

  --hd3-fh:  'Outfit', system-ui, sans-serif;
  --hd3-fb:  'Inter', system-ui, -apple-system, sans-serif;

  --hd3-ease: all 0.22s cubic-bezier(.4,0,.2,1);
  --hd3-sh1:  0 2px 12px rgba(15,14,23,.1);
  --hd3-sh2:  0 8px 40px rgba(15,14,23,.16);
  --hd3-sh3:  0 24px 80px rgba(15,14,23,.24);
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--hd3-ivory);
  color: var(--hd3-ink);
  font-family: var(--hd3-fb);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
address { font-style: normal; }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4 { font-family: var(--hd3-fh); }
h1 { font-size: clamp(3rem, 7vw, 9rem); line-height: .88; letter-spacing: -.04em; font-weight: 800; }
h2 { font-size: clamp(2rem, 3.5vw, 4.5rem); line-height: .95; letter-spacing: -.025em; font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 700; }
p  { font-size: .9rem; line-height: 1.82; color: var(--hd3-slate); }

/* ===================== LAYOUT ===================== */
.hd3-shell  { max-width: var(--hd3-max); margin: 0 auto; padding: 0 2.5rem; }
.hd3-plate  { padding: 7rem 0; }
.hd3-plate-sm { padding: 4rem 0; }

/* ===================== OVERLAY NAV ===================== */
.hd3-gate-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 70px; display: flex; align-items: center;
  padding: 0 2.5rem;
  background: transparent;
  transition: background .3s, backdrop-filter .3s;
  mix-blend-mode: normal;
}
.hd3-gate-bar.hd3-gate-solid {
  background: rgba(15,14,23,.96);
  backdrop-filter: blur(12px);
}
.hd3-gate-logo {
  font-family: var(--hd3-fh); font-size: 1.2rem; font-weight: 800;
  color: var(--hd3-ivory); letter-spacing: -.03em;
  text-decoration: none; position: relative; z-index: 1;
}
.hd3-gate-logo em { font-style: normal; color: var(--hd3-cyan); }
.hd3-gate-logo strong { color: var(--hd3-pink); font-weight: 800; }
.hd3-gate-right { margin-left: auto; display: flex; align-items: center; gap: 1.25rem; }
.hd3-gate-cta {
  font-family: var(--hd3-fb); font-size: .78rem; font-weight: 700;
  color: var(--hd3-ink); background: var(--hd3-cyan);
  padding: .44rem 1.1rem; border-radius: var(--hd3-r);
  transition: background .18s; display: none;
}
.hd3-gate-bar.hd3-gate-solid .hd3-gate-cta { display: inline-flex; }
.hd3-gate-cta:hover { background: var(--hd3-lime); }
.hd3-gate-ham {
  width: 44px; height: 44px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; cursor: pointer; background: none; border: none;
  position: relative; z-index: 1100;
}
.hd3-gate-ham span {
  width: 28px; height: 2px;
  background: var(--hd3-ivory); border-radius: 2px;
  transition: transform .28s, opacity .2s, width .2s;
  display: block;
}
.hd3-gate-ham span:nth-child(2) { width: 20px; }
.hd3-gate-ham.hd3-ham-x span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hd3-gate-ham.hd3-ham-x span:nth-child(2) { opacity: 0; }
.hd3-gate-ham.hd3-ham-x span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 28px; }

/* Full-page overlay */
.hd3-veil {
  position: fixed; inset: 0; z-index: 950;
  background: var(--hd3-ink);
  display: flex; flex-direction: column;
  transform: translateY(-100%); transition: transform .45s cubic-bezier(.77,0,.18,1);
  overflow: hidden;
}
.hd3-veil.hd3-veil-open { transform: translateY(0); }
.hd3-veil-inner {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 100px 4rem 3rem;
}
.hd3-veil-nav { display: flex; flex-direction: column; gap: .18rem; margin-bottom: 3rem; }
.hd3-veil-lk {
  font-family: var(--hd3-fh); font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 800; color: rgba(255,255,255,.15);
  line-height: 1; letter-spacing: -.04em;
  transition: color .2s; display: block;
  text-decoration: none; padding: .1em 0;
}
.hd3-veil-lk:hover { color: var(--hd3-cyan); }
.hd3-veil-lk.hd3-gate-on { color: var(--hd3-pink); }
.hd3-veil-foot {
  padding: 1.5rem 4rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hd3-veil-contact { font-family: var(--hd3-fb); font-size: .84rem; color: rgba(255,255,255,.45); }
.hd3-veil-contact a { color: var(--hd3-cyan); transition: color .15s; }
.hd3-veil-contact a:hover { color: white; }
.hd3-veil-soc { display: flex; gap: .72rem; }
.hd3-veil-soc a { color: rgba(255,255,255,.35); transition: color .15s; }
.hd3-veil-soc a:hover { color: var(--hd3-pink); }

/* ===================== HERO: CENTERED TYPOGRAPHIC ===================== */
.hd3-splash {
  min-height: 100vh;
  background: var(--hd3-ink);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative; overflow: hidden;
  padding: 120px 2.5rem 80px;
}
.hd3-splash-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(0,212,255,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 70% 60%, rgba(255,71,133,.1) 0%, transparent 60%);
}
.hd3-splash-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hd3-splash-inner { position: relative; z-index: 2; }
.hd3-splash-eyebrow {
  display: inline-block; font-family: var(--hd3-fb); font-size: .58rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .28em;
  color: var(--hd3-cyan); border: 1px solid var(--hd3-cyanbd);
  padding: .24rem .88rem; border-radius: 20px; margin-bottom: 1.5rem;
}
.hd3-splash h1 { color: var(--hd3-ivory); }
.hd3-splash h1 em { font-style: normal; color: var(--hd3-cyan); }
.hd3-splash h1 strong { color: var(--hd3-pink); }
.hd3-splash-lead {
  font-size: 1.05rem; color: rgba(255,255,255,.6); max-width: 54ch;
  margin: 1.5rem auto 2.5rem; line-height: 1.88;
}
.hd3-splash-acts { display: flex; gap: .72rem; justify-content: center; flex-wrap: wrap; }
/* Floating stat badges */
.hd3-badges-ring {
  display: flex; justify-content: center; gap: 1rem;
  flex-wrap: wrap; margin-top: 5rem;
}
.hd3-badge-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(8px); border-radius: var(--hd3-r2);
  padding: 1rem 1.5rem; text-align: center;
  transition: var(--hd3-ease);
}
.hd3-badge-card:hover { background: rgba(0,212,255,.08); border-color: var(--hd3-cyanbd); }
.hd3-badge-n { font-family: var(--hd3-fh); font-size: 2rem; font-weight: 800; color: var(--hd3-cyan); line-height: 1; letter-spacing: -.03em; }
.hd3-badge-l { font-family: var(--hd3-fb); font-size: .56rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: rgba(255,255,255,.4); margin-top: .22rem; }

/* Scroll indicator */
.hd3-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-family: var(--hd3-fb); font-size: .56rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .2em; color: rgba(255,255,255,.3);
  animation: hd3Bounce 2.4s ease-in-out infinite;
}
.hd3-scroll-hint svg { color: rgba(0,212,255,.5); }
@keyframes hd3Bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ===================== TICKER ===================== */
.hd3-tape {
  background: var(--hd3-ink); border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06); overflow: hidden; padding: .72rem 0;
}
.hd3-tape-row { display: flex; width: max-content; animation: hd3Tape 22s linear infinite; }
.hd3-tape-item {
  padding: 0 1.8rem; font-family: var(--hd3-fb); font-size: .58rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .16em; color: rgba(255,255,255,.3);
  white-space: nowrap; display: flex; align-items: center; gap: .9rem;
}
.hd3-tape-item::after { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--hd3-pink); }
@keyframes hd3Tape { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================== ABOUT STRIP ===================== */
.hd3-about-strip { background: var(--hd3-ivory); }
.hd3-about-inner { max-width: var(--hd3-max); margin: 0 auto; padding: 0 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5.5rem; align-items: center; }
.hd3-about-tag { display: inline-block; font-family: var(--hd3-fb); font-size: .56rem; font-weight: 700; text-transform: uppercase; letter-spacing: .22em; color: var(--hd3-pink); border: 1px solid var(--hd3-pinkbd); padding: .22rem .72rem; border-radius: 20px; margin-bottom: .6rem; }
.hd3-about-h { color: var(--hd3-ink); margin-bottom: 1.1rem; }
.hd3-about-text p { margin-bottom: .88rem; }
.hd3-about-metrics { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--hd3-edge); border: 1px solid var(--hd3-edge); border-radius: var(--hd3-r2); overflow: hidden; margin-top: 2.2rem; }
.hd3-about-metric { background: var(--hd3-ivory); padding: 1.25rem; }
.hd3-about-mn { font-family: var(--hd3-fh); font-size: 2.2rem; font-weight: 800; color: var(--hd3-ink); line-height: 1; letter-spacing: -.03em; }
.hd3-about-ml { font-family: var(--hd3-fb); font-size: .56rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--hd3-dim); margin-top: .18rem; }
.hd3-about-img-wrap { border-radius: var(--hd3-r2); overflow: hidden; position: relative; }
.hd3-about-img-wrap img { width: 100%; height: 500px; object-fit: cover; display: block; }
.hd3-about-img-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--hd3-cyan); color: var(--hd3-ink);
  font-family: var(--hd3-fh); font-size: .78rem; font-weight: 800;
  padding: .5rem 1rem; border-radius: var(--hd3-r);
}

/* ===================== SERVICES: NUMBERED CARD GRID ===================== */
.hd3-craft-section { background: var(--hd3-off); }
.hd3-craft-head { text-align: center; margin-bottom: 4rem; }
.hd3-craft-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.hd3-craft-card {
  background: var(--hd3-ivory); border-radius: var(--hd3-r2);
  padding: 2rem; position: relative; overflow: hidden;
  border: 1px solid var(--hd3-edge); transition: var(--hd3-ease);
  cursor: pointer;
}
.hd3-craft-card:hover { transform: translateY(-4px); box-shadow: var(--hd3-sh2); border-color: var(--hd3-cyanbd); }
.hd3-craft-num {
  font-family: var(--hd3-fh); font-size: 5.5rem; font-weight: 900; line-height: 1;
  color: var(--hd3-edge2); position: absolute; top: -0.4rem; right: 1rem;
  letter-spacing: -.05em; pointer-events: none; transition: color .22s;
}
.hd3-craft-card:hover .hd3-craft-num { color: var(--hd3-cyanbg); }
.hd3-craft-icon { color: var(--hd3-cyan); margin-bottom: .75rem; }
.hd3-craft-nm { font-family: var(--hd3-fh); font-size: 1rem; font-weight: 700; color: var(--hd3-ink); margin-bottom: .3rem; }
.hd3-craft-desc { font-size: .8rem; color: var(--hd3-muted); line-height: 1.72; margin-bottom: 1rem; }
.hd3-craft-pr { font-family: var(--hd3-fh); font-size: 1.1rem; font-weight: 800; color: var(--hd3-pink); }
.hd3-craft-arrow { position: absolute; bottom: 1.5rem; right: 1.5rem; color: var(--hd3-dim); transition: var(--hd3-ease); }
.hd3-craft-card:hover .hd3-craft-arrow { color: var(--hd3-cyan); transform: translate(3px, -3px); }

/* ===================== PORTFOLIO: ALTERNATING ===================== */
.hd3-gallery-section { background: var(--hd3-ink); }
.hd3-gallery-head { text-align: center; margin-bottom: 4rem; }
.hd3-gallery-head h2 { color: var(--hd3-ivory); }
.hd3-gallery-list { display: flex; flex-direction: column; gap: 0; }
.hd3-gallery-row {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.07); overflow: hidden;
}
.hd3-gallery-row:last-child { border-bottom: 1px solid rgba(255,255,255,.07); }
.hd3-gallery-img { overflow: hidden; height: 380px; }
.hd3-gallery-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.55) saturate(.8); transition: filter .4s, transform .4s; }
.hd3-gallery-row:hover .hd3-gallery-img img { filter: brightness(.75) saturate(1); transform: scale(1.03); }
.hd3-gallery-content { padding: 3.5rem; display: flex; flex-direction: column; justify-content: center; }
.hd3-gallery-tags { display: flex; gap: .38rem; flex-wrap: wrap; margin-bottom: .88rem; }
.hd3-gallery-tag { font-family: var(--hd3-fb); font-size: .56rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--hd3-cyan); border: 1px solid var(--hd3-cyanbd); padding: .18rem .62rem; border-radius: 20px; }
.hd3-gallery-nm { font-family: var(--hd3-fh); font-size: clamp(1.5rem, 2.5vw, 2.5rem); font-weight: 800; color: var(--hd3-ivory); margin-bottom: .25rem; line-height: 1.05; }
.hd3-gallery-type { font-family: var(--hd3-fb); font-size: .72rem; color: rgba(255,255,255,.35); margin-bottom: 1rem; }
.hd3-gallery-intro { font-size: .86rem; color: rgba(255,255,255,.55); line-height: 1.82; margin-bottom: 1.5rem; }
.hd3-gallery-result { display: flex; align-items: flex-end; gap: .5rem; }
.hd3-gallery-rn { font-family: var(--hd3-fh); font-size: 3rem; font-weight: 900; color: var(--hd3-cyan); line-height: 1; letter-spacing: -.04em; }
.hd3-gallery-rs { font-family: var(--hd3-fb); font-size: .72rem; color: rgba(255,255,255,.4); max-width: 22ch; line-height: 1.5; }

/* ===================== TESTIMONIALS: SINGLE LARGE ===================== */
.hd3-echo-section { background: var(--hd3-off); }
.hd3-echo-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.hd3-echo-mark {
  font-family: var(--hd3-fh); font-size: 8rem; font-weight: 900;
  color: var(--hd3-pink); line-height: .7; margin-bottom: 1rem; display: block;
}
.hd3-echo-slides { position: relative; }
.hd3-echo-slide { display: none; }
.hd3-echo-slide.hd3-echo-active { display: block; }
.hd3-echo-q {
  font-family: var(--hd3-fh); font-size: clamp(1.3rem, 2.5vw, 2.2rem);
  font-weight: 500; color: var(--hd3-ink); line-height: 1.35;
  font-style: italic; margin-bottom: 2rem;
}
.hd3-echo-stars { display: flex; justify-content: center; gap: .2rem; color: var(--hd3-pink); margin-bottom: .88rem; }
.hd3-echo-who { font-family: var(--hd3-fb); font-size: .88rem; font-weight: 700; color: var(--hd3-pink); }
.hd3-echo-co  { font-family: var(--hd3-fb); font-size: .72rem; color: var(--hd3-dim); }
.hd3-echo-nav { display: flex; justify-content: center; gap: .5rem; margin-top: 2.5rem; }
.hd3-echo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--hd3-edge); cursor: pointer; transition: background .2s; }
.hd3-echo-dot.hd3-echo-dot-on { background: var(--hd3-pink); }

/* ===================== PRICING: 3 CARD COLUMNS ===================== */
.hd3-rate-section { background: var(--hd3-ivory); }
.hd3-rate-head { text-align: center; margin-bottom: 4rem; }
.hd3-rate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.hd3-rate-card { border-radius: var(--hd3-r2); overflow: hidden; border: 1.5px solid var(--hd3-edge); transition: var(--hd3-ease); }
.hd3-rate-card:hover { box-shadow: var(--hd3-sh2); transform: translateY(-4px); }
.hd3-rate-card.hd3-rate-feat { border-color: var(--hd3-pink); box-shadow: 0 0 0 1px var(--hd3-pink); }
.hd3-rate-top { padding: 2rem; }
.hd3-rate-feat .hd3-rate-top { background: var(--hd3-pink); }
.hd3-rate-feat-pill { background: rgba(255,255,255,.2); color: white; font-family: var(--hd3-fb); font-size: .56rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; padding: .2rem .68rem; border-radius: 20px; display: inline-block; margin-bottom: .5rem; }
.hd3-rate-nm { font-family: var(--hd3-fb); font-size: .56rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--hd3-dim); margin-bottom: .3rem; }
.hd3-rate-feat .hd3-rate-nm { color: rgba(255,255,255,.7); }
.hd3-rate-pr { font-family: var(--hd3-fh); font-size: 3.5rem; font-weight: 900; color: var(--hd3-ink); line-height: 1; letter-spacing: -.04em; }
.hd3-rate-feat .hd3-rate-pr { color: white; }
.hd3-rate-pr sup { font-size: 1.5rem; font-weight: 600; vertical-align: super; }
.hd3-rate-per { font-family: var(--hd3-fb); font-size: .62rem; color: var(--hd3-dim); margin-top: .2rem; }
.hd3-rate-feat .hd3-rate-per { color: rgba(255,255,255,.6); }
.hd3-rate-sub { font-family: var(--hd3-fb); font-size: .78rem; color: var(--hd3-muted); margin-top: .5rem; line-height: 1.55; }
.hd3-rate-feat .hd3-rate-sub { color: rgba(255,255,255,.8); }
.hd3-rate-body { padding: 1.5rem 2rem 2rem; }
.hd3-rate-incs { display: flex; flex-direction: column; gap: .42rem; margin-bottom: 1.75rem; }
.hd3-rate-inc { display: flex; align-items: flex-start; gap: .5rem; font-family: var(--hd3-fb); font-size: .8rem; color: var(--hd3-slate); }
.hd3-rate-inc svg { color: var(--hd3-cyan); flex-shrink: 0; margin-top: .14rem; }

/* ===================== PROCESS: HORIZONTAL TIMELINE ===================== */
.hd3-pulse-section { background: var(--hd3-ink); }
.hd3-pulse-head { text-align: center; margin-bottom: 4rem; }
.hd3-pulse-head h2 { color: var(--hd3-ivory); }
.hd3-pulse-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.hd3-pulse-row::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, var(--hd3-cyan), var(--hd3-pink));
  pointer-events: none;
}
.hd3-pulse-step { padding: 0 1.25rem 2rem; text-align: center; position: relative; }
.hd3-pulse-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--hd3-ink2); border: 2px solid rgba(255,255,255,.12);
  font-family: var(--hd3-fh); font-size: 1rem; font-weight: 800;
  color: var(--hd3-cyan); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; position: relative; z-index: 1;
  transition: var(--hd3-ease);
}
.hd3-pulse-step:hover .hd3-pulse-num { background: var(--hd3-pink); border-color: var(--hd3-pink); color: white; }
.hd3-pulse-h { font-family: var(--hd3-fh); font-size: .88rem; font-weight: 700; color: var(--hd3-ivory); margin-bottom: .38rem; }
.hd3-pulse-p { font-size: .74rem; color: rgba(255,255,255,.45); line-height: 1.7; }
.hd3-pulse-dur { font-family: var(--hd3-fb); font-size: .56rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--hd3-pink); margin-top: .5rem; }

/* ===================== FAQ: SPLIT LAYOUT ===================== */
.hd3-query-section { background: var(--hd3-off); }
.hd3-query-inner { max-width: var(--hd3-max); margin: 0 auto; padding: 0 2.5rem; display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: start; }
.hd3-query-left { position: sticky; top: 90px; }
.hd3-query-tag { display: inline-block; font-family: var(--hd3-fb); font-size: .56rem; font-weight: 700; text-transform: uppercase; letter-spacing: .22em; color: var(--hd3-pink); border: 1px solid var(--hd3-pinkbd); padding: .22rem .72rem; border-radius: 20px; margin-bottom: .5rem; }
.hd3-query-h { color: var(--hd3-ink); margin-bottom: .8rem; font-size: clamp(1.8rem, 3vw, 3.5rem); }
.hd3-query-p { color: var(--hd3-slate); margin-bottom: 2rem; }
.hd3-query-list { display: flex; flex-direction: column; gap: 0; }
.hd3-qa-item { border-bottom: 1px solid var(--hd3-edge); }
.hd3-qa-btn { width: 100%; text-align: left; padding: 1.2rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; background: none; }
.hd3-qa-q { font-family: var(--hd3-fb); font-size: .92rem; font-weight: 700; color: var(--hd3-ink); }
.hd3-qa-ic { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--hd3-edge); display: flex; align-items: center; justify-content: center; color: var(--hd3-pink); flex-shrink: 0; transition: var(--hd3-ease); }
.hd3-qa-item.hd3-qa-open .hd3-qa-ic { background: var(--hd3-pink); border-color: var(--hd3-pink); color: white; transform: rotate(45deg); }
.hd3-qa-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.hd3-qa-item.hd3-qa-open .hd3-qa-body { max-height: 300px; }
.hd3-qa-ans { padding: 0 0 1.2rem; font-size: .86rem; color: var(--hd3-slate); line-height: 1.82; }

/* ===================== CTA SECTION ===================== */
.hd3-cta-band { background: var(--hd3-ink); padding: 8rem 0; position: relative; overflow: hidden; }
.hd3-cta-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,71,133,.12) 0%, transparent 65%);
}
.hd3-cta-inner { max-width: var(--hd3-max); margin: 0 auto; padding: 0 2.5rem; display: grid; grid-template-columns: 1fr 400px; gap: 5rem; align-items: center; position: relative; z-index: 1; }
.hd3-cta-h { font-family: var(--hd3-fh); font-size: clamp(2.5rem, 5vw, 6rem); font-weight: 900; color: var(--hd3-ivory); line-height: .9; letter-spacing: -.04em; margin-bottom: .8rem; }
.hd3-cta-h em { font-style: normal; color: var(--hd3-pink); }
.hd3-cta-p { color: rgba(255,255,255,.55); max-width: 46ch; margin-bottom: 2rem; font-size: .9rem; }
.hd3-cta-acts { display: flex; gap: .72rem; flex-wrap: wrap; }
/* Contact mini form */
.hd3-quick-form { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--hd3-r2); padding: 2rem; }
.hd3-quick-form-h { font-family: var(--hd3-fh); font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: .25rem; }
.hd3-quick-form-sub { font-family: var(--hd3-fb); font-size: .72rem; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.hd3-qf-in { width: 100%; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--hd3-r); padding: .6rem .88rem; color: white; font-size: .86rem; margin-bottom: .5rem; transition: border-color .18s; }
.hd3-qf-in:focus { outline: none; border-color: var(--hd3-cyanbd); }
.hd3-qf-in::placeholder { color: rgba(255,255,255,.3); }
.hd3-qf-btn { width: 100%; background: var(--hd3-pink); color: white; font-family: var(--hd3-fb); font-size: .8rem; font-weight: 700; padding: .68rem; border-radius: var(--hd3-r); border: none; cursor: pointer; transition: background .18s; }
.hd3-qf-btn:hover { background: var(--hd3-pink2); }
.hd3-qf-done { display: none; text-align: center; color: var(--hd3-cyan); font-family: var(--hd3-fb); font-size: .82rem; font-weight: 700; padding: 1rem; }

/* ===================== BUTTONS ===================== */
.hd3-btn-cyan {
  display: inline-flex; align-items: center; gap: .42rem;
  font-family: var(--hd3-fb); font-size: .82rem; font-weight: 700;
  color: var(--hd3-ink); background: var(--hd3-cyan);
  padding: .72rem 1.75rem; border-radius: var(--hd3-r);
  transition: background .18s; text-decoration: none; border: none; cursor: pointer; white-space: nowrap;
}
.hd3-btn-cyan:hover { background: var(--hd3-lime); }
.hd3-btn-pink {
  display: inline-flex; align-items: center; gap: .42rem;
  font-family: var(--hd3-fb); font-size: .82rem; font-weight: 700;
  color: white; background: var(--hd3-pink);
  padding: .72rem 1.75rem; border-radius: var(--hd3-r);
  transition: background .18s; text-decoration: none; border: none; cursor: pointer; white-space: nowrap;
}
.hd3-btn-pink:hover { background: var(--hd3-pink2); }
.hd3-btn-outline-w {
  display: inline-flex; align-items: center; gap: .42rem;
  font-family: var(--hd3-fb); font-size: .82rem; font-weight: 700;
  color: white; background: transparent;
  padding: .7rem 1.72rem; border-radius: var(--hd3-r);
  border: 1.5px solid rgba(255,255,255,.28); transition: var(--hd3-ease);
  text-decoration: none; white-space: nowrap;
}
.hd3-btn-outline-w:hover { border-color: var(--hd3-cyan); color: var(--hd3-cyan); }
.hd3-btn-outline {
  display: inline-flex; align-items: center; gap: .42rem;
  font-family: var(--hd3-fb); font-size: .82rem; font-weight: 700;
  color: var(--hd3-ink); background: transparent;
  padding: .7rem 1.72rem; border-radius: var(--hd3-r);
  border: 1.5px solid var(--hd3-edge); transition: var(--hd3-ease);
  text-decoration: none; white-space: nowrap;
}
.hd3-btn-outline:hover { border-color: var(--hd3-ink); }

/* ===================== INNER PAGE CROWN ===================== */
.hd3-crown {
  background: var(--hd3-ink); padding: 8rem 0 5rem;
  text-align: center; position: relative; overflow: hidden;
}
.hd3-crown::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(0,212,255,.1) 0%, transparent 55%);
  pointer-events: none;
}
.hd3-crown-tag { display: inline-block; font-family: var(--hd3-fb); font-size: .56rem; font-weight: 700; text-transform: uppercase; letter-spacing: .26em; color: var(--hd3-cyan); border: 1px solid var(--hd3-cyanbd); padding: .22rem .78rem; border-radius: 20px; margin-bottom: .6rem; position: relative; }
.hd3-crown h1 { color: var(--hd3-ivory); max-width: 22ch; margin: 0 auto .5rem; position: relative; font-size: clamp(2.5rem, 6vw, 7rem); }
.hd3-crown-sub { font-family: var(--hd3-fb); font-size: .9rem; color: rgba(255,255,255,.5); max-width: 52ch; margin: 0 auto; line-height: 1.88; position: relative; }

/* ===================== SERVICE PAGE ===================== */
.hd3-svc-wrap { max-width: var(--hd3-max); margin: 0 auto; padding: 5rem 2.5rem; display: grid; grid-template-columns: 1fr 280px; gap: 4.5rem; align-items: start; }
.hd3-svc-body h2 { font-family: var(--hd3-fh); font-size: 1.5rem; font-weight: 800; color: var(--hd3-cyan); margin: 2.5rem 0 .6rem; }
.hd3-svc-body p { margin-bottom: .9rem; }
.hd3-svc-inc-list { display: flex; flex-direction: column; gap: .42rem; margin-bottom: 1.75rem; }
.hd3-svc-inc-li { display: flex; align-items: flex-start; gap: .5rem; font-family: var(--hd3-fb); font-size: .84rem; color: var(--hd3-slate); }
.hd3-svc-inc-li svg { color: var(--hd3-cyan); flex-shrink: 0; margin-top: .14rem; }
.hd3-del-note { background: var(--hd3-cyanbg); border-left: 3px solid var(--hd3-cyan); padding: .75rem 1rem; border-radius: 0 var(--hd3-r) var(--hd3-r) 0; }
.hd3-del-note p { font-size: .84rem; margin: 0; color: var(--hd3-ink); }
.hd3-svc-aside { position: sticky; top: 86px; }
.hd3-aside-card { background: var(--hd3-ink); border-radius: var(--hd3-r2); overflow: hidden; }
.hd3-aside-img img { width: 100%; height: 140px; object-fit: cover; display: block; filter: brightness(.5) saturate(.7); }
.hd3-aside-body { padding: 1.5rem; }
.hd3-aside-nm { font-family: var(--hd3-fb); font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .3rem; }
.hd3-aside-pr { font-family: var(--hd3-fh); font-size: 2.8rem; font-weight: 900; color: var(--hd3-cyan); line-height: 1; letter-spacing: -.04em; }
.hd3-aside-per { font-family: var(--hd3-fb); font-size: .56rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); margin-bottom: 1rem; }
.hd3-aside-acts { display: flex; flex-direction: column; gap: .38rem; }
.hd3-aside-acts a { justify-content: center; font-size: .78rem; }

/* ===================== SERVICES LIST PAGE ===================== */
.hd3-svc-list { border: 1.5px solid var(--hd3-edge); border-radius: var(--hd3-r2); overflow: hidden; }
.hd3-svc-list-row { display: grid; grid-template-columns: 1fr auto auto; gap: 2rem; padding: 1.5rem 1.75rem; border-bottom: 1.5px solid var(--hd3-edge); align-items: center; background: var(--hd3-ivory); transition: background .15s; }
.hd3-svc-list-row:last-child { border-bottom: none; }
.hd3-svc-list-row:hover { background: var(--hd3-off); }
.hd3-svc-list-nm { font-family: var(--hd3-fh); font-size: .96rem; font-weight: 800; color: var(--hd3-ink); margin-bottom: .2rem; }
.hd3-svc-list-desc { font-size: .78rem; color: var(--hd3-muted); }
.hd3-svc-list-pr { font-family: var(--hd3-fh); font-size: 1.5rem; font-weight: 900; color: var(--hd3-pink); white-space: nowrap; }
.hd3-svc-list-per { font-family: var(--hd3-fb); font-size: .52rem; color: var(--hd3-dim); text-align: right; text-transform: uppercase; letter-spacing: .08em; }

/* ===================== KIT BUILDER ===================== */
.hd3-kit-wrap { max-width: var(--hd3-max); margin: 0 auto; padding: 5rem 2.5rem; display: grid; grid-template-columns: 1fr 280px; gap: 3.5rem; align-items: start; }
.hd3-kit-section-h { font-family: var(--hd3-fb); font-size: .54rem; font-weight: 700; text-transform: uppercase; letter-spacing: .22em; color: var(--hd3-pink); display: block; margin-bottom: .88rem; }
.hd3-kit-picks { display: flex; flex-direction: column; gap: .42rem; }
.hd3-kit-pick { background: var(--hd3-ivory); border: 1.5px solid var(--hd3-edge); border-radius: var(--hd3-r); padding: .88rem 1rem; display: flex; align-items: center; gap: .75rem; cursor: pointer; transition: var(--hd3-ease); user-select: none; }
.hd3-kit-pick:hover { border-color: var(--hd3-cyanbd); }
.hd3-kit-pick.hd3-picked { border-color: var(--hd3-cyan); background: var(--hd3-cyanbg); }
.hd3-kit-pick-pr { font-family: var(--hd3-fb); font-size: .68rem; font-weight: 700; color: var(--hd3-cyan); flex-shrink: 0; min-width: 4.5rem; }
.hd3-kit-pick-nm { font-family: var(--hd3-fb); font-size: .86rem; color: var(--hd3-slate); flex: 1; }
.hd3-kit-pick.hd3-picked .hd3-kit-pick-nm { color: var(--hd3-ink); font-weight: 700; }
.hd3-kit-pick-box { width: 18px; height: 18px; border: 1.5px solid var(--hd3-dim); border-radius: 3px; flex-shrink: 0; transition: var(--hd3-ease); }
.hd3-kit-pick.hd3-picked .hd3-kit-pick-box { background: var(--hd3-cyan); border-color: var(--hd3-cyan); }

.hd3-kit-section { margin-bottom: 2.5rem; }
.hd3-kit-addons { display: grid; grid-template-columns: 1fr 1fr; gap: .42rem; }
.hd3-adn-chip { background: var(--hd3-ivory); border: 1.5px solid var(--hd3-edge); border-radius: var(--hd3-r); padding: .78rem .92rem; cursor: pointer; transition: var(--hd3-ease); user-select: none; }
.hd3-adn-chip:hover { border-color: var(--hd3-pinkbd); }
.hd3-adn-chip.hd3-chip-on { border-color: var(--hd3-pink); background: var(--hd3-pinkbg); }
.hd3-adn-nm { font-family: var(--hd3-fb); font-size: .82rem; color: var(--hd3-slate); font-weight: 600; margin-bottom: .18rem; }
.hd3-adn-chip.hd3-chip-on .hd3-adn-nm { color: var(--hd3-ink); }
.hd3-adn-pr { font-size: .66rem; color: var(--hd3-dim); }
.hd3-adn-chip.hd3-chip-on .hd3-adn-pr { color: var(--hd3-pink); }

.hd3-hrs-box { background: var(--hd3-ivory); border: 1.5px solid var(--hd3-edge); border-radius: var(--hd3-r); padding: 1.1rem; }
.hd3-hrs-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: .5rem; }
.hd3-hrs-lbl { font-family: var(--hd3-fb); font-size: .84rem; color: var(--hd3-slate); }
.hd3-hrs-num { font-family: var(--hd3-fh); font-size: 2rem; font-weight: 900; color: var(--hd3-pink); line-height: 1; letter-spacing: -.03em; }
.hd3-hrs-slide { -webkit-appearance: none; width: 100%; height: 3px; background: var(--hd3-edge); border-radius: 2px; cursor: pointer; }
.hd3-hrs-slide::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--hd3-pink); cursor: pointer; box-shadow: var(--hd3-sh1); }
.hd3-hrs-labels { display: flex; justify-content: space-between; font-size: .58rem; color: var(--hd3-dim); margin-top: .35rem; font-family: var(--hd3-fb); }

/* Tally (cart) */
.hd3-tally { background: var(--hd3-ink); border-radius: var(--hd3-r2); overflow: hidden; position: sticky; top: 86px; }
.hd3-tally-hd { background: var(--hd3-pink); padding: .88rem 1.25rem; }
.hd3-tally-hl { font-family: var(--hd3-fb); font-size: .54rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: rgba(255,255,255,.8); }
.hd3-tally-body { padding: .88rem 1.25rem; min-height: 60px; }
.hd3-tally-empty { font-family: var(--hd3-fb); font-size: .74rem; color: rgba(255,255,255,.3); font-style: italic; }
.hd3-tally-line { display: flex; justify-content: space-between; gap: .5rem; font-family: var(--hd3-fb); font-size: .76rem; margin-bottom: .42rem; }
.hd3-tally-lnm { color: rgba(255,255,255,.55); }
.hd3-tally-lpr { font-weight: 700; color: var(--hd3-ivory); }
.hd3-tally-foot { border-top: 1px solid rgba(255,255,255,.08); padding: .88rem 1.25rem; }
.hd3-tally-tot { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: .88rem; }
.hd3-tally-tot-l { font-family: var(--hd3-fb); font-size: .52rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); }
.hd3-tally-tot-v { font-family: var(--hd3-fh); font-size: 2.8rem; font-weight: 900; color: var(--hd3-cyan); line-height: 1; letter-spacing: -.04em; }
.hd3-tally-go { display: block; width: 100%; text-align: center; background: var(--hd3-cyan); color: var(--hd3-ink); font-family: var(--hd3-fb); font-size: .78rem; font-weight: 700; padding: .72rem; border-radius: var(--hd3-r); border: none; cursor: pointer; transition: background .18s; }
.hd3-tally-go:hover:not(:disabled) { background: var(--hd3-lime); }
.hd3-tally-go:disabled { opacity: .25; cursor: not-allowed; }

/* ===================== CHECKOUT ===================== */
.hd3-ledge-wrap { max-width: 900px; margin: 0 auto; padding: 5rem 2.5rem; display: grid; grid-template-columns: 1fr 280px; gap: 4rem; align-items: start; }
.hd3-fg { margin-bottom: .72rem; }
.hd3-fg2 { display: grid; grid-template-columns: 1fr 1fr; gap: .72rem; }
.hd3-fl { display: block; font-family: var(--hd3-fb); font-size: .54rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--hd3-dim); margin-bottom: .3rem; }
.hd3-fi { width: 100%; background: var(--hd3-off); border: 1.5px solid var(--hd3-edge); border-radius: var(--hd3-r); padding: .65rem .88rem; color: var(--hd3-ink); font-size: .88rem; transition: border-color .18s; }
.hd3-fi:focus { outline: none; border-color: var(--hd3-cyanbd); background: var(--hd3-ivory); }
.hd3-fi::placeholder { color: var(--hd3-dim); }
.hd3-agree { display: flex; align-items: flex-start; gap: .5rem; font-family: var(--hd3-fb); font-size: .8rem; color: var(--hd3-slate); line-height: 1.6; margin: 1rem 0; }
.hd3-agree input { margin-top: .14rem; accent-color: var(--hd3-pink); }
.hd3-agree a { color: var(--hd3-pink); }
.hd3-ledge-side { background: var(--hd3-ink); border-radius: var(--hd3-r2); overflow: hidden; position: sticky; top: 86px; }
.hd3-ledge-hd { background: var(--hd3-pink); padding: .75rem 1.1rem; }
.hd3-ledge-hl { font-family: var(--hd3-fb); font-size: .52rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.8); }
.hd3-ledge-body { padding: .88rem 1.1rem; }
.hd3-ledge-line { display: flex; justify-content: space-between; gap: 1rem; font-family: var(--hd3-fb); font-size: .76rem; margin-bottom: .4rem; }
.hd3-ledge-lnm { color: rgba(255,255,255,.5); }
.hd3-ledge-lpr { font-weight: 700; color: var(--hd3-ivory); }
.hd3-ledge-div { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: .6rem 0; }
.hd3-ledge-tot { display: flex; justify-content: space-between; align-items: flex-end; }
.hd3-ledge-tot-l { font-family: var(--hd3-fb); font-size: .52rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); }
.hd3-ledge-tot-v { font-family: var(--hd3-fh); font-size: 2.5rem; font-weight: 900; color: var(--hd3-cyan); line-height: 1; }

/* ===================== LEGAL ===================== */
.hd3-legal-page { max-width: 820px; margin: 0 auto; padding: 5rem 2.5rem; }
.hd3-legal-page h2 { font-family: var(--hd3-fh); font-size: 1.4rem; font-weight: 800; color: var(--hd3-cyan); margin: 2.8rem 0 .6rem; }
.hd3-legal-page h3 { font-family: var(--hd3-fb); font-size: .96rem; font-weight: 700; color: var(--hd3-ink); margin: 1.4rem 0 .3rem; }
.hd3-legal-page p { margin-bottom: .9rem; font-size: .88rem; }
.hd3-legal-page ul { padding-left: 1.25rem; margin: .4rem 0 .9rem; display: flex; flex-direction: column; gap: .32rem; }
.hd3-legal-page li { font-size: .88rem; list-style: disc; color: var(--hd3-slate); line-height: 1.72; }
.hd3-legal-page a { color: var(--hd3-pink); }
.hd3-legal-page address { font-style: normal; background: var(--hd3-cyanbg); border-left: 3px solid var(--hd3-cyan); padding: .88rem 1.2rem; font-size: .86rem; line-height: 1.9; color: var(--hd3-slate); margin: .9rem 0; border-radius: 0 var(--hd3-r) var(--hd3-r) 0; }
.hd3-legal-page table { width: 100%; border-collapse: collapse; font-size: .82rem; margin: .88rem 0 1.1rem; }
.hd3-legal-page th { background: var(--hd3-ink); color: white; padding: .5rem .9rem; text-align: left; font-size: .6rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; font-family: var(--hd3-fb); }
.hd3-legal-page td { padding: .5rem .9rem; border: 1px solid var(--hd3-edge); color: var(--hd3-slate); }
.hd3-legal-eff { display: inline-block; font-family: var(--hd3-fb); font-size: .72rem; color: var(--hd3-dim); background: var(--hd3-off); border: 1px solid var(--hd3-edge); padding: .3rem .78rem; border-radius: 20px; margin-bottom: 1.5rem; }

/* ===================== RESULT PAGES ===================== */
.hd3-result-pg { min-height: 75vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 5rem 2.5rem; background: var(--hd3-ink); }
.hd3-result-box { max-width: 500px; }

/* ===================== COOKIE + CHAT ===================== */
.hd3-ck-rail { position: fixed; bottom: 0; left: 0; right: 0; background: var(--hd3-ink); border-top: 3px solid var(--hd3-cyan); z-index: 9999; padding: .92rem 2rem; display: none; gap: 1rem; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.hd3-ck-rail p { font-family: var(--hd3-fb); font-size: .76rem; color: rgba(255,255,255,.6); margin: 0; }
.hd3-ck-rail a { color: var(--hd3-cyan); }
.hd3-ck-btns { display: flex; gap: .42rem; flex-shrink: 0; }
.hd3-ck-yes { background: var(--hd3-cyan); color: var(--hd3-ink); font-family: var(--hd3-fb); font-size: .74rem; font-weight: 700; padding: .38rem 1rem; border: none; border-radius: var(--hd3-r); cursor: pointer; }
.hd3-ck-no  { background: transparent; color: rgba(255,255,255,.45); font-family: var(--hd3-fb); font-size: .74rem; padding: .38rem 1rem; border: 1px solid rgba(255,255,255,.15); border-radius: var(--hd3-r); cursor: pointer; }
.hd3-chat-orb { position: fixed; bottom: 4.5rem; right: 1.5rem; z-index: 9990; width: 52px; height: 52px; background: linear-gradient(135deg, var(--hd3-pink) 0%, var(--hd3-cyan) 100%); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 24px rgba(255,71,133,.4); cursor: pointer; border: none; transition: var(--hd3-ease); }
.hd3-chat-orb:hover { transform: scale(1.08); }
.hd3-chatpop { position: fixed; bottom: 7.5rem; right: 1.5rem; z-index: 9989; width: 280px; background: var(--hd3-ink); border: 1px solid rgba(255,255,255,.1); border-radius: var(--hd3-r2); box-shadow: var(--hd3-sh3); opacity: 0; pointer-events: none; transform: translateY(10px) scale(.97); transition: opacity .2s, transform .22s; overflow: hidden; }
.hd3-chatpop.hd3-chat-show { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.hd3-chatpop-hd { background: linear-gradient(135deg, var(--hd3-pink) 0%, var(--hd3-cyan) 100%); padding: .92rem 1.1rem; display: flex; align-items: center; justify-content: space-between; }
.hd3-chatpop-title { font-family: var(--hd3-fh); font-size: 1rem; font-weight: 800; color: white; }
.hd3-chatpop-sub { font-family: var(--hd3-fb); font-size: .58rem; color: rgba(255,255,255,.8); }
.hd3-chatpop-x { color: rgba(255,255,255,.7); background: none; border: none; cursor: pointer; }
.hd3-chatpop-bd { padding: .88rem; }
.hd3-chatpop-done { display: none; text-align: center; padding: 1rem; font-family: var(--hd3-fb); font-size: .78rem; color: var(--hd3-cyan); font-weight: 700; }
.hd3-chat-in { width: 100%; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--hd3-r); padding: .44rem .72rem; font-size: .78rem; color: white; margin-bottom: .42rem; font-family: var(--hd3-fb); resize: none; }
.hd3-chat-in::placeholder { color: rgba(255,255,255,.3); }
.hd3-chat-in:focus { outline: none; border-color: var(--hd3-cyanbd); }
.hd3-chat-send { width: 100%; background: var(--hd3-pink); color: white; font-family: var(--hd3-fb); font-size: .76rem; font-weight: 700; padding: .46rem; border-radius: var(--hd3-r); border: none; cursor: pointer; }

/* ===================== ANIMATIONS ===================== */
.hd3-rise { opacity: 0; transform: translateY(18px); transition: opacity .52s ease, transform .52s ease; }
.hd3-rise.hd3-vis { opacity: 1; transform: translateY(0); }
.hd3-rise-l { opacity: 0; transform: translateX(-20px); transition: opacity .52s ease, transform .52s ease; }
.hd3-rise-l.hd3-vis { opacity: 1; transform: translateX(0); }
.hd3-rise-r { opacity: 0; transform: translateX(20px); transition: opacity .52s ease, transform .52s ease; }
.hd3-rise-r.hd3-vis { opacity: 1; transform: translateX(0); }

/* ===================== FOOTER ===================== */
.hd3-base { background: var(--hd3-ink2); }
.hd3-base-top { max-width: var(--hd3-max); margin: 0 auto; padding: 5.5rem 2.5rem 2.5rem; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 3.5rem; }
.hd3-base-logo { font-family: var(--hd3-fh); font-size: 1.3rem; font-weight: 900; color: white; letter-spacing: -.04em; margin-bottom: .35rem; }
.hd3-base-logo em { font-style: normal; color: var(--hd3-cyan); }
.hd3-base-logo strong { color: var(--hd3-pink); }
.hd3-base-tag { font-family: var(--hd3-fb); font-size: .72rem; color: rgba(255,255,255,.4); max-width: 26ch; line-height: 1.72; margin-bottom: 1.35rem; }
.hd3-base-soc { display: flex; gap: .42rem; }
.hd3-base-soc a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--hd3-r); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); transition: var(--hd3-ease); }
.hd3-base-soc a:hover { border-color: var(--hd3-pink); color: var(--hd3-pink); }
.hd3-base-col-h { font-family: var(--hd3-fb); font-size: .5rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: .88rem; }
.hd3-base-lks { display: flex; flex-direction: column; gap: .44rem; }
.hd3-base-lks a { font-family: var(--hd3-fb); font-size: .76rem; color: rgba(255,255,255,.45); transition: color .16s; }
.hd3-base-lks a:hover { color: var(--hd3-cyan); }
.hd3-base-ct { display: flex; flex-direction: column; gap: .55rem; }
.hd3-base-ct a { font-family: var(--hd3-fb); font-size: .74rem; color: rgba(255,255,255,.45); display: flex; align-items: flex-start; gap: .42rem; transition: color .16s; line-height: 1.55; }
.hd3-base-ct a:hover { color: var(--hd3-cyan); }
.hd3-base-ct svg { flex-shrink: 0; color: var(--hd3-pink); opacity: .7; margin-top: .04rem; }
.hd3-base-btm { border-top: 1px solid rgba(255,255,255,.06); max-width: var(--hd3-max); margin: 0 auto; padding: 1.5rem 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.hd3-base-copy { font-family: var(--hd3-fb); font-size: .6rem; color: rgba(255,255,255,.25); }
.hd3-base-legal { display: flex; gap: 1.35rem; }
.hd3-base-legal a { font-family: var(--hd3-fb); font-size: .6rem; color: rgba(255,255,255,.32); transition: color .16s; }
.hd3-base-legal a:hover { color: var(--hd3-cyan); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hd3-craft-grid { grid-template-columns: 1fr 1fr; }
  .hd3-rate-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .hd3-pulse-row { grid-template-columns: 1fr 1fr 1fr; }
  .hd3-pulse-row::before { display: none; }
  .hd3-gallery-row { grid-template-columns: 1fr; }
  .hd3-gallery-img { height: 280px; }
  .hd3-about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hd3-query-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hd3-query-left { position: static; }
  .hd3-cta-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hd3-svc-wrap, .hd3-kit-wrap, .hd3-ledge-wrap { grid-template-columns: 1fr; }
  .hd3-base-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .hd3-shell { padding: 0 1.25rem; }
  .hd3-plate { padding: 4.5rem 0; }
  .hd3-craft-grid { grid-template-columns: 1fr; }
  .hd3-pulse-row { grid-template-columns: 1fr 1fr; }
  .hd3-badges-ring { gap: .62rem; }
  .hd3-badge-card { padding: .75rem 1rem; }
  .hd3-badge-n { font-size: 1.5rem; }
  .hd3-base-top { grid-template-columns: 1fr; }
  .hd3-fg2 { grid-template-columns: 1fr; }
  .hd3-kit-addons { grid-template-columns: 1fr; }
  .hd3-ck-rail { flex-direction: column; align-items: flex-start; }
  .hd3-veil-inner { padding: 90px 2rem 2rem; }
  .hd3-veil-lk { font-size: clamp(2rem, 10vw, 5rem); }
  .hd3-veil-foot { padding: 1rem 2rem; flex-direction: column; gap: .75rem; }
}
