/* =========================================================
   EPITOME DEFENCE PVT LTD — Master Stylesheet
   Corporate defence aesthetic | Navy + EDPL Blue accents
   ========================================================= */

:root {
  --navy-900: #0a1628;
  --navy-800: #0f1f3a;
  --navy-700: #15294a;
  --navy-600: #1d3461;
  --steel:    #2a3f5f;
  --steel-light: #5a6d8a;
  --edpl-blue: #1e6dff;
  --edpl-blue-dark: #1554cc;
  --edpl-accent: #2e7eff;
  --white: #ffffff;
  --off-white: #f5f7fa;
  --gray-100: #eef1f5;
  --gray-200: #dde3eb;
  --gray-400: #a8b3c4;
  --gray-600: #5a6779;
  --gray-800: #2c3543;
  --gold: #c9a961;

  --ff-display: 'Oswald', 'Arial Narrow', sans-serif;
  --ff-body: 'Manrope', system-ui, sans-serif;

  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.25);

  --container: 1280px;
  --nav-height: 90px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.5px;
  color: var(--navy-900);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); text-transform: uppercase; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); text-transform: uppercase; }
h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); text-transform: uppercase; }
h4 { font-size: 1.2rem; text-transform: uppercase; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   TOP STRIP — utility bar
   ========================================================= */
.top-strip {
  background: var(--navy-900);
  color: var(--gray-400);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.top-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.top-strip-info { display: flex; gap: 24px; flex-wrap: wrap; }
.top-strip-info span { display: inline-flex; align-items: center; gap: 6px; }
.top-strip-info svg { width: 14px; height: 14px; color: var(--edpl-blue); }
.top-strip-meta { display: flex; gap: 18px; align-items: center; }
.top-strip-meta a:hover { color: var(--edpl-accent); }

/* =========================================================
   NAVIGATION — white bar to match logo
   ========================================================= */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(10, 22, 40, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--edpl-blue);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.navbar-logo img {
  height: 52px;
  width: auto;
}
.navbar-menu {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.navbar-menu a {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 18px;
  color: var(--navy-800);
  position: relative;
  transition: color 0.25s ease;
}
.navbar-menu a::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 2px;
  background: var(--edpl-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--edpl-blue);
}
.navbar-menu a:hover::after,
.navbar-menu a.active::after {
  transform: scaleX(1);
}
.navbar-cta {
  background: var(--edpl-blue);
  color: var(--white) !important;
  padding: 12px 26px !important;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
  margin-left: 12px;
}
.navbar-cta::after { display: none !important; }
.navbar-cta:hover {
  background: var(--navy-900);
  color: var(--white) !important;
}
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.navbar-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy-900);
  margin: 5px 0;
  transition: 0.3s;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0% 100%);
}
.btn-primary {
  background: var(--edpl-blue);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-900);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  clip-path: none;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy-900);
}
.btn-dark {
  background: var(--navy-900);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--edpl-blue);
}
.btn svg { width: 16px; height: 16px; }

/* =========================================================
   HERO SLIDER (homepage)
   ========================================================= */
.hero-slider {
  position: relative;
  height: calc(100vh - var(--nav-height) - 38px);
  min-height: 600px;
  overflow: hidden;
  background: var(--navy-900);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; z-index: 2; }
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.4) 50%, transparent 100%),
    radial-gradient(circle at 20% 50%, rgba(30, 109, 255, 0.18), transparent 60%);
}
.slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  color: var(--white);
}
.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-size: 0.95rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--edpl-accent);
  margin-bottom: 24px;
  max-width: max-content;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s 0.2s forwards;
}
.slide-tag::before {
  content: '';
  width: 50px;
  height: 2px;
  background: var(--edpl-accent);
}
.slide.active .slide-tag { opacity: 1; transform: translateY(0); }

.slide-title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  max-width: 800px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.9s 0.4s forwards;
}
.slide.active .slide-title { opacity: 1; transform: translateY(0); }

.slide-title em {
  font-style: normal;
  color: var(--edpl-accent);
  display: block;
}
.slide-desc {
  font-size: 1.1rem;
  max-width: 580px;
  color: var(--gray-200);
  line-height: 1.7;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.9s 0.6s forwards;
}
.slide.active .slide-desc { opacity: 1; transform: translateY(0); }

