:root {
  --ink: #231f20;
  --muted: #647b99;
  --line: #dfe6ed;
  --paper: #ffffff;
  --soft: #f6f8fa;
  --brand: #496e6d;
  --brand-dark: #231f20;
  --cyan: #78a9a7;
  --purple: #647b99;
  --accent: #496e6d;
  --gold: #c2a467;
  --shadow: 0 22px 55px rgba(35, 31, 32, 0.12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: #fbfbfa;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.28);
  outline-offset: 2px;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
}
.brand span { color: var(--brand); }
.logo-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.logo-brand img {
  width: auto;
  height: 42px;
  max-width: 172px;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}
.nav a { color: var(--ink); }
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.button:hover { transform: translateY(-1px); }
.nav-cta,
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #647b99);
  box-shadow: 0 12px 26px rgba(73, 110, 109, 0.22);
}
.nav-cta:hover,
.button.primary:hover {
  color: #fff;
  background: var(--brand-dark);
}
.button.secondary {
  color: var(--brand-dark);
  background: #fff;
  border-color: var(--line);
}
.button.light {
  color: var(--brand-dark);
  background: #fff;
}
.button.secondary:hover,
.button.light:hover {
  color: var(--brand-dark);
  background: var(--soft);
}
.menu-button {
  display: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  min-height: 40px;
  padding: 8px 12px;
  font: inherit;
  font-weight: 700;
}

.hero {
  min-height: 84vh;
  display: flex;
  align-items: center;
  padding: clamp(48px, 8vw, 92px) clamp(18px, 4vw, 56px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(9, 35, 40, 0.82), rgba(9, 35, 40, 0.34)),
    url("https://images.unsplash.com/photo-1581093588401-fbb62a02f120?auto=format&fit=crop&w=1800&q=80") center/cover;
}
.hero-content {
  max-width: 720px;
}
.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 14vw, 9rem);
  line-height: 0.9;
}
.hero p {
  max-width: 650px;
  font-size: 1.25rem;
}
.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.section,
.page-title,
.product-detail,
.article,
.cta-band {
  padding: clamp(42px, 7vw, 84px) clamp(18px, 4vw, 56px);
}
.section { max-width: 1240px; margin: 0 auto; }
.section.muted {
  max-width: none;
  background: var(--soft);
}
.section.muted > * { max-width: 1240px; margin-left: auto; margin-right: auto; }
.section.compact { padding-top: 26px; padding-bottom: 26px; }
.section.narrow,
.article {
  max-width: 860px;
  margin: 0 auto;
}
.page-title {
  display: grid;
  gap: 24px;
  background: var(--soft);
}
.page-title h1,
.section h2,
.product-copy h1,
.article h1 {
  margin: 0 0 10px;
  line-height: 1.05;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
}
.page-title h1 { font-size: clamp(2.4rem, 7vw, 5rem); }
.page-title p { max-width: 740px; color: var(--muted); font-size: 1.1rem; }
.page-title.with-image {
  grid-template-columns: 1fr minmax(280px, 430px);
  align-items: center;
}
.page-title.with-image img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.section-head,
.intro-grid,
.contact-grid,
.detail-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 28px;
}
.intro-grid,
.contact-grid,
.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stats span,
.info-card,
.detail-grid article,
.contact-panel,
.admin-stats article {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.stats strong {
  display: block;
  color: var(--brand);
  font-size: 2rem;
}

.card-grid,
.product-grid {
  display: grid;
  gap: 20px;
}
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.four,
.product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.category-card,
.product-card,
.service-card,
.blog-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.category-card:hover,
.product-card:hover,
.service-card:hover,
.blog-card:hover {
  transform: translateY(-2px);
  border-color: #cbd7df;
  box-shadow: 0 14px 32px rgba(24, 33, 47, 0.1);
}
.category-card img,
.product-card img,
.blog-card img {
  height: 190px;
}
.service-card img { height: 240px; }
.category-card div,
.product-card div,
.service-card div,
.blog-card div {
  padding: 18px;
}
.product-card h3,
.category-card h3,
.blog-card h2 {
  margin: 0 0 8px;
}
.product-card p,
.category-card p,
.service-card p,
.blog-card p,
.info-card p {
  color: var(--muted);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.service-strip a,
.pill-grid a {
  display: block;
  padding: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.service-strip span {
  display: block;
  font-weight: 800;
}
.service-strip small { color: var(--muted); }
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill-grid a {
  padding: 9px 13px;
}
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  background: var(--brand-dark);
}
.cta-band p { color: #d6eeeb; }

.filter-bar,
.lead-form {
  display: grid;
  gap: 14px;
}
.filter-bar {
  grid-template-columns: 1fr 260px auto;
  margin-bottom: 28px;
}
input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}
textarea { resize: vertical; }
label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}
.lead-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.span-2 { grid-column: 1 / -1; }

.quantity-presets {
  display: flex;
  flex-wrap: wrap;
  align-self: end;
  gap: 8px;
}

.quantity-presets button {
  min-height: 42px;
  padding: 9px 14px;
  color: var(--brand);
  background: #f6f9fb;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.quantity-presets button:hover,
.quantity-presets button:focus-visible {
  color: #fff;
  background: var(--brand);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.8fr);
  gap: 42px;
  align-items: center;
}
.gallery .main-image {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.thumbs button {
  height: 86px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
}
.thumbs button:hover { border-color: var(--brand); }
.product-copy h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
.article img {
  height: min(420px, 60vw);
  margin: 22px 0;
  border-radius: 8px;
}
.article-body {
  color: #303b49;
  font-size: 1.08rem;
}
.notice {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 700;
}
.notice.success { color: #075c4b; background: #dff8ef; }
.notice.error { color: #7a1d1d; background: #ffe5e5; }
.map-box {
  display: grid;
  min-height: 260px;
  place-items: center;
  color: var(--muted);
  background:
    linear-gradient(45deg, rgba(15, 118, 110, 0.14) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(180, 77, 46, 0.12) 25%, transparent 25%),
    #f6faf9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.home-main {
  overflow: hidden;
}
.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 78% 16%, rgba(8, 199, 212, 0.22), transparent 28%),
    radial-gradient(circle at 18% 18%, rgba(109, 93, 252, 0.16), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}
.home-hero::before {
  position: absolute;
  inset: auto 8% 8% auto;
  width: 38vw;
  height: 38vw;
  min-width: 300px;
  min-height: 300px;
  content: "";
  background: linear-gradient(135deg, rgba(73, 110, 109, 0.13), rgba(100, 123, 153, 0.12));
  border-radius: 50%;
  filter: blur(18px);
}
.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}
.hero-copy h1 {
  max-width: 920px;
  margin: 0;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}
.hero-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}
.hero-image-stack {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  grid-template-rows: 220px 190px;
  gap: 14px;
}
.hero-image-stack img {
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.hero-image-stack img:first-child {
  grid-row: 1 / 3;
}
.floating-panel {
  position: absolute;
  right: 24px;
  bottom: -24px;
  display: grid;
  gap: 2px;
  min-width: 180px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.floating-panel strong {
  color: var(--brand);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 1.45rem;
}
.hero-orbit span {
  position: absolute;
  z-index: 1;
  width: 10px;
  height: 10px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(8, 199, 212, 0.12);
  animation: float-dot 6s ease-in-out infinite;
}
.hero-orbit span:nth-child(1) { top: 18%; left: 50%; }
.hero-orbit span:nth-child(2) { right: 8%; top: 42%; animation-delay: 1.6s; background: var(--purple); }
.hero-orbit span:nth-child(3) { left: 8%; bottom: 18%; animation-delay: 3.1s; }
@keyframes float-dot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.trust-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(18px, 5vw, 72px);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}
.trust-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-strip span {
  padding: 8px 13px;
  color: var(--brand-dark);
  background: #eef3f3;
  border-radius: 999px;
  font-weight: 700;
}
.home-about {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 1fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.about-collage {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr;
  grid-template-rows: 210px 190px;
  gap: 14px;
}
.about-collage img {
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.about-collage img:first-child {
  grid-row: 1 / 3;
}
.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}
.check-list li {
  display: grid;
  gap: 2px;
  padding-left: 18px;
  border-left: 3px solid var(--cyan);
}
.check-list span {
  color: var(--muted);
}
.section-head.centered {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}
.solution-section {
  max-width: none;
  background: linear-gradient(180deg, #fff, #f3f8ff);
}
.solution-section > * {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.solution-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.solution-card {
  position: relative;
  min-height: 320px;
  padding: 28px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(135deg, #496e6d, #647b99);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.solution-card:nth-child(2) {
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #231f20, #647b99);
}
.solution-card:nth-child(3) {
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #364b5e, #496e6d);
}
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(35, 31, 32, 0.18);
}
.solution-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 42px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  font-weight: 800;
}
.solution-card h3 {
  max-width: 280px;
  margin: 0 0 10px;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 1.45rem;
}
.solution-card p {
  color: rgba(255, 255, 255, 0.84);
}
.solution-card a {
  display: inline-flex;
  margin-top: 18px;
  color: #fff;
  font-weight: 800;
}
.tab-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.tab-controls button {
  min-height: 38px;
  padding: 8px 14px;
  color: var(--brand-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}
.tab-controls button.active {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}
.premium-products .product-card.hidden {
  display: none;
}
.premium-product p {
  margin-bottom: 4px;
}
.premium-product p + h3 {
  min-height: 3.2em;
}
.premium-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(48px, 7vw, 78px) clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    radial-gradient(circle at 15% 15%, rgba(8, 199, 212, 0.25), transparent 30%),
    linear-gradient(135deg, #231f20, #33465a 58%, #496e6d);
}
.premium-cta h2 {
  max-width: 780px;
  margin: 0;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}
.premium-cta p:not(.eyebrow) {
  max-width: 680px;
  color: #e8eeee;
}
.button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(35, 31, 32, 0.06);
}
.feature-grid span {
  color: var(--cyan);
  font-weight: 800;
}
.feature-grid h3 {
  margin: 12px 0 6px;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
}
.feature-grid p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 24px;
  padding: 52px clamp(18px, 4vw, 56px);
  color: #e8eeee;
  background:
    radial-gradient(circle at 10% 0%, rgba(8, 199, 212, 0.28), transparent 28%),
    linear-gradient(135deg, #231f20, #2f3b48 58%, #496e6d);
}
.site-footer strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
}
.footer-logo {
  display: inline-flex;
  padding: 8px;
  margin-bottom: 12px;
  background: #fff;
  border-radius: 8px;
}
.footer-logo img {
  width: auto;
  height: 46px;
  max-width: 190px;
  object-fit: contain;
}
.site-footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 0.95rem;
}
.site-footer a,
.site-footer span {
  display: block;
  color: #e8eeee;
  margin-bottom: 8px;
}
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.social-links a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.admin-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
  background: #f4f6f8;
}
.admin-sidebar {
  padding: 22px;
  background: #fff;
  border-right: 1px solid var(--line);
}
.admin-sidebar nav {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}
.admin-sidebar a {
  padding: 10px;
  color: var(--ink);
  border-radius: 6px;
}
.admin-sidebar a:hover { background: var(--soft); }
.admin-main {
  padding: 28px;
  overflow-x: auto;
}
.admin-title {
  margin-bottom: 22px;
}
.admin-title h1 { margin: 0; }
.admin-grid {
  display: grid;
  grid-template-columns: minmax(300px, 420px) 1fr;
  gap: 24px;
  align-items: start;
}
.admin-form,
.login-box {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.admin-login {
  display: grid;
  min-height: 72vh;
  place-items: center;
  padding: 20px;
}
.login-box { width: min(420px, 100%); }
.hint { color: var(--muted); font-size: 0.9rem; }
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.admin-stats strong {
  display: block;
  color: var(--brand);
  font-size: 2.2rem;
}
.admin-domain-title {
  margin-top: 32px;
}
.admin-domain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.admin-domain-grid article {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.admin-domain-grid span {
  color: var(--brand);
  font-weight: 800;
}
.admin-domain-grid h3 {
  margin: 8px 0 12px;
}
.table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
th,
td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}
th { background: #f7faf9; }
.inline-form {
  display: flex;
  gap: 6px;
}
.inline-form button {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}
.check {
  display: flex;
  align-items: center;
  gap: 8px;
}
.check input { width: auto; min-height: auto; }

/* Refined VINLAB theme and homepage alignment */
.site-header {
  min-height: 72px;
  padding-inline: clamp(20px, 5vw, 72px);
}
.site-header .logo-brand img {
  height: 44px;
  max-width: 184px;
}
.nav {
  gap: clamp(12px, 1.6vw, 22px);
}
.home-hero {
  grid-template-areas: "copy visual";
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.9fr);
  max-width: 1440px;
  min-height: min(760px, calc(100vh - 72px));
  margin: 0 auto;
  padding: clamp(52px, 6vw, 86px) clamp(20px, 5vw, 76px);
  background:
    radial-gradient(circle at 78% 16%, rgba(73, 110, 109, 0.18), transparent 28%),
    radial-gradient(circle at 16% 18%, rgba(100, 123, 153, 0.16), transparent 25%),
    linear-gradient(180deg, #fbfbfa 0%, #f1f5f6 100%);
}
.home-hero::before {
  background: linear-gradient(135deg, rgba(73, 110, 109, 0.13), rgba(100, 123, 153, 0.12));
}
.hero-copy {
  grid-area: copy;
  max-width: 700px;
  justify-self: start;
}
.hero-copy h1 {
  max-width: 700px;
  font-size: clamp(2.45rem, 4.8vw, 4.95rem);
  font-weight: 700;
  line-height: 1.04;
}
.hero-copy p:not(.eyebrow) {
  max-width: 590px;
  margin-block: 18px 0;
  color: #4d5968;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}
.hero-actions {
  align-items: center;
}
.hero-visual {
  grid-area: visual;
  width: min(100%, 530px);
  justify-self: end;
}
.hero-image-stack {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.78fr);
  grid-template-rows: clamp(170px, 14vw, 235px) clamp(150px, 12vw, 200px);
}
.hero-image-stack img,
.about-collage img {
  border-radius: 16px;
}
.floating-panel {
  right: clamp(12px, 3vw, 28px);
  bottom: clamp(-18px, -2vw, -12px);
}
.trust-strip {
  grid-template-columns: minmax(230px, auto) 1fr;
  max-width: 1320px;
  margin: 0 auto;
  border-inline: 1px solid var(--line);
}
.trust-strip span {
  color: var(--brand-dark);
  background: #eef3f3;
}
.section,
.solution-section > *,
.home-products,
.why-grid,
.home-blog {
  width: min(100%, 1240px);
}
.section {
  padding-inline: clamp(20px, 5vw, 64px);
}
.home-about {
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
}
.home-about h2,
.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 3.5rem);
}
.home-about > div:last-child {
  max-width: 620px;
}
.about-collage {
  grid-template-rows: clamp(180px, 16vw, 250px) clamp(160px, 14vw, 220px);
}
.solution-section {
  padding-inline: 0;
  background:
    linear-gradient(180deg, #fff 0%, #f7f9f9 100%);
}
.solution-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(135deg, #496e6d, #647b99);
}
.solution-card:nth-child(2) {
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(135deg, #231f20, #647b99);
}
.solution-card:nth-child(3) {
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(135deg, #364b5e, #496e6d);
}
.solution-card p {
  flex: 1;
}
.solution-icon {
  margin-bottom: 34px;
}
.home-products .section-head {
  align-items: center;
}
.tab-controls {
  align-self: center;
  min-width: max-content;
}
.tab-controls button.active {
  background: #496e6d;
  border-color: #496e6d;
}
.premium-products {
  align-items: stretch;
}
.premium-product {
  display: grid;
  grid-template-rows: 190px 1fr;
}
.premium-product div {
  display: flex;
  flex-direction: column;
}
.premium-product h3 {
  flex: 1;
  min-height: auto;
}
.premium-product a {
  margin-top: 14px;
  font-weight: 800;
}
.premium-cta {
  max-width: 1320px;
  margin: 0 auto;
  border-radius: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(100, 123, 153, 0.26), transparent 30%),
    linear-gradient(135deg, #231f20, #33465a 60%, #496e6d);
}
.button.ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}
.feature-grid article {
  background: #fff;
  box-shadow: 0 14px 36px rgba(35, 31, 32, 0.06);
}
.feature-grid span {
  color: var(--brand);
}
.site-footer {
  background:
    radial-gradient(circle at 10% 0%, rgba(100, 123, 153, 0.26), transparent 28%),
    linear-gradient(135deg, #231f20, #2f3b48 58%, #496e6d);
}
.admin-body {
  background: #f4f6f6;
}
.admin-sidebar {
  background: #231f20;
  border-right: 0;
}
.admin-sidebar .brand,
.admin-sidebar a {
  color: #fff;
}
.admin-sidebar .admin-logo {
  padding: 8px;
  background: #fff;
  border-radius: 8px;
}
.admin-sidebar .admin-logo img {
  height: 42px;
  max-width: 170px;
}
.admin-sidebar .brand span {
  color: #9fb5b4;
}
.admin-sidebar a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.admin-title h1,
.admin-title h2 {
  color: #231f20;
}
.admin-stats article,
.admin-domain-grid article,
.admin-form,
.login-box,
.table-wrap {
  border-color: #dce4e4;
  box-shadow: 0 14px 36px rgba(35, 31, 32, 0.05);
}
.admin-stats strong,
.admin-domain-grid span {
  color: #496e6d;
}
th {
  color: #231f20;
  background: #eef3f3;
}

@media (max-width: 980px) {
  .card-grid.four,
  .product-grid,
  .card-grid.three,
  .service-strip,
  .admin-stats,
  .admin-domain-grid,
  .solution-cards,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-title.with-image,
  .product-detail,
  .intro-grid,
  .contact-grid,
  .detail-grid,
  .home-hero,
  .home-about,
  .trust-strip,
  .site-footer,
  .admin-grid {
    grid-template-columns: 1fr;
  }
  .home-hero {
    grid-template-areas:
      "copy"
      "visual";
    min-height: auto;
    max-width: none;
    padding-top: 52px;
  }
  .hero-copy h1 {
    font-size: clamp(2.35rem, 7vw, 4.1rem);
  }
  .hero-visual {
    width: 100%;
    justify-self: stretch;
  }
  .hero-image-stack {
    grid-template-rows: 220px 190px;
  }
  .trust-strip {
    border-inline: 0;
  }
  .tab-controls {
    justify-content: flex-start;
    min-width: 0;
  }
  .premium-cta {
    display: grid;
  }
  .admin-body { grid-template-columns: 1fr; }
  .admin-sidebar {
    position: static;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .menu-button { display: inline-flex; }
  .nav {
    position: absolute;
    top: 64px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .nav a,
  .nav-cta {
    width: 100%;
  }
  .nav.open { display: flex; }
  .hero { min-height: 78vh; }
  .home-hero {
    padding: 42px 18px 52px;
  }
  .hero-copy h1 {
    font-size: clamp(2.05rem, 10vw, 3.05rem);
  }
  .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-actions .button {
    width: 100%;
  }
  .card-grid.four,
  .product-grid,
  .card-grid.three,
  .card-grid.two,
  .service-strip,
  .stats,
  .solution-cards,
  .feature-grid,
  .filter-bar,
  .lead-form,
  .admin-stats,
  .admin-domain-grid {
    grid-template-columns: 1fr;
  }
  .hero-image-stack,
  .about-collage {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .hero-image-stack img,
  .about-collage img,
  .hero-image-stack img:first-child,
  .about-collage img:first-child {
    grid-row: auto;
    height: 210px;
  }
  .hero-image-stack img:nth-child(n+2),
  .about-collage img:nth-child(n+2) {
    display: none;
  }
  .floating-panel {
    position: static;
    margin-top: 14px;
  }
  .trust-strip div,
  .tab-controls {
    justify-content: flex-start;
  }
  .cta-band,
  .section-head {
    display: grid;
    grid-template-columns: 1fr;
  }
  .home-about h2,
  .section-head h2,
  .premium-cta h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }
  .solution-card {
    min-height: 260px;
  }
  .premium-product {
    grid-template-rows: 220px 1fr;
  }
  .premium-cta {
    padding-inline: 18px;
  }
}

/* Multi-type product system */
.product-shell {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding-inline: var(--page-pad);
}

.product-page {
  padding-block: clamp(42px, 6vw, 78px);
  background:
    radial-gradient(circle at 82% 8%, rgba(0, 168, 107, 0.1), transparent 24%),
    linear-gradient(180deg, #f7fbff, #fff);
}

.product-buy-grid,
.inquiry-grid,
.catalog-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.product-gallery {
  min-width: 0;
}

.product-gallery .main-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  border: 1px solid #dbe8ef;
  border-radius: 8px;
  box-shadow: 0 22px 65px rgba(10, 102, 194, 0.12);
}

.zoomable-image {
  cursor: zoom-in;
  transition: transform 180ms ease;
}

.zoomable-image:hover {
  transform: scale(1.015);
}

.buy-panel,
.inquiry-copy {
  position: sticky;
  top: 96px;
  padding: 24px;
  background: #fff;
  border: 1px solid #dbe8ef;
  border-radius: 8px;
  box-shadow: 0 20px 58px rgba(16, 32, 51, 0.08);
}

.buy-panel h1,
.inquiry-copy h1,
.catalog-hero h1 {
  margin: 0 0 12px;
  font-family: "Poppins", "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
}

.stock-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 18px 0;
  color: #245746;
  font-weight: 800;
}

.stock-dot {
  width: 10px;
  height: 10px;
  background: #00A86B;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(0, 168, 107, 0.12);
}

.product-price {
  margin-bottom: 18px;
  color: #0A66C2;
  font-family: "Poppins", "Manrope", sans-serif;
  font-size: clamp(1.8rem, 4vw, 1.6rem);
  font-weight: 600;
}

.quantity-control {
  max-width: 180px;
  margin-bottom: 18px;
}

.buy-actions {
  display: grid;
  gap: 10px;
}

.cart-feedback {
  min-height: 22px;
  margin: 12px 0 0;
  color: #075c4b;
  font-weight: 800;
}

.quote-highlight {
  display: inline-flex;
  margin: 18px 0;
  padding: 12px 14px;
  color: #fff;
  background: linear-gradient(135deg, #0A66C2, #00A86B);
  border-radius: 6px;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(0, 168, 107, 0.18);
}

.product-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-content-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid #dbe8ef;
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(16, 32, 51, 0.05);
}

.numbered-list {
  counter-reset: feature;
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.numbered-list li {
  counter-increment: feature;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: start;
}

.numbered-list li::before {
  content: counter(feature, decimal-leading-zero);
  color: #0A66C2;
  font-weight: 900;
}

.spec-table {
  display: grid;
  overflow: hidden;
  border: 1px solid #dbe8ef;
  border-radius: 8px;
}

.spec-table div {
  display: grid;
  grid-template-columns: minmax(160px, 0.36fr) 1fr;
  border-bottom: 1px solid #dbe8ef;
}

.spec-table div:last-child {
  border-bottom: 0;
}

.spec-table strong,
.spec-table span {
  padding: 13px 14px;
}

.spec-table strong {
  background: #f3f9fb;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 16px;
  background: #f7fbff;
  border: 1px solid #dbe8ef;
  border-radius: 8px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.catalog-hero {
  align-items: center;
}

.catalog-hero img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: 0 22px 65px rgba(10, 102, 194, 0.12);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.catalog-grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid #dbe8ef;
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(16, 32, 51, 0.05);
}

.catalog-grid img {
  height: 210px;
  transition: transform 180ms ease;
}

.catalog-grid article:hover img {
  transform: scale(1.04);
}

.catalog-grid div {
  display: grid;
  gap: 4px;
  padding: 14px;
}

.catalog-grid span {
  color: #0A66C2;
  font-weight: 800;
}

.grouped-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.grouped-list div {
  padding: 18px;
  background: #f7fbff;
  border: 1px solid #dbe8ef;
  border-radius: 8px;
}

.grouped-list h3 {
  margin-top: 0;
}

.grouped-list li {
  margin-bottom: 8px;
}

.grouped-list li span {
  display: inline-block;
  min-width: 80px;
  color: #0A66C2;
  font-weight: 900;
}

.admin-product-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(420px, 1fr);
  gap: 24px;
  align-items: start;
}

.product-admin-form {
  gap: 18px;
}

.admin-form-step {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border: 1px solid #dce4e4;
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(35, 31, 32, 0.05);
}

.admin-form-step > span {
  color: #0A66C2;
  font-weight: 900;
}

.admin-form-step h2 {
  margin: 0;
}

.admin-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-type-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.type-tile {
  cursor: pointer;
  padding: 14px;
  background: #f7fbff;
  border: 1px solid #dbe8ef;
  border-radius: 8px;
}

.type-tile input {
  width: auto;
  min-height: auto;
  margin-bottom: 8px;
}

.type-tile strong,
.type-tile small {
  display: block;
}

.type-tile small {
  color: var(--muted);
}

.type-panel.is-hidden {
  display: none;
}

.repeater {
  display: grid;
  gap: 10px;
}

.repeater-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.repeater-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  margin-bottom: 8px;
}

.repeater-row button {
  min-height: 42px;
  color: #7a1d1d;
  background: #fff4f4;
  border: 1px solid #ffd4d4;
  border-radius: 6px;
}

.faq-row {
  grid-template-columns: 0.8fr 1fr auto;
}

.catalog-row {
  grid-template-columns: 0.8fr 0.5fr 1fr 1fr auto;
}

.admin-product-list {
  display: grid;
  gap: 14px;
}

.admin-list-filters {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  padding: 14px;
  background: #fff;
  border: 1px solid #dce4e4;
  border-radius: 8px;
}

.status-pill {
  display: inline-flex;
  padding: 5px 9px;
  color: #075c4b;
  background: #dff8ef;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .admin-product-layout,
  .product-buy-grid,
  .inquiry-grid,
  .catalog-hero {
    grid-template-columns: 1fr;
  }

  .buy-panel,
  .inquiry-copy {
    position: static;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .product-content-grid,
  .admin-field-grid,
  .product-type-picker,
  .admin-list-filters,
  .repeater-row,
  .faq-row,
  .catalog-row,
  .grouped-list,
  .spec-table div,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .buy-panel {
    position: sticky;
    bottom: 0;
    top: auto;
    z-index: 12;
    margin-inline: calc(var(--page-pad) * -1);
    border-radius: 8px 8px 0 0;
  }
}

/* Full-width spacing and alternate Home 2 experience */
:root {
  --page-pad: clamp(18px, 3vw, 44px);
  --content-max: 1360px;
}

.site-header,
.section,
.page-title,
.product-detail,
.article,
.cta-band,
.site-footer,
.premium-cta,
.home-hero,
.trust-strip,
.home2-section,
.home2-hero,
.home2-strip {
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
}

.section,
.solution-section > *,
.trust-strip,
.premium-cta {
  width: 100%;
  max-width: var(--content-max);
}

.home2-main {
  overflow: hidden;
  background:
    linear-gradient(180deg, #fbfbfa 0%, #f6f8f8 38%, #ffffff 100%);
}

.home2-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: 100%;
  min-height: calc(100vh - 72px);
  padding-top: clamp(58px, 7vw, 104px);
  padding-bottom: clamp(52px, 7vw, 92px);
  color: #fff;
  background:
    linear-gradient(110deg, rgba(35, 31, 32, 0.96) 0%, rgba(35, 31, 32, 0.88) 46%, rgba(73, 110, 109, 0.72) 100%),
    url("https://images.unsplash.com/photo-1581093588401-fbb62a02f120?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.home2-hero-copy {
  max-width: 780px;
}

.home2-hero .eyebrow {
  color: #d9c482;
}

.home2-hero h1,
.home2-heading h2,
.home2-process h2,
.home2-service-copy h2 {
  margin: 0;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  line-height: 1.02;
}

.home2-hero h1 {
  font-size: clamp(2.8rem, 6.4vw, 6.8rem);
  font-weight: 800;
  max-width: 920px;
}

.home2-hero-copy p:not(.eyebrow) {
  max-width: 650px;
  color: #edf4f3;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
}

.home2-command {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.command-top {
  display: flex;
  gap: 7px;
  padding: 14px;
  background: #eef3f3;
}

.command-top span {
  width: 10px;
  height: 10px;
  background: var(--brand);
  border-radius: 50%;
}

.command-top span:nth-child(2) { background: var(--gold); }
.command-top span:nth-child(3) { background: var(--purple); }

.command-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.command-grid article {
  padding: 18px;
  color: var(--ink);
  background: #fff;
}

.command-grid strong {
  display: block;
  color: var(--brand);
  font-size: 1.35rem;
}

.command-grid span {
  color: var(--muted);
}

.home2-command img {
  height: clamp(220px, 24vw, 360px);
}

.home2-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  background: var(--line);
}

.home2-strip span {
  padding: 18px;
  color: var(--brand-dark);
  background: #fff;
  font-weight: 800;
  text-align: center;
}

.home2-section {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding-top: clamp(52px, 7vw, 92px);
  padding-bottom: clamp(52px, 7vw, 92px);
}

.home2-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.home2-heading h2,
.home2-process h2,
.home2-service-copy h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.home2-domain-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
  gap: 18px;
}

.home2-domain-card {
  display: grid;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
  background: var(--brand-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.home2-domain-card:first-child {
  grid-row: span 2;
}

.home2-domain-card img {
  min-height: 210px;
  opacity: 0.82;
}

.home2-domain-card div {
  padding: 24px;
  background: linear-gradient(135deg, #231f20, #496e6d);
}

.home2-domain-card span {
  color: var(--gold);
  font-weight: 800;
}

.home2-domain-card h3 {
  margin: 8px 0;
  color: #fff;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 1.55rem;
}

.home2-domain-card p {
  color: #edf4f3;
}

.home2-process {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  max-width: none;
  background: #eef3f3;
}

.home2-process > * {
  max-width: 760px;
}

.home2-process-list {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 760px;
}

.home2-process-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 20px;
  background: #fff;
  border: 1px solid #dce4e4;
  border-radius: 8px;
}

.home2-process-list span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 8px;
  font-weight: 800;
}

.home2-process-list h3 {
  margin: 0 0 6px;
}

.home2-process-list p {
  margin: 0;
  color: var(--muted);
}

.home2-products {
  background: #fff;
}

.home2-services {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1.1fr;
  gap: clamp(28px, 5vw, 70px);
  max-width: none;
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(194, 164, 103, 0.18), transparent 28%),
    linear-gradient(135deg, #231f20, #364b5e 58%, #496e6d);
}

.home2-service-copy {
  max-width: 560px;
}

.home2-service-copy p:not(.eyebrow) {
  color: #e8eeee;
}

.home2-service-stack {
  display: grid;
  gap: 12px;
}

.home2-service-stack a {
  display: grid;
  grid-template-columns: 54px 0.7fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.home2-service-stack span {
  color: var(--gold);
  font-weight: 800;
}

.home2-service-stack small {
  color: #e8eeee;
}

.home2-insights {
  background: #fbfbfa;
}

/* Admin visual upgrade */
.admin-body {
  grid-template-columns: 264px minmax(0, 1fr);
  background:
    linear-gradient(135deg, rgba(73, 110, 109, 0.1), transparent 32%),
    #f4f6f6;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px 18px;
  background:
    radial-gradient(circle at 20% 0%, rgba(120, 169, 167, 0.2), transparent 28%),
    #231f20;
}

.admin-sidebar nav a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
}

.admin-sidebar nav a span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #cfe1df;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
}

.admin-sidebar form {
  margin-top: 10px;
}

.admin-sidebar .button.secondary {
  width: 100%;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
}

.admin-main {
  padding: clamp(18px, 3vw, 38px);
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #dce4e4;
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(35, 31, 32, 0.05);
  backdrop-filter: blur(12px);
}

.admin-topbar span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.admin-topbar strong {
  display: block;
  color: var(--ink);
}

.admin-hero-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  padding: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 14%, rgba(194, 164, 103, 0.22), transparent 28%),
    linear-gradient(135deg, #231f20, #496e6d);
  border-radius: 8px;
}

.admin-hero-title h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.admin-hero-title p {
  max-width: 680px;
  color: #e8eeee;
}

.admin-hero-title .eyebrow {
  color: var(--gold);
}

.admin-stats article {
  position: relative;
  overflow: hidden;
}

.admin-stats article::after {
  position: absolute;
  right: -20px;
  bottom: -26px;
  width: 88px;
  height: 88px;
  content: "";
  background: rgba(73, 110, 109, 0.1);
  border-radius: 50%;
}

.admin-domain-grid article,
.admin-form,
.login-box,
.table-wrap {
  border-radius: 8px;
}

.admin-form {
  gap: 16px;
}

.admin-form label {
  color: #32404a;
}

.table-wrap {
  overflow: hidden;
}

tbody tr:hover td {
  background: #fbfdfd;
}

tbody tr:nth-child(odd) td {
  background: #ffffff;
}

tbody tr:nth-child(even) td {
  background: #f6f9fb;
}

.admin-login-premium {
  min-height: calc(100vh - 73px);
  background:
    linear-gradient(120deg, rgba(35, 31, 32, 0.9), rgba(73, 110, 109, 0.76)),
    url("https://images.unsplash.com/photo-1582719471384-894fbb16e074?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.admin-login-premium .login-box {
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

@media (max-width: 980px) {
  .home2-hero,
  .home2-process,
  .home2-services {
    grid-template-columns: 1fr;
  }

  .home2-domain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home2-domain-card:first-child {
    grid-row: auto;
  }

  .home2-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }
}

@media (max-width: 720px) {
  :root {
    --page-pad: 18px;
  }

  .home2-hero {
    min-height: auto;
  }

  .home2-command,
  .home2-domain-card,
  .admin-hero-title,
  .admin-topbar {
    border-radius: 8px;
  }

  .command-grid,
  .home2-domain-grid,
  .home2-strip,
  .home2-service-stack a {
    grid-template-columns: 1fr;
  }

  .home2-domain-card {
    min-height: auto;
  }

  .home2-service-stack a {
    align-items: start;
  }

  .admin-topbar,
  .admin-hero-title {
    display: grid;
  }
}

/* Vinlab Home 2: premium blue-green component system */
:root {
  --v2-blue: #0A66C2;
  --v2-green: #00A86B;
  --v2-ink: #102033;
  --v2-muted: #607083;
  --v2-line: #dbe8ef;
  --v2-bg: #f5fafc;
  --v2-glow: 0 24px 70px rgba(10, 102, 194, 0.16);
}

.vinlab-home2 {
  color: var(--v2-ink);
  background: var(--v2-bg);
}

.v2-shell {
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(18px, 3vw, 42px);
}

.v2-section {
  padding-block: clamp(58px, 8vw, 112px);
}

.v2-eyebrow {
  margin: 0 0 12px;
  color: var(--v2-green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.v2-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.v2-button:hover {
  transform: translateY(-2px);
}

.v2-button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--v2-blue), var(--v2-green));
  box-shadow: 0 18px 38px rgba(0, 168, 107, 0.24);
}

.v2-button-primary:hover {
  color: #fff;
  box-shadow: 0 22px 48px rgba(10, 102, 194, 0.28);
}

.v2-button-light {
  color: var(--v2-blue);
  background: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.v2-button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
}

.v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.v2-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(64px, 8vw, 116px);
  color: #fff;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.16), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(0, 168, 107, 0.28), transparent 30%),
    linear-gradient(135deg, #073f8f 0%, #0a66c2 46%, #00a86b 100%);
}

.v2-hero::before {
  position: absolute;
  inset: 14% auto auto 52%;
  width: 34vw;
  height: 34vw;
  min-width: 280px;
  min-height: 280px;
  content: "";
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  filter: blur(30px);
  animation: v2-float 7s ease-in-out infinite;
}

@keyframes v2-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(18px, -16px, 0); }
}

.v2-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.8fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.v2-hero-copy {
  max-width: 780px;
}

.v2-hero .v2-eyebrow {
  color: #dffbf1;
}

.v2-hero h1 {
  margin: 0;
  max-width: 900px;
  font-family: "Poppins", "Manrope", "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(2.65rem, 6vw, 6.4rem);
  line-height: 1;
}

.v2-hero-copy p:not(.v2-eyebrow) {
  max-width: 640px;
  color: #eaf6ff;
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
}

.v2-hero-media {
  position: relative;
  min-height: clamp(360px, 44vw, 560px);
}

.v2-hero-media img {
  position: absolute;
  inset: 34px 0 0 auto;
  width: min(100%, 560px);
  height: calc(100% - 64px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  box-shadow: 0 32px 90px rgba(0, 29, 62, 0.32);
}

.v2-glass-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  min-width: 150px;
  padding: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 29, 62, 0.2);
  backdrop-filter: blur(18px);
}

.v2-glass-card strong {
  font-family: "Poppins", "Manrope", sans-serif;
  font-size: 1.8rem;
}

.v2-glass-card-one {
  left: 0;
  top: 0;
}

.v2-glass-card-two {
  right: 18px;
  bottom: 10px;
}

.v2-trust {
  background: #fff;
  border-bottom: 1px solid var(--v2-line);
}

.v2-trust .v2-shell {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding-block: 16px;
}

.v2-trust span {
  display: grid;
  min-height: 54px;
  place-items: center;
  padding: 10px;
  color: #35516a;
  background: linear-gradient(180deg, #f8fcff, #eff8f5);
  border: 1px solid #e6f0f4;
  border-radius: 6px;
  font-weight: 800;
  text-align: center;
}

.v2-about,
.v2-products,
.v2-blogs {
  background: #fff;
}

.v2-about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.v2-collage {
  display: grid;
  grid-template-columns: 1fr 0.76fr;
  grid-template-rows: 250px 210px;
  gap: 14px;
}

.v2-collage img {
  border-radius: 8px;
  box-shadow: var(--v2-glow);
}

.v2-collage img:first-child {
  grid-row: 1 / 3;
}

.v2-copy {
  max-width: 650px;
}

.v2-copy h2,
.v2-section-head h2,
.v2-centered-head h2,
.v2-cta h2 {
  margin: 0;
  font-family: "Poppins", "Manrope", "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.05;
}

.v2-copy > p:not(.v2-eyebrow),
.v2-section-head p,
.v2-centered-head p,
.v2-cta p {
  color: var(--v2-muted);
}

.v2-checks {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.v2-checks li {
  position: relative;
  padding: 14px 16px 14px 42px;
  background: #f6fbff;
  border: 1px solid #e1eff7;
  border-radius: 8px;
  font-weight: 800;
}

.v2-checks li::before {
  position: absolute;
  left: 14px;
  top: 15px;
  content: "";
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--v2-blue), var(--v2-green));
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(0, 168, 107, 0.12);
}

.v2-services {
  background:
    radial-gradient(circle at 10% 10%, rgba(10, 102, 194, 0.1), transparent 28%),
    linear-gradient(180deg, #f5fafc, #eef8f4);
}

.v2-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.v2-section-head a,
.v2-product-card a,
.v2-blog-card a,
.v2-service-card a {
  color: var(--v2-blue);
  font-weight: 800;
}

.v2-service-grid,
.v2-product-grid,
.v2-feature-grid,
.v2-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.v2-service-card {
  position: relative;
  min-height: 300px;
  padding: 24px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(10, 102, 194, 0.85), rgba(0, 168, 107, 0.85)) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(10, 102, 194, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.v2-service-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 70px rgba(0, 168, 107, 0.18);
}

.v2-service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 34px;
  color: #fff;
  background: linear-gradient(135deg, var(--v2-blue), var(--v2-green));
  border-radius: 8px;
  font-weight: 900;
}

.v2-service-card h3 {
  margin: 0 0 10px;
  font-family: "Poppins", "Manrope", sans-serif;
  font-size: 1.35rem;
}

.v2-service-card p {
  color: var(--v2-muted);
}

.v2-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.v2-product-card,
.v2-blog-card,
.v2-empty-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--v2-line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(16, 32, 51, 0.06);
}

