@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Syne:wght@400;600;700;800&display=swap');

:root {
  --navy:           #0b1630;
  --navy-mid:       #132044;
  --navy-light:     #1e3160;
  --navy-deep:      #080f28;
  --teal:           #1e8aa0;
  --teal-bright:    #2fb8d4;
  --teal-light:     #4ab5c8;
  --teal-pale:      #a8e6f0;
  --teal-glow:      rgba(47, 184, 212, 0.35);
  --teal-subtle:    rgba(47, 184, 212, 0.10);
  --teal-border:    rgba(47, 184, 212, 0.18);
  --gold:           #c8a96e;
  --gold-light:     #e2c48a;
  --gold-subtle:    rgba(200, 169, 110, 0.12);
  --white:          #ffffff;
  --offwhite:       #f7f9fc;
  --smoke:          #f0f4f8;
  --mist:           #dde4ed;
  --charcoal:       #0f1e38;
  --slate:          #3d4f6b;
  --text-main:      #1a2235;
  --text-muted:     #5a6b82;
  --text-light:     #8fa0b8;
  --font-display:   'Syne', sans-serif;
  --font-body:      'Inter', sans-serif;
  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --shadow-card:  0 1px 3px rgba(11,22,48,0.06), 0 4px 16px rgba(11,22,48,0.08);
  --shadow-hover: 0 8px 32px rgba(11,22,48,0.14), 0 2px 8px rgba(11,22,48,0.08);
  --shadow-glow:  0 0 60px rgba(47,184,212,0.4), 0 0 120px rgba(30,138,160,0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gap-xs: 0.5rem;
  --gap-sm: 1rem;
  --gap-md: 2rem;
  --gap-lg: 4rem;
  --gap-xl: 7rem;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem);   font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }

p { font-size: 1rem; line-height: 1.75; color: var(--text-muted); }

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

.section { padding: var(--gap-xl) 0; }

.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 1.8rem;
}
.tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1.2rem; height: 1px;
  background: var(--teal-bright);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--teal-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(47,184,212,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  padding: 0.7rem 0;
  box-shadow: 0 1px 0 rgba(11,22,48,0.08);
}
.nav:not(.scrolled) .nav-links a {
  color: rgba(255,255,255,0.7);
}
.nav:not(.scrolled) .nav-links a:hover {
  color: var(--white);
}
.nav:not(.scrolled) .nav-links a::after {
  background: var(--teal-pale);
}
.nav:not(.scrolled) .nav-cta {
  background: rgba(255,255,255,0.12) !important;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.25);
}
.nav:not(.scrolled) .nav-cta:hover {
  background: var(--teal-bright) !important;
  color: var(--white) !important;
  border-color: var(--teal-bright) !important;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav .logo-on-dark  { display: block; height: 38px; width: auto; }
.nav .logo-on-light { display: none;  height: 38px; width: auto; }
.nav.scrolled .logo-on-dark  { display: none; }
.nav.scrolled .logo-on-light { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--teal-bright);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--teal); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  padding: 0.55rem 1.3rem;
  background: var(--teal) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  transition: var(--transition) !important;
}
.nav-cta:hover {
  background: var(--teal-bright) !important;
  box-shadow: 0 4px 20px rgba(47,184,212,0.4) !important;
}
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}
.nav.scrolled .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
}
.mobile-menu a:hover { color: var(--teal-bright); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/hero-bg.png') center center / cover no-repeat;
  transform: scale(1.04);
  animation: heroBgZoom 22s ease-in-out infinite alternate;
}
@keyframes heroBgZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.09); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 10, 28, 0.94) 0%,
    rgba(7, 16, 40, 0.88) 40%,
    rgba(9, 24, 48, 0.82) 70%,
    rgba(4, 18, 36, 0.90) 100%
  );
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(47,184,212,0.14) 0%, transparent 65%);
  animation: orbPulse 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 900px; height: 900px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(11,52,90,0.22) 0%, transparent 60%);
  animation: orbPulse 12s ease-in-out infinite reverse;
}
@keyframes orbPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.06); }
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47,184,212,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,184,212,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2.5rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  min-height: 100vh;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-pale);
  margin-bottom: 2rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(47,184,212,0.22);
  border-radius: 100px;
  background: rgba(47,184,212,0.07);
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.1s forwards;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 8px var(--teal-bright);
  animation: dotBlink 2s ease-in-out infinite;
}
@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.hero-wordmark {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.2s forwards;
}
.wordmark-ia {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.wordmark-divider {
  width: 1px; height: 2rem;
  background: rgba(255,255,255,0.2);
}
.wordmark-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.wordmark-intel {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.wordmark-art {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-bright);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.3s forwards;
}
.headline-line { display: block; }
.line-razao    { color: var(--white); }
.headline-amp {
  display: inline-block;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.55em;
  color: var(--gold);
  margin: 0.15em 0.05em;
}
.line-coracao {
  background: linear-gradient(110deg, var(--teal-bright) 0%, #8ae8f8 55%, var(--teal-pale) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 2px solid var(--teal-bright);
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.45s forwards;
}

.hero-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 380px;
  margin-bottom: 2.2rem;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.55s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.65s forwards;
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.8rem;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-bright) 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(47,184,212,0.4);
}
.btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(47,184,212,0.55);
}

