:root {
  --white: #ffffff;
  --mist: #f8fafc;
  --sky: #e0f2fe;
  --blue: #2563eb;
  --deep-blue: #1e40af;
  --ink: #0f172a;
  --slate: #64748b;
  --green: #22c55e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(224, 242, 254, 0.9), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container-premium {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.grid > * {
  min-width: 0;
}

.nav-glass {
  background: rgba(248, 250, 252, 0.94);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(20px);
}

.brand-logo {
  width: clamp(132px, 15vw, 190px);
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.1));
}

.footer-logo {
  width: min(260px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(15, 23, 42, 0.12));
}

.nav-link {
  color: #334155;
  font-weight: 700;
  font-size: 0.94rem;
  transition: color 220ms ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
}

.btn-primary,
.btn-secondary,
.btn-soft {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease;
  white-space: nowrap;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--deep-blue));
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.27);
  padding: 0.82rem 1.2rem;
}

.btn-secondary {
  color: var(--deep-blue);
  background: rgba(224, 242, 254, 0.78);
  border: 1px solid rgba(37, 99, 235, 0.16);
  padding: 0.82rem 1.18rem;
}

.btn-soft {
  color: var(--deep-blue);
  background: var(--white);
  border: 1px solid rgba(37, 99, 235, 0.14);
  padding: 0.76rem 1rem;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-soft:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.23);
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 72px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--deep-blue);
  background: rgba(224, 242, 254, 0.82);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 999px;
  padding: 0.45rem 0.78rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.display-title {
  color: var(--ink);
  font-size: clamp(2.45rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 900;
}

.page-title {
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 900;
}

.section-title {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 900;
}

.lead {
  color: var(--slate);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  line-height: 1.78;
}

.glass-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
  border-radius: 8px;
}

.lift-card {
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.lift-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.12);
}

.hero-media {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.18);
  min-height: 560px;
  position: relative;
}

.hero-swiper {
  isolation: isolate;
}

.hero-swiper .swiper-wrapper {
  align-items: stretch;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-swiper .swiper-slide {
  min-height: 560px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.hero-swiper .swiper-slide img {
  flex: 0 0 auto;
}

.hero-swiper .swiper-slide img[src*="assets/images/products"] {
  object-fit: contain;
  padding: 34px;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 40%, rgba(15, 23, 42, 0.34) 100%);
  pointer-events: none;
}

.floating-card {
  position: absolute;
  z-index: 2;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(224, 242, 254, 0.8);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.13);
  backdrop-filter: blur(14px);
}

.medical-dot-grid {
  background-image: radial-gradient(rgba(37, 99, 235, 0.18) 1px, transparent 1px);
  background-size: 18px 18px;
}

.stat-card {
  min-height: 150px;
}

.icon-tile {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: linear-gradient(135deg, #e0f2fe, #ffffff);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 12px 22px rgba(37, 99, 235, 0.11);
}

.image-band {
  min-height: 420px;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.14);
}

.product-image {
  height: 210px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.product-hero {
  background:
    radial-gradient(circle at 88% 18%, rgba(34, 197, 94, 0.16), transparent 24rem),
    radial-gradient(circle at 12% 6%, rgba(37, 99, 235, 0.18), transparent 28rem),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 52%, #e0f2fe 100%);
}

.catalog-shell {
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0), #ffffff 18%),
    radial-gradient(circle at 8% 12%, rgba(224, 242, 254, 0.84), transparent 28rem);
}

.catalog-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.09);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.catalog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 38%, rgba(34, 197, 94, 0.08));
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.catalog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.26);
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.14);
}

.catalog-card:hover::before {
  opacity: 1;
}

.catalog-media {
  height: 292px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, #ffffff, #f8fafc),
    radial-gradient(circle at center, rgba(224, 242, 254, 0.78), transparent 72%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  padding: 16px;
}

.catalog-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(15, 23, 42, 0.12));
  transition: transform 320ms ease;
}

.catalog-card:hover .catalog-media img {
  transform: scale(1.035);
}