.v2-product-card img,
.v2-blog-card img {
  height: 210px;
  transition: transform 220ms ease;
}

.v2-product-card:hover img,
.v2-blog-card:hover img {
  transform: scale(1.04);
}

.v2-product-card div,
.v2-blog-card div,
.v2-empty-card {
  padding: 18px;
}

.v2-product-card span,
.v2-blog-card span {
  color: var(--v2-green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-product-card h3,
.v2-blog-card h3,
.v2-feature-grid h3 {
  margin: 8px 0;
  font-family: "Poppins", "Manrope", sans-serif;
}

.v2-product-card p,
.v2-blog-card p,
.v2-feature-grid p {
  color: var(--v2-muted);
}

.v2-cta {
  padding-block: clamp(58px, 8vw, 98px);
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.15), transparent 28%),
    linear-gradient(135deg, #0a66c2 0%, #008f78 100%);
}

.v2-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.v2-cta .v2-eyebrow,
.v2-cta p {
  color: #e9fff8;
}

.v2-why {
  background:
    linear-gradient(180deg, #f5fafc, #fff);
}

.v2-centered-head {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.v2-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v2-feature-grid article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--v2-line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(16, 32, 51, 0.05);
}

.v2-feature-grid span {
  color: var(--v2-blue);
  font-weight: 900;
}

.v2-blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .v2-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .v2-hero-grid,
  .v2-about-grid,
  .v2-cta-grid {
    grid-template-columns: 1fr;
  }

  .v2-hero-media {
    min-height: 420px;
  }

  .v2-service-grid,
  .v2-feature-grid,
  .v2-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-trust .v2-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .v2-section-head,
  .v2-service-grid,
  .v2-product-grid,
  .v2-feature-grid,
  .v2-blog-grid,
  .v2-trust .v2-shell {
    grid-template-columns: 1fr;
  }

  .v2-hero {
    padding-block: 48px;
  }

  .v2-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .v2-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .v2-button {
    width: 100%;
  }

  .v2-hero-media {
    min-height: auto;
  }

  .v2-hero-media img {
    position: static;
    height: 280px;
  }

  .v2-glass-card {
    position: static;
    margin-top: 12px;
  }

  .v2-collage {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .v2-collage img {
    height: 230px;
  }

  .v2-collage img:first-child {
    grid-row: auto;
  }

  .v2-collage img:nth-child(n+2) {
    display: none;
  }
}

/* Admin product UX refresh */
.admin-main h1,
.admin-main h2,
.admin-main h3 {
  font-weight: 700;
}

.admin-title h1 {
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  font-weight: 700;
}

.admin-title h2,
.admin-domain-title {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
}

.admin-hero-title h1 {
  font-size: clamp(1.7rem, 2.8vw, 2.55rem);
  font-weight: 700;
}

.admin-page-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
  padding: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 168, 107, 0.18), transparent 28%),
    linear-gradient(135deg, #231f20, #496e6d);
  border-radius: 8px;
}

.admin-page-head.compact {
  align-items: center;
  background:
    radial-gradient(circle at 86% 14%, rgba(10, 102, 194, 0.16), transparent 28%),
    linear-gradient(135deg, #231f20, #33465a);
}

.admin-page-head h1 {
  margin: 0 0 8px;
  color: #fff;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
  font-weight: 700;
  line-height: 1.08;
}

.admin-page-head p {
  max-width: 720px;
  margin: 0;
  color: #e8eeee;
}

.admin-page-head .eyebrow {
  color: #c2d9d6;
}

.admin-head-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-list-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: #fff;
  border: 1px solid #dce4e4;
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(35, 31, 32, 0.05);
}

.admin-panel-card {
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(35, 31, 32, 0.05);
}

.product-list-filters {
  grid-template-columns: minmax(220px, 1.15fr) repeat(4, minmax(150px, 0.8fr)) auto auto;
  align-items: end;
  padding: 0;
  background: transparent;
  border: 0;
}

.table-subtext {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.table-actions {
  white-space: nowrap;
  vertical-align: middle;
}

.table-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin-right: 8px;
  padding: 6px 10px;
  background: #eef3f3;
  border-radius: 6px;
  font-weight: 800;
  white-space: nowrap;
}

.table-actions a:last-child {
  margin-right: 0;
}

.table-actions .inline-form {
  display: inline-flex;
  margin: 0 8px 0 0;
  vertical-align: middle;
}

.table-actions .inline-form:last-child {
  margin-right: 0;
}

.table-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 0;
  border-radius: 6px;
  background: #eef3f3;
  color: var(--brand-dark);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.table-actions .danger-link,
.danger-link {
  color: #b42318;
}

.admin-quick-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.admin-quick-actions a {
  padding: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #dce4e4;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(35, 31, 32, 0.04);
  font-weight: 800;
}

