/* ═══════════════════════════════════════════
   NETSYS TECHNOLOGIES — style.css
   Modern, clean, professional
════════════════════════════════════════════ */

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

:root {
  --blue:       #0099D4;
  --blue-dark:  #0077AA;
  --blue-light: #E8F7FF;
  --blue-glow:  rgba(0,153,212,0.18);
  --solar:      #F9C74F;
  --solar-dark: #E5A800;
  --red:        #D62828;
  --green:      #06D6A0;
  --text:       #1A2233;
  --text-2:     #4B5563;
  --text-3:     #9CA3AF;
  --bg:         #FFFFFF;
  --bg-light:   #F7F9FC;
  --border:     #E5E7EB;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.12);
  --radius:     14px;
  --radius-lg:  20px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Sections ── */
.section { padding: 100px 0; }
.bg-light { background: var(--bg-light); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  margin: 0.5rem 0 1rem;
  line-height: 1.2;
}

.section-header p {
  color: var(--text-2);
  font-size: 1.05rem;
}

.section-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}

.section-tag.light {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(0,153,212,0.35);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,153,212,0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  border: 2px solid var(--blue);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-secondary:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,0.45);
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all var(--transition);
  text-decoration: none;
}
.btn-outline-hero:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ── LOGO IMAGE ── */
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Logo has white bg — show as-is on light navbar */
}

.logo-img-footer {
  height: 44px;
  /* On dark footer bg, invert to make logo visible */
  filter: brightness(0) invert(1);
}
.footer-logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.02em;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.navbar.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.97);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
}
.logo-text strong { font-weight: 800; color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--text-2);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover {
  color: var(--blue);
  background: var(--blue-light);
}

.nav-cta { flex-shrink: 0; }

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--blue);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1.2rem;
  border-radius: 100px;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(0,153,212,0.3);
}
.btn-call:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 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); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fb 50%, #f7fafc 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 70% 40%, rgba(0,153,212,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 20% 80%, rgba(249,199,79,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.highlight {
  color: var(--blue);
  position: relative;
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--solar));
  border-radius: 2px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* ── Fire Protection Cards (hero) ── */
.hero-fire-row {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.fire-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #fff;
  border: 1.5px solid rgba(214,40,40,0.2);
  border-left: 4px solid var(--red);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  flex: 1 1 260px;
  box-shadow: 0 2px 12px rgba(214,40,40,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.fire-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(214,40,40,0.15);
}

.fire-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(214,40,40,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fire-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
}

.fire-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.fire-card-text strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.fire-card-text span {
  font-size: 0.75rem;
  color: var(--text-2);
  line-height: 1.4;
}

/* ── Hero unified grid ── */
.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 0.65rem;
  margin-top: 1.8rem;
  width: 100%;
  box-sizing: border-box;
}

/* every 3rd card → full width */
.hero-grid > .hgcard:nth-child(3n) {
  grid-column: 1 / -1;
}

.hgcard {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  min-width: 0;
  box-sizing: border-box;
  transition: transform var(--transition), box-shadow var(--transition);
}
.hgcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}

.hgcard-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hgcard-icon svg {
  width: 22px;
  height: 22px;
}
.hgcard-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hgcard-text strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.hgcard-text span {
  font-size: 0.75rem;
  color: var(--text-2);
  line-height: 1.4;
}