.home-product-card .catalog-media {
  height: 250px;
}

.home-product-card .composition-box {
  min-height: 112px;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--deep-blue);
  background: rgba(224, 242, 254, 0.86);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 999px;
  padding: 0.38rem 0.68rem;
  font-size: 0.75rem;
  font-weight: 900;
}

.composition-box {
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  padding: 0.9rem;
}

.composition-box p {
  color: #334155;
  font-size: 0.9rem;
  line-height: 1.58;
}

.floating-contact {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: grid;
  gap: 10px;
}

.floating-contact a {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.22);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.floating-contact a:hover {
  transform: translateX(-4px) translateY(-2px);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.28);
}

.floating-contact .whatsapp {
  background: #22c55e;
}

.floating-contact .call {
  background: #2563eb;
}

.floating-contact .sms {
  background: #0f172a;
}

.floating-contact .mail {
  background: #1e40af;
}

.top-info-strip {
  background: #0f172a;
  color: #ffffff;
  font-size: 0.86rem;
}

.top-info-strip a {
  color: #ffffff;
  font-weight: 800;
}

.swiper-pagination-bullet {
  background: var(--blue);
}

.hero-pagination {
  bottom: 18px !important;
  z-index: 4;
}

.form-input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.9rem 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-input:focus {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

textarea.form-input {
  min-height: 142px;
  resize: vertical;
}

.map-frame {
  min-height: 390px;
  border: 0;
  width: 100%;
  border-radius: 8px;
  filter: saturate(0.95) contrast(1.02);
}

.mobile-menu {
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
  transition: opacity 220ms ease, transform 220ms ease, max-height 220ms ease;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  max-height: 520px;
}

.footer-link {
  color: #475569;
  transition: color 180ms ease;
}

.footer-link:hover {
  color: var(--blue);
}

@media (max-width: 1024px) {
  .hero-media,
  .hero-media img {
    min-height: 460px;
  }

  .hero-swiper .swiper-slide {
    min-height: 460px;
  }
}

@media (max-width: 768px) {
  .container-premium {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 72px 0;
  }

  .section-sm {
    padding: 56px 0;
  }

  .brand-logo {
    width: 136px;
  }

  .hero-media,
  .hero-media img {
    min-height: 390px;
  }

  .hero-swiper .swiper-slide {
    min-height: 390px;
  }

  .hero-swiper .swiper-slide img[src*="assets/images/products"] {
    padding: 18px;
  }

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

  .catalog-media {
    height: 250px;
  }

  .product-hero .page-title {
    font-size: clamp(2rem, 10vw, 2.75rem);
    line-height: 1.03;
  }

  .product-hero .btn-primary,
  .product-hero .btn-secondary {
    width: 100%;
    max-width: 100%;
  }

  .top-info-strip {
    font-size: 0.78rem;
  }

  .floating-contact {
    right: 10px;
    bottom: 12px;
    top: auto;
    transform: none;
    grid-template-columns: repeat(4, 46px);
    gap: 8px;
  }

  .floating-contact a {
    width: 46px;
    height: 46px;
  }
}

.hnc-home {
  background: #f5f6f8;
}

.hnc-topline {
  background: #b30000;
  color: #fff;
  font-size: 0.78rem;
}

.hnc-topline-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hnc-topline-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hnc-enquiry-chip {
  background: #7dbd42;
  color: #fff;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  text-align: center;
  line-height: 1.2;
}

.hnc-header {
  background: #fff;
  border-bottom: 1px solid #e4e7ec;
}

.hnc-nav-link {
  font-weight: 700;
  font-size: 0.8rem;
  color: #4b5563;
  text-transform: uppercase;
}

.hnc-nav-link.active,
.hnc-nav-link:hover {
  color: #97bd30;
}

.hnc-hero {
  position: relative;
  height: min(58vw, 430px);
  min-height: 320px;
  overflow: hidden;
}

.hnc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 17, 40, 0.28);
  pointer-events: none;
}

.hnc-hero .hero-swiper,
.hnc-hero .swiper-slide,
.hnc-hero .swiper-slide img {
  height: 100%;
}