.admin-list-card .table-wrap {
  border: 0;
  box-shadow: none;
}

.admin-list-card table {
  min-width: 760px;
}

.inquiry-status-form {
  align-items: center;
  min-width: 220px;
}

.inquiry-status-form select {
  min-height: 36px;
}

.inquiry-status-form button {
  min-height: 36px;
  padding: 6px 10px;
  color: var(--brand-dark);
  font-weight: 800;
}

.product-form-page {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.product-form-page .admin-form-step {
  padding: 22px;
}

.product-form-page .admin-form-step > span {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-form-page .admin-form-step h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.form-sticky-actions {
  position: sticky;
  bottom: 14px;
  z-index: 8;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #dce4e4;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(35, 31, 32, 0.1);
  backdrop-filter: blur(12px);
}

.media-upload-form {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.media-picker {
  display: grid;
  gap: 14px;
  padding: 16px;
  background: #f7fbfb;
  border: 1px solid #dce4e4;
  border-radius: 8px;
}

.media-picker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.media-picker-head strong {
  display: block;
}

.media-dropzone {
  padding: 16px;
  background: #fff;
  border: 1px dashed #a9bdbb;
  border-radius: 8px;
}

.selected-media-preview,
.media-picker-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.selected-media-preview figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
}

.selected-media-preview img,
.media-choice img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  background: #eef3f3;
}

.selected-media-preview figcaption,
.media-choice span {
  display: block;
  overflow: hidden;
  padding: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.media-picker-panel {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-height: 470px;
  overflow: auto;
  padding: 12px;
  background: #fff;
  border: 1px solid #dce4e4;
  border-radius: 8px;
}

.media-picker-panel.open {
  display: grid;
}

.media-choice {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 8px;
}

.media-choice input {
  position: absolute;
  top: 8px;
  left: 8px;
  width: auto;
  min-height: auto;
}

.media-choice:has(input:checked) {
  border-color: #00A86B;
  box-shadow: 0 0 0 4px rgba(0, 168, 107, 0.12);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.media-grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce4e4;
  border-radius: 8px;
}

.media-grid img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: #f6f8fa;
}

.media-grid div {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.media-grid strong {
  overflow: hidden;
  font-size: 0.9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.media-action-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.media-action-form + .media-action-form {
  grid-template-columns: 1fr;
  margin-top: 2px;
}

.danger-button {
  color: #b91c1c !important;
  border-color: #fecaca !important;
  background: #fff1f2 !important;
}

.danger-button:hover,
.danger-button:focus-visible {
  color: #fff !important;
  background: #dc2626 !important;
}

.category-admin-layout {
  grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
}

.category-tree-panel {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.category-tree-head,
.category-parent-row,
.category-child-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, auto) auto;
  gap: 16px;
  align-items: center;
}

.category-tree-head {
  padding: 18px 20px;
  border: 1px solid #dfe8ee;
  border-radius: 22px;
  background: #f8fbff;
}

.category-tree-head h2 {
  margin: 0;
  font-size: 1.2rem;
}

.category-tree-head > span {
  justify-self: end;
  padding: 7px 12px;
  color: #1d4ed8;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  font-weight: 800;
}

.category-tree {
  display: grid;
  gap: 14px;
}

.category-parent-block {
  overflow: hidden;
  border: 1px solid #dfe8ee;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.category-parent-row {
  padding: 18px;
  background: linear-gradient(135deg, #f8fbff, #fff);
}

.category-parent-row strong,
.category-child-row strong {
  display: block;
  margin-top: 5px;
  color: #172033;
}

.category-parent-row small,
.category-child-row small,
.category-counts small {
  display: block;
  margin-top: 3px;
  color: #64748b;
  font-size: 0.82rem;
}

.category-level-pill {
  display: inline-flex;
  padding: 5px 9px;
  color: #1d4ed8;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.category-child-list {
  display: grid;
  border-top: 1px solid #edf2f7;
}

.category-child-row {
  padding: 14px 18px 14px 34px;
  border-top: 1px solid #f1f5f9;
  background: #fff;
}

.category-child-row:first-child {
  border-top: 0;
}

.category-child-row > div:first-child {
  position: relative;
}

.category-branch-line {
  position: absolute;
  left: -18px;
  top: 12px;
  width: 10px;
  height: 22px;
  border-left: 2px solid #cbd5e1;
  border-bottom: 2px solid #cbd5e1;
  border-bottom-left-radius: 8px;
}

.category-counts {
  text-align: right;
}

.category-counts span {
  display: inline-flex;
  padding: 6px 10px;
  color: #0f766e;
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  border-radius: 999px;
  font-weight: 800;
}

.category-actions {
  justify-self: end;
}

.category-empty-child {
  padding: 16px 18px 18px 34px;
  color: #64748b;
  background: #fbfdff;
  font-weight: 600;
}

@media (max-width: 720px) {
  .admin-page-head,
  .admin-page-head.compact {
    display: grid;
    align-items: start;
  }

  .product-list-filters {
    grid-template-columns: 1fr;
  }

  .form-sticky-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .media-upload-form,
  .media-grid,
  .category-tree-head,
  .category-parent-row,
  .category-child-row,
  .selected-media-preview,
  .media-picker-panel {
    grid-template-columns: 1fr;
  }

  .category-counts {
    text-align: left;
  }

  .category-actions {
    justify-self: start;
  }

  .media-picker-head {
    display: grid;
  }
}

/* Global heading scale correction */
:root {
  --h1-size: clamp(2rem, 4vw, 3.6rem);
  --h2-size: clamp(1.55rem, 2.8vw, 2.45rem);
  --h3-size: clamp(1.08rem, 1.6vw, 1.32rem);
}

.page-title h1,
.product-copy h1,
.article h1,
.hero-copy h1,
.home2-hero h1,
.v2-hero h1,
.buy-panel h1,
.inquiry-copy h1,
.catalog-hero h1 {
  font-size: var(--h1-size);
  font-weight: 700;
  line-height: 1.08;
}

.section h2,
.home-about h2,
.section-head h2,
.premium-cta h2,
.home2-heading h2,
.home2-process h2,
.home2-service-copy h2,
.v2-copy h2,
.v2-section-head h2,
.v2-centered-head h2,
.v2-cta h2,
.product-content-grid h2 {
  font-size: var(--h2-size);
  font-weight: 700;
  line-height: 1.12;
}

.product-card h3,
.category-card h3,
.service-card h3,
.solution-card h3,
.feature-grid h3,
.v2-product-card h3,
.v2-blog-card h3,
.v2-feature-grid h3,
.v2-service-card h3,
.product-content-grid h3 {
  font-size: var(--h3-size);
  font-weight: 700;
  line-height: 1.22;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
}

@media (max-width: 720px) {
  :root {
    --h1-size: clamp(1.85rem, 8vw, 2.65rem);
    --h2-size: clamp(1.35rem, 6vw, 2rem);
    --h3-size: 1.05rem;
  }
}

/* Catalog filters and smoother homepage presentation */
.advanced-filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(150px, 1fr));
  gap: 14px;
  align-items: end;
  margin-bottom: 18px;
  padding: 18px;
  background: #fff;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(16, 32, 51, 0.06);
}

.advanced-filter-bar label {
  min-width: 0;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 2px;
}

.filter-check input {
  width: auto;
  min-height: auto;
}

.filter-actions {
  display: flex;
  gap: 10px;
  grid-column: 1 / -1;
}

.catalog-summary {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 22px;
  color: var(--muted);
}

.catalog-summary strong {
  color: var(--brand);
  font-size: 1.45rem;
}

.catalog-browser {
  padding-top: clamp(28px, 4vw, 48px);
}

.catalog-browser nav,
.admin-list-card nav {
  margin-top: 22px;
}

.catalog-browser nav svg,
.admin-list-card nav svg {
  width: 18px;
  height: 18px;
}

.catalog-browser nav a,
.catalog-browser nav span,
.admin-list-card nav a,
.admin-list-card nav span {
  font-size: 0.92rem;
  line-height: 1.2;
}

.catalog-browser nav .flex,
.admin-list-card nav .flex {
  align-items: center;
}

.home-main,
.vinlab-home2 {
  background: linear-gradient(180deg, #fbfbfa 0%, #f8fbfb 42%, #fff 100%);
}

.home-main .section,
.home-main .solution-section,
.home-main .premium-cta,
.vinlab-home2 .v2-section,
.vinlab-home2 .v2-products,
.vinlab-home2 .v2-blogs,
.vinlab-home2 .v2-about,
.vinlab-home2 .v2-services,
.vinlab-home2 .v2-why {
  background: transparent;
}

.home-main .trust-strip,
.vinlab-home2 .v2-trust {
  border: 0;
  background: rgba(255, 255, 255, 0.72);
}

.home-main .trust-strip span,
.vinlab-home2 .v2-trust span,
.home-main .feature-grid article,
.home-main .product-card,
.home-main .blog-card,
.home-main .category-card,
.vinlab-home2 .v2-service-card,
.vinlab-home2 .v2-product-card,
.vinlab-home2 .v2-blog-card,
.vinlab-home2 .v2-feature-grid article {
  border: 0;
  box-shadow: none;
}

.home-main .feature-grid article,
.vinlab-home2 .v2-feature-grid article,
.vinlab-home2 .v2-service-card {
  background: rgba(255, 255, 255, 0.62);
}

.home-main .product-card,
.home-main .blog-card,
.vinlab-home2 .v2-product-card,
.vinlab-home2 .v2-blog-card {
  background: transparent;
}

.home-main .product-card div,
.home-main .blog-card div,
.vinlab-home2 .v2-product-card div,
.vinlab-home2 .v2-blog-card div {
  padding-inline: 0;
}

.home-main .solution-card {
  border: 0;
  box-shadow: none;
}

@media (max-width: 1100px) {
  .advanced-filter-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .advanced-filter-bar,
  .filter-actions {
    grid-template-columns: 1fr;
  }

  .filter-actions {
    display: grid;
  }
}

/* Final Vinlab visual pass: supplied home references + richer inner-page heroes */
:root {
  --vin-blue: #2c4c6e;
  --vin-teal: #547473;
  --vin-slate: #6b809b;
  --vin-cream: #fafaf8;
  --vin-soft: #f6f9fb;
  --vin-ink: #1e293b;
}

.site-header,
.home-main,
.vinlab-home2,
.page-title,
.section,
.product-detail,
.article,
.cta-band,
.site-footer {
  width: 100%;
}

.site-header,
.home-main,
.vinlab-home2 .v2-shell,
.section,
.page-title,
.product-detail,
.site-footer {
  padding-left: clamp(20px, 3vw, 42px);
  padding-right: clamp(20px, 3vw, 42px);
}

.page-title {
  position: relative;
  overflow: hidden;
  margin: 18px clamp(14px, 2vw, 28px) 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 18%, rgba(84, 116, 115, 0.24), transparent 34%),
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.55), transparent 28%),
    linear-gradient(135deg, #edf5f7 0%, #f8fbfb 48%, #e8f0ed 100%);
  box-shadow: 0 18px 45px rgba(44, 76, 110, 0.08);
}

.page-title::after {
  content: "";
  position: absolute;
  inset: auto -8% -42% auto;
  width: 360px;
  aspect-ratio: 1;
  border-radius: 999px;
  border: 58px solid rgba(44, 76, 110, 0.06);
}

.page-title > * {
  position: relative;
  z-index: 1;
}

.page-title h1,
.article h1 {
  color: var(--vin-blue);
  font-size: clamp(2rem, 4.3vw, 3.8rem);
  font-weight: 700;
}

.page-title.with-image img {
  box-shadow: 0 18px 42px rgba(44, 76, 110, 0.15);
}

.home-main {
  max-width: 1320px;
  margin: 0 auto;
  background: #fff;
  color: var(--vin-ink);
}

.home-main .home-hero {
  min-height: auto;
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 60px);
  padding: 32px 0 64px;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.home-main .home-hero::before,
.home-main .hero-orbit {
  display: none;
}

.home-main .hero-copy h1 {
  max-width: 720px;
  color: #0f2638;
  font-size: clamp(2.15rem, 4.8vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
}

.home-main .hero-copy p:not(.eyebrow) {
  max-width: 650px;
  color: #334155;
  font-size: 1.08rem;
}

.home-main .hero-visual {
  position: relative;
  flex: 1 1 450px;
}

.home-main .hero-image-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.home-main .hero-image-stack img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(15, 38, 56, 0.11);
}

.home-main .hero-image-stack img:first-child {
  grid-column: span 2;
  height: 210px;
}

.home-main .floating-panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--vin-blue);
  box-shadow: 0 12px 28px rgba(15, 38, 56, 0.14);
  backdrop-filter: blur(8px);
}

.home-main .trust-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 4vw, 40px);
  flex-wrap: wrap;
  margin: 18px 0 44px;
  padding: 22px;
  border: 0;
  border-radius: 999px;
  background: var(--vin-soft);
  color: #475569;
}

.home-main .trust-strip div {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  flex-wrap: wrap;
  color: var(--vin-blue);
  font-weight: 700;
}

.home-main .section {
  max-width: none;
  padding-top: 68px;
  padding-bottom: 68px;
}

.home-main .home-about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: clamp(34px, 5vw, 60px);
  align-items: center;
}

.home-main .about-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.home-main .about-collage img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 20px;
}

.home-main .about-collage img:first-child {
  grid-column: span 2;
  height: 210px;
}

.home-main .section-head h2,
.home-main .home-about h2,
.home-main .premium-cta h2 {
  color: var(--vin-blue);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
}

.home-main .solution-cards,
.home-main .feature-grid,
.home-main .card-grid.three,
.home-main .product-grid {
  gap: 28px;
}

.home-main .solution-card {
  border: 1px solid transparent;
  border-radius: 20px;
  background: var(--vin-soft);
  box-shadow: none;
}

.home-main .solution-card:hover {
  border-color: var(--vin-teal);
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 38, 56, 0.08);
}

.home-main .product-card,
.home-main .blog-card {
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(15, 38, 56, 0.06);
}

.home-main .product-card:hover,
.home-main .blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 38, 56, 0.1);
}

.home-main .product-card div,
.home-main .blog-card div {
  padding: 20px;
}

.home-main .premium-cta {
  max-width: none;
  margin: 42px 0;
  padding: clamp(38px, 5vw, 60px) clamp(28px, 4vw, 48px);
  border-radius: 32px;
  background: linear-gradient(135deg, var(--vin-blue) 0%, #1e3b54 100%);
  color: #fff;
}

.home-main .premium-cta h2,
.home-main .premium-cta .eyebrow {
  color: #fff;
}

.vinlab-home2 {
  background: var(--vin-cream);
  color: #1e1e24;
}

.vinlab-home2 .v2-hero {
  max-width: 1320px;
  margin: 20px auto 62px;
  border-radius: 28px;
  background: linear-gradient(145deg, #1a2f40 0%, var(--vin-blue) 52%, #1e3a54 100%);
  overflow: hidden;
}

.vinlab-home2 .v2-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 0;
  padding: 0;
}

.vinlab-home2 .v2-hero-copy {
  padding: clamp(46px, 6vw, 72px) clamp(34px, 5vw, 62px);
}

.vinlab-home2 .v2-hero h1 {
  color: #fff;
  font-size: clamp(2.35rem, 4.8vw, 3.55rem);
  font-weight: 800;
  line-height: 1.15;
}

.vinlab-home2 .v2-hero-copy p:not(.v2-eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.vinlab-home2 .v2-hero-media {
  min-height: 520px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
}

.vinlab-home2 .v2-hero-collage {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 12px;
  width: 100%;
  height: 100%;
}

.vinlab-home2 .v2-hero-collage img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 14px;
}

.vinlab-home2 .v2-hero-collage img:first-child {
  grid-row: span 2;
}

.vinlab-home2 .v2-trust {
  margin: 0 auto 70px;
  border-color: #e5e2dc;
  background: transparent;
}

.vinlab-home2 .v2-about-grid {
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(42px, 6vw, 80px);
}

.vinlab-home2 .v2-collage img:first-child {
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(15, 38, 56, 0.11);
}

.vinlab-home2 .v2-service-grid,
.vinlab-home2 .v2-product-grid,
.vinlab-home2 .v2-blog-grid {
  gap: 28px;
}

.vinlab-home2 .v2-service-card {
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(15px);
}

.vinlab-home2 .v2-product-card,
.vinlab-home2 .v2-blog-card {
  border: 0;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(15, 38, 56, 0.07);
}

.vinlab-home2 .v2-product-card div,
.vinlab-home2 .v2-blog-card div {
  padding: 22px;
}

.vinlab-home2 .v2-cta {
  max-width: 1320px;
  margin: 0 auto 90px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.16), transparent 46%),
    var(--vin-teal);
}

.vinlab-home2 .v2-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 42px;
}

.vinlab-home2 .v2-feature-grid article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: start;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.vinlab-home2 .v2-feature-grid article span {
  font-size: 2.7rem;
  color: #8fa3b8;
  line-height: 1;
}

@media (max-width: 1024px) {
  .home-main .home-about,
  .vinlab-home2 .v2-about-grid,
  .vinlab-home2 .v2-hero-grid {
    grid-template-columns: 1fr;
  }

  .vinlab-home2 .v2-hero-media {
    display: none;
  }
}

@media (max-width: 700px) {
  .home-main .home-hero,
  .home-main .trust-strip,
  .home-main .premium-cta {
    border-radius: 18px;
  }

  .home-main .hero-image-stack,
  .home-main .about-collage,
  .vinlab-home2 .v2-feature-grid {
    grid-template-columns: 1fr;
  }

  .home-main .hero-image-stack img:first-child,
  .home-main .about-collage img:first-child {
    grid-column: auto;
  }
}

/* White-site refinement and responsive home/product polish */
html,
body {
  background: #fff;
  overflow-x: hidden;
}

body:not(.admin-body),
.home-main,
.vinlab-home2,
.site-header,
.site-footer {
  background: #fff;
}

.site-header {
  max-width: none;
  margin: 0;
  border-bottom: 1px solid #eef2f6;
}

.home-main,
.vinlab-home2 {
  max-width: none;
  background: #fff;
}

.home-main > *,
.vinlab-home2 > .v2-section,
.vinlab-home2 > .v2-trust,
.vinlab-home2 > .v2-cta {
  width: min(100%, 1400px);
  margin-left: auto;
  margin-right: auto;
}

.home-main .home-hero {
  width: min(100%, 1400px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 5vw, 64px) clamp(20px, 3vw, 42px) clamp(42px, 6vw, 76px);
}

.home-main .hero-copy,
.home-main .hero-visual {
  min-width: 0;
}

.home-main .hero-visual {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.home-main .hero-image-stack {
  width: 100%;
  grid-template-columns: 1.08fr 0.92fr;
  grid-auto-rows: clamp(150px, 18vw, 230px);
  gap: clamp(10px, 1.3vw, 16px);
}

.home-main .hero-image-stack img,
.home-main .hero-image-stack img:first-child {
  height: 100%;
  min-height: 0;
}

.home-main .hero-image-stack img:first-child {
  grid-row: span 2;
  grid-column: auto;
}

.home-main .hero-image-stack img:nth-child(2),
.home-main .hero-image-stack img:nth-child(3) {
  aspect-ratio: auto;
}

.home-main .trust-strip {
  width: calc(100% - clamp(40px, 6vw, 84px));
  background: #f8fafc;
  border: 1px solid #e7edf2;
}

.home-main .section {
  padding-left: clamp(20px, 3vw, 42px);
  padding-right: clamp(20px, 3vw, 42px);
}

.home-main .section-head,
.vinlab-home2 .v2-section-head,
.vinlab-home2 .v2-centered-head {
  margin-bottom: clamp(24px, 4vw, 40px);
}

.home-main .section-head h2,
.home-main .home-about h2,
.home-main .premium-cta h2,
.vinlab-home2 .v2-copy h2,
.vinlab-home2 .v2-section-head h2,
.vinlab-home2 .v2-centered-head h2,
.vinlab-home2 .v2-cta h2,
.section h2,
.product-content-grid h2 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.22;
}

.home-main .solution-card,
.home-main .feature-grid article,
.home-main .product-card,
.home-main .blog-card,
.vinlab-home2 .v2-service-card,
.vinlab-home2 .v2-product-card,
.vinlab-home2 .v2-blog-card,
.vinlab-home2 .v2-feature-grid article {
  color: var(--vin-ink);
  border: 1px solid #dfe7ee;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 251, 0.88)),
    #fff;
  box-shadow: 0 10px 28px rgba(15, 38, 56, 0.045);
}

.home-main .solution-card h3,
.home-main .feature-grid h3,
.home-main .product-card h3,
.home-main .blog-card h2,
.vinlab-home2 .v2-service-card h3,
.vinlab-home2 .v2-product-card h3,
.vinlab-home2 .v2-blog-card h3,
.vinlab-home2 .v2-feature-grid h3 {
  color: #1e293b;
  font-size: clamp(0.98rem, 1.45vw, 1.18rem);
  font-weight: 700;
  line-height: 1.28;
}

.home-main .solution-card p,
.home-main .feature-grid p,
.home-main .product-card p,
.home-main .blog-card p,
.vinlab-home2 .v2-service-card p,
.vinlab-home2 .v2-product-card p,
.vinlab-home2 .v2-blog-card p,
.vinlab-home2 .v2-feature-grid p {
  color: #526173;
  font-size: clamp(0.86rem, 1.05vw, 0.95rem);
}

.home-main .solution-icon,
.vinlab-home2 .v2-service-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--vin-blue), var(--vin-teal));
}

.home-main .solution-card a,
.home-main .product-card a,
.home-main .blog-card a,
.vinlab-home2 .v2-service-card a,
.vinlab-home2 .v2-product-card a,
.vinlab-home2 .v2-blog-card a {
  color: var(--vin-teal);
  font-weight: 700;
}

.home-main .product-card img,
.home-main .blog-card img,
.vinlab-home2 .v2-product-card img,
.vinlab-home2 .v2-blog-card img {
  height: clamp(150px, 17vw, 210px);
  background: #eef3f6;
}

