/* ═══════════════════════════════════════════════════
   GE-TECH POWER CONTROLS - Main Stylesheet
   ═══════════════════════════════════════════════════ */

:root {
  --navy: #0A1628;
  --navy-mid: #0F2040;
  --steel: #1E3A5F;
  --green: #00C853;
  --green-dim: #00a844;
  --white: #F8F9FA;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --red: #E53935;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: #1a1a2e; overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,0.95); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,200,83,0.15);
  padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon { width: 38px; height: 38px; }
.nav-logo-text { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--white); line-height: 1; }
.nav-logo-text span { color: var(--green); }
.nav-logo-sub { font-size: 0.55rem; color: var(--gray); letter-spacing: 0.05em; text-transform: uppercase; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: rgba(248,249,250,0.75); font-size: 0.85rem; font-weight: 500; text-decoration: none; letter-spacing: 0.03em; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-cta { background: var(--green); color: var(--navy); font-size: 0.8rem; font-weight: 700; padding: 0.5rem 1.2rem; border-radius: 4px; text-decoration: none; letter-spacing: 0.05em; transition: background 0.2s; }
.nav-cta:hover { background: var(--green-dim); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(10,22,40,0.98); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  color: var(--white); font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem; font-weight: 700; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.05em; transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--green); }

/* ── HERO ── */
.hero {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 64px;
}
.hero-circuit {
  position: absolute; inset: 0; opacity: 0.06;
  background-image:
    linear-gradient(rgba(0,200,83,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,83,1) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}
@keyframes gridShift { from { background-position: 0 0; } to { background-position: 60px 60px; } }
.hero-glow {
  position: absolute; top: 20%; left: -10%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,200,83,0.12) 0%, transparent 70%); pointer-events: none;
}
.hero-glow2 {
  position: absolute; bottom: -10%; right: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,58,95,0.8) 0%, transparent 70%); pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-badge { display: inline-block; background: rgba(0,200,83,0.1); border: 1px solid rgba(0,200,83,0.3); color: var(--green); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.35rem 0.9rem; border-radius: 2px; margin-bottom: 1.5rem; }
.hero h1 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(2.8rem, 5vw, 4.8rem); line-height: 0.95; color: var(--white); text-transform: uppercase; margin-bottom: 1.5rem; }
.hero h1 .accent { color: var(--green); }
.hero-desc { color: rgba(248,249,250,0.65); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { background: var(--green); color: var(--navy); font-weight: 700; font-size: 0.9rem; padding: 0.9rem 2rem; border-radius: 4px; text-decoration: none; letter-spacing: 0.05em; transition: all 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--green-dim); transform: translateY(-1px); }
.btn-outline { border: 1px solid rgba(248,249,250,0.3); color: var(--white); font-weight: 500; font-size: 0.9rem; padding: 0.9rem 2rem; border-radius: 4px; text-decoration: none; transition: all 0.2s; display: inline-block; }
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.hero-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: rgba(0,200,83,0.1); border: 1px solid rgba(0,200,83,0.15); border-radius: 8px; overflow: hidden; }
.stat-box { background: rgba(15,32,64,0.8); padding: 1.5rem; text-align: center; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 2.8rem; color: var(--green); line-height: 1; }
.stat-label { color: rgba(248,249,250,0.55); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.3rem; }
.hero-clients { margin-top: 1.5rem; }
.hero-clients p { color: rgba(248,249,250,0.4); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.75rem; }
.client-logos { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.client-logo { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); padding: 0.4rem 0.8rem; border-radius: 3px; font-size: 0.7rem; font-weight: 600; color: rgba(248,249,250,0.5); letter-spacing: 0.05em; }

/* ── SECTION COMMONS ── */
section { padding: 5rem 2rem; }
.section-max { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-bottom: 0.75rem; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1; color: var(--navy); text-transform: uppercase; margin-bottom: 1rem; }
.section-title.light { color: var(--white); }
.section-subtitle { color: var(--gray); font-size: 1rem; line-height: 1.7; max-width: 560px; }
.section-subtitle.light { color: rgba(248,249,250,0.6); }

