/* ============================================
   TGS TECNOLOGIA - Enterprise Premium Design
   Colors: Navy #0B1F3F, Green #3EBD4E, Light BGs
   Fonts: Plus Jakarta Sans + DM Serif Display (accent)
   ============================================ */

:root {
  --navy: #0B1F3F;
  --navy-light: #1a3a6b;
  --green: #3EBD4E;
  --green-dark: #2da83c;
  --green-light: #e8f8ea;
  --bg-white: #ffffff;
  --bg-light: #f0f2f5;
  --bg-section: #f8f9fb;
  --text-dark: #0B1F3F;
  --text-body: #32373c;
  --text-muted: #6b7280;
  --border-light: #e2e5ea;
  --border-hover: #c8cdd4;
  --shadow-sm: 0 2px 8px rgba(11,31,63,0.06);
  --shadow-md: 0 8px 30px rgba(11,31,63,0.08);
  --shadow-lg: 0 20px 60px rgba(11,31,63,0.1);
  --shadow-xl: 0 30px 80px rgba(11,31,63,0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'DM Serif Display', serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--navy) var(--bg-light);
}
html::-webkit-scrollbar { width: 6px; }
html::-webkit-scrollbar-track { background: var(--bg-light); }
html::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 3px; }

body {
  font-family: var(--font);
  background: var(--bg-white);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ========================
   FOCUS-VISIBLE GLOBAL (3.3)
   ======================== */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
button:focus-visible,
.nav-link:focus-visible,
input:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

/* ========================
   SKIP LINK (3.4)
   ======================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 16px;
}

/* ========================
   SCROLL PROGRESS BAR (3.1)
   ======================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 1001;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  pointer-events: none;
}

/* ========================
   TEXT HIGHLIGHT (3.7 - Serif accent)
   ======================== */
.text-highlight {
  color: var(--green);
}
.text-highlight-light {
  color: var(--green);
}
.text-white { color: #fff; }
.text-white-muted { color: rgba(255,255,255,0.7); }

/* ========================
   NAVBAR
   ======================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s var(--ease-out);
  background: transparent;
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 42px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 6px;
}
.nav-link {
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}
.nav-link:hover {
  color: var(--navy);
  background: var(--bg-light);
}
/* 1.1 - Active nav link style */
.nav-link.active {
  color: var(--navy);
  background: var(--green-light);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================
   HERO
   ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--bg-white);
}

.hero-sunburst {
  position: absolute;
  top: -30%;
  left: -20%;
  width: 80%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(62,189,78,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11,31,63,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,31,63,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 30% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 30% 50%, black 20%, transparent 70%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px 8px 14px;
  border-radius: 100px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.badge-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Primary glow button + micro-interactions (3.2) */
.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  box-shadow: 0 4px 15px rgba(62,189,78,0.3);
}
.btn-primary-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(62,189,78,0.4);
}
.btn-primary-glow:hover::before { opacity: 1; }
.btn-primary-glow:active {
  transform: translateY(0) scale(0.98);
}
/* Ripple on active (3.2) */
.btn-primary-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.3) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0);
  transition: transform 0.5s, opacity 0.5s;
}
.btn-primary-glow:active::after {
  transform: scale(2.5);
  opacity: 1;
  transition: transform 0s, opacity 0s;
}
/* Arrow hover (3.2) */
.btn-arrow {
  transition: transform 0.4s var(--ease-spring);
}
.btn-primary-glow:hover .btn-arrow,
.btn-white:hover .btn-arrow {
  transform: translateX(4px);
}

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

/* White button (for dark sections) */
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: #fff;
  color: var(--navy);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.btn-white::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(62,189,78,0.15) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0);
  transition: transform 0.5s, opacity 0.5s;
}
.btn-white:active::after {
  transform: scale(2.5);
  opacity: 1;
  transition: transform 0s, opacity 0s;
}

/* Hero visual */
.hero-visual {
  position: relative;
}
.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-main-image {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
}
.hero-image-border {
  position: absolute;
  inset: -3px;
  border: 2px solid rgba(62,189,78,0.15);
  border-radius: calc(var(--radius-lg) + 3px);
  pointer-events: none;
}
.hero-sunburst-overlay {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  opacity: 0.08;
  pointer-events: none;
  z-index: -1;
}
.sunburst-img { width: 100%; height: 100%; }