.home-main .blog-card h2 {
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.home-main .premium-cta,
.vinlab-home2 .v2-cta {
  width: calc(100% - clamp(40px, 6vw, 84px));
}

.vinlab-home2 .v2-shell {
  max-width: 1400px;
  padding-left: clamp(20px, 3vw, 42px);
  padding-right: clamp(20px, 3vw, 42px);
}

.vinlab-home2 .v2-hero {
  width: calc(100% - clamp(40px, 6vw, 84px));
  max-width: 1400px;
  min-height: clamp(400px, 56vw, 560px);
  margin-top: clamp(18px, 2vw, 26px);
  margin-bottom: clamp(42px, 7vw, 70px);
}

.vinlab-home2 .v2-hero-grid {
  min-height: inherit;
}

.vinlab-home2 .v2-hero-media {
  min-height: inherit;
  display: flex;
  align-items: stretch;
}

.vinlab-home2 .v2-hero-collage {
  min-height: 100%;
}

.vinlab-home2 .v2-hero-collage img {
  min-height: 0;
}

.vinlab-home2 .v2-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.5rem);
  font-weight: 800;
}

.vinlab-home2 .v2-trust {
  border-top: 1px solid #e5e2dc;
  border-bottom: 1px solid #e5e2dc;
  margin-bottom: clamp(40px, 8vw, 82px);
}

.vinlab-home2 .v2-feature-grid article {
  box-shadow: none;
  background: #fff;
}

.product-detail,
.product-page,
.product-content-grid,
.catalog-hero,
.section.narrow {
  background: #fff;
}

.product-shell,
.product-content-grid article,
.product-gallery,
.buy-panel,
.inquiry-copy,
.catalog-hero {
  border-color: #dfe7ee;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 252, 0.9)),
    #fff;
}

.product-copy h1,
.buy-panel h1,
.inquiry-copy h1,
.catalog-hero h1 {
  font-size: clamp(1.65rem, 3.4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.16;
}

.product-card h3,
.catalog-grid strong {
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
}

.site-footer {
  color: #e8eeee;
  background:
    radial-gradient(circle at 10% 0%, rgba(84, 116, 115, 0.34), transparent 28%),
    linear-gradient(135deg, #1e1e24, #2c4c6e 58%, #547473);
}

@media (max-width: 1100px) {
  .home-main .home-hero,
  .vinlab-home2 .v2-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-main .hero-visual {
    max-width: 760px;
    width: 100%;
  }

  .vinlab-home2 .v2-hero-media {
    display: none;
  }

  .home-main .home-about {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .home-main .section-head,
  .vinlab-home2 .v2-section-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

  .home-main .hero-image-stack {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: clamp(130px, 28vw, 190px);
  }

  .home-main .hero-image-stack img:first-child {
    grid-column: span 2;
    grid-row: auto;
  }

  .home-main .trust-strip,
  .home-main .premium-cta,
  .vinlab-home2 .v2-hero,
  .vinlab-home2 .v2-cta {
    width: calc(100% - 32px);
  }

  .home-main .product-grid,
  .home-main .card-grid.three,
  .vinlab-home2 .v2-product-grid,
  .vinlab-home2 .v2-blog-grid,
  .vinlab-home2 .v2-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vinlab-home2 .v2-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .home-main .home-hero,
  .home-main .section,
  .vinlab-home2 .v2-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-main .hero-image-stack,
  .home-main .about-collage,
  .home-main .solution-cards,
  .home-main .product-grid,
  .home-main .card-grid.three,
  .home-main .feature-grid,
  .vinlab-home2 .v2-product-grid,
  .vinlab-home2 .v2-blog-grid,
  .vinlab-home2 .v2-service-grid {
    grid-template-columns: 1fr;
  }

  .home-main .hero-image-stack img:first-child,
  .home-main .about-collage img:first-child {
    grid-column: auto;
  }

  .home-main .hero-actions,
  .vinlab-home2 .v2-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .home-main .hero-actions .button,
  .vinlab-home2 .v2-actions .v2-button {
    width: 100%;
  }
}

/* Full-width inner heroes and Home 2 distinct hero treatment */
.site-header .nav-cta,
.site-header .nav-cta:visited,
.site-header .nav-cta:hover,
.site-header .nav-cta:focus {
  color: #fff !important;
}

.inner-page .inner-hero {
  width: 100%;
  max-width: none;
  margin-top: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  padding-left: max(var(--inner-gutter), calc((100vw - var(--inner-shell)) / 2 + var(--inner-gutter)));
  padding-right: max(var(--inner-gutter), calc((100vw - var(--inner-shell)) / 2 + var(--inner-gutter)));
  box-shadow: none;
}

.inner-page .inner-hero.compact-hero {
  min-height: 320px;
}

.inner-page .about-hero {
  min-height: 300px;
  background:
    radial-gradient(circle at 90% 12%, rgba(6, 182, 212, 0.12), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 62%, #eef7f8 100%);
}

.vinlab-home2 .v2-hero {
  width: 100%;
  max-width: none;
  margin-top: 0;
  border-radius: 0;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(9, 18, 31, 0.94), rgba(15, 44, 70, 0.92)),
    radial-gradient(circle at 76% 18%, rgba(6, 182, 212, 0.35), transparent 32%),
    radial-gradient(circle at 12% 78%, rgba(37, 99, 235, 0.24), transparent 34%),
    #0f172a;
}

.vinlab-home2 .v2-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.32) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.32) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 72% 44%, black 0%, transparent 62%);
}

.vinlab-home2 .v2-hero .v2-shell.v2-hero-grid {
  width: min(calc(100% - (var(--site-gutter) * 2)), var(--site-shell));
  max-width: var(--site-shell);
  min-height: clamp(560px, 70vh, 760px);
  padding: clamp(54px, 7vw, 96px) 0;
  position: relative;
  z-index: 1;
}

.vinlab-home2 .v2-hero-copy {
  max-width: 650px;
}

.vinlab-home2 .v2-hero .v2-eyebrow {
  color: #93e8ff;
}

.vinlab-home2 .v2-hero h1 {
  max-width: 680px;
  color: #fff;
  font-size: clamp(2.25rem, 4.7vw, 4.35rem);
}

.vinlab-home2 .v2-hero-copy p:not(.v2-eyebrow) {
  color: #c7d8e8;
}

.vinlab-home2 .v2-hero-media {
  position: relative;
  min-height: 500px;
  padding: 0;
  isolation: isolate;
}

.vinlab-home2 .v2-orbit-system {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(520px, 92vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.vinlab-home2 .v2-orbit-ring {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(147, 232, 255, 0.24);
  border-radius: 50%;
  animation: v2OrbitSpin 26s linear infinite;
}

.vinlab-home2 .v2-orbit-ring.ring-two {
  inset: 21%;
  border-style: dashed;
  animation-duration: 18s;
  animation-direction: reverse;
}

.vinlab-home2 .v2-orbit-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  padding: 8px 13px;
  color: #ecfeff;
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid rgba(147, 232, 255, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.vinlab-home2 .v2-orbit-node.node-one {
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
}

.vinlab-home2 .v2-orbit-node.node-two {
  right: 1%;
  top: 48%;
}

.vinlab-home2 .v2-orbit-node.node-three {
  left: 5%;
  bottom: 14%;
}

.vinlab-home2 .v2-hero-collage {
  position: relative;
  z-index: 2;
  width: min(460px, 86vw);
  aspect-ratio: 0.9;
  margin: 0 auto;
  display: block;
}

.vinlab-home2 .v2-hero-collage img {
  position: absolute;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.vinlab-home2 .v2-hero-collage img:first-child {
  inset: 4% auto auto 10%;
  width: 72%;
  height: 62%;
  transform: rotate(-4deg);
}

.vinlab-home2 .v2-hero-collage img:nth-child(2) {
  right: 2%;
  bottom: 20%;
  width: 52%;
  height: 38%;
  transform: rotate(5deg);
}

.vinlab-home2 .v2-hero-collage img:nth-child(3) {
  left: 0;
  bottom: 2%;
  width: 54%;
  height: 36%;
  transform: rotate(3deg);
}

.vinlab-home2 .v2-glass-card {
  z-index: 3;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.vinlab-home2 .v2-glass-card-one {
  left: 2%;
  bottom: 15%;
}

.vinlab-home2 .v2-glass-card-two {
  top: 13%;
  right: 0;
}

@keyframes v2OrbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .vinlab-home2 .v2-hero .v2-shell.v2-hero-grid {
    min-height: auto;
  }

  .vinlab-home2 .v2-hero-media {
    min-height: 430px;
  }
}

@media (max-width: 760px) {
  .inner-page .inner-hero {
    padding-left: var(--inner-gutter);
    padding-right: var(--inner-gutter);
  }

  .vinlab-home2 .v2-hero-media {
    min-height: 360px;
  }

  .vinlab-home2 .v2-orbit-node {
    display: none;
  }
}

/* Home 2 advanced image slider hero */
.vinlab-home2 .v2-hero.v2-hero-slider {
  position: relative;
  min-height: clamp(620px, 86vh, 860px);
  display: grid;
  align-items: end;
  padding: 0;
  color: #fff;
  isolation: isolate;
  background: #0f172a;
}

.v2-slider-stage,
.v2-slide,
.v2-slide img,
.v2-slide-overlay {
  position: absolute;
  inset: 0;
}

.v2-slider-stage {
  z-index: 0;
  overflow: hidden;
}

.v2-slide {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 5500ms ease;
}

.v2-slide.active {
  opacity: 1;
  transform: scale(1);
}

.v2-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-slide-overlay {
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.86) 0%, rgba(8, 17, 31, 0.68) 42%, rgba(8, 17, 31, 0.2) 100%),
    linear-gradient(0deg, rgba(8, 17, 31, 0.88) 0%, rgba(8, 17, 31, 0) 48%),
    radial-gradient(circle at 72% 26%, rgba(6, 182, 212, 0.22), transparent 35%);
}

.v2-hero-slider::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.42) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.42) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 82%);
}

.v2-slider-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 370px);
  gap: clamp(28px, 5vw, 68px);
  align-items: end;
  width: min(calc(100% - (var(--site-gutter) * 2)), var(--site-shell));
  max-width: var(--site-shell);
  margin: 0 auto;
  padding: clamp(110px, 16vh, 180px) 0 clamp(94px, 13vh, 138px);
}

.v2-slider-copy {
  max-width: 820px;
}

.v2-slide-copy {
  display: none;
}

.v2-slide-copy.active {
  display: block;
  animation: v2CopyReveal 620ms ease both;
}

.v2-hero-slider .v2-eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 13px;
  color: #baeefe;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.v2-hero-slider h1 {
  max-width: 850px;
  margin: 0 0 22px;
  color: #fff;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(2.35rem, 5.4vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.v2-hero-slider .v2-slide-copy p:not(.v2-eyebrow) {
  max-width: 650px;
  color: #d7e4ef;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.75;
}

.v2-hero-slider .v2-actions {
  margin-top: 34px;
}

.v2-hero-slider .v2-button-primary {
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  box-shadow: 0 20px 44px rgba(37, 99, 235, 0.34);
}

.v2-hero-slider .v2-button-light {
  color: #0f172a;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.42);
}

.v2-slider-dashboard {
  display: grid;
  gap: 18px;
  padding: 18px;
  color: #fff;
  background: rgba(15, 23, 42, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  backdrop-filter: blur(22px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.25);
}

.v2-slider-metric {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background:
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.08);
}

.v2-slider-metric span {
  display: block;
  color: #67e8f9;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
}

.v2-slider-metric strong {
  display: block;
  margin-top: 12px;
  font-size: 1.2rem;
}

.v2-slider-metric small {
  display: block;
  margin-top: 4px;
  color: #cbd5e1;
  font-weight: 700;
}

.v2-slider-controls {
  display: flex;
  gap: 10px;
}

.v2-slider-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.15rem;
  transition: transform 180ms ease, background 180ms ease;
}

.v2-slider-controls button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.v2-slider-dots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.v2-slider-dots button {
  height: 4px;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.v2-slider-dots button span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #67e8f9, #2563eb);
}

.v2-slider-dots button.active span {
  width: 100%;
  transition: width 6500ms linear;
}

.v2-slider-bottom-strip {
  position: absolute;
  right: var(--site-gutter);
  bottom: 28px;
  left: var(--site-gutter);
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(calc(100% - (var(--site-gutter) * 2)), var(--site-shell));
  margin: 0 auto;
}

.v2-slider-bottom-strip span {
  padding: 8px 12px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 0.76rem;
  font-weight: 800;
}

@keyframes v2CopyReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .v2-slider-shell {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }

  .v2-slider-dashboard {
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .vinlab-home2 .v2-hero.v2-hero-slider {
    min-height: 720px;
  }

  .v2-slider-shell {
    padding-top: 96px;
    padding-bottom: 118px;
  }

  .v2-hero-slider h1 {
    font-size: clamp(2.1rem, 12vw, 3.35rem);
  }

  .v2-slider-bottom-strip {
    bottom: 18px;
  }
}

/* Lighter typography, softer Home 2 overlay, and advanced admin dashboard */
body {
  font-weight: 400;
}

h1,
h2,
h3,
h4,
.home-main .hero-copy h1,
.inner-hero h1,
.v2-hero-slider h1 {
  font-weight: 600;
}

.eyebrow,
.section-badge,
.admin-kicker,
.nav a,
.button,
.v2-button {
  font-weight: 600;
}

.v2-slide-overlay {
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.68) 0%, rgba(8, 17, 31, 0.46) 42%, rgba(8, 17, 31, 0.1) 100%),
    linear-gradient(0deg, rgba(8, 17, 31, 0.6) 0%, rgba(8, 17, 31, 0) 50%),
    radial-gradient(circle at 72% 26%, rgba(6, 182, 212, 0.14), transparent 35%);
}

.v2-hero-slider::before {
  opacity: 0.1;
}

body.admin-body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: #172033;
  background:
    radial-gradient(circle at 24% 8%, rgba(37, 99, 235, 0.08), transparent 28%),
    radial-gradient(circle at 92% 14%, rgba(6, 182, 212, 0.09), transparent 28%),
    #f5f7fb;
}

body.admin-body .admin-sidebar {
  padding: 22px 16px;
  background:
    radial-gradient(circle at 18% 0%, rgba(103, 232, 249, 0.2), transparent 30%),
    linear-gradient(180deg, #162033 0%, #0f172a 100%);
  box-shadow: 18px 0 46px rgba(15, 23, 42, 0.16);
}

body.admin-body .admin-sidebar nav a {
  grid-template-columns: 34px 1fr;
  color: #d7e4ef;
  border-radius: 14px;
  font-weight: 600;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

body.admin-body .admin-sidebar nav a:hover,
body.admin-body .admin-sidebar nav a.active {
  transform: translateX(3px);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

body.admin-body .admin-sidebar nav a.active span {
  color: #0f172a;
  background: linear-gradient(135deg, #67e8f9, #ffffff);
}

body.admin-body .admin-main {
  padding: clamp(22px, 3vw, 42px);
}

.admin-dashboard-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(22px, 4vw, 44px);
  align-items: stretch;
  padding: clamp(28px, 4vw, 46px);
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 12%, rgba(103, 232, 249, 0.24), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(37, 99, 235, 0.28), transparent 34%),
    linear-gradient(135deg, #172638, #243b5a 62%, #12394a);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.16);
}

.admin-dashboard-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.1;
  background-image:
    linear-gradient(to right, #fff 1px, transparent 1px),
    linear-gradient(to bottom, #fff 1px, transparent 1px);
  background-size: 46px 46px;
}

.admin-dashboard-hero > * {
  position: relative;
  z-index: 1;
}

.admin-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  color: #67e8f9;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-dashboard-hero h1 {
  max-width: 760px;
  margin: 0 0 12px;
  color: #fff;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.admin-dashboard-hero p {
  max-width: 720px;
  margin: 0;
  color: #dbeafe;
  line-height: 1.7;
}

.admin-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.admin-command-card {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.admin-command-card span {
  color: #baeefe;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-command-card strong {
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  font-weight: 600;
}

.admin-command-card a {
  color: #fff;
  font-weight: 600;
}

.admin-action-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.admin-action-card,
.modern-admin-stats article,
.admin-panel-card {
  border: 1px solid #dfe8ee;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.94)),
    #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.admin-action-card {
  display: grid;
  gap: 8px;
  min-height: 138px;
  padding: 20px;
  color: #172033;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.admin-action-card:hover {
  transform: translateY(-4px);
  border-color: #cbdbe8;
  box-shadow: 0 24px 62px rgba(15, 23, 42, 0.12);
}

.admin-action-card span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  border-radius: 14px;
  font-weight: 700;
}

.admin-action-card strong {
  font-size: 1.02rem;
  font-weight: 600;
}

.admin-action-card small {
  color: #64748b;
  line-height: 1.5;
}

.modern-admin-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 20px;
}

.modern-admin-stats article {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.modern-admin-stats article div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.modern-admin-stats article div span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #2563eb;
  background: #eef6ff;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.modern-admin-stats small {
  color: #64748b;
  font-weight: 600;
}

.modern-admin-stats strong {
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1;
}

.admin-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 20px;
}

.admin-panel-card {
  padding: 22px;
}

.admin-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-panel-head h2,
.admin-workflow-panel h2 {
  margin: 0;
  color: #0f172a;
  font-size: 1.35rem;
  font-weight: 600;
}

.admin-panel-head a {
  color: #2563eb;
  font-size: 0.9rem;
  font-weight: 600;
}

.advanced-domain-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.advanced-domain-grid article {
  min-height: 190px;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(145deg, #f8fbff, #eef7f8);
  box-shadow: none;
}

.advanced-domain-grid article span {
  color: #06b6d4;
  font-size: 2.3rem;
  font-weight: 600;
}

.advanced-domain-grid article h3 {
  font-weight: 600;
}

.admin-workflow-panel ol {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.admin-workflow-panel li {
  display: grid;
  gap: 4px;
  padding: 15px;
  background: #f8fbff;
  border: 1px solid #e3edf5;
  border-radius: 16px;
}

.admin-workflow-panel li strong {
  color: #0f172a;
  font-weight: 600;
}

.admin-workflow-panel li span {
  color: #64748b;
  font-size: 0.92rem;
}

@media (max-width: 1180px) {
  .admin-action-grid,
  .modern-admin-stats,
  .advanced-domain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-content-grid,
  .admin-dashboard-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .admin-action-grid,
  .modern-admin-stats,
  .advanced-domain-grid {
    grid-template-columns: 1fr;
  }

  .admin-dashboard-hero {
    padding: 24px;
    border-radius: 22px;
  }
}

/* Final admin-wide dashboard style override */
body.admin-body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: #172033;
  background:
    radial-gradient(circle at 24% 8%, rgba(37, 99, 235, 0.08), transparent 28%),
    radial-gradient(circle at 92% 14%, rgba(6, 182, 212, 0.09), transparent 28%),
    #f5f7fb;
}

body.admin-body .admin-sidebar {
  background:
    radial-gradient(circle at 18% 0%, rgba(103, 232, 249, 0.2), transparent 30%),
    linear-gradient(180deg, #162033 0%, #0f172a 100%);
  box-shadow: 18px 0 46px rgba(15, 23, 42, 0.16);
}

body.admin-body .admin-sidebar nav a {
  color: #d7e4ef;
  border-radius: 14px;
  font-weight: 600;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

body.admin-body .admin-sidebar nav a:hover,
body.admin-body .admin-sidebar nav a.active {
  transform: translateX(3px);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

body.admin-body .admin-sidebar nav a.active span {
  color: #0f172a;
  background: linear-gradient(135deg, #67e8f9, #ffffff);
}

body.admin-body .admin-page-head,
body.admin-body .admin-title,
body.admin-body .admin-hero-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 20px;
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  color: #172033;
  border: 1px solid #dfe8ee;
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 16%, rgba(6, 182, 212, 0.14), transparent 28%),
    radial-gradient(circle at 10% 18%, rgba(37, 99, 235, 0.09), transparent 30%),
    linear-gradient(145deg, #fff, #f8fbfd);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

body.admin-body .admin-page-head h1,
body.admin-body .admin-title h1 {
  color: #0f172a;
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 600;
}

body.admin-body .admin-page-head p:not(.eyebrow),
body.admin-body .admin-title p:not(.eyebrow) {
  color: #64748b;
}

body.admin-body .admin-form,
body.admin-body .admin-list-card,
body.admin-body .admin-panel-card,
body.admin-body .admin-form-step,
body.admin-body .table-wrap,
body.admin-body .media-picker,
body.admin-body .repeater,
body.admin-body .admin-stats article,
body.admin-body .admin-domain-grid article {
  border: 1px solid #dfe8ee;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.94)),
    #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

body.admin-body .admin-form,
body.admin-body .admin-list-card,
body.admin-body .admin-form-step {
  padding: clamp(18px, 2.4vw, 26px);
}

body.admin-body .admin-form.product-form-page {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.admin-body input,
body.admin-body select,
body.admin-body textarea {
  min-height: 46px;
  color: #172033;
  background: #fff;
  border: 1px solid #d7e3ea;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.03);
}

body.admin-body .admin-list-filters,
body.admin-body .media-upload-form {
  padding: 14px;
  border: 1px solid #e1ebf3;
  border-radius: 20px;
  background: #f8fbff;
}

body.admin-body thead th {
  color: #64748b;
  background: #f8fbff;
  border-bottom: 1px solid #dfe8ee;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.admin-body tbody tr:nth-child(even) {
  background: #fbfdff;
}

body.admin-body tbody tr:hover {
  background: #eef7ff;
}

body.admin-body td {
  color: #334155;
  border-bottom: 1px solid #edf2f7;
}

body.admin-body td strong,
body.admin-body .admin-form-step h2 {
  color: #0f172a;
  font-weight: 600;
}

body.admin-body .status-pill,
body.admin-body .table-actions a,
body.admin-body .table-actions button,
body.admin-body .inline-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  background: #eef6ff;
  border: 1px solid #d8e9fb;
  border-radius: 999px;
  font-weight: 600;
}

body.admin-body .table-actions .danger-link,
body.admin-body .danger-link {
  color: #b42318;
  background: #fff1f1;
  border-color: #ffd7d7;
}

/* Final overrides for quote/cart controls added after legacy floating styles */
.floating-action-rail {
  bottom: 28px;
}

.floating-action-rail strong {
  width: 44px;
  min-width: 44px;
  height: 44px;
  padding: 0;
  color: #fff;
  font-size: 0;
}

.floating-action-rail strong svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.floating-whatsapp strong {
  background: #16a34a;
}

.floating-quote strong {
  background: #2563eb;
}

.demo-data-pill {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 4px 8px;
  color: #92400e;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Modern product detail gallery */
.product-page .product-gallery {
  display: grid;
  gap: 16px;
  align-self: start;
  padding: clamp(12px, 2vw, 18px);
  border: 1px solid #dfe8ee;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(37, 99, 235, 0.07), transparent 28%),
    linear-gradient(145deg, #ffffff, #f8fbfd);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08);
}

.product-page .product-gallery .main-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  max-height: clamp(360px, 48vw, 560px);
  object-fit: cover;
  border: 1px solid #e6edf3;
  border-radius: 22px;
  background: #eef4f8;
  box-shadow: none;
}

.product-thumb-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.product-thumb-carousel .thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 30px) / 4);
  grid-template-columns: none;
  gap: 10px;
  overflow-x: auto;
  padding: 2px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-thumb-carousel .thumbs::-webkit-scrollbar {
  display: none;
}

.product-thumb-carousel .thumbs button {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-width: 0;
  overflow: hidden;
  padding: 4px;
  border: 1px solid #dce7ef;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-thumb-carousel .thumbs button:hover,
.product-thumb-carousel .thumbs button.active {
  border-color: #2563eb;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.16);
  transform: translateY(-2px);
}

.product-thumb-carousel .thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.thumb-nav {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #1d4ed8;
  background: #fff;
  border: 1px solid #dce7ef;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.thumb-nav:hover {
  color: #fff;
  background: #2563eb;
  border-color: #2563eb;
}

@media (max-width: 640px) {
  .product-thumb-carousel {
    grid-template-columns: minmax(0, 1fr);
  }

  .thumb-nav {
    display: none;
  }

  .product-thumb-carousel .thumbs {
    grid-auto-columns: calc((100% - 20px) / 3);
  }
}

/* Product form tabs, media modal, and cleaner public action controls */
.nav-cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 13px;
  color: #0f172a;
  background: #fff;
  border: 1px solid #dbe6ef;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.nav-cart-button svg {
  width: 18px;
  height: 18px;
  fill: #2563eb;
}

.nav-cart-button strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  color: #fff;
  background: #2563eb;
  border-radius: 999px;
  font-size: 0.75rem;
}

.floating-action-rail strong svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.floating-action-rail strong {
  width: 44px;
  height: 44px;
  padding: 0;
}

.floating-whatsapp strong {
  color: #fff;
  background: #16a34a;
}

.floating-quote strong {
  color: #fff;
  background: #2563eb;
}

body.admin-body .product-form-tabs {
  display: grid;
  gap: 18px;
}

body.admin-body .product-tab-nav {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  border: 1px solid #dfe8ee;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

body.admin-body .product-tab-nav button {
  min-height: 42px;
  padding: 10px 16px;
  color: #475569;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

body.admin-body .product-tab-nav button.active {
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.2);
}

body.admin-body .product-tab-panel {
  display: none;
}

body.admin-body .product-tab-panel.active {
  display: block;
}

body.admin-body .product-type-picker {
  align-items: stretch;
}

body.admin-body .type-tile {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr;
  column-gap: 12px;
  align-items: start;
  padding: 18px;
}

body.admin-body .type-tile input {
  position: static;
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
  accent-color: #2563eb;
  box-shadow: none;
}

body.admin-body .type-tile strong,
body.admin-body .type-tile small {
  grid-column: 2;
}

body.admin-body .type-tile strong {
  font-size: 1rem;
}

body.admin-body .type-tile small {
  line-height: 1.45;
}

body.admin-body .category-field-grid label {
  min-width: 0;
}

body.admin-body .category-field-grid .hint {
  display: block;
  min-height: 32px;
  margin-top: 7px;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
}

body.admin-body .admin-media-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}

body.admin-body .admin-media-modal.open {
  display: block;
}

body.admin-body .admin-media-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(8px);
}

body.admin-body .admin-media-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1040px, calc(100% - 32px));
  max-height: min(780px, calc(100vh - 32px));
  overflow: auto;
  transform: translate(-50%, -50%);
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 8%, rgba(6, 182, 212, 0.12), transparent 26%),
    linear-gradient(145deg, #fff, #f8fbff);
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.28);
}

body.admin-body .admin-media-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

body.admin-body .admin-media-head span {
  color: #2563eb;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.admin-body .admin-media-head h2 {
  margin: 5px 0;
}

body.admin-body .admin-media-head p {
  margin: 0;
  color: #64748b;
}

body.admin-body .admin-media-head button {
  width: 42px;
  height: 42px;
  border: 1px solid #dfe8ee;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

body.admin-body .admin-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

body.admin-body .admin-media-grid .media-choice {
  display: grid;
  gap: 10px;
  padding: 10px;
}

body.admin-body .admin-media-grid .media-choice label {
  display: grid;
  gap: 8px;
  cursor: pointer;
}

body.admin-body .admin-media-grid .media-choice input {
  min-height: 0;
  width: 16px;
  height: 16px;
  accent-color: #2563eb;
  box-shadow: none;
}

body.admin-body .admin-media-grid .media-choice img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
}

body.admin-body .catalog-row {
  grid-template-columns: minmax(120px, 1fr) 110px minmax(170px, 1.4fr) minmax(210px, 1.1fr) auto;
}

body.admin-body .catalog-image-picker {
  display: grid;
  gap: 8px;
}

body.admin-body .catalog-image-preview {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 7px;
  color: #64748b;
  border: 1px solid #d7e3ea;
  border-radius: 14px;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}

body.admin-body .catalog-image-preview img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 10px;
}