.slide-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.9s 0.8s forwards;
}
.slide.active .slide-actions { opacity: 1; transform: translateY(0); }

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
  max-width: var(--container);
  width: 100%;
  padding: 0 24px;
  justify-content: flex-end;
}
.slider-dot {
  width: 50px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.slider-dot.active { background: var(--edpl-blue); }

.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 5;
  pointer-events: none;
}
.slider-arrow {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease;
}
.slider-arrow:hover { background: var(--edpl-blue); border-color: var(--edpl-blue); }
.slider-arrow svg { width: 22px; height: 22px; }

/* Slider count badge */
.slide-counter {
  position: absolute;
  top: 50px;
  right: 50px;
  font-family: var(--ff-display);
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  letter-spacing: 2px;
  z-index: 5;
}
.slide-counter strong {
  font-size: 2.4rem;
  color: var(--white);
  font-weight: 600;
  display: inline-block;
  margin-right: 6px;
}

/* =========================================================
   SECTION WRAPPER
   ========================================================= */
section { padding: 100px 0; position: relative; }

.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head.left { text-align: left; margin-bottom: 50px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--edpl-blue);
  margin-bottom: 14px;
}
.section-tag::before, .section-tag::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--edpl-blue);
}
.section-head.left .section-tag::after { display: none; }
.section-head h2 {
  margin-bottom: 18px;
}
.section-head p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--gray-600);
  font-size: 1.05rem;
}
.section-head.left p { margin: 0; }

/* =========================================================
   CORE AREAS — product grid
   ========================================================= */
.core-areas {
  background: var(--off-white);
  position: relative;
}
.core-areas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 22, 40, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 22, 40, 0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.core-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 2;
}
.core-card {
  background: var(--white);
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  min-height: 360px;
}
.core-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--edpl-blue);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}
.core-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--edpl-blue);
}
.core-card:hover::before { transform: scaleY(1); }
.core-card:hover .core-icon { color: var(--edpl-blue); transform: scale(1.05); }
.core-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  color: var(--navy-900);
  transition: all 0.4s ease;
}
.core-icon svg { width: 100%; height: 100%; stroke-width: 1.2; }
.core-card h3 {
  margin-bottom: 14px;
  font-size: 1.3rem;
}
.core-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 22px;
  flex-grow: 1;
}
.core-link {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--edpl-blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}
.core-card:hover .core-link { gap: 14px; }

/* =========================================================
   ABOUT SNAPSHOT (home)
   ========================================================= */
.about-snap {
  background: var(--white);
}
.about-snap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-snap-visual {
  position: relative;
  height: 540px;
}
.about-snap-img {
  position: absolute;
  width: 80%;
  height: 80%;
  background-size: cover;
  background-position: center;
  top: 0;
  right: 0;
  box-shadow: var(--shadow-lg);
}
.about-snap-img-2 {
  position: absolute;
  width: 50%;
  height: 50%;
  background-size: cover;
  background-position: center;
  bottom: 0;
  left: 0;
  border: 8px solid var(--white);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.about-snap-accent {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 2px solid var(--edpl-blue);
  bottom: 20%;
  right: -20px;
  z-index: 0;
}
.about-snap-text h2 { margin-bottom: 24px; }
.about-snap-text > p {
  color: var(--gray-600);
  margin-bottom: 30px;
  font-size: 1.02rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 30px 0;
}
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--edpl-blue);
  flex-shrink: 0;
}
.about-feature-icon svg { width: 22px; height: 22px; }
.about-feature h4 { font-size: 1rem; margin-bottom: 4px; }
.about-feature p { font-size: 0.88rem; color: var(--gray-600); }

/* =========================================================
   STATS BAR
   ========================================================= */
.stats {
  background: var(--navy-900);
  color: var(--white);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, transparent 48%, rgba(30, 109, 255, 0.04) 49%, rgba(30, 109, 255, 0.04) 51%, transparent 52%);
  background-size: 30px 30px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}
