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

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

/* ── MEDIUM-DARK THEME — ni negro puro, ni claro ── */
:root {
  --bg:      #0f1f1e;
  --bg2:     #132423;
  --bg3:     #172b2a;
  --card:    #1a3230;
  --border:  rgba(44,184,158,0.22);
  --teal:    #2cb89e;
  --teal2:   #1de9c6;
  --teal3:   #0ff5d4;
  --glow:    rgba(44,184,158,0.55);
  --text:    #d4eeea;
  --muted:   #7ab8b0;
  --white:   #f0faf8;
  --violet:  rgba(120, 80, 220, 0.18);
  --amber:   rgba(255, 180, 50, 0.08);
}

html { scroll-behavior: smooth; }
body { font-family: 'Raleway', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 4px; }

/* ── PARTICLES CANVAS ── */
#particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 70px;
  background: rgba(15,31,30,0.90);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 40px rgba(44,184,158,0.18); }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img {
  height: 38px; opacity: 1;
  filter: drop-shadow(0 0 10px rgba(44,184,158,0.70));
  transition: filter 0.3s ease, transform 0.3s ease;
}
.nav-logo img:hover {
  filter: drop-shadow(0 0 22px rgba(44,184,158,1.0)) drop-shadow(0 0 40px rgba(29,233,198,0.6));
  transform: scale(1.04);
}
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a {
  font-family: 'Nunito', sans-serif; font-weight: 600;
  color: var(--muted); text-decoration: none;
  padding: 8px 17px; border-radius: 6px; font-size: 14px;
  transition: all 0.2s; letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--white); background: rgba(44,184,158,0.14); }
.nav-links a.active { color: var(--teal2); }
.nav-cta {
  background: var(--teal) !important; color: #0a1a19 !important;
  font-weight: 800 !important;
  box-shadow: 0 0 24px rgba(44,184,158,0.70), 0 0 50px rgba(44,184,158,0.30) !important;
}
.nav-cta:hover {
  background: var(--teal2) !important;
  box-shadow: 0 0 40px rgba(29,233,198,0.90), 0 0 80px rgba(29,233,198,0.45) !important;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 300; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.35s; }
.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; z-index: 1;
  min-height: 100vh; display: flex; align-items: center;
  justify-content: space-between;
  padding: 70px 5% 0; overflow: hidden; gap: 40px;
}
.hero-glow {
  position: absolute; width: 750px; height: 750px;
  border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(44,184,158,0.22) 0%, rgba(120,80,220,0.10) 50%, transparent 70%);
  right: -100px; top: 50%; transform: translateY(-50%);
  animation: breathe 6s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute; width: 450px; height: 450px;
  border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(29,233,198,0.14) 0%, transparent 70%);
  left: -80px; bottom: 10%;
  animation: breathe 9s ease-in-out infinite reverse;
}
.hero-logo-wrap {
  position: relative; z-index: 2; flex-shrink: 0;
  width: clamp(280px, 36vw, 520px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateX(40px);
  animation: fadeInRight 1s ease forwards 0.9s;
}
@keyframes fadeInRight { to { opacity: 1; transform: translateX(0); } }

.hero-logo-img {
  width: 100%;
  filter: drop-shadow(0 0 45px rgba(44,184,158,0.75)) drop-shadow(0 0 90px rgba(29,233,198,0.45));
  animation: logoFloat 7s ease-in-out infinite;
  position: relative; z-index: 3;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0px);   filter: drop-shadow(0 0 45px rgba(44,184,158,0.75)) drop-shadow(0 0 90px rgba(29,233,198,0.45)); }
  50%       { transform: translateY(-14px); filter: drop-shadow(0 0 65px rgba(44,184,158,1.0))  drop-shadow(0 0 130px rgba(29,233,198,0.65)); }
}
.hero-logo-glow-halo {
  position: absolute; width: 70%; height: 70%; border-radius: 50%;
  background: radial-gradient(circle, rgba(29,233,198,0.28) 0%, rgba(44,184,158,0.10) 50%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: breathe 5s ease-in-out infinite; z-index: 1;
}
.hero-logo-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(44,184,158,0.35);
  top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1;
}
.hero-logo-ring--1 { width: 85%; height: 85%; animation: ringPulse 4s ease-in-out infinite; }
.hero-logo-ring--2 { width: 105%; height: 105%; border-color: rgba(44,184,158,0.18); animation: ringPulse 4s ease-in-out infinite 0.8s; }
@keyframes ringPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.04); }
}
@keyframes breathe { 0%,100%{transform:translateY(-50%) scale(1);opacity:0.8} 50%{transform:translateY(-52%) scale(1.08);opacity:1} }