body.admin-body .compact-field {
  max-width: 320px;
}

@media (max-width: 980px) {
  body.admin-body .catalog-row {
    grid-template-columns: 1fr;
  }

  body.admin-body .product-tab-nav {
    position: static;
  }
}

@media (max-width: 760px) {
  .nav-cart-button {
    justify-content: center;
    width: 100%;
  }

  .floating-action-rail {
    right: 14px;
  }

  body.admin-body .product-tab-nav {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Header dropdown polish and floating cart */
.nav-caret {
  margin-left: 5px;
  color: #2563eb;
  font-size: 1.4rem;
  font-weight: 700;
}


.home-mega-menu {
  width: min(640px, calc(100vw - 32px));
}

.floating-cart-button {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 12px 10px 18px;
  color: #fff;
  background: linear-gradient(135deg, #172638, #2563eb);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.22);
  cursor: pointer;
  font-weight: 700;
}

.floating-action-rail {
  position: fixed;
  right: 22px;
  bottom: 156px;
  z-index: 1100;
  display: grid;
  gap: 10px;
}

.floating-action-rail a,
.floating-action-rail button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-height: 48px;
  width: 66px;
  padding: 8px 10px;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.2);
  cursor: pointer;
  transition: width 180ms ease, transform 180ms ease;
  font-weight: 700;
}

.floating-action-rail a:hover,
.floating-action-rail button:hover {
  width: 154px;
  transform: translateX(-4px);
}

.floating-action-rail span {
  white-space: nowrap;
}

.floating-action-rail strong {
  display: grid;
  min-width: 34px;
  height: 34px;
  place-items: center;
  color: #0f172a;
  background: #fff;
  border-radius: 999px;
  font-size: 0.78rem;
}

.floating-whatsapp {
  background: linear-gradient(135deg, #128c7e, #25d366);
}

.floating-quote {
  background: linear-gradient(135deg, #172638, #2563eb);
}

.floating-cart-button strong {
  display: grid;
  min-width: 30px;
  height: 30px;
  place-items: center;
  color: #0f172a;
  background: #fff;
  border-radius: 999px;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1400;
  visibility: hidden;
  pointer-events: none;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 1450;
  visibility: hidden;
  pointer-events: none;
}

.quote-modal.open {
  visibility: visible;
  pointer-events: auto;
}

.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(15, 23, 42, 0.5);
  transition: opacity 180ms ease;
}

.quote-modal.open .quote-modal-backdrop {
  opacity: 1;
}

.quote-modal-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(720px, calc(100vw - 32px));
  max-height: calc(100vh - 42px);
  padding: 18px;
  overflow-y: auto;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.24);
  transform: translate(-50%, -46%) scale(0.96);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.quote-modal.open .quote-modal-panel {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.quote-modal-panel .lead-form {
  margin-top: 14px;
}

.about-page .domain-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cart-drawer.open {
  visibility: visible;
  pointer-events: auto;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(15, 23, 42, 0.48);
  transition: opacity 180ms ease;
}

.cart-drawer.open .cart-backdrop {
  opacity: 1;
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto minmax(120px, auto) 1fr;
  gap: 16px;
  width: min(460px, 100%);
  height: 100%;
  padding: 22px;
  overflow-y: auto;
  background: #fff;
  box-shadow: -24px 0 70px rgba(15, 23, 42, 0.22);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.cart-drawer.open .cart-panel {
  transform: translateX(0);
}

.cart-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  color: #fff;
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 12%, rgba(103, 232, 249, 0.22), transparent 30%),
    linear-gradient(135deg, #172638, #243b5a 62%, #12394a);
}

.cart-panel-head span {
  color: #baeefe;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-panel-head h2 {
  margin: 4px 0 0;
  color: #fff;
  font-size: 1.45rem;
}

.cart-panel-head button {
  width: 38px;
  height: 38px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.3rem;
}

.cart-items {
  display: grid;
  gap: 10px;
}

.cart-line,
.empty-cart {
  padding: 14px;
  border: 1px solid #dfe8ee;
  border-radius: 18px;
  background: #f8fbff;
}

.cart-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.cart-line strong,
.cart-line span {
  display: block;
}

.cart-line span {
  color: #64748b;
  font-size: 0.88rem;
}

.cart-line button {
  color: #b42318;
  background: #fff1f1;
  border: 1px solid #ffd7d7;
  border-radius: 999px;
  cursor: pointer;
  padding: 8px 10px;
}

.cart-checkout-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cart-checkout-form input,
.cart-checkout-form textarea {
  border-radius: 14px;
}

.site-toast {
  position: fixed;
  top: 92px;
  right: 22px;
  z-index: 1500;
  max-width: min(420px, calc(100vw - 32px));
  padding: 16px 18px;
  color: #075985;
  background: #ecfeff;
  border: 1px solid #bae6fd;
  border-radius: 18px;
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.16);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
  font-weight: 700;
}

.site-toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 760px) {
  .floating-cart-button {
    right: 16px;
    bottom: 86px;
  }

  .floating-action-rail {
    right: 16px;
    bottom: 146px;
  }

  .cart-checkout-form {
    grid-template-columns: 1fr;
  }

  .products-mega-menu.home-mega-menu,
  .products-mega-menu {
    padding: 10px;
  }
}

/* Product nav mega menu, card alignment and clean pagination */
.site-header {
  min-height: 76px;
  align-items: center;
}

.site-header .nav {
  align-items: center;
  gap: clamp(10px, 1.15vw, 18px);
}

.site-header .nav > a,
.site-header .nav-mega-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: #172033;
  white-space: nowrap;
}

.nav-mega-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
}

.products-mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 1200;
  display: grid;
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: 12px;
  width: min(860px, calc(100vw - 32px));
  padding: 14px;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  border: 1px solid rgba(223, 232, 238, 0.95);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 12%, rgba(6, 182, 212, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.96));
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(18px);
}

.nav-mega-item:hover .products-mega-menu,
.nav-mega-item:focus-within .products-mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.products-mega-menu a {
  display: grid;
  gap: 7px;
  min-height: 150px;
  padding: 18px;
  color: #172033;
  border: 1px solid #dfe8ee;
  border-radius: 18px;
  background: #fff;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.products-mega-menu a:hover {
  transform: translateY(-3px);
  border-color: #93c5fd;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}

.products-mega-menu span {
  color: #06b6d4;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.products-mega-menu strong {
  font-size: 1rem;
  font-weight: 600;
}

.products-mega-menu small {
  color: #64748b;
  line-height: 1.45;
}

.refined-product-grid {
  align-items: stretch;
}

.refined-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}

.refined-product-card .refined-card-body {
  display: grid;
  grid-template-rows: auto minmax(2.75em, auto) minmax(4.8em, 1fr) auto;
  height: 100%;
}

