:root {
  --blue: #0062e6;
  --blue-deep: #004fba;
  --blue-soft: #eef4ff;
  --navy: #0c1222;
  --ink: #151b2b;
  --muted: #667085;
  --line: #e8edf5;
  --surface: #f6f8fc;
  --white: #ffffff;
  --shadow: 0 16px 48px rgba(12, 18, 34, 0.1);
  --radius: 16px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --container: 1240px;
  --header-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }

/* ========== HEADER (daikinvrv style) ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 0 rgba(15, 23, 42, .04);
}
.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(15, 23, 42, .08);
  border-bottom-color: #eef1f6;
}
.site-header.is-mega-open {
  border-bottom-color: transparent;
  box-shadow: none;
}

.sh-bar {
  display: flex;
  align-items: center;
  gap: 1rem 1.5rem;
  min-height: 78px;
  padding: .7rem 0;
}

.sh-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
  min-width: 0;
  line-height: 0;
}
.sh-logo-img {
  display: block;
  height: 32px;
  width: auto;
  max-width: min(150px, 36vw);
  object-fit: contain;
  object-position: left center;
}
.sh-logo-meta {
  display: flex;
  flex-direction: column;
  gap: .12rem;
  line-height: 1.15;
  min-width: 0;
  padding-left: .15rem;
  border-left: 1px solid #e2e8f0;
  margin-left: .1rem;
  padding-left: .75rem;
}
.sh-logo-meta em {
  font-style: normal;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #64748b;
  white-space: nowrap;
  max-width: 9.5rem;
  line-height: 1.25;
}
.sh-logo-img-white {
  height: 30px;
  max-width: 160px;
  margin: 0;
}

.sh-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .15rem;
  flex: 1;
  min-width: 0;
  margin: 0 auto;
  padding: .3rem;
  max-width: fit-content;
  background: #f3f5f9;
  border-radius: 999px;
}
.sh-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .55rem .95rem;
  font-size: .9rem;
  font-weight: 600;
  color: #334155;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .15s, color .15s, box-shadow .15s;
}
.sh-link:hover {
  color: var(--blue);
  background: rgba(255, 255, 255, .7);
}
.sh-link.is-active,
.sh-dd.is-on > .sh-link,
.sh-dd.is-open > .sh-link,
.site-header.is-mega-open .sh-link-dd {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .08);
}
.sh-link-dd svg {
  opacity: .45;
  transition: transform .2s ease, opacity .15s;
}
.sh-dd.is-open .sh-link-dd svg,
.site-header.is-mega-open .sh-link-dd svg {
  transform: rotate(180deg);
  opacity: .9;
}

.sh-dd { position: relative; }

/* Full-width products mega panel */
.mega-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-top: 1px solid #e8edf5;
  border-bottom: 1px solid #e8edf5;
  box-shadow: 0 28px 50px rgba(15, 23, 42, .12);
  z-index: 210;
  max-height: min(78vh, 620px);
  overflow: auto;
  transform-origin: top center;
  animation: megaIn .18s ease;
}
.mega-panel[hidden] { display: none !important; }
@keyframes megaIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.mega-scrim {
  position: fixed;
  inset: 0;
  top: var(--header-h, 72px);
  background: rgba(8, 12, 24, .28);
  z-index: 205;
  animation: fadeIn .15s ease;
}
.mega-scrim[hidden] { display: none !important; }
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.mega-panel-inner {
  padding: 1.35rem 0 1.15rem;
}
.mega-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}
.mega-col {
  padding: 0 1.15rem 0 0;
  border-right: 1px solid #eef2f7;
  min-width: 0;
}
.mega-col:not(:first-child) { padding-left: 1.15rem; }
.mega-col:last-child { border-right: 0; padding-right: 0; }
.mega-col-head {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .7rem .75rem;
  margin-bottom: .55rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #f6f8fc 0%, #eef4ff 100%);
  border: 1px solid #e4ebf5;
  transition: border-color .15s, box-shadow .15s;
}
.mega-col-head:hover {
  border-color: #bfd3f5;
  box-shadow: 0 6px 16px rgba(0, 98, 230, .08);
}
.mega-col-head img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e6ebf2;
  padding: 4px;
  flex-shrink: 0;
}
.mega-col-head strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.01em;
  line-height: 1.25;
}
.mega-col-head em {
  display: block;
  margin-top: .15rem;
  font-style: normal;
  font-size: .75rem;
  font-weight: 600;
  color: #64748b;
}
.mega-series-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
}
.mega-series-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .48rem .55rem;
  border-radius: 8px;
  font-size: .86rem;
  font-weight: 600;
  color: #334155;
  transition: background .12s, color .12s;
}
.mega-series-list a span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mega-series-list a small {
  flex-shrink: 0;
  min-width: 1.5rem;
  height: 1.35rem;
  padding: 0 .4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #f1f5f9;
  font-size: .7rem;
  font-weight: 800;
  color: #64748b;
}
.mega-series-list a:hover {
  background: var(--blue-soft);
  color: var(--blue);
}
.mega-series-list a:hover small {
  background: #dbeafe;
  color: var(--blue);
}
.mega-col-more {
  display: inline-flex;
  margin-top: .55rem;
  padding: .4rem .55rem;
  font-size: .84rem;
  font-weight: 800;
  color: var(--blue);
}
.mega-col-more:hover { text-decoration: underline; }
.mega-panel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.1rem;
  padding: 1rem 1.1rem;
  background: #f8fafc;
  border: 1px solid #e8edf5;
  border-radius: 12px;
}
.mega-panel-foot strong {
  display: block;
  font-size: .9rem;
  font-weight: 800;
  color: var(--navy);
}
.mega-panel-foot span {
  display: block;
  font-size: .8rem;
  color: #64748b;
  margin-top: .1rem;
}
.btn-sm {
  min-height: 40px;
  padding: 0 1rem;
  font-size: .86rem;
  border-radius: 8px;
}