.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.8rem;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.22);
  transition: var(--transition);
}
.btn-ghost-hero:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}

.hero-center {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: logoReveal 1.2s 0.4s forwards;
}

@keyframes logoReveal {
  from { opacity: 0; transform: scale(0.88) translateY(20px); filter: blur(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0);        filter: blur(0); }
}

.logo-stage {
  position: relative;
  width: 340px; height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-glow-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.logo-glow-ring-outer {
  width: 320px; height: 320px;
  border: 1px solid rgba(47,184,212,0.14);
  animation: ringRotate 20s linear infinite;
}
.logo-glow-ring-inner {
  width: 240px; height: 240px;
  border: 1px solid rgba(47,184,212,0.22);
  animation: ringRotate 15s linear infinite reverse;
}
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.logo-glow-ring-outer::before,
.logo-glow-ring-inner::before {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  background: var(--teal-bright);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--teal-bright), 0 0 20px var(--teal-bright);
  top: -3px; left: 50%;
  transform: translateX(-50%);
}

.circuit-dot {
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 8px var(--teal-bright);
}
.cd-1 { top: 15%;  right: 15%; animation: dotPulse 3s 0s    ease-in-out infinite; }
.cd-2 { bottom: 20%; left: 12%; animation: dotPulse 3s 1s    ease-in-out infinite; }
.cd-3 { top: 55%;  right: 8%;  animation: dotPulse 3s 1.5s  ease-in-out infinite; }

.circuit-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(47,184,212,0.28), transparent);
  height: 1px;
}
.cl-1 { width: 60px; top: 15%; right: 18%; transform: rotate(-30deg); }
.cl-2 { width: 45px; bottom: 22%; left: 14%; transform: rotate(20deg); }

@keyframes dotPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.4); }
}

.hero-logo-3d {
  width: 300px; height: 300px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 30px rgba(47, 184, 212, 0.5))
    drop-shadow(0 0 80px rgba(30, 138, 160, 0.35))
    drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  animation: logoFloat 7s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0px) rotate(-0.3deg); }
  33%       { transform: translateY(-10px) rotate(0.2deg); }
  66%       { transform: translateY(-5px) rotate(-0.2deg); }
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.6s forwards;
}

.hero-stats-vertical {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem;
  backdrop-filter: blur(8px);
}
.hstat { text-align: right; padding: 1rem 0; }
.hstat-number {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hstat-label {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  margin-top: 0.3rem;
  line-height: 1.4;
}
.hstat-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.07);
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: flex-end;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}
.trust-item svg {
  width: 15px; height: 15px;
  color: var(--teal-bright);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s 1.2s forwards;
  z-index: 3;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-wheel {
  width: 3px; height: 7px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  70%       { transform: translateY(10px); opacity: 0; }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.intro-band {
  background: var(--smoke);
  padding: 5rem 0;
  border-bottom: 1px solid var(--mist);
}
.intro-band-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
}
.intro-label {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  white-space: nowrap;
  line-height: 1;
}
.intro-label span {
  color: var(--teal);
}
.intro-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.intro-text p + p {
  margin-top: 1rem;
}

.services { background: var(--white); }
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
}
.section-header h2 { color: var(--navy); margin-bottom: 1rem; }
.section-header p  { font-size: 1rem; color: var(--text-muted); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 44px; height: 44px;
  background: var(--teal-subtle);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}
.service-icon svg {
  width: 22px; height: 22px;
  stroke: var(--teal);
  stroke-width: 1.5;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--teal), var(--teal-bright));
}
.service-card:hover .service-icon svg { stroke: var(--white); }

.service-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.about { background: var(--charcoal); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-content .tag {
  color: var(--teal-bright);
}
.about-content .tag::before { background: var(--teal-bright); }

.about-content h2 { color: var(--white); margin-bottom: 1.5rem; }
.about-content p  { color: rgba(255,255,255,0.6); margin-bottom: 1.2rem; }

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  transition: var(--transition);
}
.pillar:hover {
  background: rgba(47,184,212,0.08);
  border-color: var(--teal-border);
}
.pillar-icon {
  width: 36px; height: 36px;
  min-width: 36px;
  color: var(--teal-bright);
}
.pillar-icon svg { width: 100%; height: 100%; stroke-width: 1.5; }
.pillar-body h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.pillar-body p {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.about-visual { position: relative; }
.about-card-stack { position: relative; height: 480px; }
.about-card { position: absolute; border-radius: var(--radius-lg); padding: 2rem; }
.about-card-main {
  top: 0; left: 0; right: 0;
  background: linear-gradient(135deg, var(--navy-mid), var(--teal));
  padding: 3rem;
  border-radius: var(--radius-lg);
}
.about-card-main h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 1rem; }
.about-card-main p  { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }

