:root {
  --ink: #07111f;
  --ink-2: #0b1c2f;
  --navy: #10263d;
  --electric: #36f1cd;
  --electric-2: #4cf0ff;
  --blue: #2678ff;
  --violet: #8b5cf6;
  --paper: #f3f7f9;
  --white: #fff;
  --muted: #66778a;
  --line: rgba(8, 29, 49, .12);
  --radius: 24px;
  --shadow: 0 30px 80px rgba(0, 20, 40, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #04101d;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.site-header, main, .footer, .whatsapp-float, .skip-link { position: relative; z-index: 1; }
.page-atmosphere {
  position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
  background: #04101d;
}
.atmosphere-image {
  position: absolute; inset: -12vh -7vw; opacity: .28;
  background:
    linear-gradient(180deg, rgba(3,12,22,.2), rgba(3,12,22,.82)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=2200&q=90") center/cover no-repeat;
  transform: translate3d(0, calc(var(--page-scroll, 0) * -0.055px), 0) scale(1.16);
  filter: saturate(.72) contrast(1.16);
  will-change: transform;
}
.atmosphere-aurora {
  position: absolute; inset: -30%; opacity: .7;
  background:
    radial-gradient(circle at 20% 25%, rgba(38,120,255,.26), transparent 24%),
    radial-gradient(circle at 76% 42%, rgba(54,241,205,.17), transparent 22%),
    radial-gradient(circle at 48% 82%, rgba(139,92,246,.2), transparent 26%);
  animation: atmosphere-drift 18s ease-in-out infinite alternate;
  transform: translate3d(0, calc(var(--page-scroll, 0) * -0.018px), 0);
  will-change: transform;
}
.atmosphere-grid {
  position: absolute; inset: -20%;
  opacity: .12;
  background-image:
    linear-gradient(rgba(76,240,255,.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76,240,255,.24) 1px, transparent 1px);
  background-size: 95px 95px;
  transform: perspective(700px) rotateX(67deg) translateY(calc(22% + var(--page-scroll, 0) * -0.025px)) scale(1.5);
  transform-origin: center;
  mask-image: linear-gradient(to bottom, transparent, black 24%, black 75%, transparent);
}
.atmosphere-scan {
  position: absolute; left: 0; right: 0; height: 28vh; top: -32vh;
  background: linear-gradient(to bottom, transparent, rgba(76,240,255,.05), rgba(76,240,255,.13), transparent);
  filter: blur(8px);
  animation: scan-page 10s linear infinite;
}
@keyframes atmosphere-drift {
  0% { transform: translate3d(-3%, -2%, 0) rotate(-2deg) scale(1); }
  100% { transform: translate3d(4%, 3%, 0) rotate(3deg) scale(1.08); }
}
@keyframes scan-page {
  to { transform: translateY(145vh); }
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }
em { color: var(--electric); font-style: normal; }

.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 1000;
  background: var(--electric); color: var(--ink); padding: 12px 18px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(4, 14, 26, .58);
  backdrop-filter: blur(18px);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(5, 16, 29, .94);
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}
.nav-shell {
  width: min(1440px, calc(100% - 64px)); height: 86px; margin: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: white; }
.brand-mark { width: 40px; height: 40px; position: relative; display: grid; place-items: center; }
.brand-mark span { position: absolute; width: 28px; height: 28px; border: 2px solid var(--electric); transform: rotate(45deg); }
.brand-mark span:nth-child(2) { width: 20px; height: 20px; opacity: .65; }
.brand-mark span:nth-child(3) { width: 8px; height: 8px; background: var(--electric); }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font: 700 17px/1 "Space Grotesk"; letter-spacing: .08em; }
.brand-copy small { margin-top: 5px; color: var(--electric); font: 700 8px/1 "Manrope"; letter-spacing: .38em; }
.desktop-nav { display: flex; gap: 34px; }
.desktop-nav a { position: relative; color: rgba(255,255,255,.72); font-size: 13px; font-weight: 700; }
.desktop-nav a:hover, .desktop-nav a.active { color: white; }
.desktop-nav a.active::after { content:""; position: absolute; left: 0; right: 0; bottom: -13px; height: 2px; background: var(--electric); }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.language { border: 0; background: transparent; color: rgba(255,255,255,.5); display: flex; gap: 8px; align-items: center; font-size: 11px; font-weight: 800; }
.language span:first-child { color: white; }
.language i { width: 1px; height: 15px; background: rgba(255,255,255,.25); }
.button {
  min-height: 52px; padding: 0 24px; border: 1px solid transparent; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center; gap: 18px;
  font-size: 13px; font-weight: 800; transition: transform .25s, box-shadow .25s, background .25s;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 0 18px; border-color: rgba(255,255,255,.18); color: white; }
.button-small:hover { border-color: var(--electric); }
.button-primary { background: var(--electric); color: var(--ink); box-shadow: 0 16px 40px rgba(54,241,205,.18); }
.button-primary:hover { box-shadow: 0 20px 50px rgba(54,241,205,.3); }
.button-light { background: white; color: var(--ink); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.15); background: transparent; border-radius: 8px; }
.menu-toggle span { display: block; width: 18px; height: 2px; background: white; margin: 5px auto; }
.mobile-menu { display: none; }