/* Floating cards (2.6) */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  z-index: 3;
  white-space: nowrap;
}
.hero-float-card strong { color: var(--green); font-size: 1rem; }
.hero-float-card--top {
  top: 20px;
  left: -30px;
  animation: floatSoft 5s ease-in-out infinite;
}
.hero-float-card--bottom {
  bottom: 30px;
  right: -20px;
  animation: floatSoft 5s ease-in-out infinite 1.5s;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.4;
}
.scroll-line {
  width: 2px;
  height: 40px;
  background: var(--navy);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--green);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ========================
   TRUST / CLIENT LOGOS (2.1)
   ======================== */
.section-trust {
  padding: 48px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}
.trust-label {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.trust-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.trust-track {
  display: flex;
  gap: 24px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid #c8cdd3;
  background: #e8ecf0;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s;
  gap: 10px;
  min-width: 160px;
}
.trust-badge:hover {
  border-color: var(--green);
  background: #dfe3e8;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.trust-badge img {
  height: 76px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.trust-badge span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  text-align: center;
  white-space: normal;
  line-height: 1.3;
  max-width: 140px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================
   SECTIONS COMMON
   ======================== */
.section { padding: 100px 0; position: relative; }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green);
  margin-bottom: 14px;
}
.section-label-light { color: rgba(255,255,255,0.6); }

.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.section-heading.text-white { color: #fff; }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 550px;
}

.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-header .section-sub { margin: 0 auto; }

.section-cta { text-align: center; margin-top: 48px; }

.section-dots-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/pattern-dots.svg');
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
}

/* ========================
   ABOUT
   ======================== */
.section-about { background: var(--bg-section); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
}
.about-img-accent {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--green);
  border-radius: var(--radius-lg);
  opacity: 0.15;
  pointer-events: none;
}

.about-stat-card {
  position: absolute;
  bottom: -20px;
  right: -15px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  animation: floatSoft 5s ease-in-out infinite;
}
.stat-card-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-light);
  border-radius: 12px;
  flex-shrink: 0;
}
.stat-card-info strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
}
.stat-card-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-text {
  color: var(--text-body);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
/* 2.2 - Shadow hierarchy */
.about-feat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease-out);
}
.about-feat-item:hover {
  border-color: var(--green);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.feat-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(62,189,78,0.1);
  border-radius: 10px;
  color: var(--green);
  flex-shrink: 0;
}
.about-feat-item strong { display: block; font-size: 0.92rem; color: var(--navy); }
.about-feat-item span { font-size: 0.85rem; color: var(--text-muted); }

/* ========================
   SERVICES - Apple-style Scroll Reveal
   ======================== */
.section-services {
  background: var(--bg-section);
  position: relative;
  padding: 100px 0 60px;
}

.svc-sticky-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 20px;
}
.svc-sticky-header .section-sub {
  color: var(--text-muted);
  margin: 0 auto;
}

/* Scroll track - each card is a section */
.svc-scroll-track {
  position: relative;
}

.svc-scroll-card {
  padding: 24px 0;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.svc-scroll-card.svc-visible {
  opacity: 1;
  transform: translateY(0);
}

.svc-scroll-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px 48px;
  border-radius: var(--radius-xl);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.svc-scroll-inner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--navy), var(--green));
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s var(--ease-out);
}
.svc-scroll-card.svc-visible .svc-scroll-inner::before {
  transform: scaleY(1);
}

.svc-scroll-inner:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* Left side: number + icon */
.svc-scroll-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.svc-scroll-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--navy);
  opacity: 0.07;
  line-height: 1;
  letter-spacing: -2px;
  transition: opacity 0.4s;
}
.svc-scroll-card.svc-visible .svc-scroll-num {
  opacity: 0.07;
}
.svc-scroll-inner:hover .svc-scroll-num {
  opacity: 0.12;
}

