/* ===========================
   EKOS GREEN – Custom Styles
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #00a759;
  --green-light: #00d474;
  --green-dim:   #007a42;
  --dark:        #0a1a0c;
  --darker:      #060f07;
  --card-bg:     #0f2112;
  --border:      rgba(0, 167, 89, 0.18);
  --text:        #edf6f1;
  --text-muted:  rgba(237, 246, 241, 0.60);
  --radius:      14px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--darker);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: min(1200px, 90%);
  margin-inline: auto;
}

/* ── Utility ──────────────────────────────────────── */
.text-green   { color: var(--green); }
.text-muted   { color: var(--text-muted); }
.fw-600       { font-weight: 600; }
.section-gap  { padding-block: 96px; }
.section-gap-sm { padding-block: 64px; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s 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; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 24px rgba(0, 167, 89, 0.35);
}
.btn-primary:hover {
  background: var(--green-light);
  box-shadow: 0 6px 32px rgba(0, 167, 89, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 167, 89, 0.3);
}

.btn-ghost {
  background: rgba(0,167,89,0.10);
  color: var(--green);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: rgba(0,167,89,0.20);
  transform: translateY(-2px);
}

/* ── Section Label ────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

/* ── NAVBAR ───────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  padding: 12px 0;
  background: rgba(6, 15, 7, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
}
.nav-logo-text {
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.1;
}
.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-family: 'Lexend', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.07);
}
.nav-links a.active {
  color: var(--green);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--darker);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: 'Lexend', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 12px 32px;
  border-radius: 12px;
  width: 260px;
  text-align: center;
  transition: var(--transition);
}
.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--green);
  background: rgba(0,167,89,0.08);
}
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}
.mobile-menu-close:hover { color: #fff; }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0, 167, 89, 0.12) 0%, transparent 65%),
              radial-gradient(ellipse 50% 50% at 15% 80%, rgba(0, 167, 89, 0.07) 0%, transparent 60%),
              linear-gradient(160deg, #0a1a0c 0%, #060f07 60%, #071209 100%);
  z-index: 0;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,167,89,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,167,89,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 40%, transparent 100%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-block: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,167,89,0.12);
  border: 1px solid rgba(0,167,89,0.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  color: var(--green);
  font-weight: 700;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: var(--green);
  font-family: 'Lexend', sans-serif;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-wrap {
  position: relative;
}
.hero-image-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(0,167,89,0.2) 0%, transparent 65%);
  z-index: 0;
  border-radius: 50%;
}
.hero-image-frame {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 2/3;
  max-height: 560px;
  border: 1px solid rgba(0,167,89,0.2);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,167,89,0.1);
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hero-image-frame:hover img {
  transform: scale(1.04);
}

.hero-floating-card {
  position: absolute;
  bottom: 32px;
  left: -32px;
  background: rgba(10, 26, 12, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.hero-floating-card .icon {
  width: 40px; height: 40px;
  background: rgba(0,167,89,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero-floating-card .card-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: 'Lexend', sans-serif;
}
.hero-floating-card .card-value {
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-family: 'Lexend', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: scroll-anim 1.8s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.4); opacity: 0.3; }
}

/* ── INFO STRIP ───────────────────────────────────── */
.info-strip {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 0;
}

.info-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.info-item:last-child { border-right: none; }
.info-item:hover { background: rgba(0,167,89,0.05); }

