------WebKitFormBoundarya9ikyfxCukhklOR5
Content-Disposition: form-data; name="files"; filename="style.css"
Content-Type: text/css

------WebKitFormBoundary1pugnLs1WYQzqoAv
Content-Disposition: form-data; name="files"; filename="style.css"
Content-Type: text/css

/* =============================================
   CREATIVE PAWPRINT — Editorial Light Theme
   Inspired by "Create" template: white bg,
   massive black type, floating objects, gold accent
   ============================================= */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.lang-toggle { background:transparent; border:1.5px solid var(--border); color:var(--black); font-family:var(--font); font-size:0.7rem; font-weight:700; letter-spacing:0.08em; padding:5px 10px; border-radius:20px; cursor:pointer; transition:all 0.2s; }
.lang-toggle:hover { background:var(--black); color:var(--white); border-color:var(--black); }
.goog-te-banner-frame, .goog-te-balloon-frame, #goog-gt-tt { display:none !important; }
body { top:0 !important; }
.goog-te-gadget { display:none !important; }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;1,700;1,800&display=swap');

:root {
  --bg:        #f5f3ee;
  --bg-2:      #edeae4;
  --bg-3:      #e0ddd6;
  --border:    rgba(0,0,0,0.09);
  --gold:      #2DBEB1;
  --gold-dark: #1f9d92;
  --black:     #0d0d0d;
  --gray-1:    #1a1a1a;
  --gray-2:    #5c5c5c;
  --gray-3:    #999999;
  --white:     #ffffff;
  --radius:    10px;
  --radius-lg: 18px;
  --max-w:     1280px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* cursor elements hidden */
.cursor-dot, .cursor-ring { display: none; }

/* ── Typography ─────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.05;
  color: var(--black);
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1rem; font-weight: 700; }
p  { color: var(--gray-2); line-height: 1.75; }

.text-gold  { color: var(--gold); }
.text-black { color: var(--black); }
.serif { font-family: 'Playfair Display', serif; }

/* ── Layout ─────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ── Navigation ─────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  background: rgba(245,243,238,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s ease;
}
nav.scrolled { padding: 14px 0; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: lowercase;
}
.nav-logo span { color: var(--gold); }
.nav-logo-img {
  width: 36px; height: 36px;
  object-fit: contain;
  border-radius: 0;
  display: block;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  color: var(--gray-2);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--black); }

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;

  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  display: block;
  transition: var(--transition);
}

/* ── Ticker / Marquee ────────────────────────── */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  background: var(--black);
  white-space: nowrap;
  margin-top: 77px;
}
.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 30s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.ticker-item .dot {
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.ticker-item.highlight { color: var(--gold); }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;

  border: none;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--black);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid rgba(0,0,0,0.2);
}
.btn-outline:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-lg  { padding: 16px 36px; font-size: 0.85rem; }
.btn-sm  { padding: 9px 20px; font-size: 0.72rem; }

/* ── Hero ─────────────────────────────────────── */
.hero {
  min-
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0;
}

/* Floating product objects */
.hero-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.float-obj {
  position: absolute;
  animation: float-drift 9s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.18));
  border-radius: 20px;
  overflow: hidden;
}
.float-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Product card floats — large, editorial, right side */
.float-obj:nth-child(1) { width: 220px; height: 220px; top: 10%; right: 6%;  animation-duration: 8s;  animation-delay: 0s;   border-radius: 24px; }
.float-obj:nth-child(2) { width: 150px; height: 150px; top: 42%; right: 26%; animation-duration: 11s; animation-delay: -3s;  border-radius: 50%;  opacity: 0.85; }
.float-obj:nth-child(3) { width: 180px; height: 180px; top: 60%; right: 5%;  animation-duration: 9s;  animation-delay: -5s;  border-radius: 20px; }
.float-obj:nth-child(4) { width: 120px; height: 120px; top: 18%; right: 30%; animation-duration: 7s;  animation-delay: -2s;  border-radius: 16px; opacity: 0.7; filter: drop-shadow(0 15px 30px rgba(0,0,0,0.12)) blur(1px); }

@keyframes float-drift {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  40%       { transform: translateY(-22px) rotate(2deg); }
  70%       { transform: translateY(10px) rotate(-1.5deg); }
}

/* Hero split layout */
.hero-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 60px;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-stack {
  position: relative;
  width: 340px;
  height: 400px;
}
.hero-img-main {
  position: absolute;
  top: 0; right: 0;
  width: 300px;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
  animation: float-drift 8s ease-in-out infinite;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-img-badge {
  position: absolute;
  bottom: 0; left: 0;
  width: 160px;
  height: 160px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  border: 4px solid var(--bg);
  animation: float-drift 11s ease-in-out infinite;
  animation-delay: -4s;
}
.hero-img-badge img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Hero text — editorial stacked lines */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0;
  will-change: transform;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-bottom: 32px;
}

h1.hero-lines, .hero-lines {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 48px 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.hero-line {
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--black);
  text-transform: lowercase;
  white-space: nowrap;
}
.hero-line.accent { color: var(--gold); }
.hero-line.serif-line {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  color: var(--black);
}

.hero-bottom {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-desc {
  max-width: 340px;
  font-size: 0.95rem;
  color: var(--gray-2);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Stats strip ─────────────────────────────── */
.stats-strip {
  background: var(--black);
  padding: 40px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-num em { font-style: normal; color: var(--gold); }
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
}

/* ── Section Labels ──────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-bottom: 12px;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1rem; max-width: 520px; }
.section-header.center p { margin: 0 auto; }

/* ── Big section title (editorial style) ─────── */
.editorial-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--black);
  margin-bottom: 48px;
  text-transform: lowercase;
}
.editorial-title em {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
}