.svc-scroll-icon-wrap {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-section));
  border: 1px solid var(--border-light);
  position: relative;
  transition: all 0.5s var(--ease-out);
  transform-style: preserve-3d;
}
.svc-scroll-icon-wrap::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 24px;
  border: 1px solid rgba(62,189,78,0.1);
  opacity: 0;
  transition: opacity 0.4s;
}
.svc-scroll-inner:hover .svc-scroll-icon-wrap {
  background: var(--navy);
  border-color: var(--navy);
  transform: scale(1.06) rotate(3deg);
  box-shadow: 0 12px 30px rgba(11,31,63,0.2);
}
.svc-scroll-inner:hover .svc-scroll-icon-wrap::after {
  opacity: 1;
}

.svc-scroll-icon {
  color: var(--navy);
  transition: color 0.4s;
}
.svc-scroll-inner:hover .svc-scroll-icon {
  color: #fff;
}

/* Accent variant icon */
.svc-scroll-icon-wrap--accent {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-color: var(--green);
}
.svc-scroll-icon-wrap--accent .svc-scroll-icon { color: #fff; }
.svc-scroll-inner:hover .svc-scroll-icon-wrap--accent {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-color: var(--green-dark);
  box-shadow: 0 12px 30px rgba(62,189,78,0.3);
}

/* Right side: content */
.svc-scroll-right h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.svc-scroll-right p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 560px;
}

/* Tags */
.svc-scroll-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.svc-scroll-tags span {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid var(--border-light);
  background: var(--bg-section);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: all 0.3s;
}
.svc-scroll-inner:hover .svc-scroll-tags span {
  border-color: rgba(62,189,78,0.2);
  background: var(--green-light);
  color: var(--green-dark);
}

/* Accent card (last card) */
.svc-scroll-card--accent .svc-scroll-inner {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-color: transparent;
}
.svc-scroll-card--accent .svc-scroll-inner::before {
  background: linear-gradient(180deg, var(--green), var(--green-dark));
}
.svc-scroll-card--accent .svc-scroll-num { color: #fff; opacity: 0.08; }
.svc-scroll-card--accent .svc-scroll-inner:hover .svc-scroll-num { opacity: 0.15; }
.svc-scroll-card--accent .svc-scroll-right h3 { color: #fff; }
.svc-scroll-card--accent .svc-scroll-right p { color: rgba(255,255,255,0.65); }
.svc-scroll-card--accent .svc-scroll-tags span {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
}
.svc-scroll-card--accent .svc-scroll-inner:hover .svc-scroll-tags span {
  border-color: rgba(62,189,78,0.3);
  background: rgba(62,189,78,0.15);
  color: var(--green);
}
.svc-scroll-card--accent .svc-scroll-inner:hover {
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(11,31,63,0.3);
}

.svc-bottom-cta {
  margin-top: 32px;
  padding-bottom: 20px;
}

/* ========================
   DIGITALIZAÇÃO DE ARQUIVOS
   ======================== */
.section-digitalizacao {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.digi-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Digi hero banner */
.digi-hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 48px;
}
.digi-hero-img {
  position: relative;
  height: 320px;
}
.digi-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
}
.digi-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,63,0.85) 0%, rgba(11,31,63,0.5) 60%, rgba(62,189,78,0.15) 100%);
}
.digi-hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px;
  z-index: 1;
}
.digi-heading { color: #fff; margin-bottom: 8px; }
.digi-sub { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 550px; }

.digi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.digi-card {
  padding: 28px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  transition: all 0.35s var(--ease-out);
  position: relative;
}
.digi-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(62,189,78,0.2);
  transform: translateY(-4px);
}
.digi-card-num {
  position: absolute;
  top: 16px; right: 18px;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(62,189,78,0.35);
  letter-spacing: 1px;
}
.digi-card-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(62,189,78,0.1);
  border-radius: 12px;
  color: var(--green);
  margin-bottom: 16px;
}
.digi-card h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.digi-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ========================
   PAPEL ZERO
   ======================== */
.section-papelzero {
  background: var(--bg-section);
}
.pz-group {
  margin-bottom: 56px;
}
.pz-group:last-child { margin-bottom: 0; }

