
:root {
  --bg: #ffffff;
  --bg2: #f5f6f7;
  --surface: #ffffff;
  --surface2: #eef1f4;
  --ink: #1f2328;
  --muted: #5f6b76;
  --rule: #d9dee4;
  --accent: #002B6C;
  --accent2: #0B4D8C;
  --warn: #b7791f;
  --ok: #1b7f48;
  --shadow: rgba(23, 31, 38, .08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav {
  max-width: 1220px;
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 190px; }
.brand img { width: 170px; background: transparent; padding: 4px 0; border-radius: 0; }
.brand small {
  color: var(--muted);
  display: block;
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.menu { display: flex; gap: 2px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.menu a {
  color: #333b44;
  padding: 10px 12px;
  border-radius: 2px;
  font-size: 14px;
  border-bottom: 3px solid transparent;
}
.menu a:hover, .menu a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  background: transparent;
}
.nav-cta {
  color: #fff !important;
  background: var(--accent);
  padding: 11px 16px !important;
  border-radius: 3px !important;
  font-weight: 700;
  border-bottom: 0 !important;
}
#nav-toggle { display: none; }
.hamburger { display: none; color: var(--ink); border: 1px solid var(--rule); padding: 8px 10px; border-radius: 3px; }
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f6f7f8);
  border-bottom: 1px solid var(--rule);
}
.hero::before { display: none; }
.hero-wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 62px 24px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--accent);
  border-left: 4px solid var(--accent);
  background: transparent;
  padding: 2px 0 2px 12px;
  border-radius: 0;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}