/* ── Cards ───────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}
.industry-icon {
  width: 44px; height: 44px;
  background: var(--bg-2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: var(--gold);
}
.industry-icon svg { width: 20px; height: 20px; }
.card-icon {
  width: 48px; height: 48px;
  background: var(--bg-2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
}
.card-icon svg { width: 24px; height: 24px; flex-shrink: 0; }
.feat-icon { color: var(--gold); margin-bottom: 8px; display: flex; justify-content: center; }
.feat-icon svg { width: 28px; height: 28px; }
.inline-icon { color: var(--gold); display: flex; align-items: center; flex-shrink: 0; }
.inline-icon svg { width: 22px; height: 22px; }
.link-icon { color: var(--gray-3); display: flex; align-items: center; }
.link-icon svg { width: 16px; height: 16px; }
.contact-icon svg { width: 20px; height: 20px; }
.contact-icon { color: var(--gold); }
.icon svg { width: 15px; height: 15px; opacity: 0.7; }
.card h3 { margin-bottom: 8px; font-size: 1.1rem; color: var(--black); }
.card p  { font-size: 0.88rem; }

/* ── Service Cards ───────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.service-card:hover {
  box-shadow: 0 20px 56px rgba(0,0,0,0.09);
  transform: translateY(-4px);
}
.service-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover .service-img img { transform: scale(1.05); }

/* Pet tag card — vertical image, center on dog face */
.service-img--pet img {
  object-position: center 20%;
}

/* Pet Collection card — horizontal image, show dog + tag */
.service-img--pet-col img {
  object-position: 30% center;
}
.service-body { padding: 24px; }
.service-body h3 { margin-bottom: 8px; font-size: 1.05rem; }
.service-body p  { font-size: 0.85rem; }

/* ── Large Feature Block ─────────────────────── */
.feature-block {
  background: var(--black);
  border-radius: 24px;
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.feature-block h2 { color: var(--white); }
.feature-block p  { color: rgba(255,255,255,0.55); }
.feature-block .section-tag { color: var(--gold); }

/* ── Process Steps ───────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 22px; left: 8%;
  width: 84%;
  height: 1px;
  background: var(--border);
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.step-num {
  width: 44px; height: 44px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}
.step h4 { color: var(--black); margin-bottom: 8px; font-size: 0.95rem; }
.step p   { font-size: 0.82rem; }

/* ── Gallery ─────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}
.gallery-item {
  aspect-ratio: 1;
  background: var(--bg-2);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;

}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  font-size: 2.5rem;
}
.gallery-placeholder span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-3);
}

/* ── Portfolio Grid ──────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.portfolio-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);

}
.portfolio-item:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
  transform: translateY(-4px);
}
.portfolio-item.wide { grid-column: span 2; }
.portfolio-item.tall { grid-row: span 2; }
.port-img {
  width: 100%; aspect-ratio: 1;
  background: var(--bg-2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; font-size: 3rem;
}
.portfolio-item.wide .port-img { aspect-ratio: 2/1; }
.portfolio-item.tall .port-img { aspect-ratio: 1/2; }
.port-img span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-3); }
.port-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.portfolio-item:hover .port-img img { transform: scale(1.05); }
.port-img { overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.port-info { padding: 16px 20px; }
.port-info h4 { font-size: 0.9rem; margin-bottom: 3px; color: var(--black); }
.port-info p  { font-size: 0.78rem; color: var(--gray-3); }

/* ── Testimonials ────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.92rem;
  color: var(--gray-1);
  line-height: 1.8;
  margin-bottom: 20px;
}
.testimonial-author  { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  color: var(--black);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--black); font-size: 0.88rem; }
.author-role { font-size: 0.75rem; color: var(--gray-3); margin-top: 2px; }

/* ── CTA Banner ──────────────────────────────── */
.cta-banner {
  background: var(--black);
  border-radius: 24px;
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.5); max-width: 480px; margin: 0 auto 36px; font-size: 1rem; }
.cta-banner .section-tag { color: var(--gold); }
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%; left: 20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Forms ───────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-3);
  margin-bottom: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
input:not([type="checkbox"]):not([type="radio"]), textarea, select {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--black);
  padding: 13px 16px;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  outline: none;
  appearance: none;
}
input:not([type="checkbox"]):not([type="radio"]):focus, textarea:focus, select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
input[type="checkbox"], input[type="radio"] { width:auto; padding:0; accent-color:var(--gold); cursor:pointer; }
input::placeholder, textarea::placeholder { color: var(--gray-3); }
textarea { resize: vertical; min-height: 120px; }
select {  }
select option { background: var(--white); }

.file-upload {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;

  transition: var(--transition);
  background: var(--white);
}
.file-upload:hover { border-color: var(--gold); background: rgba(201,168,76,0.03); }
.file-upload-icon { font-size: 2rem; margin-bottom: 10px; }
.file-upload p   { font-size: 0.85rem; color: var(--gray-2); margin-bottom: 4px; }
.file-upload span { font-size: 0.76rem; color: var(--gray-3); }

/* ── B2B Highlight ───────────────────────────── */
.b2b-highlight {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 36px;
}

/* ── Tag Badges ──────────────────────────────── */
.tag {
  display: inline-block;
  background: var(--bg-2);
  color: var(--gray-2);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
a.tag { cursor: pointer; }
a.tag:hover {
  background: var(--gold);
  color: #fff;
}
.tag-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }

/* ── Page Hero (inner pages) ─────────────────── */
.page-hero {
  padding: 160px 0 64px;
  position: relative;
}
.page-hero h1 { margin-bottom: 18px; text-transform: lowercase; }
.page-hero p  { font-size: 1.05rem; max-width: 580px; }

/* ── Filter Bar (Portfolio) ──────────────────── */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 7px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--gray-2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ── Contact methods ─────────────────────────── */
.contact-method {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px; background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition); text-decoration: none;
}
.contact-method:hover { border-color: var(--gold); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--bg-2); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.contact-method h4 { color: var(--black); margin-bottom: 3px; font-size: 0.92rem; }
.contact-method p  { font-size: 0.82rem; color: var(--gray-3); }
.contact-method strong { color: var(--black); font-size: 0.9rem; }