/* Group header with image */
.pz-group-header {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}
.pz-group-img {
  position: relative;
  height: 200px;
}
.pz-group-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.pz-group-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,63,0.88) 0%, rgba(11,31,63,0.6) 50%, rgba(62,189,78,0.1) 100%);
}
.pz-group-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1;
}
.pz-group-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--green);
  color: #fff;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.pz-group-label h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.pz-group-label p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.pz-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pz-card {
  padding: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  transition: all 0.35s var(--ease-out);
  box-shadow: var(--shadow-sm);
}
.pz-card:hover {
  border-color: rgba(62,189,78,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pz-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--green);
}
.pz-card-header h4 {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--navy);
}
.pz-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================
   NUVGOV FOR EDUCATION
   ======================== */
.section-nuvgov {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.nuvgov-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.3;
}
.nuvgov-glow-1 {
  width: 500px; height: 500px;
  background: rgba(62,189,78,0.12);
  top: -200px; right: -100px;
  animation: glowDrift 10s ease-in-out infinite alternate;
}
.nuvgov-glow-2 {
  width: 400px; height: 400px;
  background: rgba(62,189,78,0.08);
  bottom: -150px; left: -100px;
  animation: glowDrift 12s ease-in-out infinite alternate-reverse;
}
.nuvgov-heading { color: #fff; }
.nuvgov-sub { color: rgba(255,255,255,0.55); max-width: 700px; margin-left: auto; margin-right: auto; }

/* NuvGov hero image */
.nuvgov-hero-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  height: 300px;
}
.nuvgov-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
}
.nuvgov-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,31,63,0.3) 0%, rgba(11,31,63,0.7) 100%);
  mix-blend-mode: multiply;
}

/* Highlight pills */
.nuvgov-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}
.nuvgov-pill {
  padding: 8px 18px;
  background: rgba(62,189,78,0.08);
  border: 1px solid rgba(62,189,78,0.15);
  border-radius: 100px;
  color: rgba(62,189,78,0.9);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Tabs */
.nuvgov-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.nuvgov-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.nuvgov-tab:hover {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
}
.nuvgov-tab.active {
  background: rgba(62,189,78,0.12);
  border-color: rgba(62,189,78,0.3);
  color: var(--green);
}

/* Panels */
.nuvgov-panel {
  display: none;
}
.nuvgov-panel.active {
  display: block;
  animation: fadeInUp 0.4s ease-out;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Panel layout: image + info side by side */
.nuvgov-panel-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.nuvgov-panel-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 380px;
}
.nuvgov-panel-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.nuvgov-panel-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,63,0.4) 0%, rgba(62,189,78,0.08) 100%);
}
.nuvgov-panel-info h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.nuvgov-panel-info > p {
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.nuvgov-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.nuvgov-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.83rem;
  font-weight: 500;
  transition: all 0.3s;
}
.nuvgov-feat:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(62,189,78,0.2);
}
.nuvgov-feat svg {
  color: var(--green);
  flex-shrink: 0;
}

/* NuvGov light button variant */
.btn-glow-light {
  background: var(--green);
  color: #fff;
}
.btn-glow-light:hover {
  box-shadow: 0 8px 30px rgba(62,189,78,0.35);
}

/* ========================
   SOLUTIONS - Interactive Showcase
   ======================== */
.section-solutions {
  background: var(--navy);
  overflow: hidden;
  position: relative;
  padding: 100px 0 120px;
}
.section-solutions .section-label { color: rgba(255,255,255,0.5); }
.section-solutions .section-heading { color: #fff; }
.section-solutions .text-highlight { color: var(--green); }

/* Animated glow background */
.sol-glow-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.sol-glow-bg::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(62,189,78,0.08) 0%, transparent 60%);
  animation: glowDrift 12s ease-in-out infinite alternate;
}
.sol-glow-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(62,189,78,0.05) 0%, transparent 60%);
  animation: glowDrift 12s ease-in-out infinite alternate-reverse;
}
@keyframes glowDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -20px) scale(1.1); }
}