/* color accents */
.hgcard-red    { border-left: 4px solid #DC2626; }
.hgcard-red    .hgcard-icon { background: rgba(220,38,38,0.08); }
.hgcard-red    .hgcard-icon svg { stroke: #DC2626; }

.hgcard-blue   { border-left: 4px solid #0099D4; }
.hgcard-blue   .hgcard-icon { background: rgba(0,153,212,0.1); }

.hgcard-purple { border-left: 4px solid #9333EA; }
.hgcard-purple .hgcard-icon { background: rgba(147,51,234,0.1); }

.hgcard-rose   { border-left: 4px solid #E11D48; }
.hgcard-rose   .hgcard-icon { background: rgba(225,29,72,0.1); }

.hgcard-teal   { border-left: 4px solid #0D9488; }
.hgcard-teal   .hgcard-icon { background: rgba(13,148,136,0.1); }

.hgcard-orange { border-left: 4px solid #F77F00; }
.hgcard-orange .hgcard-icon { background: rgba(247,127,0,0.1); }

.hgcard-solar  { border-left: 4px solid #E5A020; }
.hgcard-solar  .hgcard-icon { background: rgba(229,160,32,0.1); }

/* ── Service chips (mini-cards staggered) ── */
.svc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.8rem;
}

.svc-chip {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.07);
  border-radius: 12px;
  padding: 0.6rem 1rem 0.6rem 0.7rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.svc-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.11);
}

/* stagger: every even card drops down */
.svc-chip:nth-child(even) { margin-top: 18px; }

.svc-chip-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.svc-chip-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.svc-chip-text strong {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.svc-chip-text span {
  font-size: 0.72rem;
  color: var(--text-2);
  line-height: 1.3;
}

/* per-color accents */
.svc-blue   { border-left: 4px solid #0099D4; }
.svc-blue   .svc-chip-icon { background: rgba(0,153,212,0.1); }

.svc-purple { border-left: 4px solid #9333EA; }
.svc-purple .svc-chip-icon { background: rgba(147,51,234,0.1); }

.svc-rose   { border-left: 4px solid #DC2626; }
.svc-rose   .svc-chip-icon { background: rgba(220,38,38,0.1); }

.svc-teal   { border-left: 4px solid #0D9488; }
.svc-teal   .svc-chip-icon { background: rgba(13,148,136,0.1); }

.svc-orange { border-left: 4px solid #F77F00; }
.svc-orange .svc-chip-icon { background: rgba(247,127,0,0.1); }

.svc-indigo { border-left: 4px solid #4F46E5; }
.svc-indigo .svc-chip-icon { background: rgba(79,70,229,0.1); }

.svc-solar  { border-left: 4px solid #E5A020; }
.svc-solar  .svc-chip-icon { background: rgba(229,160,32,0.1); }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  border-radius: 2px;
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--blue);
  padding: 2rem 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 3rem;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: color-mix(in srgb, var(--clr) 12%, white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--clr);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.card-link:hover { gap: 0.5rem; }

/* ── SOLAR SECTION ── */
.solar-section {
  background: linear-gradient(135deg, #0d1b2a 0%, #162032 50%, #0d1b2a 100%);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.solar-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249,199,79,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.solar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.solar-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin: 0.75rem 0 1.25rem;
  line-height: 1.2;
}

.solar-text > p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.solar-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.solar-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.solar-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Solar Visual */
.solar-visual {
  display: flex;
  justify-content: center;
}

.solar-card-big {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(249,199,79,0.25);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
  backdrop-filter: blur(12px);
}

.solar-icon-big {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.solar-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 2rem;
}

.panel {
  height: 60px;
  background: linear-gradient(135deg, #1a3a5c 0%, #0d2238 100%);
  border-radius: 6px;
  border: 1px solid rgba(249,199,79,0.2);
  position: relative;
  overflow: hidden;
}

.panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249,199,79,0.15) 0%, transparent 50%);
}

.solar-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.s-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.s-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--solar);
}

.s-lbl {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.2rem;
  line-height: 1.3;
}

/* ── PRODUCTS GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
  box-sizing: border-box;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.product-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.5;
}

/* ── Brands Divider ── */
.brands-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0 2rem;
}

.brands-divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  border-radius: 2px;
  opacity: 0.35;
}

.brands-divider-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
  padding: 0.3rem 0.9rem;
  background: rgba(214,40,40,0.06);
  border: 1px solid rgba(214,40,40,0.2);
  border-radius: 100px;
}

.brands-divider-label svg { opacity: 0.8; }

/* ── Brands Section ── */
.brands-section {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.brand-row:last-child { border-bottom: none; }
.brand-row:hover { background: var(--bg-light); }

.brand-row-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 230px;
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.brand-cat-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bclite);
  color: var(--bc);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  border: 1.5px solid color-mix(in srgb, var(--bc) 20%, white);
  letter-spacing: 0.01em;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.brand-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--bc) 25%, transparent);
}

.bc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bc);
  flex-shrink: 0;
  opacity: 0.85;
}

/* Responsive brands (old chip layout kept for fallback) */
@media (max-width: 768px) {
  .brand-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
  }
  .brand-row-label { min-width: unset; }
}