h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.02;
  margin: 18px 0 18px;
  letter-spacing: -.035em;
  font-weight: 800;
}
h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
  margin: 0 0 16px;
  letter-spacing: -.02em;
  font-weight: 800;
}
h3 { font-size: 21px; line-height: 1.25; margin: 0 0 10px; font-weight: 800; }
p { color: var(--muted); margin: 0 0 16px; }
.lead { font-size: 18px; max-width: 720px; color: #4b5560; }
.hero-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 0;
  box-shadow: 0 12px 28px var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-card img {
  border-radius: 0;
  border: 0;
  background: var(--surface);
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.hero-card .caption {
  position: static;
  background: #fff;
  border: 0;
  border-top: 1px solid var(--rule);
  border-radius: 0;
  padding: 16px 18px;
  backdrop-filter: none;
}
.hero-card .caption strong { color: var(--accent); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 3px;
  border: 1px solid #b8c0c8;
  color: var(--ink);
  background: #fff;
  font-weight: 700;
}
.btn.primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 18px var(--shadow); }
.section { max-width: 1220px; margin: 0 auto; padding: 68px 24px; }
.section.tight { padding-top: 38px; padding-bottom: 38px; }
.section-head { display: flex; justify-content: space-between; gap: 28px; align-items: flex-end; margin-bottom: 28px; }
.section-head p { max-width: 560px; }
.grid { display: grid; gap: 20px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 24px;
  box-shadow: 0 8px 22px var(--shadow);
}
.card:hover { border-color: #b8c0c8; }
.product-card { overflow: hidden; padding: 0; }
.product-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--rule);
}
.product-card .inside { padding: 22px; }
.tag {
  display: inline-block;
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
  font-weight: 800;
}
.pill-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; }
.pill {
  border: 1px solid var(--rule);
  background: var(--bg2);
  color: #424b55;
  border-radius: 2px;
  padding: 7px 10px;
  font-size: 13px;
}
.band { background: var(--bg2); border-block: 1px solid var(--rule); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat strong { display: block; color: var(--accent); font-size: 32px; line-height: 1; margin-bottom: 8px; }
.table-wrap { overflow-x: auto; overflow-y: auto; max-height: 620px; border: 1px solid var(--rule); border-radius: 2px; background: #fff; }
table { width: 100%; border-collapse: collapse; min-width: 780px; background: #fff; }
th, td { padding: 15px; border-bottom: 1px solid var(--rule); text-align: left; vertical-align: top; }
th { color: var(--ink); background: #eef1f4; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; }
td { color: var(--muted); }
.process { counter-reset: step; }
.process .card { position: relative; padding-left: 74px; }
.process .card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 22px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}
.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 32px; align-items: center; }
.feature-img {
  border-radius: 2px;
  border: 1px solid var(--rule);
  box-shadow: 0 12px 28px var(--shadow);
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.form { display: grid; gap: 12px; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  border-radius: 2px;
  border: 1px solid #c9d0d7;
  background: #fff;
  color: var(--ink);
  padding: 12px 14px;
  font: inherit;
}
textarea { min-height: 136px; resize: vertical; }
option { color: var(--ink); }
.notice { border-left: 4px solid var(--accent); padding: 15px 18px; background: #f1f6ff; color: #4b5560; border-radius: 0; }
.site-footer { border-top: 1px solid var(--rule); background: #f5f6f7; }
.footer-grid {
  max-width: 1220px;
  margin: 0 auto;
  padding: 46px 24px;
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 30px;
}
.footer-grid h4 { margin: 0 0 14px; }
.footer-grid a, .footer-grid p { display: block; color: var(--muted); margin: 0 0 9px; font-size: 14px; }
.copyright { max-width: 1220px; margin: 0 auto; padding: 18px 24px 30px; color: #6f7a84; font-size: 13px; }
.floating { position: fixed; right: 18px; bottom: 18px; display: grid; gap: 10px; z-index: 60; }
.floating a { background: var(--accent); color: #fff; border-radius: 3px; padding: 11px 15px; font-weight: 800; box-shadow: 0 12px 26px rgba(0,43,108,.18); }
.article { max-width: 880px; }
.article p { font-size: 17px; }
.quote { font-size: 24px; color: var(--ink); border-left: 4px solid var(--accent); padding-left: 20px; }
.source-note { font-size: 13px; color: var(--muted); }
@media (max-width: 900px) {
  .hamburger { display: block; }
  .menu {
    display: none;
    position: absolute;
    left: 14px;
    right: 14px;
    top: 72px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 2px;
    box-shadow: 0 12px 28px var(--shadow);
  }
  #nav-toggle:checked ~ .menu { display: grid; }
  .menu a, .nav-cta { width: 100%; justify-content: flex-start; }
  .hero-wrap, .split, .grid.cols-2, .grid.cols-3, .grid.cols-4, .footer-grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .brand img { width: 124px; }
  .hero-wrap, .section { padding-left: 16px; padding-right: 16px; }
  .stats { grid-template-columns: 1fr; }
  table { min-width: 720px; }
}


/* Global bottom-right social contact buttons */
.social-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
  z-index: 90;
}
.social-float a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0,43,108,.22);
  border: 1px solid rgba(255,255,255,.18);
  transform-origin: right bottom;
}
.social-float .whatsapp { background: #25D366; }
.social-float .facebook { background: #1877F2; font-family: Arial, Helvetica, sans-serif; font-size: 22px; }
.social-float a:hover {
  animation-play-state: paused;
  transform: scale(1.5);
  box-shadow: 0 22px 44px rgba(0,43,108,.34);
  z-index: 2;
}
@media (max-width: 560px) {
  .social-float { right: 14px; bottom: 14px; }
  .social-float a { width: 42px; height: 42px; }
}

/* Motion polish: lightweight UI animations */
a,
button,
.btn,
.nav-cta,
.card,
.product-card,
.hero-card,
.social-float a,
img {
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease,
    background-color .28s ease,
    color .28s ease,
    opacity .28s ease,
    filter .28s ease;
}

.btn,
.btn-primary,
.btn-secondary,
.nav-cta,
.hero-actions-xl a,
a[class*="btn-"] {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::after,
.btn-primary::after,
.btn-secondary::after,
.nav-cta::after,
.hero-actions-xl a::after,
a[class*="btn-"]::after {
  content: "";
  position: absolute;
  inset: -40% -70%;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.34) 50%, transparent 65%);
  transform: translateX(-85%);
  transition: transform .55s ease;
  z-index: -1;
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.nav-cta:hover,
.hero-actions-xl a:hover,
a[class*="btn-"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,43,108,.18);
}

.btn:hover::after,
.btn-primary:hover::after,
.btn-secondary:hover::after,
.nav-cta:hover::after,
.hero-actions-xl a:hover::after,
a[class*="btn-"]:hover::after {
  transform: translateX(85%);
}

.menu a {
  position: relative;
  transition: color .25s ease, background-color .25s ease;
}

.menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}

.menu a:not(.nav-cta):hover::after,
.menu a:not(.nav-cta).active::after {
  transform: scaleX(1);
}

.card:hover,
.product-card:hover,
.hero-card:hover,
div[style*="border:1px solid var(--rule)"]:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(23,31,38,.12);
}

.product-card:hover img,
.hero-card:hover img,
div[style*="overflow:hidden"]:hover > img {
  transform: scale(1.035);
}

.brand img:hover {
  transform: scale(1.035);
  filter: drop-shadow(0 4px 10px rgba(0,43,108,.18));
}

.social-float a {
  animation: kavronFloatPulse 2.8s ease-in-out infinite;
  transform-origin: right bottom;
}
.social-float a:nth-child(2) { animation-delay: .55s; }
.social-float a:hover {
  animation-play-state: paused;
  transform: scale(1.5) !important;
  box-shadow: 0 24px 46px rgba(0,43,108,.34) !important;
  z-index: 3;
}

/* WhatsApp lead popup */
.wa-chat-card {
  position: fixed;
  right: 18px;
  bottom: 132px;
  width: min(310px, calc(100vw - 36px));
  background: #fff;
  border: 1px solid rgba(0,43,108,.10);
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(23,31,38,.18);
  z-index: 91;
  padding: 16px;
  opacity: 0;
  transform: translateY(16px) scale(.96);
  pointer-events: none;
  transition: opacity .32s ease, transform .32s ease, box-shadow .32s ease;
}
.wa-chat-card.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-chat-card:hover {
  box-shadow: 0 24px 56px rgba(0,43,108,.22);
}
.wa-chat-close {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  color: #111827;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.wa-chat-body {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  padding-right: 18px;
}
.wa-chat-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e9f5ff, #d8f5e6);
  color: var(--accent);
  font-weight: 800;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0,43,108,.16);
}
.wa-chat-message {
  color: #1f2328;
  font-size: 15px;
  line-height: 1.35;
  margin: 0 0 12px;
}
.wa-chat-button {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 7px;
  background: #f2f3f5;
  color: #111827;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.02);
}
.wa-chat-button span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.wa-chat-button:hover {
  transform: translateY(-2px);
  background: #e9fbf0;
  box-shadow: 0 12px 24px rgba(37,211,102,.18);
}
.social-float .whatsapp:hover {
  transform: scale(1.5) !important;
}
@keyframes waCardNudge {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.01); }
}
.wa-chat-card.is-open {
  animation: waCardNudge 3.2s ease-in-out 1.2s infinite;
}
@media (max-width: 560px) {
  .wa-chat-card {
    right: 14px;
    bottom: 118px;
    width: min(292px, calc(100vw - 28px));
  }
}