/* Product Tabs */
.sol-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
.sol-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.5s var(--ease-out);
  overflow: hidden;
}
.sol-tab:hover {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.2);
}
.sol-tab.active {
  background: rgba(62,189,78,0.15);
  border-color: var(--green);
  color: #fff;
}
.sol-tab-icon {
  display: flex;
  align-items: center;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.sol-tab.active .sol-tab-icon { opacity: 1; color: var(--green); }
.sol-tab-text { position: relative; z-index: 1; }

/* Tab progress bar (auto-play indicator) */
.sol-tab-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--green);
  border-radius: 0 0 100px 100px;
  width: 0;
  transition: none;
}
.sol-tab.active .sol-tab-progress {
  animation: tabProgress 6s linear forwards;
}
@keyframes tabProgress {
  0% { width: 0; }
  100% { width: 100%; }
}

/* Showcase Container */
.sol-showcase {
  position: relative;
  z-index: 2;
  min-height: 520px;
}

/* Slides */
.sol-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.sol-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.sol-showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Browser Mockup Frame */
.sol-mockup {
  position: relative;
}
.sol-browser-frame {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
  backdrop-filter: blur(8px);
}
.sol-browser-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.sol-browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.sol-browser-dots span:first-child { background: #ff5f57; }
.sol-browser-dots span:nth-child(2) { background: #ffbd2e; }
.sol-browser-dots span:nth-child(3) { background: #28ca41; }
.sol-browser-bar {
  flex: 1;
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-family: 'SF Mono', 'Fira Code', monospace;
  letter-spacing: 0.02em;
}
.sol-browser-body {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  border-top: none;
  position: relative;
}
.sol-browser-body img {
  width: 100%;
  display: block;
}
.sol-browser-body::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,31,63,0.4) 100%);
  pointer-events: none;
}

/* Floating Feature Pills */
.sol-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.95);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  z-index: 3;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  opacity: 0;
  transition: opacity 0.5s 0.3s;
}
.sol-slide.active .sol-float { opacity: 1; }
.sol-slide.active .sol-float--1 { transition-delay: 0.4s; }
.sol-slide.active .sol-float--2 { transition-delay: 0.6s; }
.sol-slide.active .sol-float--3 { transition-delay: 0.8s; }

.sol-float--1 {
  top: 60px;
  left: -20px;
  animation: floatSoft 5s ease-in-out infinite;
}
.sol-float--2 {
  bottom: 80px;
  right: -30px;
  animation: floatSoft 5s ease-in-out infinite 1.2s;
}
.sol-float--3 {
  top: 40%;
  right: -25px;
  animation: floatSoft 5s ease-in-out infinite 2.4s;
}

/* Solution Info Panel */
.sol-info {
  color: #fff;
}
.sol-info-badge {
  display: inline-block;
  padding: 6px 18px;
  background: var(--green);
  color: #fff;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.sol-info h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.sol-info p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Feature Cards Grid (replacing boring list) */
.sol-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}
.sol-feat-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-out);
}
.sol-feat-card:hover {
  background: rgba(62,189,78,0.12);
  border-color: rgba(62,189,78,0.3);
  transform: translateY(-2px);
}
.sol-feat-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(62,189,78,0.12);
  border-radius: 8px;
  color: var(--green);
  flex-shrink: 0;
  transition: all 0.3s;
}
.sol-feat-card:hover .sol-feat-icon {
  background: var(--green);
  color: #fff;
}
.sol-feat-card span {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  line-height: 1.3;
}

/* CTA inside slide */
.sol-cta-btn {
  margin-top: 4px;
}

/* ========================
   BENEFITS
   ======================== */
.section-benefits {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.benefits-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.benefits-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,63,0.92), rgba(11,31,63,0.85));
}
.benefits-container { position: relative; z-index: 2; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* 2.2 - Shadow hierarchy */
.ben-card {
  padding: 32px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.ben-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), #2da83c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.ben-card:hover::before { transform: scaleX(1); }
.ben-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* 2.4 - SVG icons in benefit cards */
.ben-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(62,189,78,0.12);
  border-radius: 12px;
  color: var(--green);
  margin-bottom: 16px;
  transition: all 0.4s var(--ease-out);
}
.ben-card:hover .ben-icon {
  background: var(--green);
  color: #fff;
  transform: scale(1.08) rotate(3deg);
}