/* Language switch */
.sh-lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  padding: 3px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
}
.sh-lang-item {
  min-width: 38px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  color: #94a3b8;
  padding: 0 .55rem;
  transition: background .12s, color .12s;
}
.sh-lang-item:hover { color: #0b1f44; }
.sh-lang-item.is-active {
  background: var(--navy);
  color: #fff;
}

.sh-actions {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-shrink: 0;
  margin-left: auto;
}
.sh-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  height: 46px;
  padding: 0 1.2rem;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 98, 230, .28);
  transition: background .15s, transform .15s, box-shadow .15s;
}
.sh-cta:hover {
  background: var(--blue-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 98, 230, .34);
}
.sh-cta svg { flex-shrink: 0; }

.sh-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.sh-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #0b1f44;
  border-radius: 2px;
  transition: .2s;
}
.sh-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sh-burger.is-open span:nth-child(2) { opacity: 0; }
.sh-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(380px, 92vw);
  height: 100dvh;
  background: #fff;
  z-index: 230;
  padding: 1rem 1.1rem 1.25rem;
  overflow-y: auto;
  box-shadow: -16px 0 40px rgba(0,0,0,.14);
  display: flex;
  flex-direction: column;
  gap: .12rem;
}
.drawer[hidden],
.drawer-scrim[hidden] { display: none !important; }
.drawer-scrim {
  position: fixed;
  inset: 0;
  background: rgba(8,12,24,.45);
  z-index: 220;
}
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .65rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid #e6ebf2;
}
.drawer-lang {
  display: flex;
  gap: .4rem;
  margin-bottom: .55rem;
}
.drawer-lang a {
  flex: 1;
  text-align: center;
  padding: .55rem;
  border: 1px solid #e6ebf2;
  border-radius: 8px;
  font-weight: 700;
  font-size: .84rem;
  color: #667085;
}
.drawer-lang a.is-active {
  background: #0b1f44;
  border-color: #0b1f44;
  color: #fff;
}
.drawer > a,
.drawer-acc > summary {
  display: block;
  padding: .85rem .4rem;
  font-weight: 600;
  font-size: .98rem;
  color: #0c1222;
  border-bottom: 1px solid #e6ebf2;
  cursor: pointer;
  list-style: none;
}
.drawer-acc summary::-webkit-details-marker { display: none; }
.drawer-acc-body { padding: .15rem 0 .5rem; }
.drawer-nested {
  margin: 0 0 .35rem;
  border: 1px solid #eef2f7;
  border-radius: 10px;
  overflow: hidden;
}
.drawer-nested summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .7rem .85rem;
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
  background: #f8fafc;
  cursor: pointer;
  list-style: none;
}
.drawer-nested summary small {
  font-size: .72rem;
  font-weight: 800;
  color: #64748b;
  background: #fff;
  border: 1px solid #e6ebf2;
  border-radius: 6px;
  padding: .1rem .4rem;
}
.drawer-nested[open] summary {
  border-bottom: 1px solid #eef2f7;
}
.drawer-cat {
  display: block;
  padding: .55rem .85rem .25rem;
  font-weight: 700;
  font-size: .82rem;
  color: var(--blue);
}
.drawer-sub {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .5rem;
  padding: .4rem .85rem;
  font-size: .86rem;
  font-weight: 500;
  color: #475569;
  border-top: 1px solid transparent;
}
.drawer-sub:hover { background: var(--blue-soft); color: var(--blue); }
.drawer-sub em {
  font-style: normal;
  font-size: .75rem;
  color: #94a3b8;
  font-weight: 600;
}
.drawer-call {
  margin-top: .8rem !important;
  text-align: center;
  border: 1px solid #e6ebf2 !important;
  border-radius: 10px !important;
}
.drawer .btn { margin-top: .55rem; }