.hero-content { position: relative; z-index: 2; padding: 80px 0; max-width: 700px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Nunito', sans-serif; font-size: 12px; font-weight: 800;
  letter-spacing: 4px; text-transform: uppercase; color: var(--teal);
  margin-bottom: 28px; opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.7s ease forwards 0.2s;
}
.hero-eyebrow .line { width: 40px; height: 1px; background: var(--teal); }
.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.05; color: var(--white);
  letter-spacing: -1.5px; margin-bottom: 22px;
  opacity: 0; transform: translateY(24px);
  animation: fadeUp 0.8s ease forwards 0.4s;
}
.hero h1 .accent { background: linear-gradient(90deg, var(--teal), var(--teal2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }
.hero h1 .outline { -webkit-text-stroke: 2px var(--teal); color: transparent; }
.hero-tagline {
  font-family: 'Raleway', sans-serif; font-weight: 300;
  font-size: 1.06rem; color: var(--muted); line-height: 1.8;
  max-width: 520px; margin-bottom: 42px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.6s;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease forwards 0.8s; }
@keyframes fadeUp { to { opacity:1; transform:translateY(0); } }

/* ── TICKER ── */
.ticker {
  position: relative; z-index: 1;
  background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 18px 0; white-space: nowrap;
}
.ticker-inner { display: inline-flex; gap: 0; animation: ticker 25s linear infinite; }
.ticker-inner span { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); padding: 0 40px; }
.ticker-inner span.sep { color: var(--teal); padding: 0; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── STATS ── */
.stats {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4,1fr);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(19,36,35,0) 0%, rgba(23,43,42,0.8) 100%);
}
.stat {
  padding: 44px 5%; text-align: center;
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden; transition: background 0.3s;
}
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(44,184,158,0.07); }
.stat::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--teal); transition: width 0.4s ease; }
.stat:hover::after { width: 60%; }
.stat-n {
  font-family: 'Nunito', sans-serif; font-size: 2.6rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--white), var(--teal2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-l { font-size: 13px; color: var(--muted); margin-top: 6px; letter-spacing: 0.5px; font-weight: 500; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px; border-radius: 50px; font-weight: 700;
  font-size: 14px; text-decoration: none; transition: all 0.3s;
  cursor: pointer; border: none; font-family: 'Nunito', sans-serif;
  letter-spacing: 0.5px; position: relative; overflow: hidden;
}
.btn::before { content: ''; position: absolute; inset: 0; border-radius: 50px; background: rgba(255,255,255,0.12); opacity: 0; transition: opacity 0.3s; }
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: #0a1a19;
  box-shadow: 0 0 35px rgba(44,184,158,0.65), 0 4px 18px rgba(0,0,0,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(44,184,158,0.90), 0 0 100px rgba(29,233,198,0.40), 0 8px 28px rgba(0,0,0,0.45);
}
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1.5px solid rgba(44,184,158,0.40);
}
.btn-ghost:hover {
  border-color: var(--teal2); color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(44,184,158,0.30), inset 0 0 20px rgba(44,184,158,0.06);
}