/* ── Brands New Logo Layout ── */
.brands-section-new {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}

.brand-category {
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
  transition: background var(--transition);
}

.brand-category:last-child { border-bottom: none; }
.brand-category:hover { background: var(--bg-light); }

.bcat-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-3);
  margin-bottom: 0.85rem;
}

.bcat-icon { font-size: 1rem; }

.brand-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.brand-logo-card {
  background: #F2F4F7;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.5rem 0.85rem;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
}

.brand-logo-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(0,153,212,0.12);
  transform: translateY(-2px);
}

.brand-logo-card img {
  height: 36px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  display: block;
}

@media (max-width: 600px) {
  .brand-category { padding: 0.85rem 1rem; }
  .brand-logo-card { height: 46px; padding: 0.4rem 0.7rem; }
  .brand-logo-card img { height: 30px; max-width: 80px; }
  .brand-logos-row { gap: 0.5rem; }
}

/* ── Products CTA ── */
.products-cta {
  text-align: center;
  padding: 2.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.products-cta p {
  color: var(--text-2);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

/* ── AUTORIZAȚII ── */
.auth-section {
  margin-top: 4rem;
  padding-top: 3.5rem;
  border-top: 2px dashed var(--border);
}

.auth-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.auth-header svg {
  width: 36px;
  height: 36px;
  stroke: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.auth-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.auth-header p {
  font-size: 0.875rem;
  color: var(--text-2);
}

.auth-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.auth-domain {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.auth-domain:hover { box-shadow: var(--shadow); }

.auth-domain-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: color-mix(in srgb, var(--aclr) 8%, white);
  border-bottom: 2px solid color-mix(in srgb, var(--aclr) 25%, white);
  flex-wrap: wrap;
}

.auth-domain-header svg {
  width: 20px;
  height: 20px;
  stroke: var(--aclr);
  flex-shrink: 0;
}

.auth-domain-header > span:nth-child(2) {
  font-size: 1rem;
  font-weight: 800;
  color: var(--aclr);
  letter-spacing: -0.01em;
}

.auth-domain-sub {
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  color: var(--text-2) !important;
  width: 100%;
  margin-top: -0.25rem;
  padding-left: calc(20px + 0.75rem);
  letter-spacing: 0 !important;
}

.auth-docs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
}

/* Doc card — placeholder state */
.auth-doc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 110px;
  min-height: 110px;
  border: 2px dashed var(--border);
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  padding: 0.75rem 0.5rem;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  cursor: pointer;
  background: var(--bg-light);
}

.auth-doc-card:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateY(-3px);
}

.auth-doc-card svg {
  width: 28px;
  height: 28px;
  stroke: var(--text-3);
  transition: stroke var(--transition);
}

.auth-doc-card:hover svg { stroke: var(--blue); }

.doc-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.doc-hint {
  font-size: 0.68rem;
  color: var(--text-3);
  font-style: italic;
}

/* When a real file is linked — remove dashed look */
.auth-doc-card:not(.auth-doc-placeholder) {
  border-style: solid;
  border-color: color-mix(in srgb, var(--blue) 30%, white);
  background: var(--blue-light);
}

.auth-doc-card:not(.auth-doc-placeholder) .doc-hint { display: none; }
.auth-doc-card:not(.auth-doc-placeholder) svg { stroke: var(--blue); }

/* ── PDF thumbnail (auto-generat de WordPress) ── */
.doc-pdf-thumb {
  width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  background: #f5f5f5;
}