body.nav-open,
body.mega-open { overflow: hidden; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  min-height: 48px;
  padding: 0 1.35rem;
  border-radius: 10px;
  border: 0;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,82,204,.28);
}
.btn-primary:hover { background: var(--blue-deep); }
.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.45);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-ghost-light {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--blue);
  font-weight: 800;
}
.btn-outline {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
}
.btn-block { width: 100%; }

/* Hero — full bleed like Mitsubishi */
.hero {
  position: relative;
  min-height: min(90vh, 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: #050d1c;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(5,12,28,.88) 0%, rgba(5,18,45,.55) 48%, rgba(5,20,50,.25) 100%);
}
.hero-orb {
  position: absolute;
  width: 520px; height: 520px;
  right: -80px; top: 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80,160,255,.45), transparent 65%);
  filter: blur(8px);
  animation: float 9s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(22px) scale(1.04); }
}
.hero-inner { padding: 5.5rem 0 4.5rem; max-width: 680px; }
.hero-kicker {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: #8ec5ff;
  margin-bottom: 1rem;
  opacity: 0;
  animation: rise .65s ease forwards .05s;
}
.hero h1 {
  font-size: clamp(2.15rem, 4.8vw, 3.45rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 0 0 1.1rem;
  opacity: 0;
  animation: rise .65s ease forwards .15s;
}
.hero p {
  font-size: 1.08rem;
  color: rgba(255,255,255,.82);
  max-width: 520px;
  margin: 0 0 1.8rem;
  opacity: 0;
  animation: rise .65s ease forwards .28s;
}
.hero-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise .65s ease forwards .4s;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* Hero slider */
.hero-slider { display: grid; }
.hero-slide {
  grid-area: 1 / 1;
  display: grid;
  align-items: center;
  min-height: inherit;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease, visibility .7s ease;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.hero-slide .hero-inner { position: relative; z-index: 2; }
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: .5rem;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255,255,255,.35);
  transition: background .2s, transform .2s;
}
.hero-dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

