/* ============================================
   PAXIS CERAMICS — Redesign 2026 v3
   Cyan accent + Red banners, Hexagon motifs
   ============================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
  --color-navy: #0A0F1C;
  --color-navy-light: #111827;
  --color-navy-mid: #1A2236;
  --color-dark: #060A14;
  --color-white: #FFFFFF;
  --color-off-white: #F4F5F7;
  --color-grey-100: #E8EAED;
  --color-grey-200: #D1D5DB;
  --color-grey-300: #9CA3AF;
  --color-grey-400: #6B7280;
  --color-red: #a41a17;
  --color-red-dark: #8a1513;
  --color-red-light: #c42d29;
  --color-red-glow: rgba(164, 26, 23, 0.15);
  --color-teal: #00BCD4;
  --color-teal-dark: #0097A7;
  --color-teal-glow: rgba(0, 188, 212, 0.15);
  --color-cyan-dark: #1d71b8;
  --color-blue-dark: #243e55;
  --color-blue: #27348b;
  --color-accent: #00BCD4;
  --color-accent-dark: #0097A7;
  --color-accent-glow: rgba(0, 188, 212, 0.15);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container-max: 1280px;
  --container-wide: 1440px;
  --header-height: 80px;
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-primary);
  color: var(--color-navy);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-base); }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}
.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Hexagon Decorative Motif --- */
.hex-motif {
  position: absolute;
  pointer-events: none;
  opacity: 0.04;
}
.hex-motif svg { width: 100%; height: 100%; }
.hex-motif-sm { width: 120px; height: 120px; }
.hex-motif-md { width: 240px; height: 240px; }
.hex-motif-lg { width: 400px; height: 400px; }
.hex-motif-xl { width: 600px; height: 600px; }
.hex-motif-red { opacity: 0.06; }
.hex-motif-red svg path { stroke: var(--color-red); }

.hex-pattern-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hex-pattern-bg::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='52' viewBox='0 0 60 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 1L56 14.5V39.5L30 51L4 39.5V14.5L30 1Z' fill='none' stroke='white' stroke-width='0.5' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 60px 52px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.8rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.3rem); }
p { font-size: 1.05rem; line-height: 1.7; color: var(--color-grey-400); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-teal);
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}
.site-header.scrolled {
  background: rgba(10, 15, 28, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 40px;
}
.site-logo img {
  height: 56px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-base);
  position: relative;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--color-white);
}
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-teal);
  border-radius: 1px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--color-teal);
  color: var(--color-white) !important;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background var(--transition-base), transform var(--transition-base);
}
.nav-cta:hover {
  background: var(--color-teal-dark);
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition-base);
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 15, 28, 0.88) 0%,
    rgba(10, 15, 28, 0.6) 50%,
    rgba(10, 15, 28, 0.4) 100%
  );
  z-index: 2;
}
.hero-hex-deco {
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 500px;
  height: 500px;
  z-index: 2;
  opacity: 0.06;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding-top: var(--header-height);
}
.hero h1 {
  color: var(--color-white);
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--color-teal); }
.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 12px;
}
.hero-indicators button {
  width: 40px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  transition: var(--transition-base);
}
.hero-indicators button.active {
  background: var(--color-teal);
  width: 60px;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-hint .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-teal), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all var(--transition-base);
  cursor: pointer;
}
.btn-primary {
  background: var(--color-teal);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 188, 212, 0.35);
}
.btn-red {
  background: var(--color-red);
  color: var(--color-white);
}
.btn-red:hover {
  background: var(--color-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(164, 26, 23, 0.35);
}
.btn-teal {
  background: var(--color-teal);
  color: var(--color-white);
}
.btn-teal:hover {
  background: var(--color-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 188, 212, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
}
.btn-dark {
  background: var(--color-navy);
  color: var(--color-white);
}
.btn-dark:hover {
  background: var(--color-navy-mid);
  transform: translateY(-2px);
}
.btn-arrow::after {
  content: '\2192';
  transition: transform var(--transition-base);
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--color-navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0;
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item .number {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 8px;
  white-space: nowrap;
}
.stat-item .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  white-space: nowrap;
}

/* --- Section Shared --- */
.section {
  padding: 120px 0;
  position: relative;
}
.section-dark {
  background: var(--color-navy);
  color: var(--color-white);
}
.section-dark p { color: rgba(255,255,255,0.6); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--color-white); }
.section-grey { background: var(--color-off-white); }
.section-red {
  background: var(--color-red);
  color: var(--color-white);
}
.section-red p { color: rgba(255,255,255,0.8); }
.section-red h2, .section-red h3, .section-red h4 { color: var(--color-white); }

.section-header {
  max-width: 640px;
  margin-bottom: 64px;
}
.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-header h2 { margin-bottom: 16px; }

/* --- Homepage: Capabilities / What We Offer (REDESIGNED) --- */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.offer-card {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}
.offer-card-bg {
  position: absolute;
  inset: 0;
}
.offer-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.offer-card:hover .offer-card-bg img {
  transform: scale(1.06);
}
.offer-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(10, 15, 28, 0.95) 0%,
    rgba(10, 15, 28, 0.6) 50%,
    rgba(10, 15, 28, 0.3) 100%
  );
  transition: background var(--transition-base);
}
.offer-card:hover .offer-card-overlay {
  background: linear-gradient(to top,
    rgba(10, 15, 28, 0.98) 0%,
    rgba(10, 15, 28, 0.5) 50%,
    rgba(10, 15, 28, 0.2) 100%
  );
}
.offer-card-content {
  position: relative;
  z-index: 2;
  padding: 40px 36px;
}
.offer-card-content .hex-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.offer-card-content .hex-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-teal);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0.25;
}
.offer-card-content .hex-icon svg {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
}
.offer-card h3 {
  color: var(--color-white);
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.offer-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.offer-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-teal);
  transition: gap var(--transition-base);
}
.offer-card .card-link:hover { gap: 10px; }
.offer-card-divider {
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}