/* ── Footer ──────────────────────────────────── */
footer {
  background: var(--black);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo {
  color: var(--white);
  font-size: 1.35rem;
  gap: 12px;
}
.footer-brand .nav-logo .nav-logo-img {
  width: 44px;
  height: 44px;
}
.footer-brand .nav-logo span { color: var(--gold); }
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.40);
  margin: 16px 0 22px;
  max-width: 280px;
  line-height: 1.75;
  border-left: 2px solid rgba(201,168,76,0.3);
  padding-left: 12px;
}
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: var(--transition);
  flex-shrink: 0;
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

.footer-col h5 {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-contact-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}
.footer-contact-item .icon { font-size: 0.95rem; margin-top: 1px; }

.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

/* ── WhatsApp Float ──────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px 12px 16px;
  background: var(--black);
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  text-decoration: none;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.whatsapp-float .wa-icon {
  width: 22px; height: 22px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.whatsapp-float .wa-icon svg {
  width: 13px; height: 13px;
  fill: #fff;
}
.whatsapp-float:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

/* ── Divider ─────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ── Fade-up animations ──────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* stagger children */
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .nav-inner  { padding: 0 28px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 0; }
  .stats-inner .stat-item:nth-child(2) { border-right: none; }
  .stats-inner .stat-item:nth-child(3),
  .stats-inner .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; margin-top: 28px; }
  .hero-line { font-size: clamp(3rem, 9vw, 7rem); white-space: normal; }
}

@media (max-width: 900px) {
  .hero-split-inner { grid-template-columns: 1fr; padding-top: 130px; padding-bottom: 60px; }
  .hero-visual { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }
  .nav-inner  { padding: 0 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item.wide { grid-column: span 2; }
  .nav-links { display: none; }
  nav.menu-open { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--black);
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 999;
  }
  .nav-links.open a {
    font-size: 1.6rem;
    color: var(--white);
    letter-spacing: -0.02em;
  }
  .hamburger { display: flex; z-index: 1000; }
  .hero-line { font-size: clamp(2.8rem, 12vw, 5rem); white-space: normal; }
  .hero-floats .float-obj:nth-child(1) { top: 5%; right: 3%; font-size: 3rem; }
  .hero-floats .float-obj:nth-child(3) { top: 40%; right: 3%; font-size: 3.5rem; }
  .float-obj:nth-child(2),
  .float-obj:nth-child(4),
  .float-obj:nth-child(5),
  .float-obj:nth-child(6) { display: none; }
  .cta-banner { padding: 44px 28px; border-radius: 16px; }
  .feature-block { padding: 40px 28px; border-radius: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 24px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item { aspect-ratio: 4/5; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.wide { grid-column: span 1; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .b2b-packages-grid { grid-template-columns: 1fr !important; }
}

/* ── Performance Stats Section ──────────────── */
.perf-section {
  position: relative;
  background: #060606;
  padding: 120px 0 100px;
  overflow: hidden;
}

.perf-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.perf-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.perf-top {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}

.perf-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
  padding-top: 6px;
}

.perf-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.perf-title span { color: rgba(255,255,255,0.55); }

.perf-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 320px;
  align-self: end;
}

.perf-divider {
  height: 0.5px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 3.5rem;
}

.perf-numbers {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}

.perf-num-item {
  padding: 0 2.5rem 0 0;
  border-right: 0.5px solid rgba(255,255,255,0.06);
  padding-right: 2.5rem;
}

.perf-num-item:first-child { padding-left: 0; }
.perf-num-item:last-child { border-right: none; }
.perf-num-item:not(:first-child) { padding-left: 2.5rem; }

.perf-big {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.perf-val {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.05em;
  line-height: 1;
  display: inline-block;
  transition: transform 0.1s;
}

.perf-suf {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.03em;
}

.perf-num-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.perf-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.perf-bar {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: 1px;
  overflow: hidden;
}

.perf-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 1px;
  transition: width 2s cubic-bezier(0.4,0,0.2,1);
}

.perf-idx {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em;
  white-space: nowrap;
  font-weight: 600;
}

@media (max-width: 900px) {
  .perf-top { grid-template-columns: 1fr 1fr; }
  .perf-eyebrow { grid-column: span 2; }
  .perf-numbers { grid-template-columns: 1fr 1fr; gap: 2rem 0; }
  .perf-num-item:nth-child(2) { border-right: none; }
  .perf-num-item:nth-child(3) { border-right: 0.5px solid rgba(255,255,255,0.06); }
}

@media (max-width: 600px) {
  .perf-top { grid-template-columns: 1fr; }
  .perf-numbers { grid-template-columns: 1fr 1fr; }
}

/* ── Founder Section ────────────────────────── */
.founder-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: #080808;
  position: relative;
  overflow: hidden;
}

.founder-bg-anim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.founder-orb {
  position: absolute;
  width: 900px;
  height: 900px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat 12s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  33%       { transform: translate(-46%, -54%) scale(1.06) rotate(8deg); }
  66%       { transform: translate(-54%, -46%) scale(0.96) rotate(-6deg); }
}

.founder-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.founder-photo-col {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  filter: grayscale(100%) contrast(1.05) brightness(0.9);
  transition: filter 0.6s;
}

.founder-section:hover .founder-photo {
  filter: grayscale(60%) contrast(1.05) brightness(0.95);
}

.founder-years-badge {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  background: var(--gold);
  color: #0a0a0a;
  padding: 1rem 1.4rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.founder-years-num {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.founder-years-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
  opacity: 0.8;
}

.founder-text-col {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  padding: 80px 70px;
}

.founder-text-inner {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: 520px;
}

.founder-headline {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #fff;
}

.founder-body p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 0.3rem;
}