.card-media {
  display: block;
  margin: -1.45rem -1.45rem 1rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8eef5;
  border-radius: var(--radius) var(--radius) 0 0;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.service-card:hover .card-media img,
.area-card:hover .card-media img,
.blog-card:hover .card-media img {
  transform: scale(1.04);
}
.about-media {
  border-radius: 12px;
  overflow: hidden;
  background: #e8eef5;
}
.about-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.blog-card .card-media {
  margin: 0 0 1rem;
  border-radius: 10px;
}
.blog-article-cover {
  margin: 0 0 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: #e8eef5;
}
.blog-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section { padding: 3.5rem 0; }
.section-alt { background: var(--surface); }
.section-head {
  max-width: 640px;
  margin: 0 0 1.5rem;
  text-align: left;
}
.section-head.left { text-align: left; }
.section-head h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 .4rem;
  letter-spacing: -.02em;
  color: var(--navy);
}
.section-head p { color: var(--muted); margin: 0; font-size: .95rem; }

.container.narrow { max-width: 720px; }

/* Simple list rows (categories + series) */
.simple-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.simple-row {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .95rem 1.1rem;
  border-bottom: 1px solid var(--line);
  transition: background .12s;
  min-width: 0;
}
.simple-row:last-child { border-bottom: 0; }
.simple-row:hover { background: #f8fafc; }
.simple-row img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  background: #f8fafc;
  border: 1px solid #eef2f7;
  border-radius: 8px;
  padding: 4px;
}
.simple-row-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.simple-row-text strong {
  font-size: .98rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.simple-row-text em {
  font-style: normal;
  font-size: .82rem;
  font-weight: 500;
  color: #64748b;
}
.simple-row-meta {
  flex-shrink: 0;
  font-size: .82rem;
  font-weight: 700;
  color: #64748b;
  white-space: nowrap;
}
.simple-row-arrow {
  flex-shrink: 0;
  color: #94a3b8;
  font-weight: 700;
  font-size: 1rem;
}
.simple-row:hover .simple-row-arrow { color: var(--blue); }
.simple-row:hover .simple-row-text strong { color: var(--blue); }
.simple-more {
  margin: 1.1rem 0 0;
  font-size: .92rem;
  font-weight: 700;
}
.simple-more a { color: var(--blue); }
.simple-more a:hover { text-decoration: underline; }

.simple-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.simple-bullets li {
  padding: .9rem 1.15rem;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
  color: #475569;
  line-height: 1.45;
}
.simple-bullets li:last-child { border-bottom: 0; }
.simple-bullets strong { color: var(--navy); font-weight: 700; }

/* Product grid cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.product-media {
  aspect-ratio: 1 / 1;
  min-height: 220px;
  background: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
}
.product-media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 1.1rem 1rem;
  transition: transform .35s ease;
  background: #fff;
}
.product-card:hover .product-media img { transform: scale(1.03); }
.product-model {
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.product-media .badge {
  position: absolute;
  left: .75rem; top: .75rem;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  padding: .3rem .65rem;
  border-radius: 999px;
  z-index: 1;
}
.product-body {
  padding: 1.15rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}
.product-body h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.01em;
  line-height: 1.3;
}
.product-body h3 a:hover { color: var(--blue); }
.product-body > p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.spec-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-top: .25rem;
}
.spec-box {
  background: var(--surface);
  border-radius: 10px;
  padding: .55rem .65rem;
  border: 1px solid transparent;
}
.spec-box.cool { background: #eef6ff; border-color: #d3e6ff; }
.spec-box.heat { background: #fff4ee; border-color: #ffd9c7; }
.spec-label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .02em;
  margin-bottom: .15rem;
}
.spec-box strong {
  font-size: .98rem;
  color: var(--navy);
  font-weight: 800;
}
.card-link {
  color: var(--blue);
  font-weight: 700;
  font-size: .9rem;
  margin-top: .35rem;
}
.card-link:hover { text-decoration: underline; }

/* Features 6-grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.feature-card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  transition: box-shadow .25s ease, transform .25s ease;
}
.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.feature-card .feat-icon {
  font-size: 1.6rem;
  margin-bottom: .75rem;
  line-height: 1;
}
.feature-card h3 {
  margin: 0 0 .45rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
}
.feature-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.services-grid,
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.service-card, .area-card, .info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem;
  transition: box-shadow .25s ease, transform .25s ease;
}
.service-card:hover, .area-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.service-card h3, .area-card h3, .info-card h3 {
  margin: 0 0 .5rem;
  font-weight: 800;
  color: var(--navy);
}
.service-card p, .area-card p, .info-card p { margin: 0; color: var(--muted); }

/* CTA band */
.cta-band {
  background: linear-gradient(115deg, #0a1628 0%, #0c2d66 48%, #0052cc 100%);
  color: #fff;
  padding: 4rem 0;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  font-weight: 800;
  margin: 0 0 .5rem;
  max-width: 480px;
  letter-spacing: -.02em;
}
.cta-band p { margin: 0; color: rgba(255,255,255,.8); max-width: 460px; }
.cta-actions { display: flex; gap: .7rem; flex-wrap: wrap; }

/* SEO content block — bottom of home like Mitsubishi */
.seo-content {
  padding: 4.5rem 0;
}
.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.seo-grid h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 1rem;
  letter-spacing: -.02em;
}
.seo-grid p {
  color: var(--muted);
  margin: 0 0 1rem;
  font-size: .98rem;
}

/* Page hero — light title strip */
.page-hero {
  padding: 1.75rem 0 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.page-hero-inner { padding-bottom: 1.25rem; }
.page-hero h1 {
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 800;
  margin: 0 0 .3rem;
  letter-spacing: -.02em;
  color: var(--navy);
}
.page-hero p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  max-width: 40rem;
}

.content-block { padding: 1.75rem 0 3.5rem; }
.prose { max-width: 760px; color: var(--muted); }
.prose h2, .prose h3 { color: var(--navy); font-weight: 800; }
.prose p { margin: 0 0 1rem; }

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: start;
}
.panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--line);
}
.panel h3 { margin-top: 0; font-weight: 800; color: var(--navy); }
.panel p, .panel a { color: var(--muted); }
.panel a { display: block; margin-top: .35rem; color: var(--blue); font-weight: 600; }

