/* =====================================================================
   PBComputers — Polar Bear Design System (shared across all pages)
   Cozy arctic theme: soft snow surfaces, warm-slate text, glacier-blue accents
   ===================================================================== */

/* ---------- Fonts ---------- */
/* Loaded in each page's <head> via Google Fonts:
   Fraunces (display serif), Space Grotesk (display sans), Inter (body) */

/* ---------- Variables ---------- */
:root {
  /* Core palette — layered soft tinted snow / frost */
  --ink-1000: #8ba5b8;
  --ink-950:  #9db4c4;
  --ink-900:  #93acbf;
  --ink-850:  #8aa4b9;
  --ink-800:  #7d9bb2;
  --ink-700:  #6d8ea9;
  --line:     rgba(24, 54, 78, 0.16);
  --line-2:   rgba(24, 54, 78, 0.24);

  /* Accents — glacier blue (primary) */
  --gold-100: #eaf5fc;
  --gold-300: #2b83b0;
  --gold-400: #3f9fd0;
  --gold-500: #2f8cc2;
  --gold-600: #256f98;
  --gold-grad: linear-gradient(135deg, #8ad2f0 0%, #46a6d6 45%, #2b83b0 100%);

  /* Deep arctic blue (secondary) */
  --blue-300: #6fabda;
  --blue-400: #3f86c4;
  --blue-500: #2f6fb0;
  --blue-600: #245a95;
  --blue-grad: linear-gradient(135deg, #6fabda 0%, #2f6fb0 100%);

  /* Warm ember — cozy micro-accent (used sparingly) */
  --ember-300: #f0b775;
  --ember-400: #e79a48;

  /* Text — deep arctic slate on snow */
  --text-hi:  #13212a;
  --text-mid: #2c4451;
  --text-low: #455e6d;
  --text-dim: #5f7482;

  /* Deep surfaces (for dark sections / imagery backdrops) */
  --paper:    #b0c4d1;
  --paper-2:  #a6bccb;
  --ink-on-paper: #16262f;

  --font-serif: 'Fraunces', 'Georgia', serif;
  --font-head:  'Space Grotesk', 'Segoe UI', Arial, sans-serif;
  --font-body:  'Inter', 'Segoe UI', Arial, sans-serif;

  --radius-xl: 26px;
  --radius:    18px;
  --radius-sm: 12px;

  --shadow-glow-gold: 0 18px 60px -20px rgba(63, 159, 208, 0.45);
  --shadow-glow-blue: 0 18px 60px -20px rgba(47, 111, 176, 0.40);
  --shadow-lg:  0 40px 90px -34px rgba(30, 70, 102, 0.30);
  --shadow-md:  0 22px 50px -26px rgba(30, 70, 102, 0.26);
  --shadow-sm:  0 10px 26px -14px rgba(30, 70, 102, 0.22);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1220px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text-mid);
  background: var(--ink-950);
  background-image:
    radial-gradient(1100px 620px at 82% -8%, rgba(88, 146, 184, 0.16), transparent 60%),
    radial-gradient(900px 560px at 8% 4%, rgba(108, 152, 186, 0.13), transparent 62%);
  background-attachment: fixed;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.08; font-weight: 700; color: var(--text-hi); letter-spacing: -0.02em; }
::selection { background: rgba(63, 159, 208, 0.24); color: var(--text-hi); }

/* Fine-grain film across the whole page for a soft, snowy surface */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.022;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.section { padding: 110px 0; position: relative; }
.section-sm { padding: 76px 0; position: relative; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.stack > * + * { margin-top: 18px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-300);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400));
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--gold-400), transparent);
}