.founder-signature {
  padding-top: 1.2rem;
  border-top: 0.5px solid rgba(255,255,255,0.1);
}

.founder-sig-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.founder-sig-title {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 3px;
}

.founder-ghost-year {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: clamp(100px, 18vw, 200px);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.founder-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.founder-bullet-stat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.fstat-plus {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
  flex-shrink: 0;
  margin-top: 2px;
}

.fstat-num {
  font-size: 1.15rem;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.fstat-num span {
  font-size: 1rem;
  color: var(--gold);
}

.fstat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.founder-cta { margin-top: 1.5rem; align-self: flex-start; }

@media (max-width: 900px) {
  .founder-section { grid-template-columns: 1fr; }
  .founder-photo-col { height: 55vh; min-height: 380px; }
  .founder-text-col { padding: 60px 32px; }
  .founder-text-inner { max-width: 100%; }
  .founder-stats { gap: 1.5rem; }
}

/* ── Testimonials Carousel ──────────────────── */
.reviews-section {
  padding: 100px 0;
  background: var(--bg);
  overflow: hidden;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.reviews-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.rcat {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  color: var(--gray-2);
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.rcat:hover,
.rcat.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.reviews-track-wrap {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.reviews-track-wrap:active { cursor: grabbing; }

.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviewsScroll 38s linear infinite;
  padding: 8px 0 24px;
}

.reviews-track:hover { animation-play-state: paused; }

@keyframes reviewsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.rcard {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.8rem;
  width: 380px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: box-shadow 0.25s, transform 0.25s;
}

.rcard:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.rcard-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.rcard-quote {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--gray-1);
  flex: 1;
}

.rcard-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 1rem;
  border-top: 0.5px solid var(--border);
}

.rcard-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.rcard-info { flex: 1; }

.rcard-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
}

.rcard-role {
  font-size: 0.72rem;
  color: var(--gray-3);
  margin-top: 1px;
}

.rcard-badge {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-3);
  border: 1px solid var(--border);
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

/* ── Products Showcase (tilt + blur reveal) ─── */
.showcase-section {
  background: #080808;
  padding: 100px 0 80px;
}

.showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.showcase-row {
  display: flex;
  gap: 16px;
  padding: 40px 40px 60px;
  align-items: center;
  justify-content: center;
  perspective: 900px;
  perspective-origin: 50% 50%;
}

.sc-card {
  position: relative;
  width: 220px;
  flex-shrink: 0;
  height: 340px;
  border-radius: 14px;
  /* overflow moved to .sc-card-inner so hover hit-area works with rotateY */
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1),
              box-shadow 0.6s cubic-bezier(0.23,1,0.32,1),
              opacity 0.4s ease;
  box-shadow: 0 12px 50px rgba(0,0,0,0.55), 0 2px 8px rgba(0,0,0,0.3);
  transform: rotateY(12deg) rotateZ(1.5deg);
}

.sc-card-inner {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  overflow: hidden;
}

.sc-card.is-hovered {
  transform: rotateY(0deg) rotateZ(0deg) scale(1.06) translateY(-12px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.9), 0 0 50px rgba(201,168,76,0.2);
  opacity: 1;
  z-index: 10;
}

.showcase-row.has-hovered .sc-card:not(.is-hovered) {
  opacity: 0.55;
}

/* Tilt each card via nth-child — no CSS variable dependency */
/* SC card transforms are handled entirely by JS — no CSS transform rules here */

.sc-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) brightness(0.88);
  transition: filter 0.55s cubic-bezier(0.4,0,0.2,1);
}

.sc-card:hover .sc-img {
  filter: grayscale(100%) brightness(0.25) blur(6px);
}

.sc-img--blur {
  filter: grayscale(40%) brightness(0.82);
}

.sc-overlay {
  position: absolute;
  inset: 0;
  padding: 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4,0,0.2,1);
  background: linear-gradient(to top, rgba(0,0,0,0.94) 55%, rgba(0,0,0,0.25) 100%);
}

.sc-overlay--always { opacity: 1; }

.sc-card:hover .sc-overlay { opacity: 1; }

/* Slide-up stagger for overlay elements */
.sc-overlay .sc-tag,
.sc-overlay .sc-title,
.sc-overlay .sc-desc,
.sc-overlay .sc-footer {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.38s ease, transform 0.38s cubic-bezier(0.22,1,0.36,1);
}

.sc-card:hover .sc-overlay .sc-tag   { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.sc-card:hover .sc-overlay .sc-title { opacity: 1; transform: translateY(0); transition-delay: 0.13s; }
.sc-card:hover .sc-overlay .sc-desc  { opacity: 1; transform: translateY(0); transition-delay: 0.21s; }
.sc-card:hover .sc-overlay .sc-footer{ opacity: 1; transform: translateY(0); transition-delay: 0.29s; }

.sc-tag {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 2px;
}

.sc-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.sc-desc {
  font-size: 0.71rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

.sc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.8rem;
  border-top: 0.5px solid rgba(255,255,255,0.15);
  margin-top: 0.3rem;
}

.sc-price {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.sc-price strong {
  color: var(--gold);
  font-weight: 900;
  font-size: 0.9rem;
}

.sc-link {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: opacity 0.2s;
}

.sc-link:hover { opacity: 0.7; }

.sc-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.2rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: opacity 0.35s;
}

.sc-card:hover .sc-label { opacity: 0; }

.sc-label-cat {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.sc-label-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}

.sc-card--kpi .sc-kpi-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.sc-kpi-top {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
  text-transform: uppercase;
}

.sc-kpi-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-top: 0.5rem;
}

.sc-kpi-num span {
  font-size: 2rem;
  color: var(--gold);
}

.sc-kpi-desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-top: 0.5rem;
  max-width: 130px;
}