.refined-product-card .refined-card-body h3 {
  display: -webkit-box;
  min-height: 2.75em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.refined-product-card .refined-card-body p:not(.eyebrow) {
  display: -webkit-box;
  min-height: 4.8em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.refined-product-card .refined-card-body a {
  align-self: end;
  justify-self: start;
  margin-top: 10px;
}

.product-card-meta {
  display: none;
}

.catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.catalog-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.catalog-pagination a,
.catalog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 9px 14px;
  color: #17324d;
  background: #fff;
  border: 1px solid #dfe8ee;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
  font-weight: 600;
}

.catalog-pagination .active {
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  border-color: transparent;
}

.catalog-pagination .disabled {
  color: #94a3b8;
  background: #f8fafc;
  box-shadow: none;
}

.catalog-pagination .page-ellipsis {
  min-width: 32px;
  color: #64748b;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  font-weight: 800;
}

.catalog-pagination .page-control {
  min-width: 96px;
}

.admin-catalog-pagination {
  margin-top: 24px;
}

.parent-category-pill,
.child-category-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.parent-category-pill {
  color: #1d4ed8;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.child-category-pill {
  color: #0f766e;
  background: #f0fdfa;
  border: 1px solid #99f6e4;
}

@media (max-width: 1100px) {
  .products-mega-menu {
    left: auto;
    right: 0;
    grid-template-columns: 1fr;
    width: min(360px, calc(100vw - 32px));
    transform: translate(0, 10px);
  }

  .nav-mega-item:hover .products-mega-menu,
  .nav-mega-item:focus-within .products-mega-menu {
    transform: translate(0, 0);
  }
}

@media (max-width: 760px) {
  .site-header .nav {
    align-items: stretch;
  }

  .nav-mega-item {
    display: block;
    min-height: auto;
  }

  .products-mega-menu {
    position: static;
    width: 100%;
    margin-top: 8px;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
  }

  .products-mega-menu a {
    min-height: auto;
  }

  .catalog-pagination {
    flex-wrap: wrap;
  }
}

/* Advanced public product browser */
.product-domain-switcher {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-bottom: 22px;
}

.product-domain-switcher a {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 170px;
  padding: 24px;
  overflow: hidden;
  color: #172033;
  border: 1px solid #dfe8ee;
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 12%, rgba(6, 182, 212, 0.1), transparent 30%),
    linear-gradient(145deg, #fff, #f8fbfd);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-domain-switcher a::after {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 42px;
  height: 42px;
  content: "→";
  display: grid;
  place-items: center;
  color: #2563eb;
  background: #eef6ff;
  border: 1px solid #d8e9fb;
  border-radius: 999px;
  font-weight: 800;
}

.product-domain-switcher a:hover,
.product-domain-switcher a.active {
  transform: translateY(-4px);
  border-color: #93c5fd;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.12);
}

.product-domain-switcher a.active {
  color: #fff;
  background:
    radial-gradient(circle at 80% 12%, rgba(103, 232, 249, 0.26), transparent 32%),
    linear-gradient(135deg, #172638, #243b5a 62%, #12394a);
}

.product-domain-switcher a.active::after {
  color: #0f172a;
  background: #fff;
}

.product-domain-switcher span {
  color: #06b6d4;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.product-domain-switcher strong {
  max-width: 230px;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 600;
  line-height: 1.2;
}

.product-domain-switcher small {
  max-width: 300px;
  color: #64748b;
  line-height: 1.55;
}

.product-domain-switcher a.active small {
  color: #dbeafe;
}

.advanced-product-filter {
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid #dfe8ee;
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(37, 99, 235, 0.06), transparent 30%),
    linear-gradient(135deg, #fff, #f8fbfd);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.filter-main-row,
.filter-advanced-row {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(190px, 0.82fr) minmax(230px, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.filter-advanced-row {
  display: none;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #dfe8ee;
}

.advanced-product-filter.is-advanced-open .filter-advanced-row {
  display: grid;
}

.advanced-product-filter label {
  color: #334155;
  font-weight: 600;
}

.advanced-product-filter input,
.advanced-product-filter select {
  min-height: 46px;
  border-radius: 14px;
}

.advanced-product-filter .filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid #dfe8ee;
  border-radius: 14px;
  background: #fff;
}

.advanced-product-filter .filter-check input {
  width: auto;
  min-height: auto;
}

.advanced-product-filter .filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.advanced-product-filter .filter-search {
  grid-column: auto;
}

.catalog-summary {
  margin: 18px 0 24px;
}

.refined-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.refined-product-card {
  border-radius: 24px;
}

.refined-product-card .refined-card-image {
  background:
    radial-gradient(circle at 80% 12%, rgba(6, 182, 212, 0.1), transparent 30%),
    #edf4f8;
}

.refined-product-card .refined-card-body {
  padding: 22px;
}

.refined-product-card .refined-card-body h3 {
  font-size: 1.05rem;
  line-height: 1.32;
}

.product-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 2px;
}

.product-card-meta span {
  padding: 6px 9px;
  color: #155e75;
  background: #ecfeff;
  border: 1px solid #cffafe;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.catalog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.catalog-pagination nav {
  width: 100%;
}

.catalog-pagination .flex.justify-between,
.catalog-pagination nav > div:first-child {
  display: none;
}

.catalog-pagination nav > div:last-child,
.catalog-pagination nav > div:last-child > div,
.catalog-pagination nav span[aria-current],
.catalog-pagination nav a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-pagination nav > div:last-child {
  gap: 12px;
}

.catalog-pagination nav > div:last-child > div:last-child {
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-pagination nav a,
.catalog-pagination nav span {
  min-width: 40px;
  min-height: 40px;
  padding: 8px 12px;
  color: #17324d;
  background: #fff;
  border: 1px solid #dfe8ee;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.catalog-pagination nav span[aria-current] span,
.catalog-pagination nav span[aria-current] {
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  border-color: transparent;
}

@media (max-width: 1160px) {
  .refined-product-grid,
  .product-domain-switcher {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-main-row,
  .filter-advanced-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advanced-product-filter .filter-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .refined-product-grid,
  .product-domain-switcher,
  .filter-main-row,
  .filter-advanced-row {
    grid-template-columns: 1fr;
  }

  .advanced-product-filter .filter-actions {
    display: grid;
  }
}

/* Public inner heroes aligned with dashboard hero language */
.inner-page .inner-hero,
.page-title {
  width: 100%;
  max-width: none;
  margin: 0 0 clamp(42px, 6vw, 76px);
  padding-top: clamp(48px, 6vw, 78px);
  padding-bottom: clamp(48px, 6vw, 78px);
  padding-left: max(var(--site-gutter, 20px), calc((100vw - var(--site-shell, 1300px)) / 2 + var(--site-gutter, 20px)));
  padding-right: max(var(--site-gutter, 20px), calc((100vw - var(--site-shell, 1300px)) / 2 + var(--site-gutter, 20px)));
  color: #fff;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(103, 232, 249, 0.22), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(37, 99, 235, 0.24), transparent 34%),
    linear-gradient(135deg, #172638, #243b5a 62%, #12394a);
  box-shadow: none;
}

.inner-page .inner-hero::after,
.page-title::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.09;
  background-image:
    linear-gradient(to right, #fff 1px, transparent 1px),
    linear-gradient(to bottom, #fff 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, black, transparent 82%);
}

.inner-page .inner-hero > *,
.page-title > * {
  position: relative;
  z-index: 1;
}

.inner-page .inner-hero.compact-hero {
  min-height: 260px;
}

.inner-page .about-hero {
  min-height: 260px;
  background:
    radial-gradient(circle at 18% 12%, rgba(103, 232, 249, 0.22), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(37, 99, 235, 0.24), transparent 34%),
    linear-gradient(135deg, #172638, #243b5a 62%, #12394a);
}

.inner-page .inner-hero h1,
.page-title h1 {
  max-width: 860px;
  margin: 10px 0 12px;
  color: #fff;
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.inner-page .inner-hero p,
.page-title p {
  max-width: 760px;
  color: #dbeafe;
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
}

.inner-page .inner-hero .section-badge,
.page-title .eyebrow {
  color: #d9f8ff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.inner-hero.with-image {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
}

.inner-hero.with-image .inner-hero-single {
  position: relative;
  z-index: 1;
}

.inner-hero.with-image .inner-hero-single img {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
}

.refined-article h1 {
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
}

.product-page .inquiry-copy h1,
.product-page .product-copy h1 {
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
  font-weight: 600;
}

@media (max-width: 760px) {
  .inner-page .inner-hero,
  .page-title {
    padding-left: var(--site-gutter, 16px);
    padding-right: var(--site-gutter, 16px);
  }
}

/* Final admin-wide dashboard style override */
body.admin-body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: #172033;
  background:
    radial-gradient(circle at 24% 8%, rgba(37, 99, 235, 0.08), transparent 28%),
    radial-gradient(circle at 92% 14%, rgba(6, 182, 212, 0.09), transparent 28%),
    #f5f7fb;
}

body.admin-body .admin-sidebar {
  background:
    radial-gradient(circle at 18% 0%, rgba(103, 232, 249, 0.2), transparent 30%),
    linear-gradient(180deg, #162033 0%, #0f172a 100%);
  box-shadow: 18px 0 46px rgba(15, 23, 42, 0.16);
}

body.admin-body .admin-sidebar nav a {
  color: #d7e4ef;
  border-radius: 14px;
  font-weight: 600;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

body.admin-body .admin-sidebar nav a:hover,
body.admin-body .admin-sidebar nav a.active {
  transform: translateX(3px);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

body.admin-body .admin-sidebar nav a.active span {
  color: #0f172a;
  background: linear-gradient(135deg, #67e8f9, #ffffff);
}

body.admin-body .admin-page-head,
body.admin-body .admin-title,
body.admin-body .admin-hero-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 20px;
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  color: #172033;
  border: 1px solid #dfe8ee;
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 16%, rgba(6, 182, 212, 0.14), transparent 28%),
    radial-gradient(circle at 10% 18%, rgba(37, 99, 235, 0.09), transparent 30%),
    linear-gradient(145deg, #fff, #f8fbfd);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

body.admin-body .admin-page-head h1,
body.admin-body .admin-title h1 {
  color: #0f172a;
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 600;
}

body.admin-body .admin-page-head p:not(.eyebrow),
body.admin-body .admin-title p:not(.eyebrow) {
  color: #64748b;
}

body.admin-body .admin-form,
body.admin-body .admin-list-card,
body.admin-body .admin-panel-card,
body.admin-body .admin-form-step,
body.admin-body .table-wrap,
body.admin-body .media-picker,
body.admin-body .repeater,
body.admin-body .admin-stats article,
body.admin-body .admin-domain-grid article {
  border: 1px solid #dfe8ee;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.94)),
    #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

body.admin-body .admin-form,
body.admin-body .admin-list-card,
body.admin-body .admin-form-step {
  padding: clamp(18px, 2.4vw, 26px);
}

body.admin-body .admin-form.product-form-page {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.admin-body input,
body.admin-body select,
body.admin-body textarea {
  min-height: 46px;
  color: #172033;
  background: #fff;
  border: 1px solid #d7e3ea;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.03);
}

body.admin-body .admin-list-filters,
body.admin-body .media-upload-form {
  padding: 14px;
  border: 1px solid #e1ebf3;
  border-radius: 20px;
  background: #f8fbff;
}

body.admin-body thead th {
  color: #64748b;
  background: #f8fbff;
  border-bottom: 1px solid #dfe8ee;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.admin-body tbody tr:nth-child(even) {
  background: #fbfdff;
}

body.admin-body tbody tr:hover {
  background: #eef7ff;
}

body.admin-body td {
  color: #334155;
  border-bottom: 1px solid #edf2f7;
}

body.admin-body td strong,
body.admin-body .admin-form-step h2 {
  color: #0f172a;
  font-weight: 600;
}

body.admin-body .status-pill,
body.admin-body .table-actions a,
body.admin-body .table-actions button,
body.admin-body .inline-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  background: #eef6ff;
  border: 1px solid #d8e9fb;
  border-radius: 999px;
  font-weight: 600;
}

body.admin-body .table-actions .danger-link,
body.admin-body .danger-link {
  color: #b42318;
  background: #fff1f1;
  border-color: #ffd7d7;
}

/* Advanced admin UI applied across all admin pages */
body.admin-body .admin-page-head,
body.admin-body .admin-title,
body.admin-body .admin-hero-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 20px;
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  color: #172033;
  border: 1px solid #dfe8ee;
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 16%, rgba(6, 182, 212, 0.14), transparent 28%),
    radial-gradient(circle at 10% 18%, rgba(37, 99, 235, 0.09), transparent 30%),
    linear-gradient(145deg, #fff, #f8fbfd);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

body.admin-body .admin-page-head::after,
body.admin-body .admin-title::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(to right, rgba(37, 99, 235, 0.18) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(37, 99, 235, 0.18) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, black 18%, transparent 82%);
}

body.admin-body .admin-page-head > *,
body.admin-body .admin-title > * {
  position: relative;
  z-index: 1;
}

body.admin-body .admin-page-head h1,
body.admin-body .admin-title h1 {
  margin: 0 0 8px;
  color: #0f172a;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

body.admin-body .admin-page-head p:not(.eyebrow),
body.admin-body .admin-title p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: #64748b;
  line-height: 1.65;
}

body.admin-body .eyebrow {
  color: #2563eb;
  font-size: 0.76rem;
  font-weight: 600;
}

body.admin-body .admin-head-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

body.admin-body .button,
body.admin-body button,
body.admin-body .table-actions a {
  border-radius: 999px;
  font-weight: 600;
}

body.admin-body .button.primary {
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.22);
}

body.admin-body .button.secondary {
  color: #17324d;
  background: #fff;
  border-color: #dbe6ef;
}

body.admin-body .admin-grid {
  grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
  gap: 20px;
}

body.admin-body .admin-form,
body.admin-body .admin-list-card,
body.admin-body .admin-panel-card,
body.admin-body .admin-form-step,
body.admin-body .table-wrap,
body.admin-body .media-picker,
body.admin-body .repeater {
  border: 1px solid #dfe8ee;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.94)),
    #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

body.admin-body .admin-list-card,
body.admin-body .admin-form,
body.admin-body .admin-form-step {
  padding: clamp(18px, 2.4vw, 26px);
}

body.admin-body .admin-form.product-form-page {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.admin-body .admin-form-step {
  margin-bottom: 18px;
}

body.admin-body .admin-form-step > span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 11px;
  color: #2563eb;
  background: #eef6ff;
  border: 1px solid #d8e9fb;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.admin-body .admin-form-step h2,
body.admin-body .admin-list-card h2 {
  margin-top: 0;
  color: #0f172a;
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 600;
}

body.admin-body label {
  color: #334155;
  font-weight: 600;
}

body.admin-body input,
body.admin-body select,
body.admin-body textarea {
  min-height: 46px;
  color: #172033;
  background: #fff;
  border: 1px solid #d7e3ea;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.03);
}

body.admin-body input:focus,
body.admin-body select:focus,
body.admin-body textarea:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

body.admin-body .admin-list-filters,
body.admin-body .media-upload-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr)) auto auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid #e1ebf3;
  border-radius: 20px;
  background: #f8fbff;
}

body.admin-body .product-list-filters {
  grid-template-columns: minmax(220px, 1.15fr) repeat(4, minmax(150px, 0.8fr)) auto auto;
}

body.admin-body .table-wrap {
  overflow: hidden;
  padding: 0;
}

body.admin-body table {
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
}

body.admin-body thead th {
  padding: 14px 16px;
  color: #64748b;
  background: #f8fbff;
  border-bottom: 1px solid #dfe8ee;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.admin-body tbody tr {
  transition: background 160ms ease;
}

body.admin-body tbody tr:nth-child(even) {
  background: #fbfdff;
}

body.admin-body tbody tr:hover {
  background: #eef7ff;
}

body.admin-body td {
  padding: 15px 16px;
  color: #334155;
  border-bottom: 1px solid #edf2f7;
}

body.admin-body td strong {
  color: #0f172a;
  font-weight: 600;
}

body.admin-body .table-subtext {
  display: block;
  max-width: 520px;
  margin-top: 4px;
  color: #64748b;
  font-size: 0.86rem;
  line-height: 1.45;
}

body.admin-body .status-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  color: #155e75;
  background: #ecfeff;
  border: 1px solid #cffafe;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

body.admin-body .table-actions {
  justify-content: flex-end;
  gap: 7px;
}

body.admin-body .table-actions a,
body.admin-body .table-actions button,
body.admin-body .inline-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 11px;
  color: #2563eb;
  background: #eef6ff;
  border: 1px solid #d8e9fb;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
}

body.admin-body .table-actions .danger-link,
body.admin-body .danger-link {
  color: #b42318;
  background: #fff1f1;
  border-color: #ffd7d7;
}

body.admin-body .form-sticky-actions {
  position: sticky;
  bottom: 16px;
  z-index: 5;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #dfe8ee;
  border-radius: 18px;
  backdrop-filter: blur(16px);
}

body.admin-body .type-tile,
body.admin-body .media-choice,
body.admin-body .selected-media-preview figure,
body.admin-body .media-grid article {
  border: 1px solid #dfe8ee;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

body.admin-body .type-tile:hover,
body.admin-body .media-choice:hover,
body.admin-body .media-grid article:hover {
  transform: translateY(-3px);
  border-color: #cbdbe8;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
}

body.admin-body .type-tile:has(input:checked) {
  border-color: #60a5fa;
  background: linear-gradient(145deg, #eef6ff, #fff);
}

body.admin-body .media-picker-head,
body.admin-body .repeater-head {
  padding-bottom: 12px;
  border-bottom: 1px solid #edf2f7;
}

body.admin-body .media-dropzone {
  border: 1px dashed #93c5fd;
  background: #f8fbff;
  border-radius: 18px;
}

body.admin-body .media-grid {
  gap: 16px;
}

body.admin-body .media-grid article {
  overflow: hidden;
}

body.admin-body .notice.success {
  color: #075985;
  background: #ecfeff;
  border: 1px solid #bae6fd;
  border-radius: 18px;
}

body.admin-body .pagination,
body.admin-body nav[role="navigation"] {
  margin-top: 18px;
}

@media (max-width: 1100px) {
  body.admin-body .admin-grid {
    grid-template-columns: 1fr;
  }

  body.admin-body .admin-list-filters,
  body.admin-body .media-upload-form {
    grid-template-columns: 1fr 1fr;
  }

  body.admin-body .product-list-filters {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  body.admin-body .admin-page-head,
  body.admin-body .admin-title {
    align-items: flex-start;
    flex-direction: column;
  }

  body.admin-body .admin-head-actions {
    justify-content: flex-start;
  }

  body.admin-body .admin-list-filters,
  body.admin-body .media-upload-form {
    grid-template-columns: 1fr;
  }

  body.admin-body .product-list-filters {
    grid-template-columns: 1fr;
  }
}

/* Final Home 2 slider width/header clearance fix */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.vinlab-home2 > .v2-hero.v2-hero-slider,
.vinlab-home2 .v2-hero.v2-hero-slider {
  width: 100vw !important;
  max-width: none !important;
  margin: 0 calc(50% - 50vw) !important;
  border-radius: 0 !important;
}

.vinlab-home2 .v2-hero.v2-hero-slider {
  min-height: calc(100vh - 73px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vinlab-home2 .v2-slider-shell {
  padding-top: clamp(92px, 14vh, 150px);
}

@media (max-width: 640px) {
  .vinlab-home2 .v2-hero.v2-hero-slider {
    min-height: calc(100vh - 68px);
  }

  .vinlab-home2 .v2-slider-shell {
    padding-top: 82px;
  }
}

/* Home alignment corrections requested after review */
.home-main .trust-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.home-main .trust-strip p {
  margin: 0;
  justify-self: end;
}

.home-main .trust-strip div {
  justify-content: start;
}

.home-main .home-about {
  grid-template-columns: minmax(380px, 0.95fr) minmax(0, 1fr);
}

.home-main .home-about > div:last-child {
  max-width: 620px;
  justify-self: start;
}

.home-main .about-collage {
  align-items: stretch;
}

.home-main .about-collage img {
  display: block;
  min-height: 0;
}

.home-main .about-collage img:first-child {
  height: clamp(220px, 24vw, 310px);
}

.home-main .about-collage img:nth-child(2),
.home-main .about-collage img:nth-child(3) {
  height: clamp(160px, 18vw, 230px);
}

.home-main .premium-products {
  align-items: stretch;
}

.home-main .premium-products .product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid #d9e3ea;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(246,249,251,0.85) 100%),
    #fff;
  box-shadow: 0 14px 36px rgba(44, 76, 110, 0.08);
}

.home-main .premium-products .product-card img {
  height: clamp(170px, 18vw, 235px);
  width: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.home-main .premium-products .product-card:hover img {
  transform: scale(1.04);
}

.home-main .premium-products .product-card div {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 178px;
  padding: 18px;
}

.home-main .premium-products .product-card .eyebrow {
  width: fit-content;
  margin: 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e8f0f0;
  color: var(--vin-teal);
  font-size: 0.68rem;
}

.home-main .premium-products .product-card h3 {
  margin: 0;
}

.home-main .premium-products .product-card a {
  align-self: end;
  width: fit-content;
  margin-top: auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f1f6f6;
}

.home-main .premium-products .product-card.hidden,
.vinlab-home2 .v2-product-card.hidden {
  display: none;
}

.vinlab-home2 .v2-hero .v2-shell.v2-hero-grid {
  max-width: none;
  height: 100%;
  padding: 0;
}

.vinlab-home2 .v2-hero {
  display: block;
}

.vinlab-home2 .v2-hero-copy {
  min-width: 0;
  align-self: center;
}

.vinlab-home2 .v2-hero-media {
  min-width: 0;
  height: 100%;
}

.vinlab-home2 .v2-hero-collage {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
}

.vinlab-home2 .v2-hero-collage img {
  display: block;
  height: 100%;
  object-fit: cover;
}

.v2-product-tabs,
.home-main .tab-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px;
  border: 1px solid #dfe7ee;
  border-radius: 999px;
  background: #f8fafc;
}

.v2-product-tabs button,
.home-main .tab-controls button {
  min-height: 38px;
  padding: 8px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #526173;
  font-weight: 700;
  cursor: pointer;
}

.v2-product-tabs button.active,
.home-main .tab-controls button.active {
  background: #fff;
  color: var(--vin-blue);
  box-shadow: 0 8px 18px rgba(44, 76, 110, 0.08);
}

.v2-products-footer {
  margin-top: 24px;
  text-align: center;
}

.v2-products-footer a {
  color: var(--vin-teal);
  font-weight: 800;
}

.vinlab-home2 .v2-feature-grid article {
  grid-template-columns: 72px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  align-items: start;
  min-height: 136px;
  padding: 22px 20px;
  border: 1px solid #e1e8ee;
  border-radius: 18px;
}

.vinlab-home2 .v2-feature-grid article span {
  grid-row: 1 / 3;
  grid-column: 1;
  align-self: start;
  text-align: left;
}

.vinlab-home2 .v2-feature-grid article h3,
.vinlab-home2 .v2-feature-grid article p {
  grid-column: 2;
  margin: 0;
}

.vinlab-home2 .v2-feature-grid article h3 {
  margin-bottom: 8px;
}

@media (max-width: 960px) {
  .home-main .trust-strip {
    grid-template-columns: 1fr;
  }

  .home-main .trust-strip p,
  .home-main .trust-strip div {
    justify-self: center;
    justify-content: center;
  }

  .home-main .home-about {
    grid-template-columns: 1fr;
  }

  .home-main .home-about > div:last-child {
    max-width: none;
  }
}

@media (max-width: 700px) {
  .home-main .premium-products .product-card div {
    min-height: auto;
  }

  .v2-product-tabs,
  .home-main .tab-controls {
    width: 100%;
    justify-content: center;
    border-radius: 18px;
  }

  .v2-product-tabs button,
  .home-main .tab-controls button {
    flex: 1 1 42%;
  }

  .vinlab-home2 .v2-feature-grid article {
    grid-template-columns: 56px minmax(0, 1fr);
    padding: 18px;
  }
}

/* Home 1 centered section shells and nested about collage */
.home-main {
  display: block;
}

.home-main .home-hero,
.home-main .trust-strip,
.home-main .section,
.home-main .premium-cta {
  width: min(100%, 1320px);
  margin-left: auto;
  margin-right: auto;
}

.home-main .section-head.centered {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.home-main .home-about {
  justify-content: center;
  justify-items: center;
  grid-template-columns: minmax(320px, 540px) minmax(320px, 560px);
  gap: clamp(28px, 4vw, 56px);
}

.home-main .home-about > div:last-child {
  justify-self: center;
  width: 100%;
  max-width: 560px;
}

.home-main .about-collage {
  display: grid;
  width: 100%;
  max-width: 540px;
  gap: 14px;
}

.home-main .about-collage-main,
.home-main .about-collage-row {
  display: grid;
  min-width: 0;
}

.home-main .about-collage-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-main .about-collage img,
.home-main .about-collage img:first-child,
.home-main .about-collage img:nth-child(2),
.home-main .about-collage img:nth-child(3) {
  display: block;
  width: 100%;
  min-width: 0;
  object-fit: cover;
  border-radius: 18px;
}

.home-main .about-collage-main img {
  height: clamp(220px, 24vw, 300px);
}

.home-main .about-collage-row img {
  height: clamp(150px, 15vw, 200px);
}

.home-main .trust-strip {
  width: min(calc(100% - clamp(32px, 6vw, 80px)), 1240px);
  justify-items: center;
}

.home-main .trust-strip p,
.home-main .trust-strip div {
  justify-self: center;
  justify-content: center;
}

@media (max-width: 960px) {
  .home-main .home-about {
    grid-template-columns: minmax(0, 680px);
  }
}

@media (max-width: 560px) {
  .home-main .about-collage-row {
    grid-template-columns: 1fr;
  }

  .home-main .about-collage-main img,
  .home-main .about-collage-row img {
    height: 210px;
  }
}

/* ============================================
   MODERN HOME PAGE STYLES
   ============================================ */

/* Badge Pills */
.badge-pill,
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(73, 110, 109, 0.1), rgba(100, 123, 153, 0.08));
  border: 1px solid rgba(73, 110, 109, 0.15);
  color: var(--brand);
}

.section-badge.light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Hero Section Modern */
.home-main .hero-bg-layers {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.home-main .hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.home-main .hero-gradient-orb.orb-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(120, 169, 167, 0.4), transparent 70%);
}

.home-main .hero-gradient-orb.orb-2 {
  width: 400px;
  height: 400px;
  bottom: 100px;
  left: -100px;
  background: radial-gradient(circle, rgba(100, 123, 153, 0.35), transparent 70%);
}

.home-main .hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(73, 110, 109, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 110, 109, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.home-main .hero-content-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  min-height: calc(100vh - 74px);
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 72px);
  max-width: 1440px;
  margin: 0 auto;
}

.home-main .hero-copy {
  flex: 0 0 auto;
  width: 100%;
  max-width: 580px;
}

.home-main .hero-copy h1 {
  margin: 20px 0;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-main .stat-number {
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand-dark);
}

.home-main .stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.home-main .stat-divider {
  width: 1px;
  height: 40px;
  background: var(--line);
}

/* Hero Visual Modern */
.home-main .hero-visual {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  max-width: 420px;
}

.home-main .hero-image-stack {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  grid-template-rows: 200px 170px;
  gap: 16px;
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
  transform-style: preserve-3d;
}

.home-main .hero-img-main {
  grid-row: 1 / 3;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(35, 31, 32, 0.2);
}

.home-main .hero-img-main img {
  min-height: 0;
  border-radius: 20px;
}

.home-main .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(35, 31, 32, 0.15) 100%);
}

.home-main .hero-img-secondary,
.home-main .hero-img-tertiary {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(35, 31, 32, 0.15);
}

.home-main .hero-img-secondary img,
.home-main .hero-img-tertiary img {
  min-height: 0;
  border-radius: 16px;
}

/* Floating Card */
.home-main .floating-card {
  position: absolute;
  right: -20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(35, 31, 32, 0.15);
  backdrop-filter: blur(20px);
}

.home-main .floating-card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  border-radius: 12px;
  font-size: 1.4rem;
}

.home-main .floating-card-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.home-main .floating-card-content strong {
  font-size: 1rem;
  color: var(--brand-dark);
}

.home-main .floating-card-content span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Trust Strip Modern */
.home-main .trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 5vw, 72px);
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}

.home-main .trust-label p {
  margin: 0;
  font-weight: 700;
  color: var(--muted);
  font-size: 0.9rem;
  white-space: nowrap;
}

.home-main .trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-main .trust-pill {
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-dark);
  background: linear-gradient(135deg, #f0f5f4, #e8eeed);
  border-radius: 999px;
  transition: all 0.2s ease;
}

.home-main .trust-pill:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}

/* About Section Modern */
.home-main .home-about {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.home-main .about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr;
  grid-template-rows: 200px 180px;
  gap: 14px;
}

.home-main .about-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.home-main .about-card.main {
  grid-row: 1 / 3;
}

.home-main .about-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.home-main .about-card:hover img {
  transform: scale(1.05);
}

.home-main .about-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(35, 31, 32, 0.2) 100%);
}

.home-main .about-content {
  padding: 20px 0;
}

.home-main .about-content h2 {
  margin: 16px 0 20px;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  color: var(--brand-dark);
}

.home-main .about-content > p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.home-main .check-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.home-main .check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0;
  border: none;
}

.home-main .check-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  border-radius: 50%;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
}

.home-main .check-list strong {
  display: block;
  color: var(--brand-dark);
  margin-bottom: 2px;
}

.home-main .check-list span {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Solution Section Modern */
.home-main .solution-section {
  max-width: none;
  background: linear-gradient(180deg, #fff, #f8faf9);
}

.home-main .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
}

.home-main .section-header.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-main .section-header h2 {
  margin: 14px 0 0;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--brand-dark);
}

.home-main .solution-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.home-main .solution-card {
  position: relative;
  padding: 32px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, #2a3a3a, #1a2525);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(35, 31, 32, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-main .solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(35, 31, 32, 0.2);
}

.home-main .solution-card-bg {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 60%);
  border-radius: 50%;
}

.home-main .solution-card:nth-child(2) {
  background: linear-gradient(145deg, #364b5e, #1f2d3a);
}

.home-main .solution-card:nth-child(3) {
  background: linear-gradient(145deg, #496e6d, #2d4241);
}

.home-main .solution-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.home-main .solution-card h3 {
  margin: 0 0 12px;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}

.home-main .solution-card p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 20px;
}

.home-main .solution-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  transition: gap 0.2s ease;
}

.home-main .solution-link:hover {
  gap: 12px;
}

.home-main .arrow {
  font-size: 1.1em;
}

/* Products Section Modern */
.home-main .home-products {
  max-width: 1340px;
  margin: 0 auto;
}

.home-main .product-grid.premium-products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.home-main .product-card.premium-product {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}

.home-main .product-card.premium-product:hover {
  transform: translateY(-6px);
  border-color: var(--brand);
  box-shadow: 0 20px 50px rgba(35, 31, 32, 0.12);
}

.home-main .product-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.home-main .product-card-image img {
  transition: transform 0.4s ease;
}

.home-main .product-card.premium-product:hover .product-card-image img {
  transform: scale(1.08);
}

.home-main .product-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(35, 31, 32, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-main .product-card.premium-product:hover .product-card-overlay {
  opacity: 1;
}

.home-main .view-details {
  padding: 10px 20px;
  background: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brand-dark);
}

.home-main .product-card-content {
  padding: 20px;
}

.home-main .product-category {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
}

.home-main .product-card-content h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--brand-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-main .product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand);
}

.home-main .product-link:hover {
  gap: 10px;
}

/* CTA Section Modern */
.home-main .premium-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px);
  color: #fff;
  overflow: hidden;
}

.home-main .cta-bg-layers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-main .cta-gradient-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  top: -300px;
  right: -100px;
  background: radial-gradient(circle, rgba(120, 169, 167, 0.25), transparent 60%);
  border-radius: 50%;
  filter: blur(60px);
}

.home-main .cta-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.home-main .premium-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(35, 31, 32, 0.95), rgba(35, 31, 32, 0.88));
}

.home-main .cta-content,
.home-main .cta-actions {
  position: relative;
  z-index: 1;
}

.home-main .cta-content {
  max-width: 680px;
}

.home-main .cta-content h2 {
  margin: 16px 0 18px;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.home-main .cta-content p:not(.section-badge) {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  line-height: 1.6;
}

.home-main .cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Feature Grid Modern */
.home-main .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-main .feature-card {
  position: relative;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.home-main .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--cyan));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-main .feature-card:hover {
  border-color: var(--brand);
  box-shadow: 0 16px 40px rgba(35, 31, 32, 0.08);
}