h1.display, .display {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.02;
  color: var(--text-hi);
}
.h1 { font-size: clamp(2.6rem, 6.5vw, 5.2rem); }
.h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h2.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--text-mid); max-width: 620px; }
.sub { color: var(--text-low); max-width: 600px; }
.center .lead, .center .sub { margin-left: auto; margin-right: auto; }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 15px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--pad-y) 28px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
}
.btn-lg { --pad-y: 18px; padding: var(--pad-y) 34px; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-gold {
  background: var(--gold-grad);
  color: #ffffff;
  box-shadow: var(--shadow-glow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 26px 70px -22px rgba(63, 159, 208, 0.6); }

.btn-glass {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-hi);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
.btn-glass:hover { background: #ffffff; transform: translateY(-3px); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold-300);
  border: 1px solid rgba(63, 159, 208, 0.45);
}
.btn-outline-gold:hover { background: rgba(63, 159, 208, 0.1); border-color: var(--gold-400); transform: translateY(-3px); }

.btn-dark {
  background: var(--ink-on-paper);
  color: #fff;
}
.btn-dark:hover { background: #0c1a22; transform: translateY(-3px); }

.btn-arrow svg { transition: transform 0.35s var(--ease); }
.btn-arrow:hover svg { transform: translateX(4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gold-300);
}
.link-arrow svg { transition: transform 0.35s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- Announcement bar ---------- */
.announce {
  position: relative;
  z-index: 60;
  background: linear-gradient(90deg, #2b83b0, #3f9fd0, #2b83b0);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #eaf5fc;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 9px 44px 9px 16px;
}
.announce strong { color: #ffffff; font-weight: 600; }
.announce a { color: #ffffff; text-decoration: underline; text-underline-offset: 3px; }
.announce-close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  font-size: 1.2rem; line-height: 1; color: rgba(255, 255, 255, 0.7);
}
.announce-close:hover { color: #ffffff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(151, 175, 193, 0.88);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }

.logo { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 1.24rem; color: var(--text-hi); letter-spacing: -0.01em; }
.logo .mark {
  width: 42px; height: 42px; border-radius: 50%;
  object-fit: cover;
  background: #0f2454;
  box-shadow: 0 4px 14px -4px rgba(20, 44, 80, 0.6), 0 0 0 1px rgba(255,255,255,0.25);
}
.logo .mark-text { line-height: 1; }
.logo b { color: var(--gold-300); font-weight: 700; }

.main-nav { display: none; gap: 4px; align-items: center; }
.main-nav a {
  position: relative;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--text-mid);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.main-nav a:hover { color: var(--text-hi); background: rgba(28, 66, 92, 0.06); }
.main-nav a.active { color: var(--gold-300); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-call { display: none; }

.nav-toggle { width: 30px; height: 20px; position: relative; display: flex; flex-direction: column; justify-content: space-between; }
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--text-hi); border-radius: 2px; transition: transform 0.28s var(--ease), opacity 0.28s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 979px) {
  .main-nav.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 78px; left: 0; right: 0;
    background: rgba(247, 251, 253, 0.98);
    backdrop-filter: blur(20px);
    padding: 18px 26px 30px; gap: 4px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open a { padding: 13px 15px; font-size: 1rem; }
}

/* ---------- Backgrounds / glows ---------- */
.bg-glows { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.glow { position: absolute; border-radius: 50%; filter: blur(100px); }
.glow-gold { background: rgba(134, 205, 238, 0.45); }
.glow-blue { background: rgba(111, 171, 218, 0.40); }
.grid-lines { position: absolute; inset: 0; pointer-events: none; opacity: 0.6;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
}

/* ---------- Hero (home) ---------- */
.hero { position: relative; overflow: hidden; padding: 70px 0 96px; }
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; gap: 60px; align-items: center; }
.hero-copy .eyebrow { margin-bottom: 26px; }
.hero-h1 { font-size: clamp(2.7rem, 6.2vw, 4.9rem); margin-bottom: 26px; }
.hero-sub { font-size: clamp(1.05rem, 1.7vw, 1.24rem); color: var(--text-mid); max-width: 540px; margin-bottom: 36px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 44px; }
.hero-ctas.center { justify-content: center; }

.rating-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.stars { color: var(--ember-400); letter-spacing: 2px; font-size: 1.05rem; }
.rating-row small { color: var(--text-low); font-size: 0.86rem; }

.trust-strip { display: flex; flex-wrap: wrap; gap: 12px 26px; font-size: 0.86rem; color: var(--text-low); margin-top: 22px; }
.trust-strip li { display: inline-flex; align-items: center; gap: 8px; }
.trust-strip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-400); }

/* Hero visual — frosted build panel */
.hero-visual { position: relative; min-height: 420px; display: none; }
.glass-panel {
  position: relative;
  background: linear-gradient(160deg, #b6c6d4, #a3b7c8);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  padding: 26px;
  overflow: hidden;
}
.glass-panel::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, rgba(63,159,208,0.14), transparent 60%);
  pointer-events: none;
}
.spec-line { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); }
.spec-line:last-child { border-bottom: none; }
.spec-line .k { color: var(--text-low); font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; }
.spec-line .v { color: var(--text-hi); font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; }
.spec-bar { height: 5px; border-radius: 999px; background: rgba(28,66,92,0.12); overflow: hidden; margin-top: 18px; }
.spec-bar > i { display: block; height: 100%; background: var(--gold-grad); border-radius: 999px; }

.float-chip {
  position: absolute;
  display: flex; align-items: center; gap: 11px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(14px);
  padding: 13px 17px; border-radius: 14px;
  box-shadow: var(--shadow-md);
  animation: floaty 6s ease-in-out infinite;
}
.float-chip .ic { font-size: 1.3rem; }
.float-chip strong { display: block; font-size: 0.86rem; color: var(--text-hi); font-family: var(--font-head); }
.float-chip small { color: var(--text-low); font-size: 0.74rem; }
.chip-a { top: -22px; right: 30px; animation-delay: 0s; }
.chip-b { bottom: 40px; left: -26px; animation-delay: 1.5s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ---------- Marquee logo/trust ticker ---------- */
.ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; overflow: hidden; }
.ticker-track { display: flex; gap: 60px; white-space: nowrap; width: max-content; animation: scrollx 32s linear infinite; }
.ticker-track span { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; color: var(--text-low); letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 12px; }
.ticker-track span::before { content: "❄"; color: var(--gold-400); }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { position: relative; overflow: hidden; padding: 90px 0 70px; }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.82rem; color: var(--text-dim); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--gold-300); }
.breadcrumb span { color: var(--text-low); }
.page-hero h1 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(2.4rem, 5.4vw, 4rem); margin-bottom: 20px; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { display: grid; gap: 24px; }
.grid-3 { display: grid; gap: 24px; }
.grid-4 { display: grid; gap: 22px; }