/* ── SECTIONS ── */
.section { padding: 100px 5%; position: relative; z-index: 1; }
.section.dark {
  background: linear-gradient(180deg, var(--bg2) 0%, rgba(15,31,30,0.97) 100%);
  position: relative;
}
.section.dark::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(44,184,158,0.08) 0%, transparent 60%);
}
.section-head { margin-bottom: 56px; }
.section-label { font-family: 'Nunito', sans-serif; font-size: 11px; font-weight: 800; letter-spacing: 4px; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.section-label::before { content: ''; width: 28px; height: 2px; background: var(--teal); border-radius: 2px; }
h2.title { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: clamp(2rem, 3.5vw, 3rem); color: var(--white); line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 14px; }
.subtitle { color: var(--muted); font-size: 1rem; line-height: 1.75; max-width: 520px; font-weight: 400; }

/* ── SERVICE CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.s-card {
  background: linear-gradient(145deg, var(--card) 0%, rgba(19,36,35,0.85) 100%);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 38px 32px;
  text-decoration: none; color: inherit; display: block;
  position: relative; overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.8,.3,1), box-shadow 0.4s, border-color 0.4s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35), inset 0 1px 0 rgba(44,184,158,0.08);
}
.s-card::before {
  content: ''; position: absolute;
  top: -100%; left: -100%; width: 300%; height: 300%;
  background: radial-gradient(circle at center, rgba(44,184,158,0.14) 0%, transparent 60%);
  transition: transform 0.6s ease; transform: translate(-60%,-60%); pointer-events: none;
}
/* ── HOVER MAGIC ── */
.s-card:hover {
  transform: translateY(-10px) scale(1.015);
  border-color: rgba(44,184,158,0.65);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.55),
    0 0 60px rgba(44,184,158,0.28),
    0 0 120px rgba(29,233,198,0.14),
    inset 0 1px 0 rgba(44,184,158,0.25);
}
.s-card:hover::before { transform: translate(-40%,-40%); }
.s-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 22px; }
.s-icon {
  width: 58px; height: 58px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(44,184,158,0.22), rgba(29,233,198,0.08));
  border: 1px solid rgba(44,184,158,0.30);
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  transition: box-shadow 0.4s;
}
.s-card:hover .s-icon {
  box-shadow: 0 0 20px rgba(44,184,158,0.50), 0 0 40px rgba(29,233,198,0.20);
}
.s-num { font-family: 'Nunito', sans-serif; font-size: 2.5rem; font-weight: 900; color: rgba(44,184,158,0.14); line-height: 1; letter-spacing: -2px; transition: color 0.4s, text-shadow 0.4s; }
.s-card:hover .s-num { color: rgba(44,184,158,0.30); text-shadow: 0 0 30px rgba(44,184,158,0.40); }
.s-card h3 { font-family: 'Nunito', sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--white); margin-bottom: 12px; letter-spacing: -0.3px; transition: color 0.3s; }
.s-card:hover h3 { color: var(--teal3); }
.s-card p { font-size: 14px; color: var(--muted); line-height: 1.75; font-weight: 400; }
.s-link { display: flex; align-items: center; gap: 8px; margin-top: 24px; font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 700; color: var(--teal); letter-spacing: 1px; text-transform: uppercase; transition: gap 0.3s, color 0.3s, text-shadow 0.3s; }
.s-card:hover .s-link { gap: 16px; color: var(--teal2); text-shadow: 0 0 12px rgba(29,233,198,0.60); }

/* ── CLIENTS ── */
.clients-wrap { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.c-box {
  background: linear-gradient(145deg, var(--card), rgba(19,36,35,0.80));
  border: 1px solid var(--border); border-radius: 16px; padding: 26px 22px;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.30);
}
.c-box:hover {
  border-color: rgba(44,184,158,0.55); transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 40px rgba(44,184,158,0.18), 0 0 80px rgba(29,233,198,0.08);
}
.c-box h4 { font-family: 'Nunito', sans-serif; font-size: 10px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; display: flex; align-items: center; gap: 6px; }
.c-box ul { list-style: none; }
.c-box li { font-size: 14px; color: var(--muted); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 0.2s; font-weight: 500; }
.c-box li:last-child { border: none; }
.c-box:hover li { color: var(--text); }