.stat {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat:last-child { border-right: none; }
.stat-number {
  font-family: var(--ff-display);
  font-size: 3.6rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.stat-number span { color: var(--edpl-accent); }
.stat-label {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 14px;
}

/* =========================================================
   CAPABILITIES (home)
   ========================================================= */
.capabilities {
  background: var(--off-white);
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.cap-card {
  background: var(--white);
  padding: 36px 28px;
  border-top: 3px solid var(--edpl-blue);
  transition: transform 0.3s ease;
}
.cap-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.cap-num {
  font-family: var(--ff-display);
  font-size: 3rem;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 14px;
}
.cap-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.cap-card p { color: var(--gray-600); font-size: 0.95rem; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background:
    linear-gradient(90deg, rgba(10, 22, 40, 0.92), rgba(15, 31, 58, 0.75)),
    url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?w=1600') center/cover;
  color: var(--white);
  padding: 80px 0;
}
.cta-band .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { color: var(--gray-200); max-width: 500px; }

/* =========================================================
   PAGE HEADER (inner pages)
   ========================================================= */
.page-header {
  background:
    linear-gradient(120deg, rgba(10, 22, 40, 0.92), rgba(10, 22, 40, 0.55)),
    var(--page-header-bg, var(--navy-900)) center/cover;
  color: var(--white);
  padding: 130px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--off-white));
}
.page-header h1 {
  color: var(--white);
  max-width: 900px;
  font-weight: 700;
}
.page-header p {
  color: var(--gray-200);
  font-size: 1.1rem;
  max-width: 720px;
  margin-top: 16px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-family: var(--ff-display);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--edpl-accent);
}
.breadcrumb a:hover { color: var(--white); }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-intro {
  background: var(--white);
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}
.about-intro h2 { margin-bottom: 24px; }
.about-intro p {
  color: var(--gray-600);
  margin-bottom: 18px;
  font-size: 1.02rem;
}
.about-intro-visual {
  height: 500px;
  background:
    linear-gradient(135deg, rgba(10, 22, 40, 0.1), transparent),
    url('https://epitomedefence.com/assets/images/india-defence.webp') center/cover;
  position: relative;
}
.about-intro-visual::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 3px solid var(--edpl-blue);
  z-index: -1;
}

/* Mission + Vision */
.mission-vision {
  background: var(--off-white);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.mv-card {
  background: var(--white);
  padding: 50px 40px;
  border-left: 4px solid var(--edpl-blue);
  position: relative;
}
.mv-card:nth-child(2) {
  background: var(--navy-900);
  color: var(--white);
}
.mv-card:nth-child(2) h3 { color: var(--white); }
.mv-card:nth-child(2) p { color: var(--gray-200); }
.mv-icon {
  width: 64px;
  height: 64px;
  color: var(--edpl-blue);
  margin-bottom: 24px;
}
.mv-card h3 { font-size: 1.6rem; margin-bottom: 18px; }
.mv-card p { font-size: 1.02rem; line-height: 1.8; }

/* Values */
.values {
  background: var(--white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.value-card {
  padding: 30px 24px;
  text-align: center;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}
.value-card:hover {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}
.value-card:hover h4 { color: var(--white); }
.value-card:hover p { color: var(--gray-200); }
.value-card:hover .value-icon { color: var(--edpl-accent); }
.value-icon {
  width: 56px;
  height: 56px;
  color: var(--edpl-blue);
  margin: 0 auto 16px;
  transition: color 0.3s ease;
}
.value-card h4 { margin-bottom: 10px; font-size: 1.05rem; }
.value-card p { font-size: 0.9rem; color: var(--gray-600); }

/* Leadership */
.leadership { background: var(--off-white); }
.leader-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.leader-card {
  background: var(--white);
  padding: 0;
  overflow: hidden;
  transition: transform 0.3s ease;
  position: relative;
}
.leader-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.leader-photo {
  height: 320px;
  background-size: cover;
  background-position: center top;
  background-color: var(--navy-700);
  position: relative;
}
.leader-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.6), transparent 50%);
}
.leader-info {
  padding: 24px;
  border-top: 3px solid var(--edpl-blue);
}
.leader-info h4 { font-size: 1.1rem; margin-bottom: 4px; }
.leader-info .leader-role {
  font-family: var(--ff-display);
  font-size: 0.82rem;
  letter-spacing: 2px;
  color: var(--edpl-blue);
  text-transform: uppercase;
}

/* =========================================================
   PRODUCTS PAGE
   ========================================================= */
.products-intro { background: var(--white); padding-bottom: 40px; }
.products-intro-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.products-intro h2 { margin-bottom: 0; }
.products-intro p { color: var(--gray-600); font-size: 1.05rem; }

