/* ══════════════════════════════════════════
   XESSONE – Shared Stylesheet  v11
   ══════════════════════════════════════════ */

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

:root {
  --white: #ffffff;
  --black: #1d1d1f;
  --gray-1: #f5f5f7;
  --gray-2: #e8e8ed;
  --gray-3: #6e6e73;
  --gray-4: #424245;
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --blue-light: #e8f0fb;
  --earth: #7c5c3a;
  --earth-light: #f3ede6;
  --stone: #8e9196;
  --stone-light: #f0f0f2;
  --green-d: #2d6a4f;
  --green-light: #e8f5ee;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-card: 0 4px 24px rgba(0,0,0,.08);
  --shadow-hover: 0 12px 40px rgba(0,0,0,.14);
  --transition: .25s cubic-bezier(.4,0,.2,1);
  --nav-h: 58px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ══════════════════════════════════════════
   NAV
   ══════════════════════════════════════════ */
.sc-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; padding: 0 5%;
}
.sc-nav.nav-light {
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav-logo {
  font-size: 1.15rem; font-weight: 700; letter-spacing: -.5px;
  color: var(--black); text-decoration: none; flex-shrink: 0;
}
.nav-logo span { color: var(--blue); }

/* Center links */
.sc-nav-links {
  flex: 1; display: flex; list-style: none; align-items: center; gap: 0;
  justify-content: center;
}
.sc-nav-links > li > a {
  font-size: .875rem; color: var(--gray-4); text-decoration: none;
  display: flex; align-items: center; gap: .22rem;
  padding: 5px 11px; border-radius: 6px; white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.sc-nav-links > li > a:hover,
.sc-nav-links > li > a.active { background: rgba(0,0,0,.06); color: var(--blue); }

/* ══════════════════════════════════════════
   MEGA MENU  (synccad.com pattern)
   ══════════════════════════════════════════ */
.sc-mega { position: static; }

.sc-mega-trigger {
  display: flex; align-items: center; gap: 4px;
  font-size: .875rem; font-weight: 400; color: var(--gray-4);
  padding: 5px 11px; border-radius: 6px;
  cursor: pointer; background: none; border: none; white-space: nowrap;
  font-family: inherit;
  transition: background var(--transition), color var(--transition);
}
.sc-mega-trigger:hover,
.sc-mega:hover .sc-mega-trigger,
.sc-mega.open .sc-mega-trigger { background: rgba(0,0,0,.06); color: var(--black); }
.sc-mega-trigger svg { transition: transform var(--transition); opacity: .45; margin-top: 1px; }
.sc-mega:hover .sc-mega-trigger svg,
.sc-mega.open   .sc-mega-trigger svg { transform: rotate(180deg); opacity: .8; }

/* Panel */
.sc-mega-panel {
  position: fixed; top: var(--nav-h); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: min(940px, calc(100vw - 32px));
  background: #fff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,.16), 0 0 0 1px rgba(0,0,0,.06);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  z-index: 999;
}
.sc-mega:hover .sc-mega-panel,
.sc-mega.open   .sc-mega-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.sc-mega-panel-sm { width: min(560px, calc(100vw - 32px)); }

/* Body grid */
.sc-mega-body {
  display: grid; grid-template-columns: 1fr 1fr 220px;
  padding: 24px 20px 20px; gap: 0;
}

/* Column */
.sc-mega-col {
  padding: 4px 18px; border-right: 1px solid rgba(0,0,0,.06);
}
.sc-mega-col:first-child { padding-left: 8px; }
.sc-mega-col:last-of-type { border-right: none; }
.sc-mega-featured { border-right: none; padding: 4px 4px 4px 18px; }

/* Column heading */
.sc-mega-col-head {
  font-size: 10px; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; color: #a1a1a6;
  padding: 4px 8px 12px;
}

/* Item row */
.sc-mega-item {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 9px 8px; border-radius: 10px; color: var(--black);
  text-decoration: none; margin-bottom: 1px;
  transition: background .15s;
}
.sc-mega-item:hover { background: #f5f5f7; }
.sc-mega-item:hover .sc-mega-icon { background: rgba(0,113,227,.12); }
.sc-mega-item strong {
  display: block; font-size: 13px; font-weight: 500;
  margin-bottom: 2px; color: var(--black); letter-spacing: -.01em;
}
.sc-mega-item span {
  display: block; font-size: 11px; color: var(--gray-3);
  font-weight: 300; line-height: 1.4;
}

/* Icon box */
.sc-mega-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: #f0f0f5; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); transition: background .15s;
}
.sc-mega-icon svg { width: 16px; height: 16px; }

/* Featured dark card */
.sc-mega-feat-card {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  border-radius: 14px; padding: 22px 20px; height: 100%;
  display: flex; flex-direction: column; min-height: 200px;
  position: relative; overflow: hidden;
}
.sc-mega-feat-card::before {
  content: ''; position: absolute;
  top: -40px; right: -40px; width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(0,113,227,.35) 0%, transparent 70%);
  pointer-events: none;
}
.sc-mega-feat-tag {
  font-size: 10px; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}
.sc-mega-feat-title {
  font-size: 16px; font-weight: 700; color: #fff;
  letter-spacing: -.025em; line-height: 1.25; margin-bottom: 10px;
}
.sc-mega-feat-text {
  font-size: 11.5px; color: rgba(255,255,255,.6);
  line-height: 1.6; font-weight: 300; flex: 1;
}
.sc-mega-feat-cta {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 16px; font-size: 12px; color: var(--blue);
  font-weight: 500; text-decoration: none;
}
.sc-mega-feat-cta:hover { text-decoration: underline; }

/* Footer bar */
.sc-mega-footer {
  border-top: 1px solid rgba(0,0,0,.06);
  padding: 11px 28px;
  display: flex; gap: 16px; align-items: center; font-size: 12px;
}
.sc-mega-footer a { color: var(--blue); text-decoration: none; }
.sc-mega-footer a:hover { text-decoration: underline; }
.sc-mega-footer span { color: #d1d1d6; }

/* ══════════════════════════════════════════
   NAV ACTIONS (right side)
   ══════════════════════════════════════════ */
.sc-nav-actions {
  display: flex; align-items: center; gap: .5rem; flex-shrink: 0;
}
.sc-nav-link {
  font-size: .82rem; font-weight: 500; color: var(--gray-4);
  background: transparent; border: 1.5px solid var(--gray-2);
  border-radius: 980px; padding: .42rem 1rem;
  cursor: pointer; text-decoration: none;
  display: flex; align-items: center; gap: .4rem;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  white-space: nowrap;
}
.sc-nav-link:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.sc-nav-cta {
  font-size: .82rem; font-weight: 600;
  background: var(--blue); color: #fff;
  border: none; border-radius: 980px;
  padding: .45rem 1.15rem; cursor: pointer;
  text-decoration: none; display: flex; align-items: center; gap: .3rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.sc-nav-cta:hover { background: var(--blue-hover); transform: scale(1.03); box-shadow: 0 4px 14px rgba(0,113,227,.35); }

/* ══════════════════════════════════════════
   HAMBURGER
   ══════════════════════════════════════════ */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px; flex-shrink: 0;
  margin-left: auto;
}
.nav-hamburger span {
  width: 22px; height: 2px; background: var(--black); border-radius: 2px; display: block;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══════════════════════════════════════════
   MOBILE OVERLAY
   ══════════════════════════════════════════ */
.mob-overlay {
  display: none; position: fixed; inset: 0; z-index: 1001;
  background: rgba(0,0,0,.45); backdrop-filter: blur(3px);
}
.mob-overlay.open { display: block; }

/* ══════════════════════════════════════════
   MOBILE DRAWER
   ══════════════════════════════════════════ */
.mob-drawer {
  position: fixed; top: 0; right: -100%; bottom: 0;
  width: min(320px, 88vw); z-index: 1002;
  background: var(--white); overflow-y: auto;
  transition: right .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
  display: flex; flex-direction: column;
}
.mob-drawer.open { right: 0; }
.mob-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.2rem; border-bottom: 1px solid var(--gray-2);
  position: sticky; top: 0; background: var(--white); z-index: 1; flex-shrink: 0;
}
.mob-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gray-1); border: none; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition); line-height: 1;
}
.mob-close:hover { background: var(--gray-2); }
.mob-nav { flex: 1; padding: .5rem 0; }
.mob-link {
  display: block; padding: .82rem 1.2rem;
  font-size: .92rem; font-weight: 600; color: var(--black);
  text-decoration: none; border-bottom: 1px solid var(--gray-2);
  transition: color var(--transition), background var(--transition);
}
.mob-link:hover, .mob-link.active { color: var(--blue); background: var(--gray-1); }
.mob-accordion { border-bottom: 1px solid var(--gray-2); }
.mob-acc-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: .82rem 1.2rem; font-size: .92rem; font-weight: 600; color: var(--black);
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: inherit;
  transition: color var(--transition), background var(--transition);
}
.mob-acc-btn:hover { color: var(--blue); background: var(--gray-1); }
.mob-acc-chev { font-size: 1rem; color: var(--gray-3); transition: transform var(--transition); }
.mob-accordion.open .mob-acc-chev { transform: rotate(90deg); }
.mob-acc-body { display: none; background: var(--gray-1); }
.mob-accordion.open .mob-acc-body { display: block; }
.mob-acc-body a {
  display: flex; align-items: center; gap: .5rem;
  padding: .6rem 1.5rem; font-size: .85rem; color: var(--gray-4);
  text-decoration: none; transition: color var(--transition);
}
.mob-acc-body a:hover { color: var(--blue); }
.mob-sub-label {
  display: block; font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gray-3); padding: .7rem 1.5rem .2rem;
}
.mob-footer {
  padding: 1rem 1.2rem; border-top: 1px solid var(--gray-2);
  display: flex; flex-direction: column; gap: .6rem;
  position: sticky; bottom: 0; background: var(--white); flex-shrink: 0;
}