/* ── PAGE HERO ── */
.page-hero {
  min-height: 55vh; display: flex; align-items: flex-end;
  padding: 70px 5% 60px; position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--bg2) 0%, rgba(19,36,35,0.95) 50%, rgba(15,31,30,0.90) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 70% at 80% 50%, rgba(44,184,158,0.12) 0%, transparent 70%);
}
.ph-bg-icon { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); font-size: 220px; opacity: 0.04; pointer-events: none; line-height: 1; animation: floatIcon 8s ease-in-out infinite; }
@keyframes floatIcon { 0%,100%{transform:translateY(-50%) rotate(-5deg)} 50%{transform:translateY(-52%) rotate(5deg)} }
.ph-line { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--teal), transparent); animation: linePulse 3s ease-in-out infinite; }
@keyframes linePulse { 0%,100%{opacity:0.3} 50%{opacity:1} }
.page-hero .inner { position: relative; z-index: 2; max-width: 680px; }
.page-hero h1 { font-family: 'Nunito', sans-serif; font-weight: 900; letter-spacing: -1px; font-size: clamp(2.6rem,5vw,4rem); color: var(--white); line-height: 1.05; margin-bottom: 16px; animation: fadeUp 0.7s ease forwards; }
.page-hero p { color: var(--muted); font-size: 1rem; line-height: 1.75; font-weight: 400; animation: fadeUp 0.7s ease forwards 0.15s; opacity: 0; }

/* ── FEATURES ── */
.feat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.feat {
  background: linear-gradient(145deg, var(--card), rgba(19,36,35,0.80));
  border: 1px solid var(--border); border-radius: 16px; padding: 30px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: all 0.35s; position: relative; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.30);
}
.feat::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, var(--teal), var(--teal2));
  transform: scaleY(0); transform-origin: bottom; transition: transform 0.35s;
}
.feat:hover {
  border-color: rgba(44,184,158,0.50); transform: translateX(5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.40), 0 0 30px rgba(44,184,158,0.15);
}
.feat:hover::before { transform: scaleY(1); }
.feat-dot { width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0; background: rgba(44,184,158,0.14); border: 1px solid rgba(44,184,158,0.25); display: flex; align-items: center; justify-content: center; font-size: 18px; transition: box-shadow 0.35s; }
.feat:hover .feat-dot { box-shadow: 0 0 16px rgba(44,184,158,0.45); }
.feat h4 { font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 800; color: var(--white); margin-bottom: 7px; }
.feat p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── SERVICE IMAGE ── */
.svc-img {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  margin: 40px 0;
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
  width: 100%;
  aspect-ratio: 16/6;
}

.svc-img img,
.svc-img video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.72) saturate(0.75);
  transition: filter 0.8s ease, transform 0.8s ease;
  transform: scale(1.02);
}

.svc-img:hover img,
.svc-img:hover video {
  filter: brightness(0.90) saturate(1.1) hue-rotate(5deg);
  transform: scale(1.06);
}

.svc-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(44,184,158,0.18), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* celular */
@media(max-width: 600px) {
  .svc-img { aspect-ratio: 16/9; }
}
/* ── CTA BAND ── */
.cta-band {
  margin: 0 0 80px; padding: 56px 5%;
  background: linear-gradient(135deg, rgba(44,184,158,0.12) 0%, rgba(29,233,198,0.06) 100%);
  border-top: 1px solid rgba(44,184,158,0.22); border-bottom: 1px solid rgba(44,184,158,0.22);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(44,184,158,0.10), transparent); pointer-events: none; }