.home-main .feature-card:hover::before {
  opacity: 1;
}

.home-main .feature-number {
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 16px;
}

.home-main .feature-card h3 {
  margin: 0 0 10px;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.home-main .feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Blog Section Modern */
.home-main .home-blog .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.home-main .view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--brand);
}

.home-main .view-all-link:hover {
  gap: 12px;
}

.home-main .blog-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.home-main .blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand);
  box-shadow: 0 20px 50px rgba(35, 31, 32, 0.1);
}

.home-main .blog-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.home-main .blog-card-image img {
  transition: transform 0.4s ease;
}

.home-main .blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}

.home-main .blog-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(35, 31, 32, 0.1) 100%);
}

.home-main .blog-card-content {
  padding: 22px;
}

.home-main .blog-category {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.home-main .blog-card-content h2 {
  margin: 0 0 12px;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--brand-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-main .blog-card-content p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-main .blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--brand);
}

.home-main .blog-link:hover {
  gap: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .home-main .hero-content-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    min-height: auto;
    padding-bottom: 60px;
  }

  .home-main .hero-copy {
    max-width: 100%;
    text-align: center;
  }

  .home-main .hero-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .home-main .hero-image-stack {
    transform: none;
  }

  .home-main .floating-card {
    right: 20px;
    bottom: -20px;
  }

  .home-main .home-about {
    grid-template-columns: 1fr;
  }

  .home-main .about-grid {
    max-width: 600px;
    margin: 0 auto;
  }

  .home-main .solution-cards,
  .home-main .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-main .premium-cta {
    flex-direction: column;
    text-align: center;
  }

  .home-main .product-grid.premium-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-main .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .home-main .stat-divider {
    display: none;
  }

  .home-main .trust-strip {
    flex-direction: column;
    text-align: center;
  }

  .home-main .solution-cards,
  .home-main .feature-grid,
  .home-main .product-grid.premium-products,
  .home-main .card-grid.three {
    grid-template-columns: 1fr;
  }

  .home-main .about-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .home-main .about-card.main {
    grid-row: auto;
    height: 220px;
  }

  .home-main .about-card {
    height: 160px;
  }

  .home-main .floating-card {
    right: 50%;
    transform: translateX(50%);
    bottom: -30px;
  }
}

/* Final Home 1 hero repair */
.home-main .home-hero {
  position: relative;
  display: block;
  width: min(calc(100% - clamp(32px, 5vw, 72px)), 1360px);
  min-height: auto;
  margin: clamp(18px, 2.5vw, 34px) auto clamp(34px, 5vw, 66px);
  padding: 0;
  overflow: hidden;
  border: 1px solid #e4edf2;
  border-radius: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 82% 12%, rgba(84, 116, 115, 0.18), transparent 34%),
    radial-gradient(circle at 8% 92%, rgba(44, 76, 110, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f8fbfb 48%, #eef6f4 100%);
  box-shadow: 0 24px 70px rgba(44, 76, 110, 0.08);
}

.home-main .home-hero::before {
  display: none;
}

.home-main .hero-content-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  width: 100%;
  max-width: none;
  min-height: clamp(520px, 58vw, 680px);
  padding: clamp(38px, 6vw, 82px) clamp(24px, 5vw, 74px);
}

.home-main .hero-copy {
  width: 100%;
  max-width: 640px;
  min-width: 0;
  text-align: left;
}

.home-main .hero-copy h1 {
  display: block;
  max-width: 660px;
  margin: 18px 0;
  color: #102033;
  font-size: clamp(2.25rem, 5vw, 4.35rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.home-main .hero-copy p {
  max-width: 560px;
  margin: 0;
  color: #526173;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.7;
}

.home-main .badge-pill {
  color: var(--vin-teal);
  background: rgba(84, 116, 115, 0.1);
  border-color: rgba(84, 116, 115, 0.18);
}

.home-main .hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.home-main .button.secondary-glow {
  color: var(--vin-blue);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(44, 76, 110, 0.22);
  box-shadow: 0 12px 28px rgba(44, 76, 110, 0.08);
}

.home-main .button.secondary-glow:hover {
  transform: translateY(-2px);
  background: #fff;
}

.home-main .hero-stats {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(28px, 4vw, 42px);
  padding: 16px 18px;
  width: fit-content;
  border: 1px solid #dfe8ee;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 36px rgba(44, 76, 110, 0.07);
  backdrop-filter: blur(12px);
}

.home-main .stat-item {
  display: grid;
  gap: 2px;
  min-width: 78px;
}

.home-main .stat-number {
  display: block;
  color: var(--vin-blue);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 800;
  line-height: 1;
}

.home-main .stat-label {
  display: block;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 700;
}

.home-main .hero-visual {
  position: relative;
  width: 100%;
  max-width: 560px;
  justify-self: end;
  align-self: center;
}

.home-main .hero-image-stack {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(150px, 0.72fr);
  grid-template-rows: clamp(170px, 18vw, 250px) clamp(150px, 16vw, 215px);
  gap: clamp(12px, 1.5vw, 18px);
  width: 100%;
  transform: none;
}

.home-main .hero-img-main,
.home-main .hero-img-secondary,
.home-main .hero-img-tertiary {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: #edf3f4;
  box-shadow: 0 18px 44px rgba(44, 76, 110, 0.14);
}

.home-main .hero-img-main {
  grid-row: 1 / 3;
  border-radius: 26px;
}

.home-main .hero-img-secondary,
.home-main .hero-img-tertiary {
  border-radius: 20px;
}

.home-main .hero-img-main img,
.home-main .hero-img-secondary img,
.home-main .hero-img-tertiary img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: inherit;
}

.home-main .floating-card {
  right: clamp(8px, 1.5vw, 18px);
  bottom: clamp(12px, 1.5vw, 20px);
  z-index: 3;
  padding: 14px 16px;
  border: 1px solid rgba(223, 232, 238, 0.9);
  border-radius: 18px;
}

.home-main .floating-card-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--vin-blue), var(--vin-teal));
}

@media (max-width: 1024px) {
  .home-main .hero-content-wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-main .hero-copy {
    max-width: 760px;
    text-align: center;
    justify-self: center;
  }

  .home-main .hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .home-main .hero-actions,
  .home-main .hero-stats {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .home-main .hero-visual {
    justify-self: center;
    max-width: 680px;
    order: initial;
  }
}

@media (max-width: 640px) {
  .home-main .home-hero {
    width: calc(100% - 24px);
    border-radius: 20px;
  }

  .home-main .hero-content-wrapper {
    padding: 30px 18px 40px;
    gap: 28px;
  }

  .home-main .hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .home-main .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .home-main .hero-stats {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    gap: 10px;
    padding: 14px;
  }

  .home-main .stat-divider {
    display: none;
  }

  .home-main .hero-image-stack {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 150px 150px;
  }

  .home-main .hero-img-main {
    grid-row: auto;
  }

  .home-main .floating-card {
    right: 12px;
    bottom: 12px;
    transform: none;
  }
}

/* Pin Home 1 hero copy left and media right */
.home-main .home-hero .hero-content-wrapper {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr) !important;
  grid-template-areas: "copy media";
  align-items: center;
  justify-content: center;
}

.home-main .home-hero .hero-copy {
  grid-area: copy;
  justify-self: start;
  align-self: center;
  width: 100%;
  max-width: 640px;
  z-index: 2;
}

.home-main .home-hero .hero-visual {
  grid-area: media;
  justify-self: end;
  align-self: center;
  position: relative;
  width: min(100%, 560px);
  max-width: 560px;
  z-index: 1;
}

.home-main .home-hero .hero-image-stack {
  width: 100%;
  margin: 0;
}

@media (max-width: 1024px) {
  .home-main .home-hero .hero-content-wrapper {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "copy"
      "media";
  }

  .home-main .home-hero .hero-copy,
  .home-main .home-hero .hero-visual {
    justify-self: center;
  }
}

/* Home 3 */
.home3-body {
  margin: 0;
  background: #fff;
  color: #0f172a;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

.home3-shell {
  width: min(100% - 32px, 1280px);
  margin: 0 auto;
}

.home3-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  backdrop-filter: blur(18px);
}

.home3-nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.home3-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0f172a;
  font-weight: 800;
}

.home3-brand span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  border-radius: 10px;
}

.home3-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.home3-links a {
  color: #475569;
  font-size: 0.9rem;
  font-weight: 700;
}

.home3-links a:hover {
  color: #2563eb;
}

.home3-nav-cta {
  padding: 10px 18px;
  color: #fff !important;
  background: #2563eb;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
}

.home3-menu-button {
  display: none;
  border: 0;
  background: #f1f5f9;
  border-radius: 10px;
  padding: 10px 12px;
  color: #0f172a;
  font-weight: 800;
}

.home3-hero {
  position: relative;
  min-height: calc(90vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f8fafc;
  padding: clamp(64px, 8vw, 110px) 0;
}

.home3-hero-bg span {
  position: absolute;
  border-radius: 999px;
  filter: blur(110px);
  pointer-events: none;
}

.home3-hero-bg span:nth-child(1) {
  width: 58vw;
  height: 58vw;
  top: -28%;
  right: -14%;
  background: rgba(103, 232, 249, 0.28);
}

.home3-hero-bg span:nth-child(2) {
  width: 44vw;
  height: 44vw;
  top: 22%;
  left: -12%;
  background: rgba(37, 99, 235, 0.12);
}

.home3-hero-bg span:nth-child(3) {
  width: 46vw;
  height: 46vw;
  bottom: -28%;
  left: 20%;
  background: rgba(168, 85, 247, 0.1);
}

.home3-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(38px, 6vw, 76px);
}

.home3-kicker,
.home3-eyebrow {
  color: #2563eb;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home3-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  margin-bottom: 22px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: rgba(219, 234, 254, 0.62);
  letter-spacing: 0;
  text-transform: none;
}

.home3-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2563eb;
}

.home3-hero h1,
.home3-section-head h2,
.home3-copy h2,
.home3-cta h2 {
  font-family: Manrope, Inter, sans-serif;
  letter-spacing: -0.04em;
}

.home3-hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(2.7rem, 5.8vw, 5.8rem);
  line-height: 1.04;
  font-weight: 900;
}

.home3-hero mark,
.home3-cta mark {
  color: transparent;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
}

.home3-hero p {
  max-width: 610px;
  margin: 0;
  color: #526173;
  font-size: clamp(1.06rem, 1.55vw, 1.28rem);
  line-height: 1.75;
}

.home3-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.home3-actions.center {
  justify-content: center;
}

.home3-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
}

.home3-button.primary {
  color: #fff;
  background: #2563eb;
  box-shadow: 0 18px 35px rgba(37, 99, 235, 0.22);
}

.home3-button.secondary,
.home3-button.outline {
  color: #0f172a;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #e2e8f0;
}

.home3-button.dark {
  color: #fff;
  background: #0f172a;
}

.home3-button.white {
  color: #0f172a;
  background: #fff;
}

.home3-button.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.home3-button:hover {
  transform: translateY(-2px);
}

.home3-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 800;
}

.home3-proof span::before,
.home3-checks li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 999px;
  background: #22c55e;
}

.home3-hero-visual {
  justify-self: end;
  width: min(100%, 560px);
}

.home3-visual-frame {
  position: relative;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(18px);
}

.home3-visual-frame > img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.45;
  object-fit: cover;
  border-radius: 22px;
}

.home3-float-card {
  position: absolute;
  display: grid;
  gap: 3px;
  min-width: 170px;
  padding: 14px 16px;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.18);
}

.home3-float-card span {
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home3-float-card strong {
  color: #0f172a;
  font-size: 0.95rem;
}

.home3-float-card.quality {
  top: 26px;
  left: -32px;
  background: rgba(255, 255, 255, 0.92);
}

.home3-float-card.supplied {
  right: -26px;
  bottom: 42px;
  background: rgba(15, 23, 42, 0.94);
}

.home3-float-card.supplied span {
  color: #94a3b8;
}

.home3-float-card.supplied strong {
  color: #fff;
}

.home3-trust {
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}

.home3-trust .home3-shell {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 5vw, 64px);
  flex-wrap: wrap;
  padding: 22px 0;
  color: #64748b;
  font-weight: 850;
}

.home3-section {
  padding: clamp(68px, 8vw, 110px) 0;
}

.home3-services,
.home3-blog {
  background: #f8fafc;
}

.home3-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: center;
}

.home3-about-collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.home3-about-column {
  display: grid;
  gap: 16px;
}

.home3-about-column.shifted {
  transform: translateY(34px);
}

.home3-about-collage img {
  width: 100%;
  height: clamp(240px, 27vw, 320px);
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

.home3-stat-card {
  padding: 24px;
  border-radius: 24px;
}

.home3-stat-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 2.5rem;
  line-height: 1;
}

.home3-stat-card.light {
  background: #eff6ff;
  color: #2563eb;
}

.home3-stat-card.dark {
  color: #fff;
  background: #0f172a;
}

.home3-stat-card span {
  color: inherit;
  font-weight: 800;
}

.home3-center-badge {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  border: 10px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  font-weight: 900;
}

.home3-copy h2,
.home3-section-head h2 {
  margin: 10px 0 18px;
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.1;
  font-weight: 900;
}

.home3-copy p,
.home3-section-head p {
  color: #526173;
  font-size: 1.05rem;
  line-height: 1.75;
}

.home3-checks {
  display: grid;
  gap: 14px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
  color: #334155;
  font-size: 1.05rem;
  font-weight: 800;
}

.home3-section-head.center {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.home3-section-head.split {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 42px;
}

.home3-section-head.split > div {
  max-width: 720px;
}

.home3-service-grid,
.home3-why-grid,
.home3-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.home3-service-card,
.home3-why-grid article,
.home3-blog-card,
.home3-product-card {
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: 0.25s ease;
  overflow: hidden;
}

.home3-service-card {
  position: relative;
  padding: 32px;
}

.home3-service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s ease;
}

.home3-service-card.blue::before { background: linear-gradient(90deg, #2563eb, #60a5fa); }
.home3-service-card.cyan::before { background: linear-gradient(90deg, #06b6d4, #2dd4bf); }
.home3-service-card.purple::before { background: linear-gradient(90deg, #9333ea, #818cf8); }

.home3-service-card:hover,
.home3-product-card:hover,
.home3-blog-card:hover,
.home3-why-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.1);
}

.home3-service-card:hover::before {
  transform: scaleX(1);
}

.home3-service-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 20px;
  background: #eff6ff;
  color: #2563eb;
  font-weight: 900;
}

.home3-service-card h3,
.home3-product-card h3,
.home3-blog-card h3,
.home3-why-grid h3 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.25;
}

.home3-service-card p,
.home3-blog-card p,
.home3-why-grid p {
  color: #526173;
  line-height: 1.7;
}

.home3-service-card a,
.home3-product-card a,
.home3-blog-card a,
.home3-section-head > a {
  color: #2563eb;
  font-weight: 850;
}

.home3-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home3-filter-tabs button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #fff;
  color: #526173;
  font-weight: 850;
  cursor: pointer;
}

.home3-filter-tabs button.active {
  color: #fff;
  background: #0f172a;
  border-color: #0f172a;
}

.home3-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.home3-product-card.hidden {
  display: none;
}

.home3-product-card > a:first-child,
.home3-blog-card > a:first-child {
  position: relative;
  display: block;
  overflow: hidden;
  background: #f1f5f9;
}

.home3-product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: 0.6s ease;
}

.home3-blog-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: 0.6s ease;
}

.home3-product-card:hover img,
.home3-blog-card:hover img {
  transform: scale(1.05);
}

.home3-product-card > a:first-child span,
.home3-blog-card > a:first-child span {
  position: absolute;
  top: 16px;
  left: 16px;
  max-width: calc(100% - 32px);
  padding: 6px 10px;
  border-radius: 999px;
  color: #1e40af;
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.75rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.home3-product-card div,
.home3-blog-card div {
  padding: 24px;
}

.home3-center-action {
  display: flex;
  justify-content: center;
  margin-top: 46px;
}

.home3-cta-wrap {
  background: #fff;
}

.home3-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 8vw, 100px) clamp(24px, 7vw, 90px);
  border-radius: clamp(28px, 5vw, 44px);
  background: #020617;
  text-align: center;
}

.home3-cta-bg::before,
.home3-cta-bg::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 999px;
  filter: blur(130px);
}

.home3-cta-bg::before {
  top: -35%;
  left: -25%;
  background: rgba(37, 99, 235, 0.42);
}

.home3-cta-bg::after {
  right: -25%;
  bottom: -35%;
  background: rgba(147, 51, 234, 0.42);
}

.home3-cta > *:not(.home3-cta-bg) {
  position: relative;
  z-index: 1;
}

.home3-kicker.light {
  color: #a5f3fc;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
}

.home3-cta h2 {
  max-width: 850px;
  margin: 26px auto 20px;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 1.08;
  font-weight: 900;
}

.home3-cta p {
  max-width: 760px;
  margin: 0 auto;
  color: #cbd5e1;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.8;
}

.home3-cta-notes {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 34px;
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 800;
}

.home3-why-grid article {
  padding: 24px;
}

.home3-why-grid span {
  display: block;
  margin-bottom: 18px;
  color: #2563eb;
  font-size: 2rem;
  font-weight: 900;
}

.home3-footer {
  padding: 54px 0;
  color: #cbd5e1;
  background: #0f172a;
}

.home3-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 34px;
}

.home3-brand.footer {
  color: #fff;
  margin-bottom: 14px;
}

.home3-footer p {
  max-width: 340px;
  line-height: 1.7;
}

.home3-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1rem;
}

.home3-footer a,
.home3-footer span {
  display: block;
  margin-bottom: 8px;
  color: #cbd5e1;
}

@media (max-width: 1050px) {
  .home3-menu-button {
    display: inline-flex;
  }

  .home3-links {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
  }

  .home3-links.open {
    display: flex;
  }

  .home3-links a {
    padding: 12px;
    border-radius: 12px;
  }

  .home3-hero-grid,
  .home3-about-grid {
    grid-template-columns: 1fr;
  }

  .home3-hero-copy,
  .home3-hero p {
    max-width: 760px;
  }

  .home3-hero-visual {
    justify-self: center;
  }

  .home3-section-head.split {
    align-items: start;
    flex-direction: column;
  }

  .home3-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home3-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home3-service-grid,
  .home3-why-grid,
  .home3-blog-grid,
  .home3-product-grid {
    grid-template-columns: 1fr;
  }

  .home3-about-collage {
    grid-template-columns: 1fr;
  }

  .home3-about-column.shifted {
    transform: none;
  }

  .home3-center-badge {
    display: none;
  }

  .home3-float-card {
    position: static;
    margin-top: 12px;
  }

  .home3-actions,
  .home3-filter-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home3-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Inner page visual refresh aligned with Home 1 */
.inner-page {
  --inner-shell: var(--site-shell, 1300px);
  --inner-gutter: var(--site-gutter, clamp(18px, 2.6vw, 42px));
  overflow: hidden;
  background: #fff;
}

.inner-hero,
.inner-section,
.inner-cta {
  width: min(calc(100% - (var(--inner-gutter) * 2)), var(--inner-shell));
  max-width: var(--inner-shell);
  margin-left: auto;
  margin-right: auto;
}

.inner-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.8fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  margin-top: clamp(24px, 3vw, 42px);
  margin-bottom: clamp(48px, 7vw, 82px);
  padding: clamp(44px, 6vw, 78px);
  overflow: hidden;
  border: 1px solid #dfe8ee;
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 14%, rgba(37, 99, 235, 0.14), transparent 28%),
    radial-gradient(circle at 8% 86%, rgba(6, 182, 212, 0.12), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f5f9fd 54%, #eef7f8 100%);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.inner-hero.compact-hero {
  grid-template-columns: minmax(0, 850px);
  min-height: 290px;
}

.inner-hero h1 {
  max-width: 920px;
  margin: 12px 0 16px;
  color: #0f172a;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(2rem, 4.3vw, 4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.inner-hero p {
  max-width: 760px;
  margin: 0;
  color: #526173;
  font-size: clamp(1rem, 1.55vw, 1.15rem);
  line-height: 1.75;
}

.inner-hero-media {
  position: relative;
  min-height: 380px;
}

.inner-hero-media img,
.inner-hero-single img {
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.14);
}

.inner-hero-media img:first-child {
  position: absolute;
  inset: 0 auto auto 0;
  width: 74%;
  height: 76%;
}

.inner-hero-media img:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 56%;
  height: 52%;
}

.inner-hero.with-image {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
}

.inner-hero-single {
  aspect-ratio: 4 / 3;
}

.inner-section {
  padding: clamp(44px, 7vw, 82px) 0;
}

.inner-section.compact {
  padding-top: 0;
  padding-bottom: clamp(24px, 4vw, 42px);
}