.about-values {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2rem;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
}
.value-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal-bright);
  flex-shrink: 0;
}

.about-card-float {
  position: absolute;
  bottom: -1rem; right: -1rem;
  width: 200px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-hover);
}
.float-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.float-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}
.float-sub { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

.team { background: var(--smoke); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
}
.team-avatar.av1 { background: linear-gradient(135deg, var(--navy-mid), var(--teal)); }
.team-avatar.av2 { background: linear-gradient(135deg, var(--teal), var(--teal-light)); }
.team-avatar.av3 { background: linear-gradient(135deg, var(--teal-light), var(--navy-mid)); }

.team-info { padding: 1.5rem; }
.team-info h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
.team-info .role {
  font-size: 0.8rem;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.team-info p { font-size: 0.85rem; margin-top: 0.8rem; color: var(--text-muted); }

.contact { background: var(--offwhite); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { color: var(--navy); margin-bottom: 1.2rem; }
.contact-info p   { color: var(--text-muted); }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 2rem 0;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 38px; height: 38px;
  background: var(--teal-subtle);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg {
  width: 18px; height: 18px;
  stroke: var(--teal);
  stroke-width: 1.5;
}
.contact-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.contact-item-text .label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}
.contact-item-text span,
.contact-item-text a {
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.5;
}
.contact-item-text a:hover { color: var(--teal); }

.map-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}
.map-placeholder-inner { text-align: center; color: var(--white); }
.map-placeholder-inner svg { width: 32px; height: 32px; stroke: var(--white); margin-bottom: 0.5rem; }
.map-placeholder-inner p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}
.map-placeholder-inner a {
  font-size: 0.8rem;
  color: var(--teal-pale);
  font-weight: 600;
  text-decoration: underline;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--mist);
}
.contact-form h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--mist);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-main);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(47,184,212,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select   { cursor: pointer; }
.form-error {
  font-size: 0.78rem;
  color: #dc2626;
  display: none;
}
.form-group.error .form-error { display: block; }
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: #dc2626; }

.btn-submit {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-bright) 100%);
  color: var(--white);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(47,184,212,0.4);
}
.form-success {
  display: none;
  text-align: center;
  padding: 1.2rem;
  background: rgba(47,184,212,0.08);
  border: 1px solid rgba(47,184,212,0.22);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--teal);
  font-weight: 500;
  margin-top: 1rem;
}

.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-top: 1.2rem;
  max-width: 280px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--teal-bright) !important;
  margin-top: 1rem !important;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--teal-bright); }
.footer-contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.footer-contact a:hover { color: var(--teal-bright); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--white); }

.footer::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--teal-bright), var(--gold), transparent);
  opacity: 0.5;
  margin-bottom: 5rem;
  margin-top: -5rem;
}

@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .hero-center { grid-column: 2; grid-row: 1; }
  .hero-right {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    grid-row: 2;
  }
  .hero-stats-vertical { flex-direction: row; flex: 1; }
  .hstat { flex: 1; text-align: center; }
  .hstat-divider { width: 1px; height: auto; }
  .hero-trust { flex-direction: row; align-items: center; flex-wrap: wrap; }
  .logo-stage { width: 280px; height: 280px; }
  .hero-logo-3d { width: 250px; height: 250px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }

  .hero-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    text-align: center;
    padding-top: 6rem;
    padding-bottom: 6rem;
    gap: 2rem;
  }
  .hero-left   { align-items: center; }
  .hero-center { grid-column: 1; grid-row: 1; }
  .hero-left   { grid-row: 2; }
  .hero-right  { grid-column: 1; grid-row: 3; flex-direction: column; align-items: center; }
  .hero-tagline { text-align: center; border-left: none; padding-left: 0; border-top: 2px solid var(--teal-bright); padding-top: 0.6rem; }
  .hero-body   { text-align: center; margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; flex-direction: column; width: 100%; }
  .btn-primary-hero, .btn-ghost-hero { width: 100%; justify-content: center; }
  .hero-stats-vertical { width: 100%; }
  .hero-trust  { justify-content: center; }
  .logo-stage  { width: 240px; height: 240px; }
  .hero-logo-3d { width: 210px; height: 210px; }
  .logo-glow-ring-outer { width: 220px; height: 220px; }
  .logo-glow-ring-inner { width: 170px; height: 170px; }

  .intro-band-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid     { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid    { grid-template-columns: 1fr 1fr; }
  .team-grid        { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom    { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-legal  { flex-direction: column; align-items: center; gap: 0.8rem; }
  .logo-stage    { width: 200px; height: 200px; }
  .hero-logo-3d  { width: 180px; height: 180px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .hero-logo-3d,
  .logo-glow-ring-outer,
  .logo-glow-ring-inner,
  .hero-orb-1,
  .hero-orb-2,
  .hero-badge-dot,
  .circuit-dot,
  .scroll-wheel { animation: none; }
}
input, textarea, [contenteditable="true"] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}