
:root {
  --bg: #0a0f1f;
  --bg-soft: #0f172a;
  --surface: rgba(255,255,255,0.08);
  --surface-2: rgba(255,255,255,0.04);
  --card: #ffffff;
  --text: #0f172a;
  --muted: #5b6475;
  --line: rgba(15,23,42,0.08);
  --brand: #0f766e;
  --brand-2: #14b8a6;
  --accent: #f59e0b;
  --light: #f8fafc;
  --shadow: 0 20px 60px rgba(2, 8, 23, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 999px;
  background: rgba(20,184,166,0.12); color: #0f766e;
  font-weight: 700; font-size: 13px; letter-spacing: 0.02em;
}
.section { padding: 88px 0; }
.eyebrow { color: var(--brand); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; font-size: 12px; }
.section-title { margin: 10px 0 14px; font-size: clamp(30px, 4vw, 52px); line-height: 1.05; letter-spacing: -0.03em; }
.inner-title { font-size: clamp(28px, 4vw, 44px); }
.section-copy { color: var(--muted); max-width: 760px; font-size: 17px; }
.cards-top-gap { margin-top: 30px; }
.muted-text { color: var(--muted); }
.content-card {
  background: white; border: 1px solid var(--line); border-radius: 24px; padding: 28px; box-shadow: 0 12px 34px rgba(2,8,23,0.05);
}

.topbar {
  background: #08111a; color: rgba(255,255,255,0.88);
  font-size: 13px; padding: 10px 0;
}
.topbar .row, .nav-inner, .hero-grid, .two-col, .footer-grid, .cta-strip, .page-hero-grid, .quote-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar a { color: #fff; }

header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.nav-inner { min-height: 78px; }
.brand {
  display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -0.02em;
}
.brand-mark {
  width: 42px; height: 42px; border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: grid; place-items: center; color: white; font-weight: 900;
  box-shadow: 0 10px 30px rgba(20,184,166,0.35);
}
.brand-title, .brand-subtitle { display: block; }
.brand-title { font-size: 18px; }
.brand-subtitle { font-size: 12px; color: #64748b; font-weight: 600; }
nav {
  display: flex; align-items: center; gap: 28px; color: #334155; font-weight: 600; font-size: 15px;
}
.nav-cta {
  display: flex; gap: 12px; align-items: center;
}
.menu-toggle {
  display: none; border: 1px solid rgba(15,23,42,0.12); background: white; border-radius: 12px; padding: 12px 14px; cursor: pointer;
}
.mobile-menu {
  border-top: 1px solid rgba(15,23,42,0.06); background: white;
}
.mobile-menu-inner { padding: 18px 0 24px; }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.mobile-menu a { font-weight: 700; color: #334155; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 14px 20px; border-radius: 14px; border: 1px solid transparent;
  font-weight: 700; transition: 0.25s ease; cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: white;
  box-shadow: 0 18px 40px rgba(20,184,166,0.24);
}
.btn-secondary {
  background: white; color: var(--text); border-color: rgba(15,23,42,0.12);
}
.btn-ghost {
  background: rgba(255,255,255,0.08); color: white; border-color: rgba(255,255,255,0.12);
}
.btn-light {
  background: white; color: var(--text); box-shadow: none;
}
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero, .page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(20,184,166,0.28), transparent 32%),
    radial-gradient(circle at top right, rgba(245,158,11,0.18), transparent 28%),
    linear-gradient(180deg, #07111f 0%, #0b1329 100%);
  color: white;
  padding: 84px 0 56px;
}
.slim-hero { padding: 64px 0 32px; }
.hero::after, .page-hero::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 120px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.06));
  pointer-events: none;
}
.hero-grid, .page-hero-grid { align-items: stretch; gap: 38px; }
.hero-copy, .hero-visual, .two-col-content, .metrics-column { min-width: 0; }
.hero-copy { flex: 1.1; }
.hero-visual { flex: 0.95; }
.two-col-content { flex: 1; }
.metrics-column { flex: 0.95; display: grid; gap: 18px; }
.hero h1, .page-hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(40px, 6vw, 70px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 720px;
}
.hero p, .page-hero p { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 650px; margin: 0 0 28px; }
.hero-actions, .hero-points, .social-proof, .badge-row { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-points { margin-top: 22px; }
.social-proof { margin-top: 18px; }
.hero-points span, .social-proof span {
  padding: 10px 14px; border-radius: 999px; font-weight: 600; font-size: 14px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.1);
}
.visual-card, .visual-panel {
  height: 100%; min-height: 520px; border-radius: var(--radius-xl); padding: 24px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
  display: grid; grid-template-rows: auto 1fr auto; gap: 18px;
}
.visual-top {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.visual-kicker { font-size: 14px; color: rgba(255,255,255,0.65); font-weight: 700; }
.visual-title { font-size: 26px; font-weight: 800; letter-spacing: -0.03em; }
.mini-tag {
  padding: 8px 12px; border-radius: 999px; font-size: 12px; font-weight: 700;
  color: #d1fae5; background: rgba(16,185,129,0.12); border: 1px solid rgba(255,255,255,0.12);
}
.gift-board { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.gift-item {
  position: relative; overflow: hidden; border-radius: 22px; padding: 18px;
  min-height: 150px; background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
}
.gift-item::before {
  content: ""; position: absolute; right: -16px; top: -16px;
  width: 120px; height: 120px; border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 65%);
}
.gift-item h4 { margin: 0 0 6px; font-size: 18px; }
.gift-item p { margin: 0; font-size: 13px; color: rgba(255,255,255,0.72); }
.gift-icon {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(255,255,255,0.12); font-size: 22px; margin-bottom: 18px;
}
.quote-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px; padding: 18px;
}
.quote-card .cell {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 14px;
}
.quote-card strong { display: block; font-size: 13px; color: rgba(255,255,255,0.64); margin-bottom: 6px; }
.quote-card span { font-size: 18px; font-weight: 700; }
.floating-bar {
  margin-top: -34px; position: relative; z-index: 2;
}
.floating-panel {
  background: white; border: 1px solid rgba(15,23,42,0.08); border-radius: 26px; padding: 22px;
  box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.2fr; gap: 16px; align-items: center;
}
.floating-panel .item {
  padding: 10px 14px; border-radius: 18px; background: var(--light); border: 1px solid var(--line);
}
.floating-panel strong { display: block; font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.floating-panel span { font-weight: 700; }
.logos { padding: 28px 0 0; }
.logo-cloud {
  margin-top: 24px;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.logo-chip {
  padding: 18px; border: 1px solid var(--line); background: white; border-radius: 18px; text-align: center;
  color: #334155; font-weight: 700; box-shadow: 0 8px 24px rgba(2,8,23,0.04);
}
.grid-2, .grid-3, .grid-4 { display: grid; gap: 22px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card, .product-card {
  background: white; border: 1px solid var(--line); border-radius: 24px; padding: 24px; box-shadow: 0 12px 34px rgba(2,8,23,0.05);
}
.category-card, .solution-card, .feature-card, .testimonial, .faq-item, .product-card, .metric-card, .blog-card { position: relative; overflow: hidden; }
.category-card:hover, .product-card:hover, .solution-card:hover { transform: translateY(-4px); transition: 0.25s ease; }
.category-icon, .feature-icon {
  width: 56px; height: 56px; border-radius: 18px;
  display: grid; place-items: center; font-size: 28px;
  background: linear-gradient(135deg, rgba(15,118,110,0.16), rgba(20,184,166,0.08));
  margin-bottom: 18px;
}
.card h3, .card-title { margin: 0 0 10px; font-size: 22px; letter-spacing: -0.02em; }
.card p { margin: 0; color: var(--muted); }
.card .link {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; color: var(--brand); font-weight: 800;
}
.band {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.process-step {
  display: flex; gap: 14px; align-items: flex-start;
}
.step-no {
  min-width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: white; font-weight: 800;
  box-shadow: 0 12px 24px rgba(20,184,166,0.2);
}
.product-card {
  padding: 0; border-radius: 24px; background: white; border: 1px solid var(--line); box-shadow: 0 12px 34px rgba(2,8,23,0.05);
}
.product-media {
  min-height: 210px; padding: 22px; background: linear-gradient(160deg, #eff6ff, #ecfeff 45%, #f8fafc);
  border-bottom: 1px solid var(--line); position: relative;
}
.product-media.alt-1 { background: linear-gradient(160deg, #fef3c7, #fff7ed 50%, #fff); }
.product-media.alt-2 { background: linear-gradient(160deg, #ede9fe, #f5f3ff 50%, #fff); }
.product-media.alt-3 { background: linear-gradient(160deg, #dcfce7, #ecfdf5 50%, #fff); }
.product-badge {
  display: inline-flex; padding: 8px 12px; border-radius: 999px; background: white; border: 1px solid var(--line);
  font-size: 12px; font-weight: 800; color: #334155;
}
.product-shape {
  position: absolute; right: 22px; bottom: 18px; width: 120px; height: 120px; border-radius: 24px;
  background: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 20px 30px rgba(15,23,42,0.08);
  display: grid; place-items: center; font-size: 48px;
  transform: rotate(-8deg);
}
.product-body { padding: 22px; }
.product-meta {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px;
}
.product-meta span {
  font-size: 12px; font-weight: 700; color: var(--muted);
  padding: 8px 10px; border-radius: 999px; background: var(--light); border: 1px solid var(--line);
}
.metric-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  text-align: left;
}
.metric-card .number {
  font-size: clamp(32px, 4vw, 54px); line-height: 1; letter-spacing: -0.05em; font-weight: 800; margin: 12px 0 8px;
}
.metric-card small { color: var(--brand); font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.metric-card p, .testimonial p { color: #334155; }
.testimonial p {
  font-size: 17px;
}
.person {
  margin-top: 18px; display: flex; gap: 14px; align-items: center;
}
.avatar {
  width: 52px; height: 52px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(15,118,110,0.16), rgba(20,184,166,0.08));
  display: grid; place-items: center; font-weight: 800; color: var(--brand);
}
.person strong { display: block; }
.person span { color: var(--muted); font-size: 14px; }
.quote-section {
  background:
    radial-gradient(circle at top right, rgba(20,184,166,0.12), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.lead-wrap {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr); gap: 26px; align-items: stretch;
}
.lead-card {
  background: white; border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow);
  padding: 28px;
}
.lead-list { display: grid; gap: 14px; margin-top: 24px; }
.lead-list .row { display: flex; gap: 14px; align-items: flex-start; }
.tick {
  width: 28px; height: 28px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(20,184,166,0.12); color: var(--brand); font-weight: 800; flex: none;
}
form { display: grid; gap: 14px; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field-grid > * { min-width: 0; }
.lead-card form,
.lead-card form > * { max-width: 100%; }
input, select, textarea {
  width: 100%; padding: 15px 16px; border-radius: 14px; border: 1px solid rgba(15,23,42,0.12);
  background: #fff; font: inherit; color: var(--text); outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(15,118,110,0.4); box-shadow: 0 0 0 4px rgba(20,184,166,0.1);
}
textarea { min-height: 140px; resize: vertical; }
.form-note { color: var(--muted); font-size: 13px; margin-top: 10px; }
.alert { padding: 14px 16px; border-radius: 14px; font-weight: 600; margin-bottom: 14px; }
.alert.success { background: #ecfdf5; color: #166534; border: 1px solid #bbf7d0; }
.alert.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 700; font-size: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 14px 0 0; color: var(--muted); }
.cta-banner {
  background: linear-gradient(135deg, #0b1329, #0f766e);
  color: white; border-radius: 30px; padding: 34px; box-shadow: 0 24px 60px rgba(15,118,110,0.18);
}
.cta-banner h3 { margin: 0 0 10px; font-size: clamp(28px, 3vw, 42px); line-height: 1.05; letter-spacing: -0.03em; }
.cta-banner p { margin: 0; color: rgba(255,255,255,0.78); max-width: 760px; }
.check-list, .contact-stack, .service-card-stack {
  display: grid; gap: 14px;
}
.check-list span, .contact-stack a, .contact-stack div, .mini-service-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 18px; padding: 16px;
}
.contact-stack strong, .mini-service-card strong { display: block; margin-bottom: 6px; }
.contact-stack span, .mini-service-card span { color: rgba(255,255,255,0.78); }
.service-card-stack .mini-service-card { background: rgba(255,255,255,0.08); }
.page-content-section { padding-top: 40px; }
.rich-text-content p, .rich-text-content li { color: var(--muted); font-size: 17px; }
.rich-text-content h2, .rich-text-content h3 { letter-spacing: -0.02em; }
.quote-strip { align-items: center; }
footer {
  background: #08111a; color: rgba(255,255,255,0.84); padding: 78px 0 34px;
}
.footer-grid { align-items: flex-start; }
.footer-grid > div { flex: 1; }
.footer-title { color: white; font-size: 18px; font-weight: 800; margin-bottom: 16px; }
.footer-list { display: grid; gap: 12px; }
.footer-copy { max-width: 420px; color: rgba(255,255,255,0.68); }
.footer-pills { margin-top: 18px; }
.footer-note {
  margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.56); font-size: 14px;
}
.footer-pill {
  display: inline-flex; padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05); margin: 0 10px 10px 0; font-size: 13px;
}
.sticky-quote {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: white;
  padding: 14px 18px; border-radius: 999px; box-shadow: 0 18px 40px rgba(20,184,166,0.32);
  font-weight: 800;
}

@media (max-width: 1120px) {
  nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero-grid, .footer-grid, .two-col, .cta-strip, .page-hero-grid, .quote-strip { flex-direction: column; }
  .lead-wrap { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .grid-2, .logo-cloud { grid-template-columns: repeat(2, 1fr); }
  .floating-panel { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 740px) {
  .section { padding: 68px 0; }
  .lead-wrap { grid-template-columns: 1fr; gap: 18px; }
  .lead-card { width: 100%; }
  .form-note { overflow-wrap: anywhere; }
  .hero, .page-hero { padding-top: 56px; }
  .field-grid, .quote-card, .floating-panel, .grid-4, .grid-3, .grid-2, .logo-cloud, .gift-board { grid-template-columns: 1fr; }
  .topbar .row { flex-direction: column; align-items: flex-start; }
  .nav-cta { width: 100%; justify-content: flex-end; }
  .visual-card, .visual-panel { min-height: auto; }
  .sticky-quote { left: 14px; right: 14px; justify-content: center; }
  .btn { width: 100%; }
  .hero-actions, .cta-actions { flex-direction: column; width: 100%; }
}


.gift-item--photo { padding: 0; min-height: 0; background: rgba(255,255,255,0.08); }
.gift-thumb {
  width: 100%; height: 148px; object-fit: cover; display: block;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.gift-copy { padding: 16px; }
.card-media {
  width: 100%; height: 180px; object-fit: cover; border-radius: 18px; margin-bottom: 18px;
  background: linear-gradient(180deg, #f8fafc, #eef2ff); border: 1px solid rgba(15,23,42,0.06);
}
.card-media--contain {
  object-fit: contain; padding: 20px; background: linear-gradient(180deg, #f8fafc, #ffffff);
}
.product-media {
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.product-photo {
  width: 100%; height: 100%; max-height: 230px; object-fit: contain; display: block;
  margin-top: 16px;
}
.product-photo--contain { object-fit: contain; }
.panel-photo {
  width: 100%; height: 220px; object-fit: cover; border-radius: 18px; margin-bottom: 18px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
}
.panel-photo--contain {
  object-fit: contain; background: rgba(255,255,255,0.1); padding: 16px;
}

/* Production catalogue templates */
.page-hero { padding: 72px 0 34px; background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%); border-bottom: 1px solid rgba(15,23,42,0.06); }
.page-hero--catalogue { background: radial-gradient(circle at top right, rgba(20,184,166,0.14), transparent 28%), linear-gradient(180deg, #f8fafc 0%, #ffffff 100%); }
.page-hero--product { background: radial-gradient(circle at top left, rgba(20,184,166,0.12), transparent 28%), linear-gradient(180deg, #f8fafc 0%, #ffffff 100%); }
.hero-side-visual { display:flex; justify-content:flex-end; align-items:center; }
.hero-side-visual--product { justify-content:center; }
.section-image { width:100%; max-width:480px; border-radius:28px; border:1px solid rgba(15,23,42,0.08); box-shadow:0 24px 54px rgba(15,23,42,0.10); background:#fff; object-fit:cover; }
.section-image--product { max-width:520px; padding:18px; background:linear-gradient(180deg, #fff 0%, #f8fafc 100%); }
.catalogue-grid .product-card--catalogue { height:100%; }
.product-media--catalogue { display:block; min-height:250px; }
.product-card--catalogue .product-photo { height:220px; object-fit:contain; width:100%; }
.eyebrow--small { font-size:11px; letter-spacing:.08em; text-transform:uppercase; font-weight:800; color:var(--brand); margin-bottom:8px; }
.card--soft { background:linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); }
.rich-copy p { color: var(--muted); }
.feature-list { margin:0; padding-left:18px; color:var(--muted); }
.empty-state { padding:24px; background:#f8fafc; border:1px solid rgba(15,23,42,0.08); border-radius:18px; }
.product-meta--single { margin:18px 0 24px; }
@media (max-width: 1120px) {
  .hero-side-visual { justify-content:flex-start; }
}

/* UI fixes: light inner hero consistency, menu cleanup, mobile header layout */
.page-hero {
  color: var(--text);
}
.page-hero .section-title,
.page-hero h1,
.page-hero h2,
.page-hero h3,
.page-hero strong {
  color: var(--text);
}
.page-hero p,
.page-hero .section-copy,
.page-hero .muted-text {
  color: var(--muted);
}
.page-hero .hero-points span,
.page-hero .social-proof span {
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(2,8,23,0.04);
}
.page-hero .visual-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: var(--text);
}
.page-hero .visual-panel .eyebrow {
  color: var(--brand);
}
.page-hero .panel-photo {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid var(--line);
}
.page-hero .check-list span,
.page-hero .contact-stack a,
.page-hero .contact-stack div,
.page-hero .mini-service-card {
  background: var(--light);
  border: 1px solid var(--line);
  color: var(--text);
}
.page-hero .contact-stack span,
.page-hero .mini-service-card span {
  color: var(--muted);
}
.page-hero::after {
  background: linear-gradient(180deg, transparent, rgba(15,23,42,0.02));
}

nav > li,
nav .menu-item,
.footer-list > li,
.footer-list .menu-item {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav > li a,
nav .menu-item a,
.footer-list > li a,
.footer-list .menu-item a {
  display: inline-flex;
  align-items: center;
}
.footer-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.footer-brand .brand-subtitle {
  color: rgba(255,255,255,0.56);
}
.footer-widget-area {
  margin-top: 18px;
}
.footer-widget > *:last-child {
  margin-bottom: 0;
}
body.menu-open {
  overflow: hidden;
}

@media (max-width: 740px) {
  .nav-inner {
    min-height: auto;
    padding: 12px 0;
    flex-wrap: wrap;
  }
  .nav-cta {
    width: auto;
    margin-left: auto;
    justify-content: flex-end;
  }
  .nav-cta .btn {
    display: none;
  }
  .page-hero .hero-points span,
  .page-hero .social-proof span {
    width: 100%;
    justify-content: center;
  }
}

.mobile-menu-actions .btn {
  width: 100%;
}


/* Responsive hardening and cross-page layout fixes */
html, body {
  overflow-x: hidden;
}
section[id] {
  scroll-margin-top: 110px;
}
nav a,
.mobile-menu a,
.footer-list a {
  overflow-wrap: anywhere;
}
.brand {
  min-width: 0;
}
.brand > span:last-child {
  min-width: 0;
}
.brand-title,
.brand-subtitle {
  overflow-wrap: anywhere;
}
nav,
.nav-cta,
.hero-actions,
.cta-actions,
.hero-points,
.social-proof,
.shop-archive-pills,
.product-meta {
  min-width: 0;
}
.page-hero .section-title,
.page-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.02;
}
.page-hero .content-card.visual-panel,
.page-hero .visual-panel {
  min-height: 0;
  grid-template-rows: auto auto 1fr;
}
.content-card,
.card,
.product-card,
.lead-card {
  min-width: 0;
}
.visual-top {
  flex-wrap: wrap;
}
.page-hero-grid > *,
.two-col > *,
.lead-wrap > *,
.quote-strip > * {
  min-width: 0;
}
.hero-side-visual,
.hero-visual {
  min-width: 0;
}
.section-image,
.panel-photo,
.card-media,
.product-photo,
.gift-thumb {
  width: 100%;
}
.mobile-menu {
  max-height: calc(100vh - 88px);
  overflow: auto;
}
.shop-archive-pills {
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.shop-pill {
  white-space: nowrap;
}
.floating-panel,
.shop-toolbar,
.quote-card {
  align-items: stretch;
}
.floating-panel .btn {
  align-self: stretch;
}
.feature-list li + li {
  margin-top: 8px;
}
.footer-grid .footer-list,
.footer-grid .footer-list ul {
  min-width: 0;
}
.footer-list span {
  overflow-wrap: anywhere;
}
.wc-product-card__media,
.product-media {
  min-width: 0;
}
.wc-product-card__media img,
.product-card--catalogue .product-photo,
.product-photo {
  max-width: 100%;
}
body.page-template-template-contact .sticky-quote,
body.page-template-template-contact-php .sticky-quote {
  display: none;
}

@media (max-width: 1120px) {
  .nav-inner {
    align-items: center;
    gap: 12px;
  }
  .visual-card,
  .visual-panel,
  .content-card.visual-panel {
    min-height: 0;
  }
  .floating-bar {
    margin-top: 16px;
  }
  .floating-panel {
    grid-template-columns: 1fr;
  }
  .hero-side-visual,
  .hero-visual {
    justify-content: center;
  }
  .section-image {
    max-width: 100%;
  }
  .shop-toolbar {
    flex-wrap: wrap;
  }
}

@media (max-width: 740px) {
  section[id] {
    scroll-margin-top: 88px;
  }
  .container {
    width: min(calc(100% - 24px), var(--max));
  }
  .topbar {
    display: none;
  }
  header {
    top: 0;
  }
  .nav-inner {
    padding: 10px 0;
    align-items: center;
  }
  .brand {
    gap: 10px;
    max-width: calc(100% - 58px);
  }
  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
  .brand-title {
    font-size: 16px;
    line-height: 1.1;
  }
  .brand-subtitle {
    display: none;
  }
  .menu-toggle {
    padding: 10px 12px;
    line-height: 1;
    flex: none;
  }
  .hero,
  .page-hero {
    padding-top: 42px;
    padding-bottom: 38px;
  }
  .hero h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.02;
  }
  .page-hero .section-title,
  .page-hero h1 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.06;
  }
  .hero p,
  .page-hero p,
  .section-copy,
  .rich-text-content p,
  .rich-text-content li {
    font-size: 16px;
  }
  .section,
  .page-content-section {
    padding: 56px 0;
  }
  .floating-bar {
    margin-top: 14px;
  }
  .floating-panel {
    padding: 16px;
    border-radius: 20px;
  }
  .visual-card,
  .visual-panel,
  .lead-card,
  .content-card,
  .card,
  .product-card,
  .wc-single-card,
  .shop-toolbar,
  .cta-banner {
    padding: 18px;
    border-radius: 20px;
  }
  .visual-top {
    gap: 8px;
  }
  .visual-title {
    font-size: 22px;
  }
  .gift-copy,
  .product-body {
    padding: 18px;
  }
  .product-media {
    min-height: 190px;
  }
  .product-photo {
    max-height: 180px;
  }
  .product-card--catalogue .product-photo,
  .product-media--catalogue {
    height: auto;
    min-height: 0;
  }
  .hero-points span,
  .social-proof span,
  .page-hero .hero-points span,
  .page-hero .social-proof span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .quote-card .cell,
  .floating-panel .item,
  .shop-pill,
  .product-meta span {
    text-align: center;
  }
  .panel-photo,
  .section-image {
    border-radius: 20px;
  }
  .section-image--product {
    padding: 12px;
  }
  .footer-grid {
    gap: 28px;
  }
  .footer-note {
    margin-top: 20px;
    padding-top: 18px;
  }
  .sticky-quote {
    display: none;
  }
}



.metric-card--text .metric-heading {
  margin: 10px 0 0;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}
.contact-panel {
  align-content: start;
  min-height: 0;
}
.contact-card__media {
  width: 100%;
  aspect-ratio: 5 / 2;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid var(--line);
  margin-bottom: 18px;
}
.contact-card__media .panel-photo {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
}
.page-template-template-contact .page-hero-grid {
  align-items: start;
}
.page-template-template-contact .contact-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.page-template-template-contact .contact-stack > *:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}
@media (max-width: 900px) {
  .page-template-template-contact .contact-stack {
    grid-template-columns: 1fr;
  }
  .contact-card__media {
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 740px) {
  .contact-card__media {
    aspect-ratio: 3 / 2;
    border-radius: 16px;
    margin-bottom: 16px;
  }
  .page-template-template-contact .visual-panel,
  .page-template-template-contact .content-card.visual-panel {
    padding: 18px;
  }
}