.hnc-hero .swiper-slide img {
  width: 100%;
  object-fit: cover;
  animation: hncZoom 8s ease-in-out infinite alternate;
}

.hnc-hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
}

.hnc-hero-box {
  background: rgba(16, 24, 40, 0.62);
  color: #fff;
  padding: 24px 28px;
  max-width: 520px;
  border-left: 4px solid #7dbd42;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.hnc-hero-box h1 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.12;
}

.hnc-hero-box p {
  margin: 8px 0 0;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  color: #dbe6ff;
  font-weight: 700;
}

.hnc-welcome {
  background: #f7f8fb;
}

.hnc-welcome h2,
.hnc-why h2,
.hnc-sec-title,
.hnc-testimonials h2 {
  margin: 0;
  color: #1f3f7f;
  font-size: clamp(1.8rem, 2.7vw, 2.3rem);
  line-height: 1.12;
  font-weight: 800;
}

.hnc-welcome p,
.hnc-muted {
  color: #475467;
  line-height: 1.8;
  margin-top: 14px;
}

.hnc-readmore {
  margin-top: 16px;
  display: inline-flex;
  background: #b30000;
  color: #fff;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 4px;
}

.hnc-frame {
  border: 6px solid #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
}

.hnc-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.hnc-frame:hover img {
  transform: scale(1.04);
}

.hnc-products-band {
  background: #b50000;
  color: #fff;
}

.hnc-products-band h2,
.hnc-dark-services h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2.9vw, 2.35rem);
  font-weight: 800;
}

.hnc-products-band p,
.hnc-dark-services p {
  margin-top: 10px;
  color: #f3f6ff;
}

.hnc-product-mini {
  background: #fff;
  border-radius: 4px;
  padding: 14px;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.hnc-product-mini:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 30px rgba(11, 35, 84, 0.28);
}

.hnc-product-mini img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.hnc-product-mini h3 {
  margin: 9px 0 0;
  color: #2f6f2f;
  font-size: 0.92rem;
  font-weight: 800;
}

.hnc-why {
  background: #fff;
}

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

.hnc-why-showcase {
  display: grid;
  grid-template-columns: 1fr 340px 1fr;
  gap: 16px;
  align-items: stretch;
}

.hnc-why-column {
  display: grid;
  gap: 14px;
}

.hnc-why-center {
  border: 1px solid #e4e7ec;
  background: linear-gradient(180deg, #fff, #f8fbff);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}

.hnc-why-center img {
  width: 100%;
  height: 100%;
  max-height: 430px;
  object-fit: contain;
}

.hnc-why-card {
  border: 1px solid #e4e7ec;
  background: #fff;
  padding: 16px;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.hnc-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.hnc-why-card h3 {
  margin: 0;
  color: #1f3f7f;
  font-size: 1rem;
}

.hnc-why-card p {
  margin: 7px 0 0;
  color: #475467;
  font-size: 0.93rem;
  line-height: 1.65;
}

.hnc-dark-services {
  background: linear-gradient(rgba(9, 20, 35, 0.76), rgba(9, 20, 35, 0.76)),
    url("assets/images/products/esogul-d-visual.jpeg") center/cover no-repeat;
}

.hnc-services-icons {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.hnc-services-icons span {
  min-height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 260ms ease, background 260ms ease;
}

.hnc-services-icons span:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.12);
}

.hnc-services-icons i {
  width: 24px;
  height: 24px;
}

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

.hnc-cert-grid > div {
  min-height: 110px;
  border: 1px solid #d0d5dd;
  background: #fff;
  display: grid;
  place-items: center;
  color: #1752a2;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.hnc-cert-grid > div:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.14);
}

.hnc-production {
  background: #fff;
}

.hnc-production-copy {
  background: #b50000;
  color: #fff;
  padding: clamp(24px, 4vw, 42px);
}

.hnc-production-copy h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
}

.hnc-production-copy p {
  margin-top: 12px;
  line-height: 1.75;
}

.hnc-production-copy ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.hnc-production-copy li::before {
  content: "✓";
  margin-right: 8px;
}

.hnc-production-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.hnc-testimonials {
  background: #edf5e6;
}

.hnc-testi-card {
  background: #fff;
  border: 1px solid #e4e7ec;
  padding: 18px;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.hnc-testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.hnc-testi-card p {
  margin: 0;
  color: #475467;
  line-height: 1.75;
}

.hnc-testi-card h3 {
  margin: 12px 0 0;
  color: #c21807;
  font-size: 1rem;
}

.hnc-testi-card span {
  color: #6b7280;
  font-size: 0.88rem;
}

.hnc-stats {
  background: linear-gradient(rgba(12, 16, 30, 0.68), rgba(12, 16, 30, 0.68)),
    url("assets/images/products/tilcobal-plus-box.jpeg") center/cover no-repeat;
  padding: 42px 0;
}

.hnc-stat-box {
  border: 1px solid rgba(255, 255, 255, 0.32);
  text-align: center;
  color: #fff;
  padding: 18px 10px;
  transition: transform 260ms ease, border-color 260ms ease;
}

.hnc-stat-box:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.7);
}

