*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #4a7fd4;
  --blue2: #2d5499;
  --red: #e02020;
  --red2: #ff3b3b;
  --white: #ffffff;
  --ink: #0a1628;
  --muted: #6b7fa3;
  --faint: #9aaac4;
  --bg-alt: #f4f7fe;
  --border: #e4eaf5;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--white);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  background: var(--white);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #7a9fc9;
  clip-path: polygon(70% 0, 100% 0, 100% 100%, 30% 100%);
  pointer-events: none;
  z-index: 0;
}
.hero-bg {
  display: none;
}
.hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  height: 800px;
  background: radial-gradient(
    ellipse,
    rgba(74, 127, 212, 0.09) 0%,
    transparent 68%
  );
  pointer-events: none;
}
.hero-glow-red {
  position: absolute;
  bottom: -180px;
  right: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    ellipse,
    rgba(224, 32, 32, 0.055) 0%,
    transparent 68%
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 660px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo {
  margin-bottom: 2.75rem;
}
.logo img {
  height: 46px;
  object-fit: contain;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(74, 127, 212, 0.08);
  border: 1px solid rgba(74, 127, 212, 0.22);
  border-radius: 99px;
  padding: 0.4rem 1.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue2);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 1.85rem;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.65);
  }
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.35rem;
}
.hero h1 span {
  color: var(--blue);
}

.hero-divider {
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  border-radius: 99px;
  margin: 0 auto 1.6rem;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 460px;
  margin: 0 auto 2.4rem;
}

.pill-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: #f0f4ff;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.pill:hover {
  border-color: rgba(74, 127, 212, 0.4);
  color: var(--blue2);
}
.pill svg,
.pill i {
  color: var(--blue);
  flex-shrink: 0;
  font-size: 0.85rem;
}

/* ─── SHARED SECTION ─── */
.section {
  padding: 2rem 2rem;
  border-top: 1px solid var(--border);
  will-change: transform;
}
.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.section-head {
  margin-bottom: 2.75rem;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(74, 127, 212, 0.08);
  border: 1px solid rgba(74, 127, 212, 0.18);
  border-radius: 99px;
  padding: 0.25rem 0.85rem;
  margin-bottom: 0.85rem;
}
.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section-sub {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  transition:
    border-color 0.22s,
    box-shadow 0.22s,
    transform 0.22s;
}
.contact-card:hover {
  border-color: rgba(74, 127, 212, 0.4);
  box-shadow: 0 6px 28px rgba(74, 127, 212, 0.1);
  transform: translateY(-3px);
}
.contact-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: rgba(74, 127, 212, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex-shrink: 0;
}
.contact-icon-wrap i {
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}
.contact-card-body {
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.85;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
.contact-card-body a {
  color: var(--blue2);
  text-decoration: none;
}
.contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--ink);
}
.contact-row + .contact-row {
  margin-top: 0.6rem;
}
.location-link {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.location-link:hover {
  color: var(--blue2);
}
.location-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.03em;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  text-decoration: none;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.social-link:hover {
  border-color: rgba(74, 127, 212, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 127, 212, 0.12);
}
.social-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.contact-icon-btns {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}
.contact-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 42px;
  height: 42px;
  padding: 0.65rem 0.5rem;
  border-radius: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--blue2);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.contact-icon-btn:hover {
  border-color: rgba(74, 127, 212, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 127, 212, 0.12);
}
.contact-icon-btn i {
  font-size: 1.1rem;
  color: var(--blue);
}
.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  padding: 0.55rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition:
    background 0.2s,
    transform 0.15s;
  margin-top: 0.25rem;
}
.map-btn:hover {
  background: var(--blue2);
  transform: translateY(-1px);
}
.map-section {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.map-section.open {
  max-height: 560px;
}
.map-section-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 2rem 2.5rem;
}
.map-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.map-section-header span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.map-close-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: inherit;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.map-close-btn:hover {
  border-color: var(--red);
  color: var(--red);
}
.map-embed {
  width: 100%;
  height: 380px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-open-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}
.map-open-link:hover {
  text-decoration: underline;
}
.fi {
  font-size: 1.1rem;
}

/* ─── TOOLTIPS ─── */
.social-links,
.contact-icon-btns {
  overflow: visible;
}
.social-link,
.contact-icon-btn,
.map-btn {
  position: relative;
}
.tip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  min-width: 170px;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.5;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.2s;
  z-index: 200;
  box-shadow: 0 6px 20px rgba(10, 22, 40, 0.22);
}
.tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--ink);
}
.tip.tip-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  transition:
    opacity 0.18s,
    transform 0.18s;
}
.tip-handle {
  display: block;
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
}
.tip-copy-icon {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
  cursor: pointer;
  padding: 0.2rem 0 0;
  transition: color 0.15s;
  user-select: none;
}
.tip-copy-icon:hover {
  color: rgba(255, 255, 255, 0.9);
}
.tip-muted {
  font-size: 0.68rem;
  color: inherit;
}