@media (max-width: 768px) {
  .auth-grid { grid-template-columns: 1fr; }
  .auth-doc-card { width: 100px; min-height: 100px; }
}

/* ── WHY NETSYS ── */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.why-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  margin: 0.75rem 0 1.25rem;
  line-height: 1.2;
}

.why-text > p {
  color: var(--text-2);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.why-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue);
}

.why-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.why-item p {
  font-size: 0.85rem;
  color: var(--text-2);
}

/* Trust cards */
.why-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 2rem;
}

.trust-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.trust-icon {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.trust-card blockquote {
  font-size: 0.9rem;
  color: var(--text-2);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.trust-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-3);
}

.certif-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.certif-badge {
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  border: 1px solid rgba(0,153,212,0.2);
}

/* ── PORTFOLIO ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.porto-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.porto-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.porto-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

/* Portfolio image placeholders with gradients (replace with real photos) */
.porto-img-1 { background: linear-gradient(135deg, #0d2238 0%, #0099D4 100%); }
.porto-img-2 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%); }
.porto-img-3 { background: linear-gradient(135deg, #1a2e0d 0%, #f9c74f 100%); }
.porto-img-4 { background: linear-gradient(135deg, #2e0d0d 0%, #D62828 100%); }
.porto-img-5 { background: linear-gradient(135deg, #0d1a2e 0%, #0099D4 80%, #06D6A0 100%); }
.porto-img-6 { background: linear-gradient(135deg, #1a2e0d 0%, #2d5a1b 60%, #f9c74f 100%); }

.porto-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}

.porto-tag {
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
}

.porto-info {
  padding: 1.25rem 1.5rem;
}

.porto-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.porto-info p {
  font-size: 0.8rem;
  color: var(--text-2);
}

/* ── Porto zoom icon ── */
.porto-zoom {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.2s;
}
.porto-card.has-lightbox:hover .porto-zoom { opacity: 1; }
.porto-card.has-lightbox:hover .porto-img { transform: scale(1.03); }
.porto-img { transition: transform 0.35s; }

/* ── LIGHTBOX ── */
.netsys-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.netsys-lightbox.lb-open {
  opacity: 1;
  pointer-events: auto;
}

.lb-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: calc(100vw - 140px);
  max-height: 100vh;
  padding: 1rem 0;
}

.lb-img {
  max-width: 100%;
  max-height: calc(100vh - 140px);
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: opacity 0.2s;
}
.lb-img.lb-loading { opacity: 0.3; }

.lb-caption {
  margin-top: 0.85rem;
  text-align: center;
  color: rgba(255,255,255,0.9);
  max-width: 500px;
}
.lb-caption strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.lb-caption span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.lb-dots {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.85rem;
}
.lb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.lb-dot.active {
  background: #fff;
  transform: scale(1.3);
}

.lb-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.lb-close:hover { background: rgba(255,255,255,0.25); }

.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.lb-arrow:hover { background: rgba(255,255,255,0.25); }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }

@media (max-width: 600px) {
  .lb-content { max-width: calc(100vw - 80px); padding: 0.5rem; }
  .lb-arrow { width: 38px; height: 38px; }
  .lb-prev { left: 0.4rem; }
  .lb-next { right: 0.4rem; }
}

/* ── PORTFOLIO PAGE ── */
.porto-page {
  padding: 110px 0 80px;
  min-height: 100vh;
  background: var(--bg-light);
}
.porto-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: gap var(--transition);
}
.porto-back:hover { gap: 0.7rem; }

.porto-page-header {
  margin-bottom: 2.5rem;
}
.porto-page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  margin: 0.5rem 0 0.75rem;
}
.porto-page-desc {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 640px;
}

.porto-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px,100%), 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

/* Galerie din the_content() — grid automat */
.porto-content-gallery {
  margin-bottom: 3rem;
}
.porto-content-gallery figure { margin: 0; }
.porto-content-gallery .wp-block-gallery,
.porto-content-gallery .blocks-gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(min(260px,100%), 1fr)) !important;
  gap: 1rem !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.porto-content-gallery .wp-block-gallery .wp-block-image,
.porto-content-gallery .blocks-gallery-grid li {
  margin: 0 !important;
}
.porto-content-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  cursor: pointer;
  transition: transform 0.3s, opacity 0.2s;
}
.porto-content-gallery img:hover { transform: scale(1.02); opacity: .92; }
.porto-content-gallery .wp-block-image { margin-bottom: 0 !important; }
.porto-content-gallery figcaption { display: none; }
.porto-gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--border);
}
.porto-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
  display: block;
}
.porto-gallery-item:hover img { transform: scale(1.05); }