/* --- Defense Sub-cards — Red background variant --- */
.defense-highlight {
  background: var(--color-off-white);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.defense-highlight .hex-pattern-bg::before {
  top: -50px;
  right: -50px;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='52' viewBox='0 0 60 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 1L56 14.5V39.5L30 51L4 39.5V14.5L30 1Z' fill='none' stroke='white' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 60px 52px;
  width: 400px;
  height: 400px;
}
.defense-subcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.defense-subcard {
  background: var(--color-white);
  border: 1px solid var(--color-grey-100);
  border-radius: 10px;
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-base);
}
.defense-subcard:hover {
  border-color: var(--color-teal);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.defense-subcard .icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.defense-subcard .icon-wrap svg {
  width: 56px;
  height: 56px;
}
.defense-subcard h4 {
  color: var(--color-navy);
  margin-bottom: 8px;
  font-size: 1.15rem;
}
.defense-subcard p {
  font-size: 0.9rem;
  color: var(--color-grey-400);
}

/* Dark variant for Technology page */
.defense-highlight-dark {
  background: var(--color-navy-mid);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.defense-highlight-dark .defense-subcard {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.defense-highlight-dark .defense-subcard:hover {
  background: rgba(0, 188, 212, 0.06);
  border-color: rgba(0, 188, 212, 0.2);
}

/* --- Capability Cards (Company page) --- */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.capability-card {
  position: relative;
  background: var(--color-white);
  border-radius: 12px;
  padding: 40px 32px;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 1px solid var(--color-grey-100);
}
.capability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-teal);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}
.capability-card:hover::before {
  transform: scaleX(1);
}
.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.capability-card .card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.capability-card .card-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-teal);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0.15;
}
.capability-card .card-icon svg {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
}
.capability-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: var(--color-navy);
}
.capability-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* --- Featured / Split Section --- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-content { padding: 20px 0; }
.split-content h2 { margin-bottom: 20px; }
.split-content p { margin-bottom: 24px; }
.split-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid rgba(0, 188, 212, 0.15);
  pointer-events: none;
}
.split-image .hex-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--color-teal);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0.8;
}