.ben-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--green);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
  letter-spacing: 1px;
}
.ben-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.ben-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ========================
   COMMITMENT - Bento Grid
   ======================== */
.section-commitment {
  background: var(--bg-white);
  color: var(--text-body);
  position: relative;
  overflow: hidden;
}

/* Subtle mesh gradient background */
.commit-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 30%, rgba(62,189,78,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 70%, rgba(11,31,63,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.commit-mesh::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11,31,63,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,31,63,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 80%);
}

/* Bento Grid Layout */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

/* Base card */
.bento-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  transform-style: preserve-3d;
}
.bento-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Hero card - spans 2 columns */
.bento-hero {
  grid-column: 1 / 3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-color: transparent;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}
.bento-hero:hover {
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(11,31,63,0.3);
}

.bento-hero-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(62,189,78,0.12) 0%, transparent 60%);
  pointer-events: none;
  animation: glowDrift 10s ease-in-out infinite alternate;
}

.bento-hero-content {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.bento-shield {
  flex-shrink: 0;
  animation: floatSoft 5s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(62,189,78,0.3));
}
.bento-hero-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 10px;
}
.bento-hero-content strong { color: var(--green); }
.bento-hero-content p {
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  line-height: 1.7;
}

.bento-hero-logo {
  max-width: 100px;
  opacity: 0.2;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

/* Value cards */
.bento-value {
  display: flex;
  flex-direction: column;
}
.bento-value-num {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--green);
  opacity: 0.5;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.bento-value-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(62,189,78,0.1), rgba(62,189,78,0.05));
  border: 1px solid rgba(62,189,78,0.15);
  border-radius: 14px;
  color: var(--green);
  margin-bottom: 18px;
  transition: all 0.4s var(--ease-out);
}
.bento-value-icon--lg {
  width: 56px;
  height: 56px;
}
.bento-card:hover .bento-value-icon {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 8px 20px rgba(62,189,78,0.25);
}
.bento-value h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.bento-value p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  flex: 1;
}

/* Progress bars inside value cards */
.bento-value-bar {
  margin-top: 18px;
  position: relative;
}
.bento-value-bar::before {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background: var(--bg-light);
  border-radius: 4px;
}
.bento-value-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  border-radius: 4px;
  transition: width 1.5s var(--ease-out) 0.3s;
}
.bento-card.in-view .bento-value-fill {
  width: var(--fill-width);
}
.bento-value-bar span {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.5px;
}

/* Tall card (spans 2 rows) */
.bento-tall {
  grid-row: 1 / 3;
  grid-column: 3;
}

/* Orbit animation inside innovation card */
.bento-orbit {
  position: relative;
  width: 100%;
  height: 100px;
  margin-top: 20px;
}
.bento-orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  border: 1px dashed var(--border-light);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbitSpin 20s linear infinite;
}
.bento-orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
}
.bento-orbit-dot--1 {
  background: var(--green);
  box-shadow: 0 0 10px rgba(62,189,78,0.4);
  animation: orbitMove1 6s ease-in-out infinite;
}
.bento-orbit-dot--2 {
  background: var(--navy);
  animation: orbitMove2 6s ease-in-out infinite 2s;
}
.bento-orbit-dot--3 {
  background: var(--green-dark);
  box-shadow: 0 0 8px rgba(62,189,78,0.3);
  animation: orbitMove3 6s ease-in-out infinite 4s;
}
@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes orbitMove1 {
  0%, 100% { transform: translate(-45px, -5px); }
  50% { transform: translate(35px, -5px); }
}
@keyframes orbitMove2 {
  0%, 100% { transform: translate(5px, -40px); }
  50% { transform: translate(5px, 30px); }
}
@keyframes orbitMove3 {
  0%, 100% { transform: translate(30px, 25px); }
  50% { transform: translate(-35px, -30px); }
}