.card {
  position: relative;
  background: linear-gradient(165deg, #b7c7d5, #a4b8c9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease);
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(160deg, rgba(63,159,208,0.45), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow-md); }
.card:hover::before { opacity: 1; }

.card-icon {
  width: 58px; height: 58px; border-radius: 15px;
  display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(63,159,208,0.18), rgba(63,159,208,0.05));
  border: 1px solid rgba(63,159,208,0.24);
  color: var(--gold-300);
  margin-bottom: 22px;
}
.card h3 { font-size: 1.28rem; margin-bottom: 11px; }
.card p { color: var(--text-low); font-size: 0.96rem; }

.check-list { margin: 18px 0 22px; display: flex; flex-direction: column; gap: 10px; }
.check-list li { position: relative; padding-left: 28px; font-size: 0.92rem; color: var(--text-mid); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 17px; height: 17px; border-radius: 50%;
  background: rgba(63,159,208,0.16); border: 1px solid rgba(63,159,208,0.42);
}
.check-list li::after {
  content: ""; position: absolute; left: 5.5px; top: 7px;
  width: 6px; height: 3.5px; border-left: 1.6px solid var(--gold-300); border-bottom: 1.6px solid var(--gold-300);
  transform: rotate(-45deg);
}
.price-tag { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--text-hi); }
.price-tag span { font-weight: 500; font-size: 0.8rem; color: var(--text-dim); }

/* ---------- Stats ---------- */
.stats-row { display: grid; gap: 24px; }
.stat { text-align: center; padding: 8px; }
.stat .num { font-family: var(--font-serif); font-weight: 400; font-size: clamp(2.4rem, 4.5vw, 3.4rem); line-height: 1; color: var(--text-hi); }
.stat .num .gold-text { display: inline; }
.stat .lbl { color: var(--text-low); font-size: 0.88rem; margin-top: 10px; letter-spacing: 0.02em; }

/* ---------- Split feature ---------- */
.split { display: grid; gap: 54px; align-items: center; }
.split-media {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--line-2);
  background: linear-gradient(160deg, #e6f1f9, #d3e5f1);
  min-height: 340px; box-shadow: var(--shadow-lg);
}

/* ---------- Steps ---------- */
.steps { display: grid; gap: 2px; counter-reset: step; }
.step-row {
  display: grid; gap: 20px; align-items: start;
  padding: 30px 0; border-top: 1px solid var(--line);
  grid-template-columns: auto 1fr;
}
.step-row:last-child { border-bottom: 1px solid var(--line); }
.step-num {
  font-family: var(--font-serif); font-size: 1.4rem; color: var(--gold-300);
  min-width: 60px;
}
.step-row h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step-row p { color: var(--text-low); max-width: 620px; }