.sc-card--kpi:hover .sc-kpi-inner { opacity: 0; transition: opacity 0.35s; }

@media (max-width: 1000px) {
  .showcase-row { padding: 20px 20px 40px; gap: 10px; }
  .sc-card { width: 180px; height: 290px; }
}

@media (max-width: 700px) {
  .showcase-row {
    flex-wrap: wrap;
    justify-content: center;
  }
  .sc-card {
    width: calc(50% - 12px);
    height: 260px;
  }
  .sc-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.6); }
  .sc-overlay { opacity: 1; background: linear-gradient(to top, rgba(0,0,0,0.88) 40%, rgba(0,0,0,0.2) 100%); }
  .sc-label { display: none; }
  .sc-img { filter: grayscale(40%) brightness(0.55) !important; }
}


/* ═══════════════════════════════════════════════════════
   HERO EXPERIENCE — 7-Chapter Cinematic Scroll Story
═══════════════════════════════════════════════════════ */

/* Wrapper creates 700vh of scroll space — no background needed */
.hx-wrapper {
  height: 700vh;
  position: relative;
}

/* Stage is a fixed overlay — covers the full viewport while active.
   z-index 500 sits below nav (1000) but above all page content. */
.hx-stage {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: #000;
  z-index: 9999;
  opacity: 1;
  pointer-events: auto;
  will-change: opacity;
  transition: opacity 0.5s ease;
}

/* JS adds this class when user scrolls past the experience */
.hx-stage.hx-done {
  opacity: 0;
  pointer-events: none;
}

.hx-bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}


/* ── Chapter base ───────────────────────────── */
.hx-ch {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

#hx-ch1 {
  opacity: 1;
  pointer-events: auto;
}

.hx-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hx-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 2rem 8vh;
  z-index: 3;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}

.hx-text-light .hx-headline,
.hx-text-light .hx-eyebrow {
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.hx-eyebrow {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(10px);
  text-shadow: 0 2px 20px rgba(0,0,0,0.9);
}

.hx-headline {
  font-size: clamp(2.8rem, 7.5vw, 7rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.045em;
  line-height: 0.93;
  margin: 0 auto 2.2rem;
  max-width: 1000px;
  opacity: 0;
  transform: translateY(20px);
  text-shadow: 0 4px 40px rgba(0,0,0,0.85), 0 2px 12px rgba(0,0,0,0.6);
}

.hx-headline em {
  font-style: italic;
  color: var(--gold);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
}

/* ── Progress nav ───────────────────────────── */
.hx-nav {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 11px;
  z-index: 10;
}

.hx-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: block;
  transition: background 0.35s, transform 0.35s;
}

.hx-dot.active {
  background: var(--gold);
  transform: scale(1.7);
}

/* ── Scroll hint ────────────────────────────── */
.hx-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.22);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  z-index: 10;
  animation: hxBounce 2.2s ease-in-out infinite;
}

@keyframes hxBounce {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.9; transform: translateX(-50%) translateY(7px); }
}

/* ── CH1: Spark ─────────────────────────────── */
#hxLaserCutCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ── CH2: Blueprint ─────────────────────────── */
.hx-bp-svg {
  width: min(82vw, 760px);
  height: auto;
}

/* ── Chapter 2 — Video Background ─────────── */
.hx-termo-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Covers watermark bottom-right corner */
.hx-wm-cover {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 220px;
  height: 60px;
  background: #000;
  z-index: 2;
}

/* ── Tumbler Stage — 3 termos con anotaciones ── */
.hx-tumblers-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: min(96vw, 1000px);
  padding: 20px 0;
}

.hx-termo {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  justify-items: center;
  gap: 6px 8px;
}

.hx-termo img {
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  max-width: 240px;
  height: auto;
  object-fit: contain;
  transform-origin: center center;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.6)) brightness(1.1) contrast(1.05);
  animation: spinTermo 12s ease-in-out infinite;
}

.hx-termo-2 img {
  max-width: 290px;
  animation-delay: -4s;
}
.hx-termo-3 img { animation-delay: -8s; }

@keyframes spinTermo {
  0%   { transform: perspective(700px) rotateY(0deg);  }
  25%  { transform: perspective(700px) rotateY(5deg);  }
  50%  { transform: perspective(700px) rotateY(0deg);  }
  75%  { transform: perspective(700px) rotateY(-5deg); }
  100% { transform: perspective(700px) rotateY(0deg);  }
}