/* Accent card (dark variant) */
.bento-accent {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-color: transparent;
}
.bento-accent:hover { border-color: transparent; box-shadow: 0 20px 60px rgba(11,31,63,0.25); }
.bento-accent .bento-value-num { color: rgba(62,189,78,0.5); }
.bento-accent .bento-value-icon {
  background: rgba(62,189,78,0.12);
  border-color: rgba(62,189,78,0.2);
}
.bento-accent:hover .bento-value-icon {
  background: var(--green);
  border-color: var(--green);
}
.bento-accent h4 { color: #fff; }
.bento-accent p { color: rgba(255,255,255,0.6); }

/* Stats inside accent card */
.bento-stats {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.bento-stat {
  text-align: center;
  flex: 1;
}
.bento-stat strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1.2;
}
.bento-stat span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.bento-value-bar span { /* override for accent */
}
.bento-accent .bento-value-bar::before {
  background: rgba(255,255,255,0.1);
}
.bento-accent .bento-value-bar span {
  color: rgba(62,189,78,0.7);
}

/* ========================
   CONTACT
   ======================== */
.section-contact { background: var(--bg-section); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.contact-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--text-body);
  font-size: 0.95rem;
}
.ci-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(62,189,78,0.1);
  border-radius: 10px;
  color: var(--green);
  flex-shrink: 0;
}

.contact-form-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.field {
  position: relative;
  margin-bottom: 18px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 15px 16px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-family: var(--font);
  font-size: 0.93rem;
  transition: all 0.3s;
  outline: none;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--green);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(62,189,78,0.1);
}
.field label {
  position: absolute;
  top: 15px; left: 16px;
  color: var(--text-muted);
  font-size: 0.93rem;
  pointer-events: none;
  transition: all 0.3s var(--ease-out);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green);
  background: var(--bg-white);
  padding: 0 6px;
}
.contact-form-card .field input:focus + label,
.contact-form-card .field input:not(:placeholder-shown) + label,
.contact-form-card .field textarea:focus + label,
.contact-form-card .field textarea:not(:placeholder-shown) + label {
  background: var(--bg-white);
}

.field textarea { resize: vertical; min-height: 90px; }

.form-feedback {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  text-align: center;
  display: none;
}
.form-feedback.success {
  display: block;
  background: var(--green-light);
  color: var(--green-dark);
  border: 1px solid rgba(62,189,78,0.2);
}
.form-feedback.error {
  display: block;
  background: #fef2f2;
  color: #dc3545;
  border: 1px solid rgba(220,53,69,0.2);
}

/* 3.6 - Form success celebration */
.form-feedback.success .success-check {
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}
.form-celebration {
  position: relative;
  overflow: hidden;
}
.celebration-burst {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0;
  animation: burstOut 0.8s ease-out forwards;
}
@keyframes burstOut {
  0% { transform: scale(0) translate(0,0); opacity: 1; }
  100% { transform: scale(1) translate(var(--tx), var(--ty)); opacity: 0; }
}

/* ========================
   FOOTER (1.3 - WCAG contrast fix, 4.1 - Social links)
   ======================== */