.inner-section .section-header,
.inner-page .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.inner-section .section-header.centered,
.inner-page .section-header.centered {
  display: grid;
  justify-items: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.inner-section h2,
.inner-page .section-header h2 {
  margin: 8px 0 0;
  color: #0f172a;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  line-height: 1.14;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  color: #2563eb;
  background: #eef6ff;
  border: 1px solid #d8e9fb;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-badge.light {
  color: #d9f8ff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.glass-panel,
.refined-info-card,
.domain-card,
.strength-grid article,
.profile-grid article,
.vision-mission article,
.refined-product-card,
.refined-service-card,
.refined-blog-card {
  border: 1px solid #dfe8ee;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.94)),
    #fff;
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  gap: clamp(20px, 3vw, 34px);
}

.glass-panel {
  padding: clamp(24px, 3.5vw, 38px);
}

.glass-panel p {
  margin: 0 0 16px;
  color: #526173;
  line-height: 1.8;
}

.glass-panel p:last-child {
  margin-bottom: 0;
}

.audience-list,
.pill-card-grid {
  display: grid;
  gap: 12px;
}

.audience-list span,
.pill-card-grid article {
  padding: 16px 18px;
  color: #17324d;
  background: linear-gradient(135deg, #f8fbff, #eef7f8);
  border: 1px solid #dfe8ee;
  border-radius: 16px;
  font-weight: 800;
}

.domain-grid,
.service-grid,
.industry-grid,
.blog-grid.refined-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.domain-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.domain-card {
  position: relative;
  min-height: 310px;
  padding: 28px;
  overflow: hidden;
}

.domain-card::before,
.refined-info-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, #2563eb, #06b6d4);
}

.domain-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 22px;
  background: #eef6ff;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  font-size: 1.55rem;
}

.domain-card h3,
.refined-info-card h2,
.refined-service-card h2,
.refined-blog-card h2 {
  margin: 0 0 12px;
  color: #0f172a;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.25;
}

.domain-card ul,
.quality-band ul,
.vision-mission ul,
.refined-detail-grid ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.domain-card li,
.quality-band li,
.vision-mission li,
.refined-detail-grid li {
  position: relative;
  padding-left: 22px;
  color: #526173;
}

.domain-card li::before,
.quality-band li::before,
.vision-mission li::before,
.refined-detail-grid li::before {
  position: absolute;
  left: 0;
  color: #06b6d4;
  content: "✓";
  font-weight: 900;
}

.split-section,
.profile-section,
.vision-mission {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.strength-grid,
.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.strength-grid article {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px;
}

.strength-grid span {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  border-radius: 999px;
  font-weight: 900;
}

.strength-grid strong,
.profile-grid strong {
  color: #172033;
  line-height: 1.35;
}

.quality-band,
.inner-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.64fr);
  gap: clamp(26px, 4vw, 48px);
  align-items: center;
  padding: clamp(36px, 5vw, 62px);
  overflow: hidden;
  color: #fff;
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 18%, rgba(6, 182, 212, 0.28), transparent 28%),
    radial-gradient(circle at 84% 20%, rgba(37, 99, 235, 0.26), transparent 30%),
    linear-gradient(135deg, #172638, #2c4c6e 58%, #12394a);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.16);
}

.quality-band h2,
.inner-cta h2 {
  color: #fff;
}

.quality-band p,
.inner-cta p {
  max-width: 760px;
  color: #dbeafe;
  line-height: 1.75;
}

.quality-band li {
  color: #eef8ff;
}

.pill-card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.profile-grid article {
  padding: 20px;
}

.profile-grid span {
  display: block;
  margin-bottom: 8px;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vision-mission article {
  padding: clamp(24px, 3.5vw, 36px);
}

.vision-mission p {
  color: #526173;
  line-height: 1.75;
}

.inner-cta {
  display: block;
  margin-top: clamp(26px, 5vw, 60px);
  margin-bottom: clamp(58px, 7vw, 92px);
  text-align: center;
}

.inner-cta h2 {
  margin: 14px auto 12px;
  max-width: 850px;
  font-size: clamp(1.9rem, 4vw, 3.6rem);
}

.inner-cta p,
.inner-cta .hero-actions {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.refined-product-grid,
.product-grid,
.card-grid.three {
  gap: clamp(16px, 2vw, 24px);
}

.refined-product-card,
.refined-service-card,
.refined-blog-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.refined-product-card:hover,
.refined-service-card:hover,
.refined-blog-card:hover,
.refined-info-card:hover,
.domain-card:hover {
  transform: translateY(-4px);
  border-color: #cbdbe8;
  box-shadow: 0 24px 62px rgba(15, 23, 42, 0.12);
}

.refined-card-image {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #edf4f8;
}

.refined-product-card .refined-card-image {
  aspect-ratio: 1 / 0.82;
  height: auto;
}

.refined-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.refined-product-card:hover .refined-card-image img,
.refined-service-card:hover .refined-card-image img,
.refined-blog-card:hover .refined-card-image img {
  transform: scale(1.04);
}

.refined-card-image span {
  position: absolute;
  top: 14px;
  left: 14px;
  max-width: calc(100% - 28px);
  padding: 6px 11px;
  color: #17324d;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-weight: 900;
}

.refined-card-body {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.refined-card-body .eyebrow {
  margin: 0;
}

.refined-card-body h3,
.refined-card-body h2 {
  margin: 0;
  min-height: auto;
}

.refined-card-body p {
  margin: 0;
  color: #526173;
  line-height: 1.6;
}

.refined-card-body a,
.refined-pills a {
  color: #2563eb;
  font-weight: 900;
}

.refined-card-body a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.refined-info-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  overflow: hidden;
}

.refined-info-card > span {
  display: block;
  margin-bottom: 28px;
  color: #06b6d4;
  font-size: 1.8rem;
  font-weight: 900;
}

.refined-info-card p {
  margin: 0;
  color: #526173;
  line-height: 1.7;
}

.refined-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.refined-pills a {
  display: inline-flex;
  padding: 10px 15px;
  color: #17324d;
  background: #fff;
  border: 1px solid #dfe8ee;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.advanced-filter-bar {
  border: 1px solid #dfe8ee;
  background:
    radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.06), transparent 30%),
    linear-gradient(135deg, #ffffff, #f8fbfd);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}

.catalog-summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 22px 0;
  padding: 10px 14px;
  color: #17324d;
  background: #eef6ff;
  border: 1px solid #d8e9fb;
  border-radius: 999px;
  font-weight: 800;
}

.refined-detail-grid article {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid #dfe8ee;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #f8fbfd);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}

.refined-detail-grid article h2 {
  margin-top: 0;
}

.refined-article {
  max-width: min(calc(100% - (var(--site-gutter) * 2)), 940px);
  padding-top: clamp(42px, 7vw, 84px);
}

.refined-article h1 {
  margin-top: 14px;
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.refined-article img {
  overflow: hidden;
  border: 1px solid #dfe8ee;
  border-radius: 26px;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.1);
}

@media (max-width: 1120px) {
  .domain-grid,
  .pill-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inner-hero,
  .inner-hero.with-image,
  .about-story-grid,
  .split-section,
  .profile-section,
  .vision-mission,
  .quality-band {
    grid-template-columns: 1fr;
  }

  .inner-hero-media {
    min-height: 320px;
  }
}

@media (max-width: 860px) {
  .domain-grid,
  .service-grid,
  .industry-grid,
  .blog-grid.refined-blog-grid,
  .strength-grid,
  .profile-grid,
  .pill-card-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero {
    padding: 28px;
    border-radius: 22px;
  }

  .inner-hero-media {
    min-height: 280px;
  }

  .inner-section .section-header,
  .inner-page .section-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .inner-hero-media {
    min-height: 250px;
  }

  .inner-hero-media img:first-child {
    width: 82%;
    height: 72%;
  }

  .inner-hero-media img:last-child {
    width: 64%;
    height: 50%;
  }

  .quality-band,
  .inner-cta {
    padding: 28px 20px;
    border-radius: 22px;
  }
}

/* Admin light-theme recovery */
body.admin-body {
  display: grid;
  grid-template-columns: 264px minmax(0, 1fr);
  min-height: 100vh;
  color: #182434;
  background:
    radial-gradient(circle at 12% 0%, rgba(84, 116, 115, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #eef4f6 100%);
}

body.admin-body .admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  padding: 24px 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96)),
    #fff;
  border-right: 1px solid #dce6ec;
  box-shadow: 14px 0 32px rgba(15, 23, 42, 0.04);
}

body.admin-body .admin-sidebar .admin-logo {
  display: inline-flex;
  width: 100%;
  padding: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
}

body.admin-body .admin-sidebar .admin-logo img {
  max-width: 150px;
  height: 46px;
  object-fit: contain;
}

body.admin-body .admin-sidebar nav {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

body.admin-body .admin-sidebar nav a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  color: #263445;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  font-weight: 800;
}

body.admin-body .admin-sidebar nav a:hover {
  color: #0f172a;
  border-color: #dbe6ec;
  background: #f4f8fa;
}

body.admin-body .admin-sidebar nav a span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #2c4c6e;
  background: #e9f2f3;
  border: 1px solid #d8e6e8;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 900;
}

body.admin-body .admin-sidebar .button.secondary {
  width: 100%;
  color: #2c4c6e;
  background: #fff;
  border-color: #dbe6ec;
}

body.admin-body .admin-main {
  min-width: 0;
  padding: clamp(18px, 3vw, 38px);
  background: transparent;
}

body.admin-body .admin-page-head,
body.admin-body .admin-title,
body.admin-body .admin-hero-title,
body.admin-body .admin-list-card,
body.admin-body .admin-panel-card,
body.admin-body .admin-form,
body.admin-body .admin-stats article,
body.admin-body .admin-domain-grid article,
body.admin-body .table-wrap {
  color: #182434;
  background: rgba(255, 255, 255, 0.94);
  border-color: #dfe8ee;
}

body.admin-body input,
body.admin-body select,
body.admin-body textarea {
  color: #182434;
  background: #fff;
  border-color: #d7e3ea;
}

body.admin-body table,
body.admin-body td,
body.admin-body th {
  color: #182434;
}

body.admin-body .notice,
body.admin-body .status-pill,
body.admin-body .table-actions a,
body.admin-body .table-actions button {
  color: #2c4c6e;
}

@media (max-width: 900px) {
  body.admin-body {
    grid-template-columns: 1fr;
  }

  body.admin-body .admin-sidebar {
    position: relative;
    height: auto;
  }
}

/* Admin premium theme restore with alignment fixes */
body.admin-body {
  display: grid;
  grid-template-columns: 264px minmax(0, 1fr);
  min-height: 100vh;
  color: #182434;
  background:
    linear-gradient(135deg, rgba(84, 116, 115, 0.12), transparent 32%),
    #f4f6f6;
}

body.admin-body .admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  padding: 24px 18px;
  background:
    radial-gradient(circle at 20% 0%, rgba(120, 169, 167, 0.24), transparent 28%),
    linear-gradient(180deg, #2b2829 0%, #231f20 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 14px 0 34px rgba(15, 23, 42, 0.12);
}

body.admin-body .admin-sidebar .admin-logo {
  display: inline-flex;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgb(255 255 255);
}

body.admin-body .admin-sidebar .admin-logo img {
  max-width: 150px;
  height: 46px;
  object-fit: contain;
}

body.admin-body .admin-sidebar nav {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

body.admin-body .admin-sidebar nav a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  color: #f4fbfb;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  font-weight: 800;
}

body.admin-body .admin-sidebar nav a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
}

body.admin-body .admin-sidebar nav a span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #d9efed;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 900;
}

body.admin-body .admin-sidebar form {
  margin-top: 10px;
}

body.admin-body .admin-sidebar .button.secondary {
  width: 100%;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
}

body.admin-body .admin-sidebar .button.secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

body.admin-body .admin-main {
  min-width: 0;
  padding: clamp(18px, 3vw, 38px);
  background: transparent;
}

body.admin-body .admin-page-head,
body.admin-body .admin-title,
body.admin-body .admin-hero-title,
body.admin-body .admin-list-card,
body.admin-body .admin-panel-card,
body.admin-body .admin-form,
body.admin-body .admin-stats article,
body.admin-body .admin-domain-grid article,
body.admin-body .table-wrap {
  color: #182434;
  background: rgba(255, 255, 255, 0.94);
  border-color: #dfe8ee;
}

body.admin-body .admin-page-head,
body.admin-body .admin-list-card,
body.admin-body .admin-panel-card,
body.admin-body .admin-form {
  box-shadow: 0 14px 36px rgba(35, 31, 32, 0.05);
}

body.admin-body table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

body.admin-body th,
body.admin-body td {
  vertical-align: middle;
}

body.admin-body .table-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  white-space: nowrap;
}

body.admin-body .table-actions a,
body.admin-body .table-actions button {
  margin: 0;
}

body.admin-body input,
body.admin-body select,
body.admin-body textarea {
  color: #182434;
  background: #fff;
  border-color: #d7e3ea;
}

@media (max-width: 900px) {
  body.admin-body {
    grid-template-columns: 1fr;
  }

  body.admin-body .admin-sidebar {
    position: relative;
    height: auto;
  }

  body.admin-body .admin-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  body.admin-body .admin-sidebar nav {
    grid-template-columns: 1fr;
  }
}

/* Home typography, Home 2 hero polish, and virtual tour/map */
.home-main .hero-copy h1,
.home3-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  line-height: 1.08;
}

.vinlab-home2 .v2-hero h1 {
  font-size: clamp(2rem, 4.3vw, 3.45rem);
}

.home-main .section-header h2,
.home-main .section-head h2,
.home-main .home-about h2,
.home-main .premium-cta h2,
.vinlab-home2 .v2-copy h2,
.vinlab-home2 .v2-section-head h2,
.vinlab-home2 .v2-centered-head h2,
.vinlab-home2 .v2-cta h2,
.home3-section-head h2,
.home3-copy h2 {
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1.14;
}

.home-main .premium-cta h2,
.vinlab-home2 .v2-cta h2,
.home3-cta h2 {
  font-size: clamp(1.9rem, 4vw, 3.8rem);
}

.vinlab-home2 .v2-button-primary,
.vinlab-home2 .v2-hero .v2-button-primary {
  color: #fff;
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.24);
}

.vinlab-home2 .v2-button-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #0891b2 100%);
}

.vinlab-home2 .v2-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(6, 182, 212, 0.24), transparent 34%),
    radial-gradient(circle at 8% 84%, rgba(37, 99, 235, 0.2), transparent 32%),
    linear-gradient(145deg, #172638 0%, #2c4c6e 52%, #12394a 100%);
}

.vinlab-home2 .v2-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
  align-items: center;
}

.vinlab-home2 .v2-hero-copy {
  align-self: center;
}

.vinlab-home2 .v2-hero-media {
  align-self: stretch;
  justify-content: center;
  padding: clamp(26px, 4vw, 44px);
}

.vinlab-home2 .v2-hero-collage {
  width: 100%;
  max-width: 560px;
  grid-template-columns: minmax(0, 1.08fr) minmax(150px, 0.92fr);
  grid-template-rows: 1fr 1fr;
}

.vinlab-home2 .v2-hero-collage img:first-child {
  grid-row: 1 / 3;
}

.vinlab-home2 .v2-hero-collage img {
  min-height: 0;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.vinlab-home2 .v2-glass-card-one {
  left: clamp(22px, 4vw, 46px);
  bottom: clamp(24px, 4vw, 48px);
}

.vinlab-home2 .v2-glass-card-two {
  top: clamp(24px, 4vw, 48px);
  right: clamp(24px, 4vw, 48px);
}

.home3-brand.image-brand span {
  display: none;
}

.home3-brand.image-brand img {
  width: auto;
  height: 42px;
  max-width: 145px;
  object-fit: contain;
  border-radius: 8px;
}

.home3-brand.image-brand.footer img {
  background: #fff;
  padding: 6px;
}

.virtual-tour-map {
  width: 100%;
  padding: clamp(64px, 8vw, 110px) clamp(16px, 3vw, 42px);
  background:
    radial-gradient(circle at 12% 16%, rgba(37, 99, 235, 0.07), transparent 28%),
    radial-gradient(circle at 84% 24%, rgba(6, 182, 212, 0.08), transparent 30%),
    #fff;
}

.virtual-tour-shell {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.virtual-tour-head {
  max-width: 760px;
  margin: 0 auto clamp(26px, 4vw, 46px);
  text-align: center;
}

.virtual-tour-head span,
.virtual-map-copy span {
  color: #2563eb;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.virtual-tour-head h2 {
  margin: 10px 0 12px;
  color: #0f172a;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.12;
}

.virtual-tour-head p {
  margin: 0;
  color: #526173;
  line-height: 1.7;
}

.virtual-tour-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.virtual-tour-panel,
.virtual-map-panel {
  overflow: hidden;
  border: 1px solid #dfe8ee;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 56px rgba(15, 23, 42, 0.08);
}

.virtual-tour-window {
  position: relative;
  min-height: clamp(360px, 42vw, 560px);
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  background: #e9f0f4;
}

.virtual-tour-window.is-dragging {
  cursor: grabbing;
}

.virtual-tour-window img {
  display: block;
  width: 100%;
  height: clamp(360px, 42vw, 560px);
  object-fit: cover;
  object-position: 50% center;
  transition: object-position 0.08s linear;
  max-width: none;
}

.tour-control {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(14px);
}

.tour-control strong {
  font-size: 1rem;
}

.tour-control span {
  color: #cbd5e1;
  font-size: 0.86rem;
  font-weight: 700;
}

.virtual-map-panel {
  display: grid;
  grid-template-rows: auto 1fr;
}

.virtual-map-copy {
  padding: clamp(22px, 3vw, 32px);
}

.virtual-map-copy h3 {
  margin: 8px 0 8px;
  color: #0f172a;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.virtual-map-copy p {
  margin: 0;
  color: #526173;
  line-height: 1.6;
}

.virtual-map-panel iframe {
  display: block;
  width: 100%;
  min-height: 340px;
  height: 100%;
  border: 0;
  filter: saturate(0.94) contrast(1.02);
}

.home3-body .virtual-tour-map {
  background: #f8fafc;
}

.vinlab-home2 .virtual-tour-map {
  background: #fff;
}

@media (max-width: 980px) {
  .vinlab-home2 .v2-hero-grid,
  .virtual-tour-grid {
    grid-template-columns: 1fr;
  }

  .vinlab-home2 .v2-hero-media {
    display: flex;
  }
}

@media (max-width: 640px) {
  .home-main .hero-copy h1,
  .home3-hero h1,
  .vinlab-home2 .v2-hero h1 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .tour-control {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Final wide-screen spacing and footer logo polish */
:root {
  --site-shell: 1300px;
  --site-gutter: clamp(18px, 2.6vw, 42px);
}

.home-main > .home-hero,
.home-main > .trust-strip,
.home-main > .section,
.home-main > .premium-cta,
.vinlab-home2 > .v2-hero,
.vinlab-home2 > .v2-trust,
.vinlab-home2 > .v2-section,
.vinlab-home2 > .v2-cta,
.home3-shell,
.virtual-tour-shell {
  width: min(calc(100% - (var(--site-gutter) * 2)), var(--site-shell));
  max-width: var(--site-shell);
}

.site-header,
.site-footer {
  padding-left: var(--site-gutter);
  padding-right: var(--site-gutter);
}

.home-main .home-hero,
.vinlab-home2 .v2-hero {
  width: min(calc(100% - (var(--site-gutter) * 2)), var(--site-shell));
}

.home-main .hero-content-wrapper,
.vinlab-home2 .v2-shell,
.home3-shell,
.virtual-tour-shell {
  max-width: var(--site-shell);
}

.home-main .section,
.vinlab-home2 .v2-section {
  padding-left: 0;
  padding-right: 0;
}

.virtual-tour-map {
  padding-left: var(--site-gutter);
  padding-right: var(--site-gutter);
}

.footer-logo {
  display: inline-flex;
  width: fit-content;
  max-width: max-content;
  align-self: flex-start;
  background: rgb(255 255 255);
}

.footer-logo img {
  display: block;
  max-width: 170px;
  width: auto;
}

.home3-brand.image-brand.footer {
  display: inline-flex;
  width: fit-content;
  max-width: max-content;
}

.home3-brand.image-brand.footer img {
  display: block;
  width: auto;
  max-width: 170px;
  background: rgba(255, 255, 255, 0.9);
}

.virtual-tour-window img {
  will-change: object-position;
  transition: none;
}

@media (min-width: 1500px) {
  :root {
    --site-shell: 1360px;
    --site-gutter: clamp(24px, 3vw, 56px);
  }
}

@media (max-width: 760px) {
  :root {
    --site-gutter: 16px;
  }

  .home-main > .home-hero,
  .home-main > .trust-strip,
  .home-main > .section,
  .home-main > .premium-cta,
  .vinlab-home2 > .v2-hero,
  .vinlab-home2 > .v2-trust,
  .vinlab-home2 > .v2-section,
  .vinlab-home2 > .v2-cta,
  .home3-shell,
  .virtual-tour-shell {
    width: calc(100% - 32px);
  }
}

/* Last-mile admin visual consistency */
body.admin-body .admin-page-head,
body.admin-body .admin-title,
body.admin-body .admin-hero-title,
body.admin-body .admin-form,
body.admin-body .admin-list-card,
body.admin-body .admin-panel-card,
body.admin-body .admin-form-step,
body.admin-body .table-wrap,
body.admin-body .media-picker,
body.admin-body .repeater,
body.admin-body .admin-stats article,
body.admin-body .admin-domain-grid article {
  border-color: #dfe8ee;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.94)),
    #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

body.admin-body .admin-page-head,
body.admin-body .admin-title,
body.admin-body .admin-hero-title {
  padding: clamp(22px, 3vw, 34px);
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 16%, rgba(6, 182, 212, 0.14), transparent 28%),
    radial-gradient(circle at 10% 18%, rgba(37, 99, 235, 0.09), transparent 30%),
    linear-gradient(145deg, #fff, #f8fbfd);
}

body.admin-body .admin-sidebar {
  background:
    radial-gradient(circle at 18% 0%, rgba(103, 232, 249, 0.2), transparent 30%),
    linear-gradient(180deg, #162033 0%, #0f172a 100%);
}

body.admin-body .admin-sidebar nav a {
  border-radius: 14px;
  font-weight: 600;
}

body.admin-body .admin-sidebar nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

body.admin-body input,
body.admin-body select,
body.admin-body textarea {
  border-radius: 14px;
}

body.admin-body thead th {
  color: #64748b;
  background: #f8fbff;
  border-bottom: 1px solid #dfe8ee;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.admin-body tbody tr:nth-child(even) {
  background: #fbfdff;
}

body.admin-body tbody tr:hover {
  background: #eef7ff;
}

body.admin-body td {
  color: #334155;
  border-bottom: 1px solid #edf2f7;
}

body.admin-body td strong,
body.admin-body .admin-form-step h2 {
  color: #0f172a;
  font-weight: 600;
}

body.admin-body .status-pill,
body.admin-body .table-actions a,
body.admin-body .table-actions button,
body.admin-body .inline-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  background: #eef6ff;
  border: 1px solid #d8e9fb;
  border-radius: 999px;
  font-weight: 600;
}

body.admin-body .table-actions .danger-link,
body.admin-body .danger-link {
  color: #b42318;
  background: #fff1f1;
  border-color: #ffd7d7;
}

/* Final overrides for quote/cart controls added after legacy floating styles */
.floating-action-rail {
  bottom: 28px;
}

.floating-action-rail strong {
  width: 44px;
  min-width: 44px;
  height: 44px;
  padding: 0;
  color: #fff;
  font-size: 0;
}

.floating-action-rail strong svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.floating-whatsapp strong {
  background: #16a34a;
}

.floating-quote strong {
  background: #2563eb;
}