/* --- Technology Cards (REDESIGNED - more striking) --- */
.tech-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tech-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 0;
  border: 1px solid var(--color-grey-100);
  transition: all var(--transition-base);
  overflow: hidden;
}
.tech-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: transparent;
}
.tech-card-header {
  background: var(--color-navy);
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
}
.tech-card-header::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: var(--color-teal);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0.12;
}
.tech-card .card-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-teal);
  line-height: 1;
  margin-bottom: 10px;
}
.tech-card-header h4 {
  color: var(--color-white);
  font-size: 1.2rem;
}
.tech-card-body {
  padding: 28px;
}
.tech-card-body p {
  font-size: 0.92rem;
}
.tech-card-footer {
  padding: 0 28px 28px;
  border-top: 1px solid var(--color-grey-100);
  padding-top: 20px;
  margin: 0 28px;
  padding-left: 0;
  padding-right: 0;
}
.tech-card-footer a {
  color: var(--color-teal);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-base);
}
.tech-card-footer a:hover { gap: 10px; }

/* --- Product Gallery (full images, no crop) --- */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.product-gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--color-off-white);
  transition: transform var(--transition-slow);
}
.product-gallery-item.cover-fit img {
  height: 220px;
  object-fit: cover;
}
.product-gallery-item:hover img { transform: scale(1.04); }
.product-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,15,28,0.3), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.product-gallery-item:hover::after { opacity: 1; }

/* --- Partners / Logos --- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  align-items: center;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--color-white);
  border-radius: 10px;
  border: 1px solid var(--color-grey-100);
  height: 100px;
  transition: all var(--transition-base);
}
.partner-logo:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-color: var(--color-teal);
}
.partner-logo img {
  max-height: 50px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all var(--transition-base);
}
.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* --- Team / People --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--color-grey-100);
  transition: all var(--transition-base);
}
.team-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.team-card .avatar {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-teal);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.team-card h4 { margin-bottom: 4px; }
.team-card .role {
  font-size: 0.85rem;
  color: var(--color-teal);
  font-weight: 600;
  margin-bottom: 12px;
}
.team-card p { font-size: 0.88rem; }

/* --- Standards / Accreditations --- */
.standards-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.standard-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.standard-badge img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.standard-badge .name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-navy);
}

/* --- Contact Section --- */
.contact-section {
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: var(--color-teal);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0.04;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.contact-info-panel {
  padding-top: 22px;
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
}
.contact-info-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: border-color var(--transition-base);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--color-teal); }
.form-group textarea { min-height: 90px; resize: vertical; }

/* --- Industrial: Feature items with custom icons --- */
.features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 28px 20px;
  background: var(--color-white);
  border-radius: 12px;
  border: 1px solid var(--color-grey-100);
  transition: all var(--transition-base);
}
.feature-item:hover {
  border-color: var(--color-teal);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}
.feature-item .feat-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-teal-glow);
  border-radius: 12px;
}
.feature-item .feat-icon svg {
  width: 28px;
  height: 28px;
}
.feature-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-navy);
  font-weight: 600;
  line-height: 1.4;
}

/* --- Industrial: Materials showcase (UPGRADED) --- */
.materials-showcase {
  position: relative;
  overflow: hidden;
}
.materials-showcase::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: var(--color-red);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0.05;
}
.materials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.material-card {
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}
.material-card:first-child {
  background: var(--color-navy);
  border-right: 1px solid rgba(255,255,255,0.06);
}
.material-card:last-child {
  background: var(--color-navy-mid);
}
.material-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: var(--color-red);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0.08;
}
.material-card .mat-formula {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-teal);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.material-card h3 {
  color: var(--color-white);
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.material-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
}
.material-card .mat-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 6px 16px;
  background: rgba(0, 188, 212, 0.15);
  border: 1px solid rgba(0, 188, 212, 0.3);
  border-radius: 20px;
  color: var(--color-teal);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Industrial sub-sections --- */
.industrial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.industrial-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-navy);
  height: 300px;
}
.industrial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity var(--transition-base);
}
.industrial-card:hover img { opacity: 0.7; }
.industrial-card .overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(10,15,28,0.9), transparent);
}
.industrial-card .overlay-text h4 {
  color: var(--color-white);
  margin-bottom: 4px;
}
.industrial-card .overlay-text p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin: 0;
}