.form { display: grid; gap: 1rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
label {
  display: grid;
  gap: .38rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
}
input, textarea, select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d4ddeC;
  border-radius: 10px;
  padding: .7rem .9rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,82,204,.12);
}
.alert {
  padding: .9rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.alert.success { background: #e8f8ef; color: #0f6b3a; }
.alert.error { background: #fdecec; color: #a11b1b; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td {
  text-align: left;
  padding: .95rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: .94rem;
}
th {
  background: var(--surface);
  color: var(--navy);
  font-weight: 700;
}
code {
  background: var(--blue-soft);
  padding: .15rem .4rem;
  border-radius: 6px;
  font-weight: 700;
  color: var(--blue);
}

/* Footer — daikinvrv style */
.site-footer {
  background: #1a1a2e;
  color: rgba(255, 255, 255, .72);
  padding: 3.75rem 0 1.75rem;
  position: relative;
  border-top: 3px solid var(--blue);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr 1.05fr 1.1fr;
  gap: 2rem 2.25rem;
  margin-bottom: 2.25rem;
}
.footer-brand p {
  margin: .9rem 0 1.15rem;
  font-size: .92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .62);
  max-width: 28rem;
}
.footer-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .45rem;
  line-height: 0;
}
.footer-logo span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  line-height: 1.2;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .75);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.footer-social a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}
.footer-col h4 {
  color: #fff;
  margin: 0 0 1.05rem;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -.01em;
}
.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .45rem;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: rgba(255, 255, 255, .68);
  font-size: .92rem;
  font-weight: 500;
  transition: color .12s, transform .12s;
}
.footer-links a span {
  color: var(--blue);
  font-weight: 800;
  font-size: .95rem;
  line-height: 1;
}
.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer-contact a,
.footer-contact .fc-text {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  color: rgba(255, 255, 255, .72);
  font-size: .9rem;
  line-height: 1.45;
}
.footer-contact a:hover { color: #fff; }
.fc-ic {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(0, 98, 230, .15);
  color: #7eb6ff;
}
.footer-callback {
  display: grid;
  gap: .55rem;
}
.footer-callback input {
  width: 100%;
  height: 44px;
  padding: 0 .95rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  background: rgba(255, 255, 255, .05);
  color: #fff;
  font: inherit;
  font-size: .9rem;
  outline: none;
  transition: border-color .15s, background .15s;
}
.footer-callback input::placeholder { color: rgba(255, 255, 255, .38); }
.footer-callback input:focus {
  border-color: rgba(0, 98, 230, .65);
  background: rgba(255, 255, 255, .08);
}
.footer-callback-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  height: 46px;
  margin-top: .15rem;
  border: 0;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  font: inherit;
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 98, 230, .28);
  transition: background .15s, transform .15s;
}
.footer-callback-btn:hover {
  background: var(--blue-deep);
  transform: translateY(-1px);
}
.footer-callback-note {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin: .55rem 0 0;
  font-size: .8rem;
  color: rgba(255, 255, 255, .45);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .86rem;
  color: rgba(255, 255, 255, .48);
}
.footer-bottom p { margin: 0; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .75rem;
  border-radius: 999px;
  background: rgba(0, 98, 230, .14);
  color: #9ec5ff;
  font-size: .8rem;
  font-weight: 700;
}
.footer-badge svg { flex-shrink: 0; color: #6ea8ff; }

/* Floating contact actions */
.float-actions {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.float-btn {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .22);
  transition: transform .15s, box-shadow .15s;
}
.float-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 32px rgba(15, 23, 42, .28);
}
.float-phone { background: var(--blue); }
.float-wa { background: #25d366; }

.quote-float {
  display: none;
}

/* Quote modal — like Mitsubishi */
.quote-modal[hidden] { display: none !important; }
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,15,28,.55);
  backdrop-filter: blur(4px);
}
.quote-modal-dialog {
  position: relative;
  width: min(100%, 520px);
  max-height: min(92vh, 720px);
  overflow-y: auto;
  background: #fff;
  border-radius: 18px;
  padding: 1.6rem 1.5rem 1.5rem;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}