.product-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-200);
}
.product-section:nth-child(even) {
  background: var(--off-white);
}
.product-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.product-section:nth-child(even) .product-section-grid {
  direction: rtl;
}
.product-section:nth-child(even) .product-section-grid > * {
  direction: ltr;
}
.product-section-visual {
  position: relative;
  height: 440px;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-section-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 109, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 109, 255, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}
.product-section-illustration {
  width: 70%;
  max-width: 350px;
  color: var(--edpl-accent);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 20px rgba(30, 109, 255, 0.3));
}
.product-section-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.product-section-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.55), rgba(10, 22, 40, 0.25));
}
.product-section-number {
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: var(--ff-display);
  font-size: 7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  z-index: 3;
}
.product-section-text .section-tag { margin-bottom: 10px; }
.product-section-text h2 { margin-bottom: 20px; }
.product-section-text > p {
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.8;
}
.product-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 30px;
  margin-bottom: 30px;
}
.product-features-list li {
  display: flex;
  gap: 10px;
  align-items: start;
  font-size: 0.94rem;
  color: var(--gray-800);
}
.product-features-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--edpl-blue);
  margin-top: 9px;
  flex-shrink: 0;
  transform: rotate(45deg);
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-section {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-info h2 { margin-bottom: 18px; }
.contact-info > p {
  color: var(--gray-600);
  margin-bottom: 36px;
}
.contact-block {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-200);
}
.contact-block:last-of-type { border-bottom: none; }
.contact-block-icon {
  width: 52px;
  height: 52px;
  background: var(--navy-900);
  color: var(--edpl-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-block-icon svg { width: 22px; height: 22px; }
.contact-block-text h4 {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--edpl-blue);
  margin-bottom: 6px;
}
.contact-block-text p,
.contact-block-text a {
  color: var(--gray-800);
  font-size: 1rem;
  line-height: 1.6;
}
.contact-block-text a:hover { color: var(--edpl-blue); }

.contact-form {
  background: var(--off-white);
  padding: 50px;
  border-top: 4px solid var(--edpl-blue);
}
.contact-form h3 { margin-bottom: 8px; }
.contact-form > p {
  color: var(--gray-600);
  margin-bottom: 30px;
  font-size: 0.95rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-family: var(--ff-display);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--navy-900);
  transition: border-color 0.25s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--edpl-blue);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.map-wrap {
  background: var(--off-white);
  padding-top: 0;
  padding-bottom: 0;
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: grayscale(0.4) contrast(1.05);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--navy-900);
  color: var(--gray-400);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img {
  height: 60px;
  width: auto;
  background: var(--white);
  padding: 10px 16px;
  margin-bottom: 22px;
}
.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 22px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.footer-social a:hover { background: var(--edpl-blue); color: var(--white); }
.footer-social svg { width: 16px; height: 16px; }

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--edpl-blue);
  display: inline-block;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a {
  font-size: 0.92rem;
  transition: color 0.25s ease, padding 0.25s ease;
  display: inline-block;
}
.footer ul a:hover { color: var(--edpl-accent); padding-left: 6px; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--edpl-blue);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}
.footer-bottom a:hover { color: var(--edpl-accent); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .about-snap-grid,
  .about-intro-grid,
  .products-intro-grid,
  .product-section-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .product-section:nth-child(even) .product-section-grid { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 72px; }
  section { padding: 70px 0; }
  .top-strip { font-size: 0.75rem; }
  .top-strip-meta { display: none; }
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    box-shadow: var(--shadow-md);
    border-bottom: 3px solid var(--edpl-blue);
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }
  .navbar-menu.show { display: flex; }
  .navbar-menu li { width: 100%; }
  .navbar-menu li a { display: block; width: 100%; padding: 14px 24px; text-align: left; }
  .navbar-menu a::after { display: none; }
  .navbar-cta {
    clip-path: none;
    margin: 12px 24px 0;
    padding: 14px 24px !important;
    text-align: center;
    display: block;
    width: auto !important;
  }
  .navbar-toggle { display: block; }
  .navbar-logo img { height: 42px; }

  .hero-slider { height: calc(100vh - var(--nav-height)); min-height: 540px; }
  .slide-counter { display: none; }
  .slider-arrows { display: none; }
  .slider-controls { bottom: 24px; }

  .cap-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat { border-right: none !important; padding: 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-number { font-size: 2.6rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .product-features-list { grid-template-columns: 1fr; }
  .about-snap-visual { height: 360px; }
  .product-section-visual { height: 320px; }
  .about-intro-visual { height: 340px; }
}