/* Anotaciones — posicionadas en el grid sin solaparse */
.hx-anno {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hx-anno-top {
  grid-column: 2;
  grid-row: 1;
  flex-direction: column;
  text-align: center;
  padding-bottom: 4px;
}

.hx-anno-bottom {
  grid-column: 2;
  grid-row: 3;
  flex-direction: column;
  text-align: center;
  padding-top: 4px;
}

.hx-anno-left {
  grid-column: 1;
  grid-row: 2;
  flex-direction: row;
  justify-content: flex-end;
  text-align: right;
}

.hx-anno-right {
  grid-column: 3;
  grid-row: 2;
  flex-direction: row;
  justify-content: flex-start;
  text-align: left;
}

.hx-anno-title {
  display: block;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.hx-anno-sub {
  display: block;
  font-size: 0.44rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
  white-space: nowrap;
}

.hx-anno-line {
  width: 40px;
  height: 2px;
  flex-shrink: 0;
  opacity: 0.7;
}

.hx-anno-line-v {
  width: 2px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.7;
}

.bp-grid { display: none; }

/* Main box edges — blue */
.bp-path {
  stroke: rgba(0,190,255,0.82);
  stroke-width: 1.4;
  fill: none;
}

/* Inner dashed offset lines (engineering drawing style) */
.bp-dash {
  stroke: rgba(0,160,255,0.32);
  stroke-width: 0.8;
  fill: none;
  stroke-dasharray: 5 3;
}

/* Centre axis lines */
.bp-path-thin {
  stroke: rgba(0,160,255,0.28);
  stroke-width: 0.7;
  fill: none;
}

/* Circuit / schematic lines extending from boxes */
.bp-circuit {
  stroke: rgba(0,140,255,0.22);
  stroke-width: 0.7;
  fill: none;
}

/* Junction dots on circuits */
.bp-dot {
  fill: rgba(0,190,255,0.55);
}

/* Measurement lines */
.bp-meas {
  stroke: rgba(0,150,255,0.3);
  stroke-width: 0.6;
}

.bp-axis {
  stroke: rgba(0,130,255,0.12);
  stroke-width: 0.6;
  fill: none;
}

/* Bracket markers for engraving zone */
.bp-detail {
  stroke: rgba(0,200,255,0.45);
  stroke-width: 1.0;
  fill: none;
}

/* Scan lines inside engraving zone */
.bp-scan {
  stroke: rgba(0,160,255,0.16);
  stroke-width: 0.6;
  fill: none;
  stroke-dasharray: 4 3;
}

.bp-anno {
  fill: rgba(0,180,255,0.65);
  font-size: 10px;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.06em;
  opacity: 1;
}

/* Scan reveal container */
.hx-bp-scene {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hx-bp-reveal {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Old full-page beam — replaced by SVG-internal laser */
.hx-bp-beam { display: none; }

/* ── CH3: Laser ─────────────────────────────── */
/* ── CH3: Premium Pack Scene ─────────────────── */
.hx-premium-scene {
  position: absolute !important;
  inset: 0;
}

.hx-premium-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right center;
}

/* Text pinned to left side for chapters with left-aligned text */
.hx-text.hx-text-left {
  right: auto;
  left: 0;
  width: 48%;
  text-align: left;
  background: linear-gradient(to right, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.5) 70%, transparent 100%);
  padding: 0 3rem 8vh 4rem;
}

#hx-ch3 .hx-headline,
#hx-ch4 .hx-headline {
  color: #ffffff !important;
  opacity: 1 !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.95), 0 0 60px rgba(0,0,0,0.8) !important;
  mix-blend-mode: normal !important;
}

#hx-ch3 .hx-eyebrow,
#hx-ch4 .hx-eyebrow {
  color: var(--gold) !important;
  opacity: 1 !important;
}

@media (max-width: 768px) {
  .hx-text.hx-text-left {
    width: 100%;
    right: 0;
    text-align: center;
    padding: 0 2rem 8vh;
    background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  }
}

.hx-laser-scene {
  position: absolute !important;
  inset: 0;
}

.hx-laser-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: brightness(0.22) saturate(0.2);
}

.hx-laser-product {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.70) saturate(0.75);
  opacity: 0;
}

.hx-laser-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* CP logo overlays on side tumblers */
.hx-laser-logo {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.35)) drop-shadow(0 0 24px rgba(180,220,255,0.2));
}
.hx-laser-logo-l {
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 18%;
  max-width: 155px;
}
.hx-laser-logo-r {
  right: 5%;
  top: 52%;
  transform: translateY(-50%);
  width: 14%;
  max-width: 125px;
}

/* ── CH4: Portfolio Collage ─────────────────── */
.hx-collage-scene {
  position: absolute !important;
  inset: 0;
  overflow: hidden;
}

/* Central warmth / sunset radiance burst */
.hx-col-burst {
  position: absolute;
  left: 50%; top: 50%;
  width: 800px; height: 800px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  background: radial-gradient(
    circle,
    rgba(255,235,190,0.22) 0%,
    rgba(220,150,60,0.10)  15%,
    rgba(180,100,30,0.05)  35%,
    transparent 60%
  );
  box-shadow:
    0 0 30px  rgba(220,140,50,0.10),
    0 0 80px  rgba(180,80,20,0.05);
  pointer-events: none;
  z-index: 0;
  will-change: transform, opacity;
}

/* Technical grid SVG */
.hx-col-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.col-gl      { stroke: rgba(220,140,60,0.18); stroke-width: 1; }
.col-gl-dash { stroke: rgba(220,140,60,0.09); stroke-dasharray: 6 5; }
.col-dot     { fill: rgba(240,160,60,0.35); }

/* Editorial photo grid */
.hx-collage-grid {
  position: absolute;
  inset: 2.5%;
  display: grid;
  grid-template-columns: 36% 31% 31%;
  grid-template-rows: 1fr 1fr 1fr 0.72fr;
  gap: 1%;
  z-index: 2;
}

/* A: tall hero left (rows 1-3) */
.hx-col-a { grid-area: 1 / 1 / 4 / 2; }
/* B C D: middle column stacked */
.hx-col-b { grid-area: 1 / 2 / 2 / 3; }
.hx-col-c { grid-area: 2 / 2 / 3 / 3; }
.hx-col-d { grid-area: 3 / 2 / 4 / 3; }
/* E F G: right column stacked */
.hx-col-e { grid-area: 1 / 3 / 2 / 4; }
.hx-col-f { grid-area: 2 / 3 / 3 / 4; }
.hx-col-g { grid-area: 3 / 3 / 4 / 4; }
/* H I J: bottom strip spanning all columns */
.hx-col-h { grid-area: 4 / 1 / 5 / 2; }
.hx-col-i { grid-area: 4 / 2 / 5 / 3; }
.hx-col-j { grid-area: 4 / 3 / 5 / 4; }

.hx-col-item {
  position: relative;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  will-change: clip-path, opacity;
}

.hx-col-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Subtle dark vignette on each photo */
.hx-col-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.18) 0%,
    transparent 50%,
    rgba(0,0,0,0.22) 100%
  );
  pointer-events: none;
}