/* ── ABOUT STRIP ── */
.about-strip { background: var(--steel); padding: 3rem 2rem; }
.about-strip-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: center; }
.about-strip h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 2.2rem; color: var(--white); text-transform: uppercase; line-height: 1.1; }
.about-strip h2 span { color: var(--green); }
.about-strip p { color: rgba(248,249,250,0.7); font-size: 0.95rem; line-height: 1.75; }
.about-vals { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 1.5rem; }
.val-item { display: flex; align-items: center; gap: 0.5rem; color: rgba(248,249,250,0.85); font-size: 0.85rem; font-weight: 500; }
.val-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; flex-shrink: 0; }

/* ── SERVICES ── */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5px; background: var(--gray-light); border: 1.5px solid var(--gray-light); margin-top: 3rem; }
.service-card { background: var(--white); padding: 2rem; position: relative; transition: all 0.25s; cursor: default; overflow: hidden; }
.service-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: transparent; transition: background 0.25s; }
.service-card:hover::before { background: var(--green); }
.service-card:hover { background: #f0fdf4; }
.service-icon { width: 42px; height: 42px; background: rgba(0,200,83,0.08); border: 1px solid rgba(0,200,83,0.2); border-radius: 6px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; font-size: 1.2rem; }
.service-card h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--navy); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ── PRODUCTS ── */
.products { background: var(--navy); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin-top: 3rem; }
.product-card { background: rgba(30,58,95,0.5); border: 1px solid rgba(0,200,83,0.1); border-radius: 6px; padding: 1.5rem 1.2rem; transition: all 0.25s; }
.product-card:hover { background: rgba(30,58,95,0.9); border-color: rgba(0,200,83,0.4); transform: translateY(-3px); }
.product-tag { background: rgba(0,200,83,0.1); color: var(--green); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 2px; display: inline-block; margin-bottom: 0.8rem; }
.product-card h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.05rem; text-transform: uppercase; color: var(--white); line-height: 1.2; }
.product-card a { text-decoration: none; display: block; }
.product-card .prod-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--green); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.8rem;
  text-decoration: none; transition: gap 0.2s;
}
.product-card:hover .prod-link { gap: 0.65rem; }

/* ── INDUSTRIES ── */
.industries { background: var(--white); }
.industries-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; margin-top: 3rem; }
.industry-card { background: var(--navy); border-radius: 6px; padding: 1.5rem 1rem; text-align: center; transition: all 0.25s; }
.industry-card:hover { background: var(--steel); transform: translateY(-3px); }
.industry-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.industry-card p { color: rgba(248,249,250,0.85); font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.3; }

/* ── PROCESS ── */
.process { background: #f3f4f6; }
.process-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; margin-top: 3rem; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 2.2rem; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--green), var(--green-dim)); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; padding: 0 0.5rem; }
.step-circle { width: 44px; height: 44px; background: var(--navy); border: 2px solid var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.1rem; }
.process-step h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; color: var(--navy); margin-bottom: 0.4rem; letter-spacing: 0.05em; }
.process-step p { font-size: 0.75rem; color: var(--gray); line-height: 1.5; }

/* ── PROJECTS ── */
.projects { background: var(--navy-mid); }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.project-card { background: rgba(10,22,40,0.7); border: 1px solid rgba(0,200,83,0.1); border-radius: 8px; padding: 1.8rem; transition: border-color 0.25s; }
.project-card:hover { border-color: rgba(0,200,83,0.4); }
.project-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 2.5rem; color: rgba(0,200,83,0.15); line-height: 1; margin-bottom: 0.75rem; }
.project-card h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; }
.project-detail { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.8rem; }
.project-detail:last-child { border-bottom: none; }
.detail-label { color: rgba(248,249,250,0.4); font-weight: 500; }
.detail-val { color: rgba(248,249,250,0.8); text-align: right; max-width: 55%; }