.quote-modal-close {
  position: absolute;
  top: .9rem; right: .9rem;
  width: 36px; height: 36px;
  border: 0;
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  font-size: 1rem;
  color: var(--muted);
}
.quote-modal-dialog h3 {
  margin: 0 0 .3rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
}
.quote-modal-sub {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: .92rem;
}
.quote-modal-form { position: relative; }

/* reveal: JS yoksa içerik görünür kalsın */
.reveal {
  opacity: 1;
  transform: none;
}
html.js .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(20px);
}
html.js .reveal {
  transition: opacity .65s ease, transform .65s ease;
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.empty {
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  border: 1px dashed #c9d5ea;
  border-radius: var(--radius);
  background: var(--surface);
}
.breadcrumb {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--blue); font-weight: 600; }

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.product-detail .media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  min-height: 280px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.product-detail .media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  gap: .5rem;
}
.feature-list li {
  padding: .7rem .9rem;
  background: var(--surface);
  border-radius: 10px;
  font-weight: 600;
  color: var(--navy);
  font-size: .92rem;
  position: relative;
  padding-left: 2rem;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: .85rem;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  transform: translateY(-50%);
}
.product-features-head {
  margin-top: 1.1rem;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #64748b;
}
.product-summary {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}
.product-desc-wrap {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.product-desc-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 1.1rem;
  letter-spacing: -.02em;
}
.product-desc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.product-desc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem 1.25rem;
}
.product-desc-card h4 {
  margin: 0 0 .45rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
}
.product-desc-card p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
  font-size: .95rem;
  white-space: pre-line;
}
.product-source-note {
  margin: 1.1rem 0 0;
  font-size: .78rem;
  color: #94a3b8;
}
@media (max-width: 800px) {
  .product-desc-grid { grid-template-columns: 1fr; }
}