.info-icon {
  width: 42px; height: 42px;
  background: rgba(0,167,89,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.info-item:hover .info-icon {
  background: rgba(0,167,89,0.2);
}

.info-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Lexend', sans-serif;
  margin-bottom: 2px;
}
.info-value {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}
.info-value a { transition: var(--transition); }
.info-value a:hover { color: var(--green); }

/* ── WHY EKOS GREEN ───────────────────────────────── */
.why-section {
  background: var(--dark);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image-stack {
  position: relative;
}
.why-img-main {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.why-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-stat-card {
  position: absolute;
  top: 40px;
  right: -28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.why-stat-card .stat-num {
  font-family: 'Lexend', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.why-stat-card .stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}

.why-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
  color: #fff;
}
.why-content > p {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 1rem;
  line-height: 1.75;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: rgba(0,167,89,0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: var(--transition);
}
.feature-item:hover {
  background: rgba(0,167,89,0.09);
  border-color: rgba(0,167,89,0.3);
  transform: translateX(4px);
}
.feature-check {
  width: 28px; height: 28px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 2px;
}
.feature-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.feature-text p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── QUOTE SECTION ────────────────────────────────── */
.quote-section {
  background: var(--darker);
}
.quote-card {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
  padding: 64px 48px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.quote-card::before {
  content: '"';
  position: absolute;
  top: -20px; left: 24px;
  font-size: 12rem;
  line-height: 1;
  color: rgba(0,167,89,0.06);
  font-family: Georgia, serif;
}
.quote-text {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.8;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.quote-author {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  color: var(--green);
  font-size: 0.9rem;
}

/* ── CTA SECTION ──────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #0a2a14 0%, #003d1a 50%, #0a2a14 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(0,167,89,0.15) 0%, transparent 70%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 16px;
}
.cta-inner p {
  color: rgba(237,246,241,0.7);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── PRODUCTS PAGE ────────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(160deg, #0a1a0c 0%, #060f07 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(0,167,89,0.1) 0%, transparent 60%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 16px;
}
.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin-inline: auto;
}

.products-section {
  background: var(--dark);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: rgba(0,167,89,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,167,89,0.15);
}

.product-img {
  aspect-ratio: 2/3;
  overflow: hidden;
  position: relative;
  max-height: 280px;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.06);
}
.product-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,26,12,0.7) 0%, transparent 50%);
}

.product-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(0,167,89,0.1);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.product-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.product-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: 'Lexend', sans-serif;
}
.product-badge svg {
  color: var(--green);
}

/* ── ABOUT PAGE ───────────────────────────────────── */
.about-story {
  background: var(--dark);
}
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #fff;
  margin-bottom: 20px;
}
.about-story-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

.milestones {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}
.milestone {
  display: flex;
  gap: 20px;
  padding-bottom: 28px;
  position: relative;
}
.milestone:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  width: 2px;
  height: calc(100% - 12px);
  background: var(--border);
}
.milestone-dot {
  width: 40px; height: 40px;
  background: rgba(0,167,89,0.12);
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--green);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.milestone-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.milestone-content p {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 2/3;
  max-height: 580px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.certifications {
  background: var(--darker);
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cert-card {
  padding: 32px 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
}
.cert-card:hover {
  border-color: rgba(0,167,89,0.3);
  transform: translateY(-4px);
}
.cert-icon {
  width: 56px; height: 56px;
  background: rgba(0,167,89,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
}
.cert-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.cert-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── CONTACT PAGE ─────────────────────────────────── */
.contact-section {
  background: var(--dark);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info-panel h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}
.contact-info-panel > p {
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: rgba(0,167,89,0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: var(--transition);
}
.contact-detail-item:hover {
  background: rgba(0,167,89,0.09);
}
.contact-detail-icon {
  width: 38px; height: 38px;
  background: rgba(0,167,89,0.12);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 0.7rem;
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.contact-detail-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.contact-detail-value a:hover { color: var(--green); }

/* Contact Form */
.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
}
.contact-form-wrap h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.contact-form-wrap > p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(237,246,241,0.3);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  background: rgba(0,167,89,0.05);
  box-shadow: 0 0 0 3px rgba(0,167,89,0.12);
}
.form-group textarea { min-height: 130px; }
.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success .success-icon {
  width: 60px; height: 60px;
  background: rgba(0,167,89,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--green);
}
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--text-muted); font-size: 0.9rem; }

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background: var(--darker);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo img {
  width: 40px; height: 40px;
  object-fit: contain;
}
.footer-logo-name {
  font-family: 'Lexend', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 8px;
}
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: 'Lexend', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--green); }
.footer-links a::before {
  content: '›';
  color: var(--green);
  font-size: 1rem;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-contact-list li svg,
.footer-contact-list li .fi {
  color: var(--green);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--green); }
.footer-bottom a:hover { text-decoration: underline; }

/* ── SCROLL TO TOP ────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--green);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,167,89,0.4);
}
#scrollTop.visible {
  opacity: 1;
  transform: translateY(0);
}
#scrollTop:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-image-wrap { display: none; }
  .why-inner { grid-template-columns: 1fr; }
  .why-image-stack { display: none; }
  .info-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .info-item:nth-child(2) { border-right: none; }
  .info-item:nth-child(3) { border-top: 1px solid var(--border); }
  .about-story-inner { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .section-gap { padding-block: 64px; }
  .hero-floating-card { display: none; }
}

@media (max-width: 540px) {
  .products-grid { grid-template-columns: 1fr; }
  .info-strip-inner { grid-template-columns: 1fr; }
  .info-item { border-right: none; border-bottom: 1px solid var(--border); }
  .contact-form-wrap { padding: 28px 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