/* ── CLIENTS ── */
.clients-section { background: var(--white); }
.clients-marquee { overflow: hidden; position: relative; margin: 2.5rem 0; }
.clients-marquee::before, .clients-marquee::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; }
.clients-marquee::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.clients-marquee::after { right: 0; background: linear-gradient(-90deg, var(--white), transparent); }
.clients-track { display: flex; gap: 1.5rem; animation: scroll 25s linear infinite; width: max-content; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.client-chip { background: var(--white); border: 1.5px solid var(--gray-light); padding: 0.6rem 1.5rem; border-radius: 4px; font-size: 0.85rem; font-weight: 700; color: var(--navy); white-space: nowrap; letter-spacing: 0.03em; }
.partners-section { margin-top: 3rem; }
.partners-section h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.2rem; text-transform: uppercase; color: var(--navy); margin-bottom: 1.5rem; }
.partners-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.partner-card { border: 1.5px solid var(--gray-light); border-radius: 8px; padding: 1.5rem; }
.partner-name { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 0.5rem; }
.partner-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.6; }

/* ── CERTIFICATIONS ── */
.certifications { background: #f3f4f6; }
.certs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; margin-top: 3rem; }
.cert-card { background: var(--white); border: 1.5px solid var(--gray-light); border-radius: 8px; padding: 1.5rem 1rem; text-align: center; }
.cert-badge { width: 48px; height: 48px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; font-size: 1.1rem; }
.cert-card h4 { font-weight: 700; font-size: 0.85rem; color: var(--navy); margin-bottom: 0.25rem; }
.cert-card p { font-size: 0.75rem; color: var(--gray); line-height: 1.4; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--navy); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card { background: rgba(30,58,95,0.5); border: 1px solid rgba(0,200,83,0.1); border-radius: 8px; padding: 2rem; }
.testimonial-card blockquote { font-size: 0.9rem; color: rgba(248,249,250,0.8); line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-card blockquote::before { content: '\201C'; font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; color: var(--green); opacity: 0.4; line-height: 0.5; display: block; margin-bottom: 0.5rem; }
.testimonial-author { color: rgba(248,249,250,0.5); font-size: 0.8rem; font-weight: 500; }

/* ── CTA ── */
.cta-section { background: var(--green); padding: 5rem 2rem; }
.cta-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.cta-section h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(2rem, 4vw, 3.5rem); text-transform: uppercase; color: var(--navy); line-height: 1; margin-bottom: 1rem; }
.cta-section p { color: rgba(10,22,40,0.7); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-dark { background: var(--navy); color: var(--white); font-weight: 700; font-size: 0.9rem; padding: 0.9rem 2rem; border-radius: 4px; text-decoration: none; letter-spacing: 0.05em; transition: background 0.2s; }
.btn-dark:hover { background: var(--navy-mid); }
.btn-ghost { border: 2px solid var(--navy); color: var(--navy); font-weight: 600; font-size: 0.9rem; padding: 0.9rem 2rem; border-radius: 4px; text-decoration: none; transition: all 0.2s; }
.btn-ghost:hover { background: rgba(10,22,40,0.1); }

/* ── CONTACT ── */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; }
.contact-info h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.5rem; text-transform: uppercase; color: var(--navy); margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start; }
.contact-item-icon { width: 40px; height: 40px; background: rgba(0,200,83,0.08); border: 1px solid rgba(0,200,83,0.2); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-item-text { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }
.contact-item-text strong { display: block; color: var(--navy); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.25rem; }
.contact-form { background: #f9fafb; border: 1.5px solid var(--gray-light); border-radius: 8px; padding: 2rem; }
.contact-form h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.3rem; text-transform: uppercase; color: var(--navy); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--navy); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.7rem 1rem; border: 1.5px solid var(--gray-light); border-radius: 4px; font-size: 0.9rem; font-family: 'Inter', sans-serif; background: var(--white); color: var(--navy); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; background: var(--navy); color: var(--white); border: none; padding: 0.9rem; border-radius: 4px; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.05em; cursor: pointer; transition: background 0.2s; font-family: 'Inter', sans-serif; }
.form-submit:hover { background: var(--steel); }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 3rem 2rem 1.5rem; }
.footer-main { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: rgba(248,249,250,0.5); font-size: 0.85rem; line-height: 1.7; margin-top: 1rem; max-width: 300px; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(248,249,250,0.5); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: rgba(248,249,250,0.3); font-size: 0.8rem; }
.footer-tagline { color: var(--green); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── WHATSAPP BUTTON ── */
.wa-float {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 9999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem;
}
.wa-tooltip {
  background: var(--navy); color: var(--white); font-size: 0.78rem; font-weight: 500;
  padding: 0.5rem 0.9rem; border-radius: 6px; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  opacity: 0; transform: translateX(10px); transition: all 0.25s;
  pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
.wa-btn {
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
  animation: waPulse 3s ease-in-out infinite;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.wa-btn svg { width: 30px; height: 30px; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ── MAPS ── */
.map-wrapper {
  margin-top: 2rem; border-radius: 10px; overflow: hidden;
  border: 2px solid var(--gray-light); height: 280px;
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── PRODUCT PAGE STYLES ── */
.page-hero {
  background: var(--navy); padding: 8rem 2rem 4rem; position: relative; overflow: hidden;
}
.page-hero .hero-circuit { position: absolute; inset: 0; opacity: 0.04; background-image: linear-gradient(rgba(0,200,83,1) 1px, transparent 1px), linear-gradient(90deg, rgba(0,200,83,1) 1px, transparent 1px); background-size: 60px 60px; }
.page-hero-content { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; margin-bottom: 1.5rem; }
.breadcrumb a { color: rgba(248,249,250,0.5); font-size: 0.8rem; text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: rgba(248,249,250,0.3); font-size: 0.8rem; }
.breadcrumb .current { color: var(--green); font-size: 0.8rem; font-weight: 600; }
.page-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(2.5rem, 4vw, 3.5rem); color: var(--white); text-transform: uppercase; line-height: 1; margin-bottom: 1rem; }
.page-hero .subtitle { color: rgba(248,249,250,0.6); font-size: 1rem; line-height: 1.7; max-width: 600px; }

/* Product Detail Content */
.product-detail-section { padding: 4rem 2rem; }
.product-detail-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; }
.product-detail-grid h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.8rem; color: var(--navy); text-transform: uppercase; margin-bottom: 1.5rem; }
.product-detail-grid h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--navy); text-transform: uppercase; margin: 2rem 0 1rem; }
.product-detail-grid p { color: var(--gray); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
.product-detail-grid .product-content ul { list-style: none; margin-bottom: 1.5rem; }
.product-detail-grid .product-content ul li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; color: var(--gray); font-size: 0.9rem; line-height: 1.6; }
.product-detail-grid .product-content ul li::before { content: ''; position: absolute; left: 0; top: 0.85rem; width: 8px; height: 8px; background: var(--green); border-radius: 50%; }