.hero {
  min-height: 890px; position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 73% 28%, rgba(38,120,255,.25), transparent 29%),
    radial-gradient(circle at 30% 55%, rgba(54,241,205,.08), transparent 32%),
    linear-gradient(135deg, #06101d 0%, #081827 48%, #092035 100%);
  color: white; padding-top: 86px;
  isolation: isolate;
}
.hero-particles { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: .72; pointer-events: none; }
.cursor-light {
  position: absolute; z-index: 0; width: 520px; height: 520px; border-radius: 50%;
  left: var(--pointer-x, 70%); top: var(--pointer-y, 35%);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(54,241,205,.11), rgba(38,120,255,.055) 35%, transparent 68%);
  filter: blur(12px); pointer-events: none; transition: opacity .3s;
}
.grid-lines {
  position: absolute; inset: 0; opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-one { width: 560px; height: 560px; right: -270px; top: 80px; border: 1px solid rgba(76,240,255,.18); box-shadow: inset 0 0 90px rgba(38,120,255,.08); }
.orb-two { width: 300px; height: 300px; left: -180px; bottom: 80px; border: 1px solid rgba(54,241,205,.14); }
.hero-content {
  width: min(1320px, calc(100% - 80px)); min-height: 710px; margin: auto;
  display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 70px;
  position: relative; z-index: 2;
}
.eyebrow { margin: 0 0 26px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.65); font-size: 10px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow span { width: 32px; height: 2px; background: var(--electric); }
.eyebrow.dark { color: var(--muted); }
.hero h1, .section h2 {
  margin: 0; font: 600 clamp(54px, 6.3vw, 94px)/.98 "Space Grotesk";
  letter-spacing: -.055em;
}
.hero h1 em { display: inline-block; margin-top: 8px; }
.hero-lead { max-width: 620px; margin: 34px 0; color: rgba(255,255,255,.68); font-size: 16px; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.text-link { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.74); font-size: 13px; font-weight: 700; }
.text-link span { color: var(--electric); }
.trust-row { display: flex; align-items: center; gap: 16px; margin-top: 46px; }
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 42px; height: 42px; margin-left: -8px; border: 2px solid #0a1b2c; border-radius: 50%;
  display: grid; place-items: center; background: linear-gradient(135deg, #1e4667, #173047);
  color: var(--electric); font-size: 8px; font-weight: 800;
}
.avatar-stack span:first-child { margin-left: 0; }
.trust-row div:last-child { display: grid; gap: 4px; }
.trust-row strong { font-size: 12px; }
.trust-row small { color: rgba(255,255,255,.5); font-size: 10px; }

.hero-visual { position: relative; }
.orbit {
  position: absolute; z-index: -1; border: 1px solid rgba(76,240,255,.16);
  border-radius: 50%; pointer-events: none;
  transform-style: preserve-3d;
}
.orbit-large { width: 720px; height: 720px; left: 50%; top: 50%; transform: translate(-50%, -50%) rotateX(68deg) rotateZ(-18deg); animation: orbit-spin 22s linear infinite; }
.orbit-small { width: 510px; height: 510px; left: 52%; top: 48%; transform: translate(-50%, -50%) rotateY(68deg) rotateZ(16deg); animation: orbit-spin-reverse 16s linear infinite; }
.orbit i { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--electric); box-shadow: 0 0 18px var(--electric); }
.orbit-large i:nth-child(1) { left: 9%; top: 27%; }
.orbit-large i:nth-child(2) { right: 4%; top: 47%; background: var(--blue); box-shadow: 0 0 18px var(--blue); }
.orbit-large i:nth-child(3) { left: 45%; bottom: -4px; }
.orbit-small i:nth-child(1) { right: 12%; top: 20%; }
.orbit-small i:nth-child(2) { left: 4%; bottom: 31%; background: var(--violet); box-shadow: 0 0 18px var(--violet); }
@keyframes orbit-spin { to { transform: translate(-50%, -50%) rotateX(68deg) rotateZ(342deg); } }
@keyframes orbit-spin-reverse { to { transform: translate(-50%, -50%) rotateY(68deg) rotateZ(-344deg); } }
.visual-frame {
  width: min(630px, 100%); margin-left: auto; padding: 12px; position: relative;
  border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.045);
  box-shadow: 0 50px 100px rgba(0,0,0,.38); transform: perspective(1200px) rotateY(-4deg);
  transform-style: preserve-3d; transition: transform .22s ease-out;
}
.visual-topbar { height: 45px; padding: 0 14px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.5); font-size: 8px; letter-spacing: .18em; }
.visual-topbar p { margin-right: auto; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--electric); box-shadow: 0 0 16px var(--electric); }
.tech-portrait {
  min-height: 530px;
  background:
    linear-gradient(to top, rgba(3,10,18,.96), transparent 52%),
    linear-gradient(120deg, rgba(4,19,35,.15), rgba(22,97,153,.15)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1400&q=88") center/cover;
  filter: saturate(.8) contrast(1.08);
}
.floating-card {
  position: absolute; border: 1px solid rgba(255,255,255,.15); background: rgba(7,21,36,.87);
  backdrop-filter: blur(15px); box-shadow: 0 20px 45px rgba(0,0,0,.28);
  transform: translateZ(55px);
}
.security-card { left: -45px; bottom: 80px; padding: 17px 20px; display: flex; gap: 13px; align-items: center; }
.card-icon { width: 34px; height: 34px; display: grid; place-items: center; background: rgba(54,241,205,.12); color: var(--electric); border: 1px solid rgba(54,241,205,.34); }
.floating-card div { display: grid; gap: 4px; }
.floating-card small { color: rgba(255,255,255,.45); font-size: 7px; letter-spacing: .18em; }
.floating-card strong { font: 600 13px "Space Grotesk"; }
.performance-card { right: -35px; top: 90px; width: 148px; padding: 18px; display: grid; gap: 8px; }
.performance-card strong { color: var(--electric); font-size: 28px; }
.mini-chart { height: 30px; display: flex; gap: 4px; align-items: flex-end; }
.mini-chart i { flex: 1; background: linear-gradient(to top, var(--blue), var(--electric)); }
.mini-chart i:nth-child(1){height:30%}.mini-chart i:nth-child(2){height:48%}.mini-chart i:nth-child(3){height:40%}.mini-chart i:nth-child(4){height:75%}.mini-chart i:nth-child(5){height:100%}
.signal-strip {
  min-height: 74px; width: 100%; border-top: 1px solid rgba(255,255,255,.09); position: absolute; bottom: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center; gap: 36px; color: rgba(255,255,255,.48); font-size: 9px; font-weight: 800; letter-spacing: .2em;
}
.signal-strip i { width: 4px; height: 4px; border-radius: 50%; background: var(--electric); }

.section { padding: 130px 0; }
.section-services,
.projects {
  position: relative;
  color: white;
  background:
    linear-gradient(180deg, rgba(4,16,29,.9), rgba(7,25,42,.72) 50%, rgba(4,16,29,.9));
  backdrop-filter: blur(2px);
}
.section-services::before,
.projects::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  border-top: 1px solid rgba(76,240,255,.1);
  border-bottom: 1px solid rgba(76,240,255,.08);
  background: radial-gradient(circle at 80% 40%, rgba(38,120,255,.11), transparent 35%);
}
.section-services .section-heading,
.projects .section-heading,
.section-services .service-grid,
.projects .project-showcase { position: relative; z-index: 1; }
.section-services .eyebrow.dark,
.projects .eyebrow.dark { color: rgba(255,255,255,.53); }
.section-services .section-heading > p,
.projects .section-heading > p { color: rgba(255,255,255,.55); }
.section-heading { width: min(1280px, calc(100% - 80px)); margin: 0 auto 65px; display: flex; align-items: end; justify-content: space-between; gap: 80px; }
.section h2 { font-size: clamp(44px, 5vw, 72px); }
.section h2 em { color: var(--blue); }
.section-heading > p { max-width: 410px; margin: 0 0 6px; color: var(--muted); line-height: 1.8; font-size: 14px; }
.service-grid { width: min(1280px, calc(100% - 80px)); margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  min-height: 590px;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(7,20,33,.98), rgba(5,14,24,.98));
  color: white;
  transition: transform .18s ease-out, box-shadow .3s, border-color .3s;
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(38,120,255,.35); }
.service-featured { background: linear-gradient(145deg, #071625, #0b2c43); }
.service-card-visual .service-media {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.service-card-visual .service-media img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  display: block;
}
.service-media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4,10,18,.08) 0%, rgba(4,10,18,.22) 35%, rgba(5,14,24,.92) 100%),
    linear-gradient(90deg, rgba(5,14,24,.16) 0%, rgba(5,14,24,.42) 100%);
  pointer-events: none;
}
.service-number {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 10px 12px;
  background: rgba(3, 15, 28, .72);
  border: 1px solid rgba(255,255,255,.12);
  color: white;
  font: 600 11px "Space Grotesk";
  letter-spacing: .12em;
  z-index: 2;
}
.service-icon {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(54,241,205,.1);
  border: 1px solid rgba(54,241,205,.18);
  color: var(--electric);
  font-size: 25px;
  z-index: 2;
}
.service-body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 30px;
}
.service-card h3 { margin: 0 0 18px; font: 600 28px "Space Grotesk"; letter-spacing: -.03em; color: #fff; }
.service-card > *:not(.card-glow) { transform: translateZ(18px); }
.service-card p { min-height: 72px; margin: 0; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.75; }
.service-card ul { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 11px; }
.service-card li { color: rgba(255,255,255,.72); font-size: 11px; }
.service-card li::before { content: "—"; color: var(--electric); margin-right: 9px; }
.service-card a { margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; color: #fff; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.service-card a span { color: var(--electric); }
.card-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  bottom: -110px;
  left: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54,241,205,.16), transparent 68%);
  filter: blur(16px);
  pointer-events: none;
}