/* Blueprint corner brackets */
.hx-col-bracket {
  position: absolute;
  width: 16px; height: 16px;
  z-index: 3;
}
.hx-col-bracket.tl {
  top: 8px; left: 8px;
  border-top:  1.5px solid rgba(240,180,80,0.75);
  border-left: 1.5px solid rgba(240,180,80,0.75);
}
.hx-col-bracket.br {
  bottom: 8px; right: 8px;
  border-bottom: 1.5px solid rgba(240,180,80,0.75);
  border-right:  1.5px solid rgba(240,180,80,0.75);
}

/* Product category tag */
.hx-col-tag {
  position: absolute;
  bottom: 10px; left: 12px;
  font-family: 'Courier New', monospace;
  font-size: 8.5px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,210,120,0.95);
  opacity: 0;
  z-index: 4;
  pointer-events: none;
  text-shadow: 0 0 10px rgba(200,120,40,0.6);
}

/* ── CH5: Gift Box ──────────────────────────── */
.hx-giftbox {
  position: relative;
  width: 240px;
  height: 310px;
}

.gb-lid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: #1a1a1a;
  border: 1px solid #2c2c2c;
  transform-origin: top center;
  z-index: 2;
}

.gb-ribbon-h {
  position: absolute;
  height: 1.5px;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent 5%, rgba(201,168,76,0.55) 50%, transparent 95%);
}

.gb-ribbon-v {
  position: absolute;
  width: 1.5px;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent 5%, rgba(201,168,76,0.55) 50%, transparent 95%);
}

.gb-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 250px;
  background: #0f0f0f;
  border: 1px solid #1f1f1f;
  border-top: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gb-tissue {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 14px,
    rgba(201,168,76,0.025) 14px,
    rgba(201,168,76,0.025) 28px
  );
}

.gb-product {
  height: 74%;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(18px);
}

/* ── Crystal Showcase (CH5) ──────────────────── */
.hx-crystal-display {
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 45%,
    #08172e 0%, #030c1a 100%);
}

/* Ambient blue glow behind products */
.crd-ambient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 45%,
    rgba(30,80,200,0.28) 0%,
    transparent 65%);
  pointer-events: none;
}

/* Grid wrapper — 2×2 even layout */
.crd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  width: min(90vw, 640px);
  height: min(78vh, 500px);
  opacity: 0;
  transform: translateY(24px);
  perspective: 900px;
}

/* All grid items */
.crd-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(180,220,255,0.18),
    0 0 24px rgba(50,110,255,0.32),
    0 12px 40px rgba(0,0,14,0.65);
}
.crd-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Staggered slow float+tilt per card */
.crd-item:nth-child(1) { animation: crdFloat1 9s ease-in-out infinite 0.0s; }
.crd-item:nth-child(2) { animation: crdFloat2 11s ease-in-out infinite 1.8s; }
.crd-item:nth-child(3) { animation: crdFloat3 10s ease-in-out infinite 0.9s; }
.crd-item:nth-child(4) { animation: crdFloat4 12s ease-in-out infinite 2.7s; }

@keyframes crdFloat1 {
  0%,100% { transform: translateY(0px)   rotateY(0deg)  rotateX(0deg); }
  25%      { transform: translateY(-6px)  rotateY(4deg)  rotateX(1deg); }
  50%      { transform: translateY(-10px) rotateY(0deg)  rotateX(2deg); }
  75%      { transform: translateY(-5px)  rotateY(-4deg) rotateX(1deg); }
}
@keyframes crdFloat2 {
  0%,100% { transform: translateY(0px)   rotateY(0deg)  rotateX(0deg); }
  25%      { transform: translateY(-8px)  rotateY(-5deg) rotateX(1.5deg); }
  50%      { transform: translateY(-12px) rotateY(0deg)  rotateX(2deg); }
  75%      { transform: translateY(-6px)  rotateY(5deg)  rotateX(1deg); }
}
@keyframes crdFloat3 {
  0%,100% { transform: translateY(0px)   rotateY(0deg)  rotateX(0deg); }
  30%      { transform: translateY(-7px)  rotateY(5deg)  rotateX(1deg); }
  60%      { transform: translateY(-11px) rotateY(-3deg) rotateX(2deg); }
  80%      { transform: translateY(-4px)  rotateY(-5deg) rotateX(0.5deg); }
}
@keyframes crdFloat4 {
  0%,100% { transform: translateY(0px)   rotateY(0deg)  rotateX(0deg); }
  20%      { transform: translateY(-5px)  rotateY(-4deg) rotateX(2deg); }
  55%      { transform: translateY(-10px) rotateY(5deg)  rotateX(1deg); }
  80%      { transform: translateY(-7px)  rotateY(2deg)  rotateX(1.5deg); }
}

/* Remove span — all cells equal */
.crd-wide { grid-row: unset; }

/* Label badge */
.crd-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 0.60rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(200,230,255,0.88);
  background: rgba(8,18,55,0.70);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(120,180,255,0.22);
  pointer-events: none;
}

/* Shared shine overlay */
.crd-rim {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    140deg,
    rgba(255,255,255,0.09) 0%,
    transparent 48%,
    rgba(70,130,255,0.05) 100%
  );
  pointer-events: none;
}

/* CSS Sparkle stars */
.csp {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  z-index: 4;
}
.csp::before, .csp::after {
  content: '';
  position: absolute;
  background: white;
  border-radius: 2px;
}
.csp::before { width: 2px; height: 24px; top: -12px; left: -1px; }
.csp::after  { width: 24px; height: 2px; top: -1px;  left: -12px; }

.csp1 { top: 10%; right: 16%; animation: cspTwinkle 3.0s ease-in-out infinite 0.0s; }
.csp2 { top: 18%; left: 10%;  animation: cspTwinkle 3.4s ease-in-out infinite 1.2s; }
.csp3 { bottom: 22%; left: 20%; animation: cspTwinkle 2.7s ease-in-out infinite 0.6s; }