/* Product Sidebar */
.product-sidebar { position: sticky; top: 80px; }
.sidebar-card { background: #f9fafb; border: 1.5px solid var(--gray-light); border-radius: 8px; padding: 1.5rem; margin-bottom: 1.5rem; }
.sidebar-card h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; color: var(--navy); margin-bottom: 1rem; letter-spacing: 0.05em; }
.sidebar-card ul { list-style: none; }
.sidebar-card ul li { padding: 0.5rem 0; border-bottom: 1px solid var(--gray-light); }
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card ul li a { color: var(--gray); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; display: block; }
.sidebar-card ul li a:hover { color: var(--green); }
.sidebar-card ul li a.active { color: var(--green); font-weight: 600; }

/* Spec Table */
.spec-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.spec-table tr { border-bottom: 1px solid var(--gray-light); }
.spec-table td { padding: 0.75rem 0; font-size: 0.85rem; }
.spec-table td:first-child { color: var(--navy); font-weight: 600; width: 40%; }
.spec-table td:last-child { color: var(--gray); }

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(1.5);} }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .about-strip-inner { grid-template-columns: 1fr; gap: 2rem; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .testimonials-grid, .partners-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-sidebar { position: static; }
}
@media (max-width: 600px) {
  section { padding: 3.5rem 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
}