@keyframes kavronFloatPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 10px 24px rgba(0,43,108,.22); }
  50% { transform: translateY(-4px); box-shadow: 0 18px 32px rgba(0,43,108,.26); }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy-xl {
  animation: kavronHeroTextIn .9s ease both;
}
.hero-actions-xl {
  animation: kavronHeroTextIn .9s ease .18s both;
}
@keyframes kavronHeroTextIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .reveal-on-scroll { opacity: 1; transform: none; }
}


/* SEO / mobile experience improvements */
@media (max-width: 900px) {
  div[style*="grid-template-columns:repeat(3,1fr)"],
  div[style*="grid-template-columns:repeat(4,1fr)"],
  div[style*="grid-template-columns:1.15fr .85fr"],
  div[style*="grid-template-columns:.9fr 1.1fr"],
  div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  img[style*="height:360px"],
  img[style*="height:430px"] {
    height: 260px !important;
  }
}


/* iPhone 13 Pro Max and similar large phones */
@media (max-width: 430px) {
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hero-copy-xl h1 { font-size: 28px; }
  .hero-copy-xl h2 { font-size: 20px; }
  .brand img { width: 150px !important; }
  .wa-chat-card { width: calc(100vw - 32px); right: 16px; }
  .social-float { bottom: 12px; right: 12px; }
}

/* Premium header and homepage relayout */
.header-topbar {
  background: #082a5f;
  color: rgba(255,255,255,.88);
  font-size: 12px;
  letter-spacing: .02em;
}
.header-topbar-inner {
  max-width: 1360px;
  margin: 0 auto;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  padding: 0 28px;
}
.header-topbar-inner span:first-child {
  margin-right: auto;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.nav {
  max-width: 1360px;
  min-height: 86px;
}
.brand {
  min-width: 240px;
}
.brand img {
  width: 198px;
}
.menu {
  gap: 8px;
}
.menu a {
  font-weight: 700;
  letter-spacing: .01em;
  padding: 12px 13px;
}
.nav-cta {
  min-width: 132px;
  text-align: center;
  border-radius: 999px !important;
}

body.home-page .site-header {
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid rgba(217,222,228,.82);
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}
body.home-page .brand small,
body.home-page .menu a {
  color: #253142;
}
body.home-page .menu a.active,
body.home-page .menu a:hover {
  color: var(--accent);
}
body.home-page .nav-cta {
  color: #fff !important;
}

.home-section-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 78px 24px;
}
.home-section-title {
  max-width: 780px;
  margin-bottom: 34px;
}
.home-section-title.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.home-section-title h2,
.premium-cta-panel h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -.04em;
  margin: 12px 0 14px;
}
.premium-content-block h2 {
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin: 12px 0 14px;
}
.home-section-title p,
.premium-content-block p,
.premium-cta-panel p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