/* ══════════════════════════════════════════
   PAGE HERO
   ══════════════════════════════════════════ */
.page-hero {
  padding: 120px 5% 70px;
  background: linear-gradient(160deg, #f5f5f7 0%, #ffffff 55%, #e8f0fb 100%);
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,113,227,.09) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.page-hero-eyebrow {
  display: inline-block;
  font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-light);
  padding: .32rem .9rem; border-radius: 980px; margin-bottom: 1.2rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700; letter-spacing: -.03em; line-height: 1.1;
  color: var(--black); max-width: 700px; margin: 0 auto .65rem;
}
.page-hero h1 em { font-style: normal; color: var(--blue); }
.page-hero p {
  font-size: clamp(.9rem, 1.6vw, 1.1rem); color: var(--gray-3);
  max-width: 520px; margin: 0 auto 2rem; line-height: 1.65;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; color: var(--gray-3);
  padding: .65rem 5%; background: var(--gray-1);
  border-bottom: 1px solid var(--gray-2);
}
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--gray-3); }

/* ══════════════════════════════════════════
   SECTION SHARED
   ══════════════════════════════════════════ */
section { padding: 5.5rem 5%; }
.section-label {
  font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: .75rem; display: block;
}
.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 700;
  letter-spacing: -.025em; line-height: 1.15; color: var(--black);
  max-width: 580px; margin-bottom: 1rem;
}
.section-desc {
  font-size: .97rem; color: var(--gray-3); line-height: 1.7;
  max-width: 520px; margin-bottom: 2.5rem;
}
.section-center { text-align: center; }
.section-center .section-title, .section-center .section-desc { max-width: none; }

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.btn-primary {
  font-size: .93rem; font-weight: 500;
  background: var(--blue); color: #fff;
  border: none; border-radius: 980px;
  padding: .78rem 1.9rem; cursor: pointer; text-decoration: none; display: inline-block;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(0,113,227,.35);
}
.btn-primary:hover { background: var(--blue-hover); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,113,227,.42); }
.btn-secondary {
  font-size: .93rem; font-weight: 500;
  background: transparent; color: var(--blue);
  border: 1.5px solid var(--blue); border-radius: 980px;
  padding: .78rem 1.9rem; cursor: pointer; text-decoration: none; display: inline-block;
  transition: background var(--transition), transform var(--transition);
}
.btn-secondary:hover { background: var(--blue-light); transform: translateY(-2px); }
.btn-earth {
  font-size: .9rem; font-weight: 500;
  background: var(--earth); color: #fff;
  border: none; border-radius: 980px;
  padding: .78rem 1.9rem; cursor: pointer; text-decoration: none; display: inline-block;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(124,92,58,.35);
}
.btn-earth:hover { background: #6a4e31; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124,92,58,.42); }
.btn-white {
  font-size: .93rem; font-weight: 500;
  background: #fff; color: var(--blue);
  border: none; border-radius: 980px;
  padding: .82rem 2.1rem; cursor: pointer; text-decoration: none; display: inline-block;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
}
.btn-white:hover { background: #f0f0f5; transform: translateY(-2px); }
.btn-outline-white {
  font-size: .93rem; font-weight: 500;
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.5); border-radius: 980px;
  padding: .82rem 2.1rem; cursor: pointer; text-decoration: none; display: inline-block;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   TAGS / BADGES
   ══════════════════════════════════════════ */
.tag {
  display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  padding: .28rem .75rem; border-radius: 980px;
}
.tag-blue  { background: var(--blue-light);  color: var(--blue); }
.tag-earth { background: var(--earth-light); color: var(--earth); }
.tag-green { background: var(--green-light); color: var(--green-d); }
.tag-stone { background: var(--stone-light); color: var(--stone); }
.tag-gold  { background: #fdf4e7; color: #8b6530; }

/* ══════════════════════════════════════════
   CARDS
   ══════════════════════════════════════════ */
.card {
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

/* ══════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════ */
.stats-bar {
  background: var(--black);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item { text-align: center; padding: 2rem 1rem; border-right: 1px solid rgba(255,255,255,.08); }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--white); letter-spacing: -.03em; }
.stat-number span { color: var(--blue); }
.stat-label { font-size: .82rem; color: rgba(255,255,255,.48); margin-top: .3rem; }

/* ══════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #0071e3 0%, #005ac6 100%);
  padding: 5.5rem 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%); border-radius: 50%;
}
.cta-banner h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 700;
  color: #fff; letter-spacing: -.025em; margin-bottom: .85rem;
}
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,.72); margin-bottom: 2.2rem; }
.cta-banner .btn-group { justify-content: center; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
footer {
  background: var(--black); color: rgba(255,255,255,.6);
  padding: 4rem 5% 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand h3 { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: .55rem; letter-spacing: -.5px; }
.footer-brand h3 span { color: var(--blue); }
.footer-brand p { font-size: .82rem; line-height: 1.65; max-width: 260px; }
.footer-brand .socials { display: flex; gap: .7rem; margin-top: 1.1rem; }
.social-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; cursor: pointer;
  text-decoration: none; color: rgba(255,255,255,.6);
  transition: background var(--transition), color var(--transition);
}
.social-btn:hover { background: var(--blue); color: #fff; }
.footer-col h4 { font-size: .83rem; font-weight: 600; color: #fff; margin-bottom: .9rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a { font-size: .78rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--blue); }
.footer-bottom {
  padding-top: 2rem; display: flex;
  justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .76rem; }
.footer-bottom-links { display: flex; gap: 1.4rem; }
.footer-bottom-links a { font-size: .76rem; color: rgba(255,255,255,.4); text-decoration: none; transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .sc-nav-links > li > a,
  .sc-mega-trigger { padding: 5px 8px; font-size: .8rem; }
}
@media (max-width: 900px) {
  .sc-nav-links   { display: none !important; }
  .sc-nav-actions { display: none !important; }
  .nav-hamburger  { display: flex !important; }
}
@media (max-width: 768px) {
  .sc-nav { padding: 0 4%; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn-group { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════════════
   HOME PAGE SECTIONS  (added v12)
   ══════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  padding: 100px 5% 0;
  background: linear-gradient(160deg, #f5f5f7 0%, #ffffff 50%, #e8f0fb 100%);
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  min-height: 90vh; overflow: hidden;
}
.hero-left { padding-bottom: 3.5rem; display: flex; flex-direction: column; align-items: flex-start; }
.hero-eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-light);
  padding: .32rem .9rem; border-radius: 980px; margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 700;
  letter-spacing: -.03em; line-height: 1.1;
  color: var(--black); margin-bottom: .75rem;
}
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-sub {
  font-size: 1rem; color: var(--gray-3); line-height: 1.7;
  max-width: 460px; margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-bottom: 2rem; }
.hero-image { position: relative; align-self: end; padding-top: 58px; }
.hero-image img {
  width: 100%; height: 520px; object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0; display: block;
}
.hero-badge {
  position: absolute; bottom: 20px; left: -20px;
  background: #fff; border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
  padding: .75rem 1rem; display: flex; align-items: center; gap: .65rem;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #34c759;
  flex-shrink: 0; animation: badgePulse 2s infinite;
}
.hero-badge p { font-size: .82rem; font-weight: 600; color: var(--black); line-height: 1.2; margin: 0; }
.hero-badge span { font-size: .73rem; color: var(--gray-3); font-weight: 400; }
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(52,199,89,.4); }
  50% { box-shadow: 0 0 0 6px rgba(52,199,89,0); }
}

/* ── PRICE CALCULATOR ── */
.hero-calc {
  width: 100%; max-width: 440px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem; box-shadow: 0 8px 40px rgba(0,0,0,.12);
  border: 1px solid var(--gray-2); margin-top: .5rem;
}
.hero-calc-title {
  font-size: .75rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .45rem;
}
.hero-calc-title svg { width: 14px; height: 14px; flex-shrink: 0; }
.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-bottom: .7rem; }
.calc-group label { display: block; font-size: .73rem; font-weight: 500; color: var(--gray-3); margin-bottom: .28rem; }
.calc-group select,
.calc-group input[type=number] {
  width: 100%; padding: .52rem .75rem; border-radius: 8px;
  border: 1.5px solid var(--gray-2); background: var(--white);
  font-family: inherit; font-size: .85rem; color: var(--black);
  outline: none; transition: border-color var(--transition);
  -webkit-appearance: none; appearance: none;
}
.calc-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236e6e73' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .7rem center; padding-right: 2rem; }
.calc-group-full { grid-column: 1 / -1; }
.calc-onetime { font-size: .68rem; color: var(--gray-3); font-weight: 400; margin-left: .3rem; }
.calc-group select:focus,
.calc-group input:focus { border-color: var(--blue); }
.calc-result {
  background: linear-gradient(135deg, #0071e3 0%, #004cb0 100%);
  border-radius: 10px; padding: .9rem 1.1rem;
  display: flex; justify-content: space-between; align-items: center; gap: .5rem;
  margin-top: .7rem;
}
.calc-result-left { flex: 1; }
.calc-result-label { font-size: .72rem; color: rgba(255,255,255,.7); margin-bottom: .15rem; }
.calc-result-price { font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: -.02em; line-height: 1; }
.calc-result-rate { font-size: .7rem; color: rgba(255,255,255,.75); margin-top: .15rem; font-weight: 600; }
.calc-result-note { font-size: .68rem; color: rgba(255,255,255,.55); margin-top: .1rem; }
.calc-cta-btn {
  background: #fff; color: var(--blue); border: none;
  border-radius: 8px; padding: .55rem .9rem;
  font-size: .78rem; font-weight: 700; cursor: pointer; white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none; display: inline-block;
}
.calc-cta-btn:hover { background: #e8f0fb; transform: scale(1.03); }

/* ── STATS ── */
.stats {
  background: var(--black);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stats .stat-item { text-align: center; padding: 2rem 1rem; border-right: 1px solid rgba(255,255,255,.08); }
.stats .stat-item:last-child { border-right: none; }

/* ── SERVICES (home) ── */
.services { padding: 5.5rem 5%; }
.services-header { text-align: center; margin-bottom: 3rem; }
.services-header .section-title,
.services-header .section-desc { max-width: none; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-card); padding: 1.75rem;
  border-top: 3px solid var(--blue);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.service-card.featured { background: var(--black); border-top-color: var(--blue); }
.service-card.featured h3 { color: #fff; }
.service-card.featured p { color: rgba(255,255,255,.6); }
.service-icon {
  font-size: 1.8rem; width: 50px; height: 50px;
  background: var(--blue-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.service-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: .5rem; }
.service-card p { font-size: .87rem; color: var(--gray-3); line-height: 1.6; margin-bottom: 1rem; }
.service-tag {
  font-size: .74rem; font-weight: 600; background: var(--blue-light);
  color: var(--blue); padding: .28rem .75rem; border-radius: 980px; display: inline-block;
}

/* ── MATERIALS ── */
.materials { padding: 5.5rem 5%; background: var(--gray-1); }
.materials-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.materials-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-hover); }
.materials-image img { width: 100%; height: 500px; object-fit: cover; display: block; }
.material-list { display: flex; flex-direction: column; gap: .75rem; }
.material-item {
  display: flex; align-items: center; gap: .85rem;
  background: var(--white); border-radius: 12px; padding: .85rem 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.material-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.material-info { flex: 1; }
.material-info strong { font-size: .87rem; font-weight: 600; display: block; margin-bottom: .18rem; }
.material-info span { font-size: .78rem; color: var(--gray-3); }
.material-badge {
  font-size: .7rem; font-weight: 600; padding: .22rem .6rem;
  border-radius: 980px; background: var(--blue-light); color: var(--blue);
  white-space: nowrap; flex-shrink: 0;
}

/* ── MOULDING SECTION (home) ── */
.moulding { padding: 5.5rem 5%; }
.moulding-inner { max-width: 1300px; margin: 0 auto; }
.moulding-header { text-align: center; margin-bottom: 3rem; }
.moulding-header .section-title { max-width: none; }
.moulding-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem; margin-bottom: 3.5rem;
}
.moulding-card {
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-card); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.moulding-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.moulding-card-img { aspect-ratio: 4/3; overflow: hidden; }
.moulding-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.moulding-card:hover .moulding-card-img img { transform: scale(1.05); }
.moulding-card-body { padding: 1.2rem 1.2rem 1.5rem; }
.moulding-card-tag {
  font-size: .72rem; font-weight: 600; background: var(--earth-light);
  color: var(--earth); padding: .22rem .65rem; border-radius: 980px;
  display: inline-block; margin-bottom: .65rem;
}
.moulding-card h4 { font-size: .97rem; font-weight: 600; margin-bottom: .4rem; }
.moulding-card p { font-size: .82rem; color: var(--gray-3); line-height: 1.55; margin-bottom: .65rem; }
.moulding-card-price { font-size: .88rem; font-weight: 700; color: var(--earth); }
.moulding-showcase {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1f0e 100%);
  border-radius: var(--radius-lg); padding: 3rem 3.5rem;
}
.moulding-showcase-img { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-hover); }
.moulding-showcase-img img { width: 100%; height: 380px; object-fit: cover; display: block; }
.moulding-showcase-content .section-label { color: #d4a472; }
.moulding-showcase-content h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; margin-bottom: .75rem; color: #fff; letter-spacing: -.02em; }
.moulding-showcase-content p { font-size: .93rem; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 1.5rem; }
.moulding-feature-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.moulding-feature-list li { font-size: .87rem; color: rgba(255,255,255,.75); display: flex; gap: .6rem; }
.moulding-feature-list li::before { content: '✓'; color: #d4a472; font-weight: 700; flex-shrink: 0; }

/* ── PROCESS ── */
.process { padding: 5.5rem 5%; background: var(--gray-1); }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 3.5rem; }
.process-header .section-title { max-width: none; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 22px; left: 12%; right: 12%;
  height: 2px; background: var(--gray-2); z-index: 0;
}
.step {
  background: var(--white); border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem; text-align: center;
  box-shadow: var(--shadow-card); position: relative; z-index: 1;
}
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); color: #fff; font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; box-shadow: 0 4px 14px rgba(0,113,227,.4);
}
.step h4 { font-size: .95rem; font-weight: 600; margin-bottom: .5rem; }
.step p { font-size: .82rem; color: var(--gray-3); line-height: 1.6; }

/* ── GALLERY ── */
.gallery { padding: 5.5rem 5%; }
.gallery-header { text-align: center; margin-bottom: 2.5rem; }
.gallery-header .section-title { max-width: none; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px; gap: 1rem;
}
.gallery-item { border-radius: var(--radius-md); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 1rem 1.1rem;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay p { color: #fff; font-size: .87rem; font-weight: 500; }
.gallery-see-all { text-align: center; margin-top: 2rem; }

/* ── WHY US ── */
.why { padding: 5.5rem 5%; background: var(--gray-1); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; max-width: 1100px; margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2rem; }
.why-card { background: var(--white); border-radius: var(--radius-md); padding: 1.5rem; box-shadow: var(--shadow-card); }
.why-card-icon { font-size: 1.6rem; margin-bottom: .75rem; }
.why-card h4 { font-size: .95rem; font-weight: 600; margin-bottom: .4rem; }
.why-card p { font-size: .82rem; color: var(--gray-3); line-height: 1.6; }
.why-visual { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-hover); }
.why-visual img { width: 100%; height: 500px; object-fit: cover; display: block; }

/* ── PRICING ── */
.pricing { padding: 5.5rem 5%; }
.pricing-header { text-align: center; margin-bottom: 3rem; }
.pricing-header .section-title { max-width: none; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.pricing-card {
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-card); padding: 2.2rem 1.8rem;
  border: 2px solid transparent; position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.pricing-card.popular { border-color: var(--blue); background: linear-gradient(160deg, #f0f7ff 0%, #fff 100%); }
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-size: .72rem; font-weight: 700;
  padding: .25rem .85rem; border-radius: 980px; white-space: nowrap;
}
.pricing-name { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-3); margin-bottom: .75rem; }
.pricing-price { font-size: 3rem; font-weight: 800; letter-spacing: -.04em; color: var(--black); line-height: 1; }
.pricing-price sup { font-size: 1rem; font-weight: 500; vertical-align: top; margin-top: .5rem; display: inline-block; color: var(--gray-3); }
.pricing-period { font-size: .8rem; color: var(--gray-3); margin-bottom: 1.5rem; }
.pricing-divider { height: 1px; background: var(--gray-2); margin-bottom: 1.5rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.pricing-features li { font-size: .85rem; color: var(--gray-4); display: flex; gap: .5rem; align-items: flex-start; }
.pricing-features li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.pricing-btn {
  width: 100%; padding: .85rem; border-radius: 980px;
  background: var(--blue); color: #fff; border: none;
  font-size: .9rem; font-weight: 600; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.pricing-btn:hover { background: var(--blue-hover); transform: translateY(-2px); }

/* ── TESTIMONIALS ── */
.testimonials { padding: 5.5rem 5%; background: var(--gray-1); }
.testimonials-header { text-align: center; margin-bottom: 3rem; }
.testimonials-header .section-title { max-width: none; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { background: var(--white); border-radius: var(--radius-md); padding: 1.75rem; box-shadow: var(--shadow-card); }
.testimonial-stars { color: #ffc300; font-size: 1rem; margin-bottom: .85rem; letter-spacing: .05em; }
.testimonial-text { font-size: .88rem; color: var(--gray-4); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; gap: .85rem; align-items: center; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue); color: #fff; font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-name { font-size: .87rem; font-weight: 600; color: var(--black); }
.testimonial-role { font-size: .75rem; color: var(--gray-3); }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, #0071e3 0%, #005ac6 100%);
  padding: 5.5rem 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.cta-section h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 700; color: #fff; letter-spacing: -.025em; margin-bottom: .85rem; }
.cta-section > p { font-size: 1rem; color: rgba(255,255,255,.75); margin-bottom: 2.2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact { padding: 5.5rem 5%; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-detail-icon {
  font-size: 1.2rem; flex-shrink: 0; width: 38px; height: 38px;
  background: var(--blue-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-detail-text strong { font-size: .88rem; font-weight: 600; display: block; margin-bottom: .15rem; }
.contact-detail-text span { font-size: .82rem; color: var(--gray-3); }
.contact-form { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 500; margin-bottom: .4rem; color: var(--gray-4); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .7rem .9rem; border-radius: 10px;
  border: 1.5px solid var(--gray-2); background: var(--white);
  font-family: inherit; font-size: .88rem; color: var(--black);
  transition: border-color var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { height: 120px; resize: vertical; }
.form-submit {
  width: 100%; padding: .9rem; border-radius: 980px;
  background: var(--blue); color: #fff; border: none;
  font-size: .95rem; font-weight: 600; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.form-submit:hover { background: var(--blue-hover); transform: translateY(-2px); }

/* ── RESPONSIVE – HOME ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 90px; }
  .hero-left { padding-bottom: 0; }
  .hero-image { padding-top: 0; }
  .hero-image img { height: 320px; border-radius: var(--radius-md); }
  .hero-badge { left: 10px; bottom: 10px; }
  .materials-layout { grid-template-columns: 1fr; gap: 2rem; }
  .materials-image { display: none; }
  .why-inner { grid-template-columns: 1fr; gap: 2rem; }
  .why-visual { display: none; }
  .moulding-showcase { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
  .moulding-showcase-img { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-item.tall { grid-row: span 1; }
  .services-grid { grid-template-columns: 1fr; }
  .moulding-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .hero-calc { max-width: 100%; }
  .calc-row { grid-template-columns: 1fr; }
  .hero-image img { height: 220px; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   CALC TABS
══════════════════════════════════════════════════════ */
.calc-tabs {
  display: flex; gap: .35rem; margin: .6rem 0 .8rem;
  background: var(--gray-1); border-radius: 10px; padding: 4px;
}
.calc-tab {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .52rem .5rem; border: none; border-radius: 8px;
  font-size: .78rem; font-weight: 500; font-family: inherit;
  color: var(--gray-3); background: transparent; cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.calc-tab.active {
  background: var(--white); color: var(--black);
  box-shadow: 0 1px 4px rgba(0,0,0,.12);
}
.calc-tab:not(.active):hover { color: var(--black); }

/* ══════════════════════════════════════════════════════
   3D VIEWER
══════════════════════════════════════════════════════ */
.viewer-drop {
  border: 2px dashed var(--gray-2); border-radius: var(--radius-sm);
  padding: 1.6rem 1rem; text-align: center; cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  background: var(--gray-1);
}
.viewer-drop:hover, .viewer-drop.drag-over {
  border-color: var(--blue); background: rgba(0,113,227,.05);
}
.viewer-drop svg { color: var(--blue); margin-bottom: .5rem; }
.viewer-drop-title { font-size: .88rem; font-weight: 600; color: var(--black); margin: 0 0 .2rem; }
.viewer-drop-sub   { font-size: .76rem; color: var(--gray-3); margin: 0 0 .6rem; }
.viewer-drop-badge {
  display: inline-block; font-size: .68rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; padding: .2rem .65rem; border-radius: 980px;
  background: var(--blue); color: #fff;
}

.viewer-canvas {
  width: 100%; height: 230px; border-radius: var(--radius-sm);
  background: #eef2f7; display: block;
}

.viewer-panel-inner {
  display: none; flex-direction: column; gap: .6rem; margin-top: .6rem;
}

.viewer-stats {
  display: flex; gap: .5rem; flex-wrap: wrap;
}
.viewer-stat {
  flex: 1; min-width: 80px; background: var(--gray-1); border-radius: 8px;
  padding: .5rem .7rem; display: flex; flex-direction: column; gap: .15rem;
}
.viewer-stat-label { font-size: .68rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--gray-3); }
.viewer-stat-val   { font-size: .88rem; font-weight: 700; color: var(--black); }
.viewer-stat-name  { font-size: .72rem; word-break: break-all; }

.viewer-infill-row {
  display: flex; align-items: center; gap: .75rem; flex-wrap: wrap;
}
.viewer-infill-label {
  font-size: .78rem; font-weight: 500; color: var(--gray-4);
  display: flex; gap: .4rem; align-items: center; flex-shrink: 0;
}
.viewer-infill-label span { font-weight: 700; color: var(--blue); min-width: 2.5rem; }
.viewer-infill-range {
  flex: 1; min-width: 80px; accent-color: var(--blue); cursor: pointer;
}

.viewer-qty-row {
  display: flex; align-items: center; gap: .6rem;
}
.viewer-qty-row label { font-size: .78rem; font-weight: 500; color: var(--gray-4); flex-shrink: 0; }
.viewer-qty-row input {
  width: 80px; padding: .45rem .6rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-2); font-size: .88rem; font-family: inherit;
  outline: none; transition: border-color var(--transition);
}
.viewer-qty-row input:focus { border-color: var(--blue); }

/* Mobile adjustments */
@media (max-width: 480px) {
  .viewer-canvas { height: 180px; }
  .calc-tab { font-size: .72rem; padding: .46rem .3rem; }
}

/* ══════════════════════════════════════════════════════
   HERO 3D VIEWER PANEL
══════════════════════════════════════════════════════ */
.hero-viewer {
  position: relative;
  align-self: stretch;
  min-height: 500px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  background: linear-gradient(145deg, #e8eef8 0%, #dde8f5 100%);
}

.hero-viewer-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* ── Upload Overlay ─────────────────────────── */
.hero-viewer-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #eef3fb 0%, #e2edf9 100%);
  cursor: pointer;
  transition: background var(--transition);
  z-index: 2;
}
.hero-viewer-overlay:hover,
.hero-viewer-overlay.drag-over {
  background: linear-gradient(145deg, #ddeaf8 0%, #c8daf5 100%);
}
.hero-viewer-overlay-inner {
  text-align: center; padding: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.hero-viewer-icon {
  width: 88px; height: 88px; border-radius: 22px;
  background: rgba(0,113,227,.1); display: flex; align-items: center; justify-content: center;
  margin-bottom: .4rem; color: var(--blue);
  transition: transform var(--transition);
}
.hero-viewer-overlay:hover .hero-viewer-icon { transform: translateY(-4px); }
.hero-viewer-title {
  font-size: 1.15rem; font-weight: 700; color: var(--black); margin: 0;
}
.hero-viewer-sub { font-size: .85rem; color: var(--gray-3); margin: 0; }
.hero-viewer-badge {
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .28rem .75rem; border-radius: 980px;
  background: var(--blue); color: #fff; margin-top: .2rem;
}

/* ── Stats bar at bottom ──────────────────── */
.hero-viewer-stats {
  position: absolute; bottom: 70px; left: 0; right: 0;
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,.88); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: .55rem 1rem; font-size: .78rem; color: var(--black);
  transition: opacity .4s;
  z-index: 3; flex-wrap: wrap;
}
.hvs-item {
  display: flex; align-items: center; gap: .4rem;
  padding: .1rem .5rem;
  flex-shrink: 0;
}
.hvs-item svg { color: var(--blue); flex-shrink: 0; }
.hvs-label { font-size: .72rem; color: var(--gray-3); }
.hvs-sep { width: 1px; height: 16px; background: var(--gray-2); flex-shrink: 0; }
.hvs-filename { font-size: .72rem; color: var(--gray-3); max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hvs-slider {
  width: 70px; accent-color: var(--blue); cursor: pointer;
}

/* Mobile */
@media (max-width: 1024px) {
  .hero-viewer { min-height: 320px; border-radius: var(--radius-md); }
  .hero-viewer-canvas { min-height: 320px; }
  .hero-viewer-stats { bottom: 60px; }
}
@media (max-width: 768px) {
  .hero-viewer { min-height: 260px; border-radius: var(--radius-md); }
  .hero-viewer-canvas { min-height: 260px; }
  .hero-viewer-icon { width: 64px; height: 64px; border-radius: 16px; }
  .hero-viewer-title { font-size: .95rem; }
}

/* Upload button in stats bar */
.hvs-upload-btn {
  display: flex; align-items: center; gap: .35rem;
  padding: .32rem .7rem; border-radius: 6px; flex-shrink: 0;
  font-size: .72rem; font-weight: 600; font-family: inherit;
  background: var(--blue); color: #fff; border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.hvs-upload-btn:hover { background: #0060c7; transform: translateY(-1px); }

/* ══ VIEWER TOP BADGES ═════════════════════════════════════════════════════ */
.viewer-top-badges {
  position: absolute; top: 14px; left: 14px; right: 14px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 4; pointer-events: none;
}
.vtb {
  display: flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.88); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 980px; padding: .32rem .75rem;
  font-size: .74rem; font-weight: 600; color: var(--black);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  white-space: nowrap;
}
.vtb-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #34c759; flex-shrink: 0;
  animation: badgePulse 2s infinite;
}
.vtb-price { color: var(--blue); gap: .3rem; }
.vtb-price svg { flex-shrink: 0; }

/* Model info strip top-center */
.viewer-model-info {
  position: absolute; top: 50px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.82); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 980px; padding: .28rem .85rem;
  font-size: .72rem; font-weight: 500; color: var(--gray-4);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  white-space: nowrap; z-index: 4; pointer-events: none;
  opacity: 0; transition: opacity .4s;
}
.viewer-model-info.visible { opacity: 1; }
.vmi-sep { color: var(--gray-2); font-size: .6rem; }

@media (max-width: 480px) {
  .viewer-top-badges { top: 8px; left: 8px; right: 8px; }
  .vtb { font-size: .68rem; padding: .26rem .6rem; }
  .viewer-model-info { top: 40px; font-size: .68rem; }
}

/* ── Mobile partner link ── */
.mob-link-partner {
  color: #0071e3 !important;
  font-weight: 600 !important;
}

/* ── Footer social SVG icons ── */
.social-btn svg { display: block; }

/* ══════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
   ══════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 20px 12px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
  color: #fff;
}
.wa-float svg { flex-shrink: 0; }
@media (max-width: 600px) {
  .wa-float { padding: 12px; border-radius: 50%; bottom: 20px; right: 20px; }
  .wa-float span { display: none; }
}

/* ══ NAV LOGO WITH IMAGE ══ */
.nav-logo { display: flex; align-items: center; gap: 8px; }
.nav-logo-img { width: 28px; height: 28px; object-fit: contain; flex-shrink: 0; }