.porto-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.25s;
}
.porto-gallery-item:hover .porto-gallery-overlay { background: rgba(0,0,0,0.35); }
.porto-gallery-overlay svg { opacity: 0; transform: scale(0.8); transition: opacity 0.25s, transform 0.25s; }
.porto-gallery-item:hover .porto-gallery-overlay svg { opacity: 1; transform: scale(1); }

.lb-counter {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  margin-top: 0.4rem;
}

.porto-page-cta {
  text-align: center;
  padding: 2.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-top: 4rem;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.porto-page-cta p {
  color: var(--text-2);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

/* ── CONTACT ── */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
}

.ci-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-3);
  margin-bottom: 0.2rem;
}

.ci-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

a.ci-val:hover { color: var(--blue); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 0.5rem;
}

/* Contact Form */
.contact-form,
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px var(--blue-glow);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA3AF' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: 0.75rem;
}

.form-success {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6,214,160,0.1);
  border: 1px solid rgba(6,214,160,0.3);
  border-radius: 10px;
  padding: 0.85rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #047857;
  margin-top: 1rem;
}

.form-success.show { display: flex; }

.form-success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 5rem 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-inner h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.cta-inner p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cta-btns .btn-primary {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.cta-btns .btn-primary:hover { background: #f0f8ff; }

/* ── FOOTER ── */
.footer {
  background: #0d1b2a;
  padding: 5rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.6fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer-brand .logo-text { color: #fff; }

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  margin: 1rem 0 1.5rem;
  max-width: 260px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), color var(--transition);
}
.social-links a:hover { background: var(--blue); color: #fff; }
.social-links svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer-col ul a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}
.whatsapp-float svg { width: 28px; height: 28px; }

/* ── AOS (scroll reveal) ── */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .solar-inner, .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .solar-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  /* ── Prevent any section from creating horizontal overflow ── */
  section, .section, .stats-bar, .solar-section, .cta-banner, footer {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .nav-links, .nav-cta { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    padding: 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 999;
  }

  .nav-links.open a {
    padding: 0.7rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
  }

  .hamburger { display: flex; }

  .hero { padding: 100px 0 60px; min-height: auto; overflow: hidden; }
  .hero-inner { text-align: center; width: 100%; box-sizing: border-box; }
  .hero-title { font-size: clamp(2rem, 7vw, 3rem); }
  .hero-sub { margin-left: auto; margin-right: auto; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-fire-row { flex-direction: column; }
  .fire-card { flex: 1 1 100%; }
  .svc-chip:nth-child(even) { margin-top: 0; }
  .svc-chips { gap: 0.5rem; }
  .logo-img { height: 40px; }

  /* hero grid → 1 coloana pe mobil */
  .hero-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    overflow: hidden;
  }
  .hero-grid > .hgcard { grid-column: auto !important; width: 100% !important; box-sizing: border-box; }
  .hgcard { text-align: left; }

  /* produse → 1 coloana pe mobil */
  .products-grid {
    grid-template-columns: 1fr !important;
  }

  .stats-inner { gap: 0; }
  .stat-item { padding: 0.75rem 1.5rem; }
  .stat-divider { display: none; }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }

  .portfolio-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .contact-form { padding: 1.75rem 1.25rem; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); display: grid; }
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
}