/* Teknik bilgiler / dokümanlar tabs (samsungvrf style) */
.product-tech-wrap {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.product-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e6ebf2;
  padding-bottom: .35rem;
}
.product-tab {
  appearance: none;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: .92rem;
  font-weight: 700;
  color: #64748b;
  padding: .7rem 1.05rem;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  position: relative;
}
.product-tab:hover { color: var(--navy); background: #f8fafc; }
.product-tab.is-active {
  color: var(--blue);
  background: #eef4ff;
}
.product-tab.is-active::after {
  content: "";
  position: absolute;
  left: .6rem; right: .6rem; bottom: -1px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--blue);
}
.product-tab-panel[hidden] { display: none !important; }
.product-tab-panel { display: block; }

.spec-tables {
  display: grid;
  gap: 1.35rem;
}
.spec-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
}
.spec-table {
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  font-size: .78rem;
  line-height: 1.35;
}
.spec-table tr:first-child td,
.spec-table tr:first-child th {
  background: #0b1f44;
  color: #fff;
  font-weight: 700;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 2;
}
.spec-table td,
.spec-table th {
  border: 1px solid #e2e8f0;
  padding: .42rem .55rem;
  white-space: nowrap;
  color: #1e293b;
  vertical-align: middle;
}
.spec-table tr:nth-child(even) td { background: #f8fafc; }
.spec-table tr:hover td { background: #eef4ff; }
.spec-table td:first-child,
.spec-table td:nth-child(2),
.spec-table td:nth-child(3) {
  white-space: normal;
  max-width: 160px;
  font-weight: 600;
  color: #0b1f44;
  background: #f1f5f9;
  position: sticky;
  left: 0;
  z-index: 1;
}
.spec-table td:nth-child(2) { left: 110px; }
.spec-table td:nth-child(3) { left: 210px; }
.spec-table tr:first-child td:first-child,
.spec-table tr:first-child td:nth-child(2),
.spec-table tr:first-child td:nth-child(3) {
  background: #0b1f44;
  z-index: 3;
}

.product-docs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .65rem;
  max-width: 640px;
}
.product-docs-list a {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .9rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  font-weight: 700;
  color: var(--navy);
  transition: border-color .15s, box-shadow .15s;
}
.product-docs-list a:hover {
  border-color: #93c5fd;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .06);
  color: var(--blue);
}
.product-docs-list svg { color: var(--blue); flex-shrink: 0; }

@media (max-width: 720px) {
  .spec-table { font-size: .72rem; }
  .spec-table td:nth-child(2),
  .spec-table td:nth-child(3) {
    position: static;
    left: auto;
  }
  .spec-table td:first-child {
    position: sticky;
    left: 0;
  }
}
/* Catalog */
.catalog-page { padding-top: 1.25rem; }
.catalog-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: 1.5rem;
}
.cat-tab {
  padding: .5rem .9rem;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 700;
  color: #64748b;
  border: 1px solid transparent;
  white-space: nowrap;
}
.cat-tab:hover { color: var(--navy); background: #f1f5f9; }
.cat-tab.is-active {
  background: var(--navy);
  color: #fff;
}
.catalog-section { margin-bottom: 2rem; }
.catalog-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .65rem;
}
.catalog-section-head h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
}
.catalog-section-head a {
  font-size: .86rem;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}