.cta-band h3 { font-family: 'Nunito', sans-serif; font-size: 2rem; font-weight: 900; color: var(--white); margin-bottom: 10px; letter-spacing: -0.5px; }
.cta-band p { color: var(--muted); margin-bottom: 28px; font-size: 15px; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 44px; }
.info-cards { display: flex; flex-direction: column; gap: 18px; }
.i-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 26px;
  transition: border-color 0.35s, box-shadow 0.35s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.30);
}
.i-card:hover {
  border-color: rgba(44,184,158,0.50);
  box-shadow: 0 12px 40px rgba(0,0,0,0.40), 0 0 30px rgba(44,184,158,0.16);
}
.i-card h4 { font-family: 'Nunito', sans-serif; font-size: 10px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.i-card a { color: var(--text); text-decoration: none; display: block; margin-bottom: 5px; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.i-card a:hover { color: var(--teal2); }
.i-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.wa-btn { display: inline-flex; align-items: center; gap: 10px; background: #25d366; color: #fff; text-decoration: none; padding: 12px 22px; border-radius: 50px; font-weight: 700; font-size: 14px; margin-top: 14px; transition: all 0.3s; font-family: 'Nunito', sans-serif; }
.wa-btn:hover { background: #1cb956; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.45); }
.form-wrap {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 38px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}
.form-wrap h3 { font-family: 'Nunito', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 5px; }
.form-wrap .sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.fg label { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; font-family: 'Nunito', sans-serif; }
.fg input, .fg textarea, .fg select {
  background: rgba(44,184,158,0.06); border: 1px solid var(--border);
  border-radius: 10px; padding: 13px 15px; color: var(--text);
  font-size: 14px; font-family: 'Raleway', sans-serif; outline: none;
  transition: all 0.25s; width: 100%; font-weight: 500;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--teal); background: rgba(44,184,158,0.10);
  box-shadow: 0 0 0 3px rgba(44,184,158,0.18), 0 0 20px rgba(44,184,158,0.12);
}
.fg textarea { resize: vertical; min-height: 110px; }
.fg select option { background: var(--bg2); color: var(--text); }

/* ── FOOTER ── */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 52px 5% 26px; position: relative; z-index: 1; }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 36px; margin-bottom: 40px; }
.footer-brand img { height: 30px; filter: brightness(0) invert(1); opacity: 0.55; display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: var(--muted); max-width: 230px; line-height: 1.7; }
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h5 { font-family: 'Nunito', sans-serif; font-size: 10px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--muted); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color 0.2s; font-weight: 500; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 13px; color: rgba(122,184,176,0.45); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* ── AI BANNER ── */
.ai-banner {
  margin: 48px 0 0; border-radius: 22px;
  border: 1px solid rgba(29,233,198,0.28);
  background: linear-gradient(135deg, rgba(29,233,198,0.08) 0%, rgba(44,184,158,0.05) 50%, rgba(120,80,220,0.08) 100%);
  padding: 44px 38px; position: relative; overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.40), 0 0 80px rgba(29,233,198,0.08);
}
.ai-banner-glow { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(29,233,198,0.14) 0%, transparent 65%); right: -120px; top: -120px; pointer-events: none; }
.ai-badge { display: inline-flex; align-items: center; background: linear-gradient(135deg, var(--teal), var(--teal2)); color: #0a1a19; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 22px; }
.ai-banner-content { display: flex; gap: 28px; align-items: flex-start; }
.ai-icon-wrap { font-size: 48px; line-height: 1; background: linear-gradient(135deg, rgba(29,233,198,0.20), rgba(44,184,158,0.10)); border: 1px solid rgba(29,233,198,0.30); border-radius: 18px; padding: 18px; flex-shrink: 0; box-shadow: 0 0 30px rgba(29,233,198,0.18); }
.ai-banner-content h3 { font-family: 'Nunito', sans-serif; font-size: 1.5rem; font-weight: 900; color: var(--white); margin-bottom: 12px; letter-spacing: -0.4px; }
.ai-banner-content p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; max-width: 600px; }
.ai-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ai-tags span { background: rgba(44,184,158,0.12); border: 1px solid rgba(44,184,158,0.28); color: var(--teal2); font-size: 12px; font-weight: 700; font-family: 'Nunito', sans-serif; letter-spacing: 0.5px; padding: 5px 14px; border-radius: 50px; }