/* ─── ABOUT ─── */
.about-bg-section {
  background: var(--ink);
  position: relative;
  border-top: none !important;
}
.about-bg-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  overflow: hidden;
  z-index: 0;
}
.about-bg-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-bg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 28, 0.82);
  z-index: 1;
}
.about-bg-section .section-inner {
  position: relative;
  z-index: 2;
}
.about-bg-section .section-eyebrow {
  background: rgba(74, 127, 212, 0.18);
  border-color: rgba(74, 127, 212, 0.35);
  color: rgba(145, 185, 255, 0.95);
}
.about-bg-section .section-title {
  color: #fff;
}
.about-bg-section .section-sub {
  color: rgba(255, 255, 255, 0.58);
}
.about-bg-section .about-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.about-bg-section .about-tag {
  color: rgba(145, 185, 255, 0.9);
  border-color: rgba(145, 185, 255, 0.3);
}
.about-bg-section .about-card h3 {
  color: #fff;
}
.about-bg-section .about-card p {
  color: rgba(255, 255, 255, 0.62);
}
.about-bg-section .services-label {
  color: rgba(255, 255, 255, 0.38);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.about-tag {
  display: inline-block;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue2);
  border: 1px solid rgba(74, 127, 212, 0.28);
  border-radius: 99px;
  padding: 0.22rem 0.75rem;
  margin-bottom: 1rem;
}
.about-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.7rem;
  line-height: 1.4;
}
.about-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.85;
}

.services-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.services-img-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.service-item {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}
.service-item img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  padding: 0.5rem;
}
.service-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

/* ─── VISION & MISSION ─── */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.vm-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}
.vm-vision {
  border-top: 3px solid var(--blue);
}
.vm-mission {
  border-top: 3px solid var(--red);
}
.vm-card-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}
.vm-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.vm-icon.blue {
  background: rgba(74, 127, 212, 0.1);
}
.vm-icon.red {
  background: rgba(224, 32, 32, 0.09);
}
.vm-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
}
.vm-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.vm-card ul li {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  padding-left: 1.4rem;
  position: relative;
}
.vm-vision ul li::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.vm-mission ul li::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

/* ─── PILLARS ─── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  transition:
    border-color 0.22s,
    box-shadow 0.22s,
    transform 0.22s;
}
.pillar-card:hover {
  border-color: rgba(74, 127, 212, 0.38);
  box-shadow: 0 8px 28px rgba(74, 127, 212, 0.12);
  transform: translateY(-4px);
}
.pillar-img-wrap {
  height: 160px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  overflow: hidden;
}
.pillar-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.35s;
}
.pillar-card:hover .pillar-img-wrap img {
  transform: scale(1.06);
}
.pillar-card-body {
  padding: 1rem 1.25rem 1.35rem;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.pillar-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

/* ─── PRODUCTS ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.22s,
    box-shadow 0.22s,
    transform 0.22s;
}
.product-card:hover {
  border-color: rgba(74, 127, 212, 0.38);
  box-shadow: 0 8px 28px rgba(74, 127, 212, 0.1);
  transform: translateY(-4px);
}
.product-img-wrap {
  height: 200px;
  background: var(--bg-alt);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s;
  display: block;
}
.product-img-wrap--contain {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.product-img-wrap--contain img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}
.product-card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-sector {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(224, 32, 32, 0.07);
  border-radius: 99px;
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}
.product-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.product-desc {
  font-size: 0.8rem;
  color: var(--faint);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.product-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.product-list li {
  font-size: 0.8rem;
  color: var(--blue2);
  padding-left: 1rem;
  position: relative;
}
.product-list li::before {
  content: "·";
  position: absolute;
  left: 0.2rem;
  color: var(--red);
  font-weight: 700;
}

/* ─── TIMELINE ─── */
.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 2.25rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--red));
  border-radius: 2px;
}
.tl-item {
  position: relative;
  padding: 0 0 2.25rem 1.25rem;
}
.tl-item:last-child {
  padding-bottom: 0;
}
.tl-item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0.32rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--blue);
  box-shadow: 0 0 0 3px rgba(74, 127, 212, 0.12);
}
.tl-item:last-child::before {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(224, 32, 32, 0.1);
}
.tl-year {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 0.28rem;
  text-transform: uppercase;
}
.tl-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.38rem;
  line-height: 1.35;
}
.tl-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 680px;
}