/* ---------- Pricing ---------- */
.price-card {
  position: relative;
  background: linear-gradient(165deg, #b7c7d5, #a4b8c9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured {
  border-color: rgba(63,159,208,0.5);
  background: linear-gradient(165deg, rgba(63,159,208,0.10), #ffffff);
  box-shadow: var(--shadow-glow-gold);
}
.price-card .badge {
  position: absolute; top: -13px; left: 28px;
  background: var(--gold-grad); color: #ffffff;
  font-family: var(--font-head); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
}
.price-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.price-card .plan-note { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 20px; }
.price-amount { font-family: var(--font-serif); font-weight: 400; font-size: 2.9rem; line-height: 1; color: var(--text-hi); margin-bottom: 6px; }
.price-amount span { font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; color: var(--text-dim); }
.price-card .feat { margin: 22px 0; display: flex; flex-direction: column; gap: 11px; }
.price-card .feat li { position: relative; padding-left: 26px; font-size: 0.9rem; color: var(--text-mid); }
.price-card .feat li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-300); font-weight: 700; }
.price-card .btn { margin-top: auto; }

/* ---------- Shop cards (prebuilt) ---------- */
.shop-card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #b6c6d4, #a2b6c7);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s var(--ease);
}
.shop-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.shop-visual {
  position: relative; height: 200px;
  display: grid; place-items: center;
  background: radial-gradient(120% 120% at 50% 0%, rgba(111,171,218,0.30), transparent 60%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.shop-visual.gold { background: radial-gradient(120% 120% at 50% 0%, rgba(134,205,238,0.34), transparent 60%); }
.shop-visual .tower { filter: drop-shadow(0 20px 40px rgba(40,80,110,0.28)); }

/* Image gallery (clickable slides) */
.shop-gallery { padding: 0; background: #dbe8f2; }
.gallery-track { position: absolute; inset: 0; }
.gallery-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.4s var(--ease);
  cursor: pointer;
}
.gallery-slide.is-active { opacity: 1; }
.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3; width: 34px; height: 34px; border-radius: 999px;
  display: grid; place-items: center;
  font-size: 1.3rem; line-height: 1; color: #fff;
  background: rgba(22,38,47,0.5); border: 1px solid rgba(255,255,255,0.35);
  cursor: pointer; opacity: 0; transition: opacity 0.3s var(--ease), background 0.2s var(--ease);
  backdrop-filter: blur(4px);
}
.gallery-nav.prev { left: 12px; }
.gallery-nav.next { right: 12px; }
.gallery-nav:hover { background: rgba(22,38,47,0.78); }
.shop-gallery:hover .gallery-nav,
.gallery-nav:focus-visible { opacity: 1; }
.gallery-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 8px;
}
.gallery-dot {
  width: 8px; height: 8px; border-radius: 999px; padding: 0;
  background: rgba(255,255,255,0.55); border: none; cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.gallery-dot:hover { background: rgba(255,255,255,0.85); }
.gallery-dot.is-active { background: #fff; transform: scale(1.25); }
@media (hover: none) { .gallery-nav { opacity: 1; } }
.shop-tier { position: absolute; top: 16px; left: 16px; font-family: var(--font-head); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; border: 1px solid rgba(255,255,255,0.3); padding: 5px 12px; border-radius: 999px; background: rgba(22,38,47,0.45); }
.shop-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.shop-body h3 { font-size: 1.4rem; margin-bottom: 6px; }
.shop-body .tagline { color: var(--gold-300); font-size: 0.85rem; font-family: var(--font-head); font-weight: 500; margin-bottom: 20px; }
.spec-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 22px; }
.spec-list li { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 0.88rem; }
.spec-list li .sk { color: var(--text-dim); }
.spec-list li .sv { color: var(--text-hi); font-weight: 500; text-align: right; }
.shop-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 18px; }
.shop-price .from { color: var(--text-dim); font-size: 0.8rem; }
.shop-price .amt { font-family: var(--font-serif); font-size: 2.3rem; color: var(--text-hi); }
.shop-card .btn { margin-top: auto; }