.home-premium-stats {
  background: #fff;
  border-bottom: 1px solid var(--rule);
}
.premium-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  background: #fff;
}
.premium-stat-grid > div {
  padding: 34px 28px;
  border-right: 1px solid var(--rule);
}
.premium-stat-grid > div:last-child { border-right: 0; }
.premium-stat-grid strong {
  display: block;
  font-size: clamp(36px, 4vw, 54px);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -.04em;
}
.premium-stat-grid span {
  display: block;
  color: var(--ink);
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 8px;
}
.premium-stat-grid p {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.home-premium-product,
.home-premium-factory,
.home-premium-process,
.home-premium-testimonials {
  border-bottom: 1px solid var(--rule);
}
.home-premium-product,
.home-premium-process {
  background: #f7f8fa;
}
.home-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}
.product-split {
  grid-template-columns: 1.08fr .92fr;
  align-items: start;
}
.premium-image-large {
  border: 1px solid var(--rule);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 22px 56px rgba(23,31,38,.10);
}
.premium-image-large img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}
.premium-image-caption {
  padding: 22px 24px;
  border-top: 1px solid var(--rule);
  display: grid;
  gap: 6px;
}
.premium-image-caption strong {
  color: var(--ink);
  font-size: 20px;
}
.premium-image-caption span {
  color: var(--muted);
  font-size: 14px;
}
.premium-content-block {
  padding: 8px 0;
}
.premium-product-list {
  margin: 24px 0;
  display: grid;
  gap: 10px;
}
.premium-product-list a {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 4px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--rule);
  align-items: start;
}
.premium-product-list a span {
  color: var(--accent);
  font-weight: 900;
  font-size: 16px;
  grid-column: 1;
  grid-row: 1 / span 2;
  line-height: 1.25;
}
.premium-product-list a strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  grid-column: 2;
  line-height: 1.28;
}
.premium-product-list a em {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
  margin-top: 4px;
  grid-column: 2;
  line-height: 1.55;
  max-width: 100%;
}
.premium-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.premium-actions a {
  padding: 13px 20px;
  border-radius: 3px;
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
}

.premium-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
}
.premium-gallery-grid article {
  background: #fff;
  border: 1px solid var(--rule);
  overflow: hidden;
}
.premium-gallery-grid .gallery-main {
  grid-row: span 2;
}
.premium-gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.premium-gallery-grid .gallery-main img {
  height: 500px;
}
.premium-gallery-grid article div {
  padding: 18px 20px;
  border-top: 1px solid var(--rule);
}
.premium-gallery-grid h3 {
  font-size: 17px;
  margin: 0 0 6px;
}
.premium-gallery-grid p {
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.premium-process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.premium-process-list div {
  background: #fff;
  border: 1px solid var(--rule);
  padding: 20px;
}
.premium-process-list b {
  display: block;
  color: var(--accent);
  font-size: 22px;
  margin-bottom: 8px;
}
.premium-process-list span {
  color: var(--ink);
  font-weight: 800;
}
.premium-cta-panel {
  background: #fff;
  border: 1px solid var(--rule);
  padding: 44px;
  box-shadow: 0 22px 56px rgba(23,31,38,.08);
}
.premium-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.premium-testimonial-grid > div {
  background: #fff;
  border: 1px solid var(--rule);
  padding: 28px;
}
.premium-testimonial-grid p {
  font-size: 15px;
  line-height: 1.7;
  color: #343b43;
}
.premium-testimonial-grid strong {
  display: block;
  color: var(--ink);
  margin-top: 16px;
}
.premium-testimonial-grid span {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .header-topbar-inner {
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 7px 16px;
  }
  .header-topbar-inner span:first-child {
    margin-right: 0;
    width: 100%;
    text-align: center;
  }
  .nav { min-height: 76px; }
  .brand { min-width: 0; }
  .home-split,
  .product-split,
  .premium-gallery-grid,
  .premium-stat-grid,
  .premium-testimonial-grid {
    grid-template-columns: 1fr;
  }
  .premium-gallery-grid .gallery-main,
  .premium-gallery-grid .gallery-main img {
    grid-row: auto;
    height: 320px;
  }
  .premium-image-large img { height: 340px; }
  .premium-stat-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }
  .premium-stat-grid > div:last-child { border-bottom: 0; }
}

@media (max-width: 560px) {
  .header-topbar {
    display: none;
  }
  .home-section-inner {
    padding: 52px 18px;
  }
  .home-section-title h2,
  .premium-content-block h2,
  .premium-cta-panel h2 {
    font-size: 32px;
  }
  .premium-process-list {
    grid-template-columns: 1fr;
  }
  .premium-cta-panel {
    padding: 28px;
  }
}


.wa-quick-options {
  grid-column: 1 / -1;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 2px 0 10px;
}
.wa-quick-options button {
  border: 1px solid rgba(0,43,108,.14);
  background: #fff;
  color: var(--accent);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.wa-quick-options button:hover {
  background: #e9fbf0;
  border-color: #25D366;
  transform: translateY(-2px);
}