.method { background: transparent; padding-top: 55px; padding-bottom: 55px; }
.method-panel {
  width: min(1360px, calc(100% - 48px)); min-height: 650px; margin: auto; padding: 90px;
  display: grid; grid-template-columns: 1fr .92fr; align-items: center; gap: 110px;
  background:
    radial-gradient(circle at 12% 0%, rgba(38,120,255,.26), transparent 33%),
    linear-gradient(135deg, #071523, #09263b);
  color: white; position: relative; overflow: hidden;
}
.method-copy > p:not(.eyebrow) { max-width: 520px; color: rgba(255,255,255,.62); line-height: 1.8; font-size: 14px; margin: 28px 0 34px; }
.method-steps { list-style: none; margin: 0; padding: 0; display: grid; }
.method-steps li { padding: 28px 0; display: grid; grid-template-columns: 56px 1fr; gap: 22px; border-bottom: 1px solid rgba(255,255,255,.1); }
.method-steps li:first-child { border-top: 1px solid rgba(255,255,255,.1); }
.method-steps > li > span { color: var(--electric); font: 600 11px "Space Grotesk"; }
.method-steps div { display: grid; gap: 9px; }
.method-steps strong { font: 600 18px "Space Grotesk"; }
.method-steps p { margin: 0; color: rgba(255,255,255,.5); font-size: 12px; line-height: 1.6; }

.projects { background-color: transparent; }
.project-showcase { width: min(1280px, calc(100% - 80px)); margin: auto; display: grid; grid-template-columns: 1.45fr .55fr; box-shadow: var(--shadow); }
.project-browser { padding: 18px; background: #dce7ed; }
.project-browser { perspective: 1200px; }
.project-screen { transition: transform .5s ease, box-shadow .5s ease; transform-origin: 50% 100%; }
.project-showcase:hover .project-screen { transform: rotateX(2.5deg) translateY(-5px); box-shadow: 0 28px 65px rgba(0,20,40,.24); }
.browser-bar { height: 43px; padding: 0 14px; display: flex; align-items: center; gap: 7px; background: white; }
.browser-bar i { width: 7px; height: 7px; border-radius: 50%; background: #d6dce1; }
.browser-bar span { margin: auto; padding: 5px 18px; border-radius: 20px; background: #f2f5f7; color: #9aa5ad; font-size: 8px; }
.project-screen {
  min-height: 420px; padding: 70px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(54,241,205,.22), transparent 30%),
    linear-gradient(135deg, #061322, #0a2a42); color: white;
}
.project-screen > span { color: var(--electric); font-size: 8px; letter-spacing: .22em; }
.project-screen strong { margin: 22px 0 28px; font: 600 clamp(30px, 4vw, 54px)/1.05 "Space Grotesk"; letter-spacing: -.045em; }
.project-screen button { padding: 14px 18px; border: 0; background: var(--electric); color: var(--ink); font-size: 9px; font-weight: 800; }
.project-info { padding: 60px 46px; background: var(--ink); color: white; display: flex; flex-direction: column; justify-content: center; }
.project-info > span { color: var(--electric); font-size: 8px; letter-spacing: .16em; }
.project-info h3 { margin: 24px 0 18px; font: 600 27px/1.2 "Space Grotesk"; }
.project-info p { color: rgba(255,255,255,.55); font-size: 12px; line-height: 1.75; }
.project-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.project-tags span { padding: 8px 10px; border: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.55); font-size: 7px; letter-spacing: .12em; }

.contact { padding-bottom: 0; background: var(--ink); color: white; }
.contact { background: linear-gradient(180deg, rgba(5,16,29,.88), rgba(5,13,23,.97)); backdrop-filter: blur(7px); }
.contact-shell { width: min(1280px, calc(100% - 80px)); margin: auto; padding-bottom: 120px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.contact-copy > p:not(.eyebrow) { max-width: 450px; color: rgba(255,255,255,.55); line-height: 1.8; font-size: 14px; }
.contact-options { display: grid; gap: 10px; margin-top: 38px; }
.contact-options a { max-width: 440px; padding: 15px; border: 1px solid rgba(255,255,255,.1); display: grid; grid-template-columns: 48px 1fr auto; gap: 14px; align-items: center; transition: border .2s, background .2s; }
.contact-options a:hover { border-color: var(--electric); background: rgba(54,241,205,.04); }
.contact-options > a > span { width: 48px; height: 48px; display: grid; place-items: center; background: rgba(54,241,205,.09); color: var(--electric); font-size: 10px; font-weight: 800; }
.contact-options div { display: grid; gap: 5px; }
.contact-options small { color: rgba(255,255,255,.4); font-size: 7px; letter-spacing: .15em; }
.contact-options strong { font-size: 11px; }
.contact-options i { color: var(--electric); font-style: normal; }
.contact-form { padding: 46px; background: white; color: var(--ink); box-shadow: 0 30px 90px rgba(0,0,0,.3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 9px; margin-bottom: 20px; color: #4e5c69; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #dce4e9; border-radius: 2px; background: #f7f9fa; color: var(--ink); padding: 15px; outline: none; text-transform: none; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(38,120,255,.08); }
.checkbox { grid-template-columns: 18px 1fr !important; align-items: start; font-weight: 500 !important; text-transform: none !important; letter-spacing: 0 !important; line-height: 1.5; }
.checkbox input { width: 16px; height: 16px; padding: 0; margin: 1px 0 0; }
.form-button { width: 100%; border: 0; }
.form-note { text-align: center; color: #8a98a4; font-size: 9px; }

.footer { padding: 70px 0 25px; background: rgba(5,13,23,.98); color: white; border-top: 1px solid rgba(255,255,255,.08); }
.footer-main { width: min(1280px, calc(100% - 80px)); margin: auto; display: grid; grid-template-columns: .7fr 1fr 1fr; gap: 60px; align-items: start; }
.footer-main > p { margin: 0; color: rgba(255,255,255,.45); font-size: 11px; line-height: 1.8; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px; }
.footer-links div { display: grid; gap: 12px; }
.footer-links strong { margin-bottom: 5px; color: rgba(255,255,255,.85); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.footer-links a { color: rgba(255,255,255,.43); font-size: 10px; }
.footer-links a:hover { color: var(--electric); }
.footer-bottom { width: min(1280px, calc(100% - 80px)); margin: 60px auto 0; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; color: rgba(255,255,255,.3); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80; padding: 8px 15px 8px 8px;
  display: flex; align-items: center; gap: 10px; border-radius: 40px; background: white; color: var(--ink); box-shadow: 0 14px 45px rgba(0,0,0,.22);
}
.whatsapp-float span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #22c55e; color: white; font-size: 9px; font-weight: 800; }
.whatsapp-float i { font-style: normal; font-size: 10px; font-weight: 800; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
.reveal-delay { transition-delay: .18s; }
.reveal.visible { opacity: 1; transform: none; }

@supports (animation-timeline: view()) {
  .project-browser { animation: project-rise linear both; animation-timeline: view(); animation-range: entry 10% cover 40%; }
  @keyframes project-rise {
    from { transform: perspective(1200px) rotateX(8deg) translateY(40px); opacity: .6; }
    to { transform: perspective(1200px) rotateX(0) translateY(0); opacity: 1; }
  }
}

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .nav-actions .button-small { display: none; }
  .mobile-menu { position: fixed; inset: 86px 0 auto; padding: 28px 40px 38px; background: #071421; border-top: 1px solid rgba(255,255,255,.08); }
  .mobile-menu.open { display: grid; gap: 22px; }
  .mobile-menu a { color: rgba(255,255,255,.75); font: 600 20px "Space Grotesk"; }
  .hero { min-height: auto; padding-bottom: 74px; }
  .hero-content { padding: 90px 0 100px; grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-actions, .trust-row { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-visual { width: min(720px, 90%); margin: auto; }
  .visual-frame { margin: auto; transform: none; }
  .orbit-large { width: 650px; height: 650px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; min-height: 590px; }
  .method-panel { padding: 70px 55px; grid-template-columns: 1fr; gap: 60px; }
  .project-showcase { grid-template-columns: 1fr; }
  .project-info { min-height: 310px; }
  .contact-shell { gap: 55px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1/-1; }
}

@media (max-width: 760px) {
  .nav-shell { width: calc(100% - 32px); height: 72px; }
  .site-header { height: 72px; }
  .brand-copy { display: none; }
  .brand-mark { transform: scale(.82); }
  .language { margin-left: auto; }
  .mobile-menu { inset: 72px 0 auto; }
  .hero { padding-top: 72px; }
  .hero-content { width: calc(100% - 36px); padding: 72px 0 90px; }
  .hero h1 { font-size: clamp(46px, 14vw, 65px); }
  .hero-lead { font-size: 14px; }
  .hero-actions { flex-direction: column; gap: 22px; }
  .hero-actions .button { width: 100%; }
  .hero-visual { width: 100%; margin-top: 30px; }
  .tech-portrait { min-height: 380px; }
  .performance-card { right: -8px; top: 70px; }
  .security-card { left: -8px; bottom: 50px; }
  .signal-strip { overflow: hidden; justify-content: flex-start; padding-left: 24px; gap: 20px; white-space: nowrap; }
  .signal-strip span:nth-of-type(n+3), .signal-strip i:nth-of-type(n+2) { display: none; }
  .section { padding: 90px 0; }
  .section-heading { width: calc(100% - 36px); margin-bottom: 42px; display: grid; gap: 28px; }
  .section h2 { font-size: clamp(40px, 13vw, 57px); }
  .service-grid { width: calc(100% - 36px); grid-template-columns: 1fr; }
  .service-card, .service-card:last-child { grid-column: auto; min-height: 540px; padding: 0; }
  .service-body { padding: 24px 24px 28px; }
  .service-card-visual .service-media, .service-card-visual .service-media img { min-height: 220px; }
  .method { padding-top: 0; }
  .method-panel { width: 100%; padding: 75px 24px; }
  .method-steps li { grid-template-columns: 42px 1fr; }
  .project-showcase { width: calc(100% - 36px); }
  .project-browser { padding: 8px; }
  .project-screen { min-height: 360px; padding: 38px 24px; }
  .project-info { padding: 42px 28px; }
  .contact-shell { width: calc(100% - 36px); padding-bottom: 75px; grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-main, .footer-bottom { width: calc(100% - 36px); }
  .footer-main { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { gap: 20px; flex-direction: column; }
  .whatsapp-float i { display: none; }
  .whatsapp-float { padding: 6px; }
  .cursor-light { display: none; }
  .orbit-large { width: 500px; height: 500px; }
  .orbit-small { width: 360px; height: 360px; }
  .atmosphere-image {
    inset: -5vh -35vw;
    transform: translate3d(0, calc(var(--page-scroll, 0) * -0.025px), 0) scale(1.1);
  }
  .atmosphere-grid { opacity: .07; background-size: 64px 64px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .orbit { animation: none; }
  .hero-particles { display: none; }
  .atmosphere-aurora, .atmosphere-scan { animation: none; }
  .atmosphere-image, .atmosphere-grid { transform: none; }
}

.gallery-button {
  margin-top: 18px;
  display: inline-flex;
}

.gallery-section {
  padding-top: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.gallery-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 12, 25, .18);
  backdrop-filter: blur(8px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 80px rgba(0, 12, 25, .24);
  border-color: rgba(76, 240, 255, 0.25);
}

.gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #091421;
}

.gallery-card-copy {
  padding: 20px 22px 24px;
  background: linear-gradient(180deg, rgba(9, 19, 31, 0.9), rgba(6, 13, 22, 0.96));
}

.gallery-card-copy strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.gallery-card-copy span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  font-size: .95rem;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


/* Ajustes de idioma y previews verticales del portfolio */
.language { position: relative; }
.language span { transition: color .2s ease, opacity .2s ease; }
.language span:first-child { color: #fff; opacity: 1; }
.language span:last-child { color: rgba(255,255,255,.48); opacity: .72; }
.language.is-en span:first-child { color: rgba(255,255,255,.48); opacity: .72; }
.language.is-en span:last-child { color: #fff; opacity: 1; }

.gallery-card img {
  object-position: top center;
}
.gallery-card img[src*="landing-jardineria"],
.gallery-card img[src*="landing-fuentes"] {
  object-position: top center;
}

/* ===== Asistente previo a WhatsApp ===== */
.wa-assistant-trigger {
  border: 0;
  cursor: pointer;
  font: inherit;
}
.wa-assistant-backdrop {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: none;
  place-items: end;
  padding: 24px;
  background: rgba(2, 8, 16, .62);
  backdrop-filter: blur(8px);
}
.wa-assistant-backdrop.is-open { display: grid; }
.wa-assistant {
  width: min(430px, calc(100vw - 32px));
  max-height: min(720px, calc(100vh - 40px));
  overflow: auto;
  border: 1px solid rgba(116, 226, 255, .17);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 0%, rgba(38,120,255,.20), transparent 35%),
    linear-gradient(180deg, #081827, #06111d 72%);
  box-shadow: 0 28px 90px rgba(0,0,0,.45);
  color: #fff;
}
.wa-assistant-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(6,17,29,.94);
  backdrop-filter: blur(12px);
}
.wa-assistant-brand { display: flex; align-items: center; gap: 12px; }
.wa-assistant-brand-badge {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(34,197,94,.14);
  border: 1px solid rgba(34,197,94,.30);
  color: #86efac;
  font: 800 11px "Space Grotesk";
}
.wa-assistant-brand strong { display: block; font: 600 14px "Space Grotesk"; }
.wa-assistant-brand small { display: block; margin-top: 2px; color: rgba(255,255,255,.48); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.wa-assistant-close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
}
.wa-assistant-body { padding: 24px 22px 22px; }
.wa-progress { height: 3px; margin-bottom: 24px; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.08); }
.wa-progress span { display: block; height: 100%; width: 20%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--electric)); transition: width .25s ease; }
.wa-step-label { color: var(--electric); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.wa-question { margin: 10px 0 8px; font: 600 25px/1.2 "Space Grotesk"; letter-spacing: -.025em; }
.wa-help { margin: 0 0 22px; color: rgba(255,255,255,.54); font-size: 12px; line-height: 1.65; }
.wa-options { display: grid; gap: 10px; }
.wa-option {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
  color: rgba(255,255,255,.84);
  text-align: left;
  cursor: pointer;
  transition: .2s ease;
}
.wa-option:hover, .wa-option.is-selected { border-color: rgba(54,241,205,.55); background: rgba(54,241,205,.07); color: #fff; }
.wa-option span:last-child { color: var(--electric); }
.wa-field {
  width: 100%;
  min-height: 50px;
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.045);
  color: #fff;
  outline: none;
  resize: vertical;
  font: inherit;
}
.wa-field:focus { border-color: var(--electric); box-shadow: 0 0 0 3px rgba(54,241,205,.08); }
.wa-field::placeholder { color: rgba(255,255,255,.34); }
.wa-actions { display: flex; gap: 10px; margin-top: 20px; }
.wa-actions button {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 10px;
  cursor: pointer;
  font: 800 10px "Manrope";
  letter-spacing: .08em;
  text-transform: uppercase;
}
.wa-back { border: 1px solid rgba(255,255,255,.11); background: transparent; color: rgba(255,255,255,.65); }
.wa-next { flex: 1; border: 0; background: linear-gradient(90deg, #22c55e, #43dd79); color: #04120a; }
.wa-direct {
  width: 100%;
  margin-top: 14px;
  padding: 11px 0 0;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.07);
  background: transparent;
  color: rgba(255,255,255,.47);
  cursor: pointer;
  font-size: 10px;
}
.wa-summary { display: grid; gap: 10px; margin: 18px 0; }
.wa-summary div { padding: 12px 14px; border: 1px solid rgba(255,255,255,.08); border-radius: 10px; background: rgba(255,255,255,.025); }
.wa-summary small { display: block; margin-bottom: 4px; color: rgba(255,255,255,.38); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.wa-summary strong { font-size: 12px; line-height: 1.5; }
.wa-privacy-note { margin: 14px 0 0; color: rgba(255,255,255,.40); font-size: 9px; line-height: 1.55; }
.wa-test-note { margin-top: 10px; padding: 10px 12px; border-radius: 9px; background: rgba(38,120,255,.10); color: rgba(255,255,255,.62); font-size: 9px; line-height: 1.5; }
body.wa-modal-open { overflow: hidden; }
@media (max-width: 600px) {
  .wa-assistant-backdrop { padding: 0; place-items: end stretch; }
  .wa-assistant { width: 100%; max-height: 88vh; border-radius: 22px 22px 0 0; }
  .wa-assistant-body { padding: 22px 18px 20px; }
  .wa-question { font-size: 23px; }
}

/* ===== Testimonios en movimiento ===== */
.testimonials-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(38,120,255,.16), transparent 28%),
    radial-gradient(circle at 85% 70%, rgba(54,241,205,.08), transparent 28%),
    linear-gradient(180deg, #06101c 0%, #071522 100%);
  color: #fff;
  border-top: 1px solid rgba(76,240,255,.09);
  border-bottom: 1px solid rgba(76,240,255,.08);
}
.testimonials-heading {
  width: min(1280px, calc(100% - 80px));
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 70px;
}
.testimonials-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -24px; color: rgba(255,255,255,.52); }
.testimonials-heading h2 { margin: 0; }
.testimonials-heading h2 em { color: var(--electric); }
.testimonials-heading > p:last-child { margin: 0 0 7px; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.8; }
.testimonials-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 8px 0 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.testimonials-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding-left: 18px;
  animation: testimonials-scroll 38s linear infinite;
}
.testimonials-marquee:hover .testimonials-track { animation-play-state: paused; }
.testimonial-card {
  width: min(390px, 82vw);
  min-height: 245px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, rgba(12,33,52,.92), rgba(7,19,31,.96));
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 22px 55px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
}
.testimonial-badge {
  width: fit-content;
  padding: 7px 9px;
  border: 1px solid rgba(54,241,205,.22);
  background: rgba(54,241,205,.06);
  color: var(--electric);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .13em;
}
.testimonial-card blockquote {
  margin: 28px 0 30px;
  color: rgba(255,255,255,.9);
  font: 500 18px/1.55 "Space Grotesk";
  letter-spacing: -.015em;
}
.testimonial-card footer {
  padding-top: 18px;
  display: grid;
  gap: 5px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.testimonial-card footer strong { font-size: 10px; letter-spacing: .04em; }
.testimonial-card footer span { color: rgba(255,255,255,.43); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.testimonials-note {
  width: min(1280px, calc(100% - 80px));
  margin: 30px auto 0;
  color: rgba(255,255,255,.36);
  font-size: 9px;
  text-align: center;
  letter-spacing: .05em;
}
@keyframes testimonials-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}
@media (max-width: 760px) {
  .testimonials-heading { width: calc(100% - 36px); grid-template-columns: 1fr; gap: 24px; margin-bottom: 34px; }
  .testimonials-heading .eyebrow { grid-column: auto; margin-bottom: 0; }
  .testimonial-card { min-height: 220px; padding: 24px; }
  .testimonial-card blockquote { font-size: 16px; }
  .testimonials-note { width: calc(100% - 36px); }
  .testimonials-track { animation-duration: 30s; }
}
@media (prefers-reduced-motion: reduce) {
  .testimonials-marquee { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
  .testimonials-track { animation: none; }
}

/* ===== Ajustes finales responsive, accesibilidad y formularios ===== */
img { max-width: 100%; }
a, button, input, select, textarea { -webkit-tap-highlight-color: transparent; }
button, input, select, textarea { font: inherit; }
.lang-links { display:flex; align-items:center; gap:8px; font-size:10px; font-weight:800; letter-spacing:.08em; }
.lang-links a { color:rgba(255,255,255,.45); padding:8px 5px; border-radius:4px; }
.lang-links a.active { color:#fff; }
.lang-links i { width:20px; height:1px; background:rgba(255,255,255,.18); }
.form-honeypot { position:absolute!important; left:-9999px!important; width:1px!important; height:1px!important; overflow:hidden!important; }
.form-status { min-height:20px; margin:12px 0 0; text-align:center; font-size:10px; line-height:1.5; }
.form-status.is-pending { color:#6b7b89; }
.form-status.is-success { color:#147a62; }
.form-status.is-warning { color:#966e00; }
.form-status.is-error { color:#b42318; }
.contact-form button:disabled { opacity:.65; cursor:wait; }
.checkbox a { color:var(--blue); text-decoration:underline; text-underline-offset:2px; }
.testimonial-card, .service-card, .gallery-card, .blog-card, .secondary-feature { min-width:0; }
.testimonial-card blockquote, .service-card p, .gallery-card-copy, .blog-card-copy, .secondary-feature p { overflow-wrap:anywhere; }

@media (max-width: 1100px) {
  .lang-links { margin-left:auto; }
}
@media (max-width: 760px) {
  html, body { overflow-x:hidden; }
  .nav-actions { gap:8px; }
  .lang-links { gap:5px; }
  .lang-links i { width:12px; }
  .contact-options a { max-width:none; }
  .contact-form { width:100%; }
  .service-card-visual .service-media { aspect-ratio:16/10; min-height:0; }
  .service-card-visual .service-media img { min-height:0; height:100%; }
  .gallery-card img { height:auto; min-height:220px; max-height:360px; object-fit:cover; object-position:top; }
  .testimonials-track { will-change:transform; }
  .testimonial-card { width:min(82vw, 340px); }
  .wa-assistant { width:calc(100vw - 24px); max-height:calc(100dvh - 24px); }
  .wa-assistant-body { overflow:auto; }
}
@media (max-width: 420px) {
  .nav-shell { width:calc(100% - 22px); }
  .section-heading, .service-grid, .project-showcase, .contact-shell, .footer-main, .footer-bottom { width:calc(100% - 28px); }
  .hero-content { width:calc(100% - 28px); }
  .service-body { padding:22px 20px 24px; }
  .service-card h3 { font-size:25px; }
  .contact-form { padding:24px 16px; }
  .testimonial-card { width:86vw; padding:22px; }
  .footer-links { grid-template-columns:1fr; }
  .button { white-space:normal; text-align:center; }
}