.catalog-note {
  margin: 1rem 0 0;
  font-size: .78rem;
  color: #94a3b8;
}
.series-bar {
  margin-bottom: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.series-back {
  display: inline-block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: .5rem;
}
.series-bar h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
}
.series-bar p {
  margin: .35rem 0 0;
  font-size: .9rem;
  font-weight: 600;
  color: #64748b;
}
.model-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.model-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.model-table th {
  text-align: left;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #64748b;
  background: #f8fafc;
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.model-table td {
  padding: .8rem 1rem;
  border-bottom: 1px solid #eef2f7;
  vertical-align: middle;
  font-size: .92rem;
  color: #334155;
}
.model-table tr:last-child td { border-bottom: 0; }
.model-table tbody tr:hover td { background: #f8fafc; }
.model-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 700;
  font-size: .92rem;
  color: var(--navy);
}
.model-code:hover { color: var(--blue); }
.model-thumb {
  width: 64px;
}
.model-thumb img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #f4f7fb;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.cap {
  display: inline-block;
  font-weight: 700;
  font-size: .88rem;
  color: #334155;
}
.model-feats {
  max-width: 280px;
  font-size: .84rem;
  color: #64748b;
}
.model-action a {
  font-weight: 700;
  font-size: .86rem;
  color: var(--blue);
  white-space: nowrap;
}
.model-action a:hover { text-decoration: underline; }
@media (max-width: 720px) {
  .simple-row-meta { font-size: .78rem; }
  .model-table { min-width: 0; }
  .model-table thead { display: none; }
  .model-table tr {
    display: grid;
    gap: .3rem;
    padding: .85rem 1rem;
    border-bottom: 1px solid #eef2f7;
  }
  .model-table td {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0;
    border: 0;
    max-width: none;
  }
  .model-table td::before {
    content: attr(data-label);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #94a3b8;
  }
  .model-table td.model-action {
    justify-content: flex-end;
    margin-top: .2rem;
  }
  .model-table td.model-action::before { content: none; }
  .model-feats { max-width: none; text-align: right; }
}

.filter-pills-series {
  margin-top: -.5rem;
  margin-bottom: 1.5rem;
}
.filter-pills-series a {
  font-size: .84rem;
  background: #f8fafc;
}
.filter-pills-series a small {
  opacity: .7;
  font-weight: 600;
}
.filter-pills a {
  min-height: 40px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: .88rem;
  color: var(--muted);
  background: #fff;
}
.filter-pills a.is-active,
.filter-pills a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.center-link {
  text-align: center;
  margin-top: 2.25rem;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.blog-card:hover {
  border-color: #c9d8f5;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.blog-card h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
}
.blog-card h2 a:hover { color: var(--blue); }
.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  color: var(--muted);
  font-weight: 600;
}
.blog-badge {
  display: inline-flex;
  padding: .2rem .5rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: .7rem;
  font-weight: 700;
}
.blog-article { max-width: 820px; }
.blog-article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
}
.blog-article-meta a { color: var(--blue); }
.blog-content.prose {
  color: #374151;
  font-size: 1.02rem;
  line-height: 1.75;
}
.blog-content.prose p { margin: 0 0 1rem; }
.blog-content.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}
.blog-content.prose li { margin: .35rem 0; }
.blog-article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 1180px) {
  .sh-link { padding: .5rem .7rem; font-size: .82rem; }
  .sh-logo-img { height: 28px; }
  .sh-logo-meta strong { font-size: .9rem; }
  .sh-logo-meta em { font-size: .55rem; }
  .mega-cols { grid-template-columns: 1fr; gap: 1.25rem; }
  .mega-col {
    border-right: 0;
    border-bottom: 1px solid #eef2f7;
    padding: 0 0 1.1rem !important;
  }
  .mega-col:last-child { border-bottom: 0; padding-bottom: 0 !important; }
  .mega-series-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .15rem .5rem;
  }
}
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .sh-nav { display: none; }
  .mega-panel,
  .mega-scrim { display: none !important; }
  .sh-burger { display: inline-flex; }
  .sh-bar { min-height: 68px; }
  .sh-actions { margin-left: auto; }
  .sh-cta span { display: none; }
  .sh-cta { width: 46px; padding: 0; justify-content: center; }
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .sh-logo-meta { display: none; }
  .float-actions { right: .85rem; bottom: .85rem; }
  .float-btn { width: 50px; height: 50px; }
}
@media (max-width: 920px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1),
  .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .product-grid,
  .features-grid,
  .services-grid,
  .areas-grid,
  .footer-grid,
  .split,
  .product-detail,
  .seo-grid,
  .form-row,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .spec-boxes { grid-template-columns: 1fr 1fr; }
  .product-media { min-height: 200px; }
}
@media (max-width: 640px) {
  .sh-logo-img { height: 28px; }
  .sh-cta { height: 44px; width: 44px; }
}