@keyframes cspTwinkle {
  0%, 100% { opacity: 0;    transform: scale(0.3) rotate(0deg); }
  45%, 55% { opacity: 0.9;  transform: scale(1.1) rotate(12deg); }
}

/* ── CH6: Emotion ───────────────────────────── */
.hx-emotion {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  position: absolute !important;
  inset: 0;
}

.em-img {
  width: 100%;
  height: 100%;
  min-height: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.07);
  filter: brightness(0.72) saturate(0.7);
}

/* ── CH7: Brand ─────────────────────────────── */
.hx-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.hx-brand-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  opacity: 0;
  border-radius: 50%;
  transform: scale(0.78);
  margin-bottom: 0.5rem;
}

.hx-brand-name {
  font-size: clamp(2rem, 4.8vw, 4.2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.18em;
  opacity: 0;
  transform: translateY(14px);
  line-height: 1;
  text-transform: uppercase;
}

.hx-brand-name span { color: var(--gold); }

.hx-brand-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  font-weight: 500;
  margin: 0;
  opacity: 0;
}

.hx-brand-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.42rem;
  margin: 0.35rem 0;
}

.hx-step {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  font-weight: 700;
  opacity: 0;
}

.hx-step-gold { color: var(--gold) !important; }

.hx-step-arrow {
  color: rgba(201,168,76,0.38);
  font-size: 0.9rem;
  line-height: 1;
  opacity: 0;
}

/* ── Mobile ─────────────────────────────────── */
@media (max-width: 768px) {
  .hx-headline { font-size: clamp(1.7rem, 9vw, 3.2rem); }
  .hx-bp-svg   { width: min(96vw, 480px); }
  .hx-nav      { right: 0.75rem; }
  /* CH4 collage mobile: 2-col grid */
  .hx-collage-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.4fr 1fr 1fr 1fr 1fr;
  }
  .hx-col-a { grid-area: 1/1/2/3; }
  .hx-col-b { grid-area: 2/1/3/2; }
  .hx-col-c { grid-area: 2/2/3/3; }
  .hx-col-d { grid-area: 3/1/4/2; }
  .hx-col-e { grid-area: 3/2/4/3; }
  .hx-col-f { grid-area: 4/1/5/2; }
  .hx-col-g { grid-area: 4/2/5/3; }
  .hx-col-h { grid-area: 5/1/6/2; }
  .hx-col-i { grid-area: 5/2/6/3; }
  .hx-col-j { grid-area: 6/1/7/3; }
  .hx-col-burst { width: 400px; height: 400px; }
  .hx-giftbox  { transform: scale(0.88); }
  .hx-laser-product { height: 55vh; }
}

@media (max-width: 480px) {
  .hx-text { bottom: 8vh; }
  .hx-headline { font-size: clamp(1.4rem, 10vw, 2.5rem); }
}

/* ════ MOBILE & TABLET COMPREHENSIVE FIXES ════ */

/* Nav: hide Get-a-Quote btn on mobile */
@media (max-width: 768px) {
  .nav-cta .btn { display: none; }
  .nav-cta { gap: 8px; }
  .lang-toggle { font-size: 0.7rem; padding: 4px 8px; }
}

/* Hero Experience: shorter scroll on mobile */
@media (max-width: 768px) {
  .hx-wrapper { height: 450vh; }
  .hx-col-burst { width: min(90vw, 340px); height: min(90vw, 340px); }
}
@media (max-width: 480px) {
  .hx-wrapper { height: 380vh; }
}

/* Founder Section */
@media (max-width: 480px) {
  .founder-text-col { padding: 40px 20px; }
  .founder-headline { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .founder-stats { flex-direction: column; gap: 1rem; }
  .founder-years-badge { width: 70px; height: 70px; }
  .founder-years-num { font-size: 1.4rem; }
}

/* Reviews: horizontal scroll on mobile */
@media (max-width: 768px) {
  .reviews-track {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .reviews-track::-webkit-scrollbar { display: none; }
  .rcard { flex: 0 0 85vw; max-width: 320px; scroll-snap-align: start; }
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* Gallery: always 2 cols on mobile */
@media (max-width: 400px) {
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item { aspect-ratio: 3/4; }
}

/* Performance section */
@media (max-width: 480px) {
  .perf-inner { padding: 0 20px; }
  .perf-section { padding: 80px 0 60px; }
}

/* Blog grid */
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr !important; }
}

/* CTA on tiny screens */
@media (max-width: 400px) {
  .cta-banner h2 { font-size: clamp(1.6rem, 8vw, 2.4rem); }
  .btn-lg { padding: 14px 24px; font-size: 0.78rem; }
}

/* Crystal display scale */
@media (max-width: 768px) {
  .hx-crystal-display { transform: scale(0.8); }
}

/* Prevent horizontal overflow */
@media (max-width: 768px) {
  body { overflow-x: hidden; }
  .ticker-track { animation-duration: 18s; }
}

/* Section headings scale down */
@media (max-width: 480px) {
  .section-label { font-size: 0.6rem; }
  h2 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .section { padding: 48px 0; }
}

/* Portfolio grid tablet */
@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: 1fr !important; }
  .portfolio-item.wide { grid-column: span 1 !important; }
}

/* B2B / Corporate mobile */
@media (max-width: 768px) {
  .b2b-inner { padding: 0 20px; }
  .b2b-hero { padding-top: 80px; padding-bottom: 60px; }
  .b2b-headline { font-size: clamp(1.8rem, 8vw, 3rem); }
}

/* WhatsApp button smaller */
@media (max-width: 480px) {
  .whatsapp-btn { padding: 10px 16px; font-size: 0.72rem; }
  .whatsapp-btn svg { width: 18px; height: 18px; }
}

------WebKitFormBoundarya9ikyfxCukhklOR5--