.footer {
  background: var(--navy);
  padding: 56px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo { height: 36px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.7; max-width: 280px; }

/* Social links (4.1) */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.72);
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.8);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
/* 1.3 - Contrast fix: 0.45 -> 0.72 */
.footer-col a {
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--green); }
.footer-col p { color: rgba(255,255,255,0.72); font-size: 0.88rem; margin-bottom: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}
/* 1.3 - Contrast fix: 0.35 -> 0.6 */
.footer-bottom p { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

/* ========================
   MODAL
   ======================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11,31,63,0.5);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-box {
  width: 100%;
  max-width: 480px;
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  box-shadow: var(--shadow-xl);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.5s var(--ease-spring);
  position: relative;
}
.modal-overlay.active .modal-box { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s;
}
.modal-close:hover { color: var(--navy); background: var(--bg-light); }

.modal-box h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.modal-box > p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.95rem; }

.modal-feedback {
  margin-top: 12px;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  text-align: center;
  display: none;
}
.modal-feedback.success { display: block; background: var(--green-light); color: var(--green-dark); }
.modal-feedback.error { display: block; background: #fef2f2; color: #dc3545; }

/* ========================
   SCROLL REVEAL
   ======================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================
   TILT CARD (3D hover)
   ======================== */
.tilt-card {
  transition: transform 0.5s var(--ease-out);
  transform-style: preserve-3d;
}

/* ========================
   IMAGE SKELETON (4.4)
   ======================== */
.skeleton-img {
  background: linear-gradient(90deg, var(--bg-light) 25%, var(--border-light) 50%, var(--bg-light) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.skeleton-img.loaded {
  animation: none;
  background: none;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ========================
   ANIMATIONS
   ======================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .hero-sunburst-overlay { display: none; }
  .hero-float-card--top { left: 0; }
  .hero-float-card--bottom { right: 0; }

  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .sol-showcase-grid { grid-template-columns: 1fr; gap: 36px; }
  .sol-float { display: none; }
  .sol-showcase { min-height: auto; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-hero { grid-column: 1 / 3; }
  .bento-tall { grid-row: auto; grid-column: auto; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .digi-grid { grid-template-columns: repeat(2, 1fr); }
  .pz-cards { grid-template-columns: repeat(2, 1fr); }
  .nuvgov-panel-layout { grid-template-columns: 1fr; }
  .nuvgov-panel-img { min-height: 240px; }
  .nuvgov-features-list { grid-template-columns: repeat(2, 1fr); }
}

/* 3.8 - Tablet breakpoint (768-1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .svc-scroll-inner { grid-template-columns: 160px 1fr; gap: 32px; padding: 32px 36px; }
  .svc-scroll-icon-wrap { width: 68px; height: 68px; }
  .svc-scroll-num { font-size: 2.8rem; }
  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; gap: 30px; }
  .benefits-grid { gap: 16px; }
  .about-layout { gap: 36px; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 90px 28px 28px;
    gap: 6px;
    transition: right 0.5s var(--ease-out);
    border-left: 1px solid var(--border-light);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  }
  .nav-menu.active { right: 0; }
  .nav-link { font-size: 1.05rem; padding: 12px 16px; width: 100%; }

  .section { padding: 70px 0; }
  .hero { padding: 100px 0 60px; }
  .hero-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }

  .hero-float-card { display: none; }

  .sol-tabs { flex-direction: column; align-items: stretch; gap: 6px; }
  .sol-tab { justify-content: center; border-radius: var(--radius-sm); }
  .sol-features { grid-template-columns: 1fr; }
  .sol-info h3 { font-size: 1.3rem; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-hero { grid-column: auto; }
  .bento-hero-content { flex-direction: column; gap: 16px; }
  .bento-stats { gap: 12px; }

  .svc-scroll-inner { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; text-align: center; }
  .svc-scroll-left { flex-direction: row; justify-content: center; gap: 14px; }
  .svc-scroll-num { font-size: 2rem; }
  .svc-scroll-icon-wrap { width: 56px; height: 56px; border-radius: 14px; }
  .svc-scroll-icon svg { width: 28px; height: 28px; }
  .svc-scroll-right h3 { font-size: 1.15rem; }
  .svc-scroll-tags { justify-content: center; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  .about-stat-card { position: relative; bottom: auto; right: auto; margin-top: 14px; }
  .hero-scroll-cue { display: none; }

  .bento-orbit { height: 80px; }

  .digi-grid { grid-template-columns: 1fr; }
  .digi-hero-img { height: 220px; }
  .digi-hero-content { padding: 24px; }
  .pz-cards { grid-template-columns: 1fr; }
  .pz-group-img { height: 150px; }
  .nuvgov-panel-layout { grid-template-columns: 1fr; }
  .nuvgov-panel-img { min-height: 200px; }
  .nuvgov-features-list { grid-template-columns: 1fr; }
  .nuvgov-tabs { flex-direction: column; align-items: stretch; }
  .nuvgov-tab { justify-content: center; }
  .nuvgov-highlights { gap: 8px; }
  .nuvgov-hero-img { height: 200px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary-glow, .btn-white { width: 100%; justify-content: center; }
  .container { padding: 0 16px; }
  .trust-badge { padding: 10px 16px; min-width: 130px; gap: 8px; }
  .trust-badge img { height: 40px; max-width: 100px; }
  .trust-badge span { font-size: 0.65rem; max-width: 110px; }
}