/* ---------- Testimonials / reviews ---------- */
.review-card {
  background: linear-gradient(165deg, #b7c7d5, #a4b8c9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  break-inside: avoid;
}
.review-card .stars { margin-bottom: 14px; }
.review-card blockquote { font-size: 1.02rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 13px; }
.review-author .av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-weight: 600; color: #ffffff; background: var(--gold-grad); }
.review-author .an { color: var(--text-hi); font-weight: 600; font-size: 0.94rem; }
.review-author .am { color: var(--text-dim); font-size: 0.8rem; }
.reviews-masonry { columns: 3 300px; column-gap: 24px; }
.reviews-masonry .review-card { margin-bottom: 24px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 6px 24px; background: rgba(255,255,255,0.7); box-shadow: var(--shadow-sm); transition: border-color 0.3s var(--ease); }
.faq-item[open] { border-color: var(--line-2); }
.faq-item summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--text-hi); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-item summary .plus::before, .faq-item summary .plus::after { content: ""; position: absolute; background: var(--gold-300); border-radius: 2px; transition: transform 0.3s var(--ease); }
.faq-item summary .plus::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-item summary .plus::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item[open] summary .plus::after { transform: scaleY(0); }
.faq-item p { color: var(--text-low); padding: 0 0 20px; font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-xl); padding: 64px 48px; text-align: center;
  background: linear-gradient(135deg, #eaf4fb, #d7e8f3);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-md);
}
.cta-band .glow { z-index: 0; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 14px; }
.cta-band p { color: var(--text-mid); max-width: 560px; margin: 0 auto 30px; }
.cta-band .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 48px; }
.contact-big {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(160deg, #b6c6d4, #a3b7c8);
  border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 20px 24px; margin-bottom: 13px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--text-hi);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.3s var(--ease);
}
.contact-big:hover { transform: translateY(-3px); border-color: rgba(63,159,208,0.5); }
.contact-big .ic { font-size: 1.35rem; }
.contact-big small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.8rem; color: var(--text-dim); }
.contact-meta { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.contact-meta li { display: flex; gap: 12px; font-size: 0.92rem; color: var(--text-low); }
.contact-meta strong { color: var(--text-mid); font-weight: 600; min-width: 96px; display: inline-block; }

.contact-form { background: linear-gradient(165deg, #b7c7d5, #a4b8c9); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 34px; display: flex; flex-direction: column; gap: 18px; box-shadow: var(--shadow-md); }
.form-row { display: flex; flex-direction: column; gap: 7px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label { font-size: 0.82rem; font-weight: 600; color: var(--text-mid); font-family: var(--font-head); letter-spacing: 0.02em; }
.form-row input, .form-row select, .form-row textarea {
  padding: 13px 15px; border-radius: 11px; border: 1px solid var(--line-2);
  font: inherit; background: #ffffff; color: var(--text-hi);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--text-dim); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--gold-400); box-shadow: 0 0 0 3px rgba(63,159,208,0.16); }
.form-row select option { background: #ffffff; color: var(--text-hi); }
.form-status { font-size: 0.88rem; font-weight: 600; min-height: 20px; }
.form-status.success { color: #15803d; }
.form-status.error { color: #dc2626; }
.form-fine { font-size: 0.78rem; color: var(--text-dim); }

/* ---------- Light section variant ---------- */
.section-light { background: var(--paper); color: var(--ink-on-paper); }
.section-light h2, .section-light h3, .section-light .display { color: var(--ink-on-paper); }
.section-light .lead { color: #3a4256; }
.section-light .sub, .section-light p { color: #4a5266; }
.section-light .eyebrow { color: var(--gold-600); }

/* ---------- Mobile floating bar ---------- */
.mobile-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: flex; background: rgba(247,251,253,0.95); backdrop-filter: blur(14px); border-top: 1px solid var(--line); box-shadow: 0 -10px 30px -18px rgba(30,70,102,0.35); }
.mobile-bar a { flex: 1; text-align: center; padding: 15px 6px; color: var(--text-hi); font-family: var(--font-head); font-weight: 600; font-size: 0.86rem; }
.mobile-bar a.primary { background: var(--gold-grad); color: #ffffff; }

/* ---------- Footer ---------- */
.site-footer { position: relative; overflow: hidden; border-top: 1px solid var(--line); padding: 72px 0 26px; background: var(--ink-1000); }
.footer-top { display: grid; gap: 40px; margin-bottom: 48px; }
.footer-brand p { color: var(--text-low); font-size: 0.9rem; max-width: 300px; margin: 16px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--text-low); transition: color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease); }
.footer-social a:hover { color: var(--gold-300); border-color: var(--line-2); transform: translateY(-2px); }
.footer-col h4 { font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 18px; }
.footer-col a { display: block; color: var(--text-low); font-size: 0.92rem; padding: 6px 0; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--gold-300); }
.footer-contact a.big { color: var(--text-hi); font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 24px; font-size: 0.8rem; color: var(--text-dim); }
.footer-bottom a:hover { color: var(--text-mid); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(4, 1fr); }
  .form-row.two { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
  .main-nav { display: flex; }
  .header-call { display: inline-flex; }
  .nav-toggle { display: none; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .hero-visual { display: block; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .split.reverse .split-media { order: 2; }
  .contact-grid { grid-template-columns: 0.85fr 1.15fr; }
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
  .mobile-bar { display: none; }
}
@media (max-width: 979px) {
  .section { padding: 78px 0; }
}