/* ── AI TEAM ── */
.ai-team-section { position: relative; overflow: hidden; }
.ai-team-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 50% at 10% 50%, rgba(29,233,198,0.07) 0%, transparent 60%), radial-gradient(ellipse 50% 60% at 90% 30%, rgba(120,80,220,0.10) 0%, transparent 60%); }
.ai-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1; }
.ai-team-card {
  background: linear-gradient(160deg, rgba(26,50,48,0.95) 0%, rgba(19,36,35,0.80) 100%);
  border: 1px solid rgba(44,184,158,0.18);
  border-radius: 18px; padding: 30px 24px; text-align: center;
  transition: all 0.40s cubic-bezier(.2,.8,.3,1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35), inset 0 1px 0 rgba(29,233,198,0.06);
  position: relative; overflow: hidden;
}
.ai-team-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--teal2), transparent); opacity: 0; transition: opacity 0.4s; }
.ai-team-card:hover {
  transform: translateY(-10px);
  border-color: rgba(29,233,198,0.50);
  box-shadow: 0 24px 60px rgba(0,0,0,0.50), 0 0 50px rgba(29,233,198,0.18), 0 0 100px rgba(44,184,158,0.08);
}
.ai-team-card:hover::after { opacity: 1; }
.ai-team-icon { font-size: 36px; margin-bottom: 16px; display: inline-flex; align-items: center; justify-content: center; width: 68px; height: 68px; border-radius: 18px; background: linear-gradient(135deg, rgba(29,233,198,0.18), rgba(44,184,158,0.08)); border: 1px solid rgba(29,233,198,0.22); box-shadow: 0 0 20px rgba(29,233,198,0.12); transition: box-shadow 0.4s; }
.ai-team-card:hover .ai-team-icon { box-shadow: 0 0 35px rgba(29,233,198,0.45), 0 0 60px rgba(44,184,158,0.20); }
.ai-team-card h4 { font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.ai-team-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.ai-team-cta { margin-top: 48px; text-align: center; position: relative; z-index: 1; }
.ai-team-cta p { color: var(--muted); font-size: 15px; margin-bottom: 20px; }

/* ── RESPONSIVE ── */
@media(max-width:960px){
  .cards-grid,.clients-wrap{grid-template-columns:1fr 1fr;}
  .feat-grid,.contact-layout,.form-row{grid-template-columns:1fr;}
  .stats{grid-template-columns:repeat(2,1fr);}
  .footer-cols{gap:28px;}
  .hero { flex-direction: column; justify-content: center; padding-top: 90px; gap: 20px; }
  .hero-content { padding: 40px 0 0; }
  .hero-logo-wrap { width: clamp(200px, 60vw, 340px); margin-bottom: 40px; }
  .ai-team-grid { grid-template-columns: repeat(2,1fr); }
  .ai-banner-content { flex-direction: column; }
}
@media(max-width:600px){
  .nav-links{display:none;flex-direction:column;position:absolute;top:70px;left:0;right:0;background:rgba(15,31,30,0.98);border-bottom:1px solid var(--border);padding:20px 5%;}
  .nav-links.open{display:flex;}
  .hamburger{display:flex;}
  .cards-grid,.clients-wrap{grid-template-columns:1fr;}
  .stats{grid-template-columns:repeat(2,1fr);}
  .hero-content{padding:50px 0 20px;}
  .hero-logo-wrap { display: none; }
  .svc-img img { height: 260px; }
  .cta-band{padding:48px 5%;}
  .footer-cols{flex-direction:column;gap:24px;}
  .page-hero{min-height:auto;padding:100px 5% 48px;}
  .ai-team-grid { grid-template-columns: 1fr; }
  .ai-banner { padding: 28px 22px; }
}