/* ─── NOTIFY BANNER ─── */
.notify-section {
  padding: 0 2rem 5rem;
}
.notify-inner {
  max-width: 960px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(224, 32, 32, 0.06) 0%,
    rgba(74, 127, 212, 0.04) 100%
  );
  border: 1px solid rgba(224, 32, 32, 0.18);
  border-radius: 18px;
  padding: 2.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.notify-text h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.notify-text p {
  font-size: 0.85rem;
  color: var(--faint);
}
.notify-form {
  display: flex;
  gap: 0.65rem;
}
.notify-form input {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 1.1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: var(--ink);
  outline: none;
  min-width: 230px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.notify-form input::placeholder {
  color: var(--faint);
}
.notify-form input:focus {
  border-color: rgba(74, 127, 212, 0.5);
  box-shadow: 0 0 0 3px rgba(74, 127, 212, 0.1);
}
.notify-form button {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.7rem 1.5rem;
  font-family: "Syne", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}
.notify-form button:hover {
  background: var(--red2);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(224, 32, 32, 0.3);
}

/* ─── FOOTER ─── */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
footer p {
  font-size: 0.82rem;
  color: var(--faint);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--blue);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid   { grid-template-columns: 1fr; }
  .vm-grid      { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 2.1rem; }
  .logo img { height: 36px; }
  .products-grid, .pillars-grid { grid-template-columns: 1fr 1fr; }
  .notify-inner { flex-direction: column; }
  .notify-form { width: 100%; flex-direction: column; }
  .notify-form input { min-width: 0; width: 100%; }
  footer { flex-direction: column; text-align: center; }
}
@media (max-width: 400px) {
  .products-grid, .pillars-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .badge-dot { animation: none; }
  .contact-card, .pillar-card, .product-card, .pill { transition: none; }
}

/* ─── SCROLL HINT ─── */
.scroll-hint {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 1;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.scroll-hint.hidden { opacity: 0; }
.scroll-hint span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
}
.scroll-hint-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(0, 0, 0, 0.35);
  border-bottom: 2px solid rgba(0, 0, 0, 0.35);
  transform: rotate(45deg);
  animation: scroll-bounce 1.4s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 1; }
  50%       { transform: rotate(45deg) translate(4px, 4px); opacity: 0.4; }
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(10, 22, 40, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.navbar-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.navbar-logo img {
  height: 30px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.5rem);
  list-style: none;
}
.navbar-links a {
  position: relative;
  padding-bottom: 0.3rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.navbar-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}
.navbar-links a:hover {
  color: #fff;
}
.navbar-links a:hover::after {
  transform: scaleX(1);
}
.navbar-links a.active {
  color: #fff;
}
.navbar-links a.active::after {
  background: var(--blue);
  transform: scaleX(1);
}
@media (max-width: 600px) {
  .navbar-links { display: none; }
  .navbar { padding: 0 1.25rem; }
}

/* ─── FLOATING CARD ─── */
.floating-card {
  position: fixed;
  top: 68px;
  z-index: 200;
  width: 80%;
  background: rgba(10, 22, 40, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}
.fc-logo img {
  height: 34px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}
.fc-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
.fc-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.fc-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.fc-title span { color: var(--blue); }
.fc-subtitle {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: #fff;
  line-height: 1.6;
}

/* ─── HERO IMAGE GRID ─── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  flex: none;
  min-height: unset;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px;
  gap: 1.07vw;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.31fr 1.31fr 1.31fr 1.31fr 1.31fr 1.31fr 1fr 1fr 1fr 1.19fr;
  grid-template-rows: repeat(4, 6vw);
  column-gap: 1.07vw;
  row-gap: 0.95vw;
  width: 90%;
  flex-shrink: 0;
  will-change: transform;
}
.hero-grid .cell {
  overflow: hidden;
  min-height: 0;
  position: relative;
  border-radius: 6px;
  transition: transform 0.1s ease;
  will-change: auto;
}
.hero-grid .cell:hover {
  transform: scale(1.05);
  z-index: 10;
}
.hero-grid .cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-grid .c11 { z-index: 2; }
.hero-grid .c1  { grid-area: 1/1/3/2; }
.hero-grid .c2  { grid-area: 1/2/3/3; }
.hero-grid .c3  { grid-area: 1/3/2/4; }
.hero-grid .c4  { grid-area: 1/4/3/5; }
.hero-grid .c5  { grid-area: 1/5/3/6; }
.hero-grid .c6  { grid-area: 1/6/2/7; }
.hero-grid .c7  { grid-area: 1/7/2/10; }
.hero-grid .c8  { grid-area: 1/10/4/11; }
.hero-grid .c9  { grid-area: 2/3/3/4; }
.hero-grid .c10 { grid-area: 2/6/3/7; }
.hero-grid .c11 { grid-area: 2/7/4/8; }
.hero-grid .c12 { grid-area: 2/8/4/9; }
.hero-grid .c13 { grid-area: 2/9/4/10; }
.hero-grid .c14 { grid-area: 3/1/5/2; }
.hero-grid .c15 { grid-area: 3/2/5/4; }
.hero-grid .c16 { grid-area: 3/4/5/5; }
.hero-grid .c17 { grid-area: 3/5/5/6; }
.hero-grid .c18 { grid-area: 3/6/5/8; }
.hero-grid .c19 { grid-area: 4/8/5/11; }

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  pointer-events: none;
  visibility: hidden;
}
.lightbox.active,
.lightbox.closing {
  pointer-events: all;
  visibility: visible;
}
.lightbox-img {
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 10px;
  object-fit: contain;
  cursor: default;
  transform-origin: center center;
  will-change: transform, opacity;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.6);
}