/* --- Footer --- */
.site-footer {
  background: var(--color-dark);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 320px;
}
.footer-col h5 {
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color var(--transition-base);
}
.footer-col a:hover { color: var(--color-teal); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-iso {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
}

/* --- Blog Page --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-grey-100);
  transition: all var(--transition-base);
}
.blog-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.blog-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}
.blog-card-image .blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  background: var(--color-teal);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
}
.blog-card-body {
  padding: 28px;
}
.blog-card-meta {
  font-size: 0.8rem;
  color: var(--color-grey-300);
  margin-bottom: 12px;
  display: flex;
  gap: 16px;
}
.blog-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--color-navy);
  line-height: 1.3;
}
.blog-card-body h3 a:hover { color: var(--color-teal); }
.blog-card-body p {
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.blog-card-body .read-more {
  color: var(--color-teal);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-base);
}
.blog-card-body .read-more:hover { gap: 10px; }

.blog-sidebar {
  position: sticky;
  top: 100px;
}
.blog-sidebar-section {
  margin-bottom: 40px;
}
.blog-sidebar-section h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-teal);
}
.blog-sidebar-section ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-grey-100);
}
.blog-sidebar-section ul li a {
  font-size: 0.9rem;
  color: var(--color-grey-400);
  transition: color var(--transition-base);
}
.blog-sidebar-section ul li a:hover { color: var(--color-teal); }

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 64px;
}
.blog-pagination a,
.blog-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--color-grey-100);
  color: var(--color-grey-400);
  transition: all var(--transition-base);
}
.blog-pagination a:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
}
.blog-pagination .active {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
}

/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Inner Page Hero --- */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  background: var(--color-navy);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 32, 44, 0.72);
  z-index: 0;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: var(--color-teal);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0.04;
  z-index: 1;
}
.page-hero > .container,
.page-hero > .defense-highlight-dark {
  position: relative;
  z-index: 1;
}
.page-hero h1 { color: var(--color-white); margin-bottom: 16px; }
.page-hero h1 .accent { color: var(--color-white); }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 560px; font-size: 1.15rem; }
.page-hero .defense-subcard:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(0,188,212,0.4) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
}
.breadcrumb a { color: rgba(255,255,255,0.4); }
.breadcrumb a:hover { color: var(--color-teal); }
.breadcrumb span { color: rgba(255,255,255,0.6); }

/* --- Content blocks --- */
.content-block { padding: 100px 0; }
.content-block + .content-block { padding-top: 0; }
.content-block h3 { color: var(--color-navy); margin-bottom: 16px; }
.content-block p { max-width: 720px; margin-bottom: 16px; }

/* --- Mobile Nav Overlay --- */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 15, 28, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav-overlay a {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  transition: color var(--transition-base);
}
.mobile-nav-overlay a:hover { color: var(--color-teal); }
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.8rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .container, .container-wide, .header-inner { padding: 0 24px; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { min-height: 360px; }
  .offer-card-divider { display: none; }
  .capabilities-grid,
  .tech-cards,
  .defense-subcards { grid-template-columns: repeat(2, 1fr); }
  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .split-section.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .product-gallery { grid-template-columns: repeat(3, 1fr); }
  .industrial-grid { grid-template-columns: 1fr; }
  .materials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .features-list { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }
  .section { padding: 80px 0; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero { min-height: 90vh; }
  .hero-content { padding-top: 100px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .capabilities-grid,
  .tech-cards,
  .defense-subcards,
  .team-grid,
  .blog-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-gallery { grid-template-columns: repeat(2, 1fr); }
  .features-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .section-header { margin-bottom: 40px; }
  .scroll-hint { display: none; }
  .page-hero { padding: 140px 0 60px; }
  .defense-highlight { padding: 48px 0; }
  .material-card { padding: 40px 28px; }
}

@media (max-width: 480px) {
  .container, .container-wide, .header-inner { padding: 0 16px; }
  h1 { font-size: 2.2rem; }
  .section { padding: 60px 0; }
  .product-gallery { grid-template-columns: 1fr 1fr; gap: 8px; }
  .partner-logo { height: 72px; padding: 12px; }
  .partner-logo img { max-height: 36px; }
}