.hnc-stat-box i {
  width: 26px;
  height: 26px;
}

.hnc-stat-box h3 {
  margin: 8px 0 0;
  font-size: 2rem;
  color: #8ee13d;
}

.hnc-stat-box p {
  margin: 5px 0 0;
  color: #d8deea;
}

.hnc-career-band {
  border: 2px solid #2f7cc5;
  background: #fff;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.hnc-career-band img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 360ms ease;
}

.hnc-career-band:hover img {
  transform: scale(1.035);
}

.hnc-career-band div {
  padding: 18px;
}

.hnc-career-band h2 {
  margin: 0;
  color: #d84b00;
  font-size: 2rem;
}

.hnc-career-band p {
  margin-top: 10px;
  color: #475467;
  line-height: 1.74;
}

.hnc-career-band ul {
  margin-top: 12px;
  list-style: none;
  padding: 0;
}

.hnc-career-band li {
  color: #166534;
  font-weight: 700;
  margin: 5px 0;
}

.hnc-footer {
  background: #0f141f;
}

.hnc-footer-top {
  background: linear-gradient(100deg, #b50000 0 66%, #7dbd42 66% 100%);
  color: #fff;
  padding: 14px 0;
}

.hnc-footer-call {
  background: rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: 800;
  transition: transform 220ms ease, background 220ms ease;
}

.hnc-footer-call:hover {
  transform: translateY(-2px);
  background: rgba(15, 23, 42, 0.45);
}

.hnc-footer h3 {
  margin: 0 0 10px;
  font-size: 1.06rem;
}

.hnc-footer p,
.hnc-footer li,
.hnc-footer a {
  color: #d7dde8;
  line-height: 1.7;
  font-size: 0.92rem;
}

.hnc-footer ul {
  margin: 0;
  padding-left: 15px;
}

.hnc-footer-bottom {
  border-top: 1px solid #2b3242;
  color: #c3ccdc;
  font-size: 0.82rem;
  padding: 11px 0;
}

@keyframes hncZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@media (max-width: 1024px) {
  .hnc-services-icons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .container-premium {
    width: min(100% - 20px, 1180px);
  }

  .section {
    padding: 52px 0;
  }

  .section-sm {
    padding: 40px 0;
  }

  .brand-logo {
    width: 118px;
  }

  .hnc-topline-inner {
    flex-direction: row;
    align-items: center;
    min-height: 38px;
    padding: 6px 0;
  }

  .hnc-topline-actions {
    display: none;
  }

  .hnc-topline p {
    font-size: 0.7rem;
    line-height: 1.4;
  }

  .hnc-header .container-premium {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .hnc-nav-link {
    font-size: 0.76rem;
  }

  .mobile-menu .container-premium {
    padding-top: 4px;
  }

  .hnc-hero {
    height: 250px;
    min-height: 250px;
  }

  .hnc-hero-content {
    align-items: flex-end;
    padding-bottom: 14px;
  }

  .hnc-hero-box {
    max-width: 100%;
    padding: 12px 12px;
    border-left-width: 3px;
  }

  .hnc-hero-box h1 {
    font-size: 1.08rem;
  }

  .hnc-hero-box p {
    font-size: 0.78rem;
    margin-top: 5px;
  }

  .hnc-welcome h2,
  .hnc-why h2,
  .hnc-sec-title,
  .hnc-testimonials h2 {
    font-size: 1.7rem;
    line-height: 1.1;
  }

  .hnc-welcome p,
  .hnc-muted {
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .hnc-readmore {
    margin-top: 12px;
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .hnc-frame img {
    height: 190px;
  }

  .hnc-products-band h2,
  .hnc-dark-services h2 {
    font-size: 1.55rem;
  }

  .hnc-products-band p,
  .hnc-dark-services p {
    font-size: 0.82rem;
    margin-top: 8px;
  }

  .hnc-product-mini {
    padding: 10px;
  }

  .hnc-product-mini img {
    height: 120px;
  }

  .hnc-product-mini h3 {
    font-size: 0.82rem;
  }

  .hnc-why-card {
    padding: 12px;
  }

  .hnc-why-card h3 {
    font-size: 0.92rem;
  }

  .hnc-why-card p {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .hnc-why-showcase {
    gap: 10px;
  }

  .hnc-why-column {
    gap: 10px;
  }

  .hnc-why-center {
    order: -1;
    padding: 10px;
  }

  .hnc-why-center img {
    max-height: 210px;
  }

  .hnc-services-icons span {
    min-height: 62px;
    font-size: 0.8rem;
    padding: 8px;
  }

  .hnc-services-icons i {
    width: 19px;
    height: 19px;
  }

  .hnc-cert-grid > div {
    min-height: 72px;
    font-size: 1.45rem;
  }

  .hnc-production-copy {
    padding: 18px 14px;
  }

  .hnc-production-copy h2 {
    font-size: 1.35rem;
  }

  .hnc-production-copy p {
    margin-top: 8px;
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .hnc-production-copy ul {
    margin-top: 10px;
    gap: 6px;
    font-size: 0.82rem;
  }

  .hnc-production-media img {
    min-height: 170px;
    max-height: 230px;
  }

  .hnc-testi-card {
    padding: 12px;
  }

  .hnc-testi-card p {
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .hnc-testi-card h3 {
    font-size: 0.9rem;
    margin-top: 8px;
  }

  .hnc-stat-box {
    padding: 11px 8px;
  }

  .hnc-stat-box h3 {
    font-size: 1.45rem;
  }

  .hnc-stat-box p {
    font-size: 0.73rem;
  }

  .hnc-career-band {
    border-width: 1px;
  }

  .hnc-career-band img {
    min-height: 150px;
    max-height: 180px;
  }

  .hnc-career-band div {
    padding: 12px;
  }

  .hnc-career-band h2 {
    font-size: 1.35rem;
  }

  .hnc-career-band p {
    margin-top: 7px;
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .hnc-career-band li {
    font-size: 0.8rem;
    margin: 4px 0;
  }

  .hnc-footer-top {
    padding: 10px 0;
  }

  .hnc-footer-top p {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .hnc-footer-call {
    padding: 7px 12px;
    font-size: 0.8rem;
  }

  .hnc-footer .container-premium.py-12 {
    padding-top: 28px;
    padding-bottom: 24px;
    gap: 16px;
  }

  .hnc-footer h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .hnc-footer p,
  .hnc-footer li,
  .hnc-footer a {
    font-size: 0.78rem;
    line-height: 1.55;
  }

  .hnc-footer-bottom {
    font-size: 0.72rem;
    padding: 8px 0;
  }

  .hnc-why-grid,
  .hnc-why-showcase,
  .hnc-cert-grid,
  .hnc-services-icons,
  .hnc-career-band {
    grid-template-columns: 1fr;
  }
}
