/* =========================================================
   VARIABLES
   ========================================================= */
:root {
  --clr-bg: #0b1326;
  --clr-bg-deep: #08101f;
  --clr-surface-low: #0e1628;
  --clr-surface: #131b2e;
  --clr-surface-hi: #1a2440;
  --clr-text: #dae2fd;
  --clr-text-muted: #94a3b8;
  --clr-text-dim: #64748b;
  --clr-primary: #4dbee4;
  --clr-primary-light: #73d9ff;
  --clr-secondary: #0891b2;
  --clr-on-primary: #002535;
  --clr-line: rgba(218, 226, 253, .11);
  --clr-line-strong: rgba(218, 226, 253, .18);
  --clr-primary-faint: rgba(77, 190, 228, .07);
  --clr-primary-soft: rgba(77, 190, 228, .12);
  --clr-primary-mid: rgba(77, 190, 228, .24);
  --clr-primary-glow: rgba(77, 190, 228, .28);
  --clr-secondary-soft: rgba(8, 145, 178, .16);
  --clr-text-soft: rgba(218, 226, 253, .16);
  --clr-grid: rgba(218, 226, 253, .022);
  --clr-surface-glass: rgba(19, 27, 46, .88);
  --clr-surface-card: rgba(19, 27, 46, .62);
  --clr-header: rgba(11, 19, 38, .90);
  --clr-shadow-soft: rgba(0, 7, 20, .30);
  --clr-shadow-deep: rgba(0, 7, 20, .40);
  --gradient-primary: linear-gradient(135deg, #4dbee4 0%, #0891b2 100%);
  --gradient-surface: linear-gradient(145deg, #1a2440, #131b2e);
  --shadow: 0 20px 60px var(--clr-shadow-deep);
  --shadow-primary: 0 12px 28px rgba(77, 190, 228, .25);
  --font-body: 'DM Sans', Arial, sans-serif;
  --font-display: 'Manrope', Arial, sans-serif;
  --max: 1180px;
  --radius: 20px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

/* =========================================================
   RESET + BASE
   ========================================================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--clr-bg); color: var(--clr-text); font: 400 16px/1.65 var(--font-body); }
body::before { content: ''; position: fixed; inset: 0; pointer-events: none; opacity: .5; background-image: linear-gradient(var(--clr-grid) 1px, transparent 1px), linear-gradient(90deg, var(--clr-grid) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, black, transparent 72%); }
a { color: inherit; text-decoration: none; }
h1,h2,h3,p { margin: 0; }
h1,h2,h3 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -.045em; }
h1 { max-width: 680px; font-size: clamp(2.85rem, 5.7vw, 5.25rem); font-weight: 800; }
h2 { font-size: clamp(2.15rem, 4vw, 3.65rem); font-weight: 800; }
h3 { font-size: 1.17rem; }
em { color: var(--clr-primary); font-style: normal; }
svg { display: block; width: 1em; height: 1em; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.section { position: relative; padding: 124px 0; }
.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; padding: .7rem 1rem; color: var(--clr-on-primary); background: var(--clr-primary); border-radius: 10px; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--clr-primary-light); outline-offset: 4px; }

/* =========================================================
   SHARED COMPONENTS
   ========================================================= */
.eyebrow { display: flex; align-items: center; gap: .55rem; color: var(--clr-primary); font-size: .73rem; font-weight: 700; letter-spacing: .13em; line-height: 1.2; text-transform: uppercase; }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--clr-primary); box-shadow: 0 0 0 5px var(--clr-primary-soft); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .7rem; min-height: 52px; padding: 0 1.25rem 0 1.45rem; border: 1px solid transparent; border-radius: 14px; color: var(--clr-on-primary); background: var(--gradient-primary); font-weight: 700; line-height: 1; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease); }
.button svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.button:hover { box-shadow: var(--shadow-primary); transform: translateY(-2px); }
.button:hover svg { transform: translateX(3px); }
.button--small { min-height: 40px; padding-inline: 1rem; border-radius: 11px; font-size: .84rem; }
.button--light { color: var(--clr-on-primary); background: var(--clr-text); }
.button--light:hover { box-shadow: 0 12px 28px var(--clr-text-soft); }
.text-link { display: inline-flex; align-items: center; gap: .5rem; color: var(--clr-text); font-weight: 700; }
.text-link svg { width: 18px; transition: transform .2s var(--ease); }
.text-link:hover { color: var(--clr-primary); }.text-link:hover svg { transform: translateX(3px); }
.section-heading { max-width: 690px; margin: 0 auto 58px; text-align: center; }
.section-heading .eyebrow { justify-content: center; margin-bottom: 14px; }
.section-heading h2 { margin-bottom: 18px; }
.section-heading > p:last-child { color: var(--clr-text-muted); font-size: 1.08rem; }
.section-heading--left { margin-inline: 0; text-align: left; }.section-heading--left .eyebrow { justify-content: flex-start; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header { position: fixed; z-index: 20; top: 0; left: 0; right: 0; border-bottom: 1px solid transparent; transition: background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease); }
.site-header.is-scrolled { background: var(--clr-header); border-color: var(--clr-line); box-shadow: 0 8px 24px var(--clr-shadow-soft); backdrop-filter: blur(18px); }
.nav { display: flex; align-items: center; min-height: 76px; gap: 32px; }
.brand { flex-shrink: 0; font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; letter-spacing: -.075em; }.brand span { color: var(--clr-primary); }
.nav-links { display: flex; align-items: center; justify-content: center; flex: 1; gap: 25px; }.nav-links a { color: var(--clr-text-muted); font-size: .84rem; font-weight: 600; }.nav-links a:hover { color: var(--clr-primary); }
.menu-toggle,.mobile-menu { display: none; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; min-height: 760px; display: flex; align-items: center; padding: 150px 0 80px; overflow: hidden; isolation: isolate; }
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; pointer-events: none; filter: blur(6px); }.hero-glow--one { top: -240px; right: -180px; width: 650px; height: 650px; background: radial-gradient(circle, var(--clr-primary-mid), transparent 68%); }.hero-glow--two { bottom: -300px; left: -140px; width: 600px; height: 600px; background: radial-gradient(circle, var(--clr-primary-soft), transparent 67%); }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 58px; align-items: center; }
.hero-copy .eyebrow { margin-bottom: 20px; }.hero-copy h1 em { display: block; }.hero-text { max-width: 610px; margin-top: 25px; color: var(--clr-text-muted); font-size: clamp(1rem, 1.45vw, 1.18rem); line-height: 1.7; }.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 25px; margin-top: 36px; }
.software-visual { position: relative; min-height: 450px; }.orbit { position: absolute; z-index: -1; border: 1px solid var(--clr-primary-mid); border-radius: 50%; }.orbit--a { width: 500px; height: 500px; top: -25px; right: -30px; }.orbit--b { width: 370px; height: 370px; top: 40px; right: 40px; border-color: var(--clr-primary-soft); }
.app-window { position: absolute; inset: 34px 12px 22px 38px; overflow: hidden; border: 1px solid var(--clr-line-strong); border-radius: 22px; background: var(--gradient-surface); box-shadow: var(--shadow), inset 0 1px 0 var(--clr-line); transform: perspective(1200px) rotateY(-8deg) rotateX(3deg); }
.app-top { display: flex; align-items: center; height: 42px; gap: 6px; padding: 0 15px; border-bottom: 1px solid var(--clr-line); }.app-top span { width: 7px; height: 7px; border-radius: 50%; background: var(--clr-text-dim); }.app-top span:first-child,.app-top span:nth-child(2) { background: var(--clr-primary); }.app-top i { width: 32%; height: 8px; margin-left: 18px; border-radius: 10px; background: var(--clr-line); }
.app-body { display: flex; height: calc(100% - 42px); }.app-body aside { width: 74px; padding: 26px 20px; background: var(--clr-bg-deep); }.app-body aside b { display: block; width: 100%; height: 6px; margin-bottom: 23px; border-radius: 5px; background: var(--clr-text-dim); }.app-body aside b:first-child { background: var(--clr-primary); }.app-content { flex: 1; padding: 31px 28px; }.app-title { display: flex; justify-content: space-between; }.app-title strong { font-family: var(--font-display); font-size: 1.15rem; }.app-title span { padding: 3px 8px; border-radius: 20px; color: var(--clr-primary-light); background: var(--clr-primary-soft); font-size: .62rem; font-weight: 700; }
.chart { position: relative; display: flex; align-items: end; height: 162px; gap: 10px; margin-top: 28px; padding: 16px 10px 0; overflow: hidden; border-bottom: 1px solid var(--clr-line); }.chart i { width: 18%; border-radius: 4px 4px 0 0; background: var(--clr-primary-soft); }.chart i:nth-child(1) { height: 31%; }.chart i:nth-child(2) { height: 57%; }.chart i:nth-child(3) { height: 41%; }.chart i:nth-child(4) { height: 74%; }.chart i:nth-child(5) { height: 52%; }.chart svg { position: absolute; z-index: 2; inset: 20px 10px 0; width: calc(100% - 20px); height: 142px; color: var(--clr-primary); filter: drop-shadow(0 3px 4px var(--clr-primary-glow)); }.app-cards { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 10px; margin-top: 25px; }.app-cards span { display: block; height: 47px; border-radius: 8px; background: var(--clr-line); }.app-cards span:first-child { background: var(--clr-primary-soft); }
.floating-card { position: absolute; z-index: 3; padding: 13px 15px; border: 1px solid var(--clr-line-strong); border-radius: 13px; background: var(--clr-surface-glass); box-shadow: 0 14px 34px var(--clr-shadow-deep); backdrop-filter: blur(10px); }.floating-card small { display: block; color: var(--clr-text-muted); font-size: .64rem; }.floating-card b { display: block; margin-top: 2px; font-family: var(--font-display); font-size: .83rem; }.floating-card--api { top: 4px; left: 0; }.floating-card--api span { position: absolute; right: 11px; bottom: 12px; width: 6px; height: 6px; border-radius: 50%; background: var(--clr-primary); box-shadow: 0 0 10px var(--clr-primary); }.floating-card--flow { right: 0; bottom: 0; }.floating-card--flow i { position: absolute; top: 14px; right: 13px; color: var(--clr-primary); font-style: normal; }

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: linear-gradient(180deg, var(--clr-surface-low), var(--clr-bg)); }.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }.service-card { min-height: 245px; padding: 28px; border: 1px solid var(--clr-line); border-radius: var(--radius); background: var(--clr-surface-card); transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease); }.service-card:hover { border-color: var(--clr-primary-mid); background: var(--clr-surface-hi); transform: translateY(-5px); }.icon { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 13px; color: var(--clr-primary); background: var(--clr-primary-soft); }.icon svg { width: 23px; height: 23px; }.service-card h3 { margin-top: 26px; }.service-card p { margin-top: 10px; color: var(--clr-text-muted); font-size: .93rem; line-height: 1.65; }.automation-note { display: flex; align-items: center; gap: 18px; max-width: 820px; margin: 42px auto 0; padding: 17px 22px; border: 1px solid var(--clr-primary-mid); border-radius: 16px; color: var(--clr-text-muted); background: var(--clr-primary-faint); }.automation-note strong { color: var(--clr-text); }.automation-mark { display: grid; flex: 0 0 32px; width: 32px; height: 32px; place-items: center; border-radius: 50%; color: var(--clr-on-primary); background: var(--clr-primary); font-size: 1.1rem; }

/* =========================================================
   VALUE PROPOSITION
   ========================================================= */
.value-section { padding-top: 90px; }.value-panel { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; padding: 66px; overflow: hidden; border: 1px solid var(--clr-primary-mid); border-radius: 28px; background: var(--gradient-surface); }.value-panel::after { content: ''; position: absolute; width: 420px; height: 420px; right: -180px; bottom: -300px; border-radius: 50%; background: radial-gradient(circle, var(--clr-primary-mid), transparent 66%); }.value-copy { position: relative; z-index: 1; }.value-copy .eyebrow { margin-bottom: 16px; }.value-copy h2 { margin-bottom: 20px; }.value-copy > p:last-child { color: var(--clr-text-muted); font-size: 1.1rem; }.value-list { position: relative; z-index: 1; display: grid; gap: 20px; }.value-list article { display: flex; gap: 18px; align-items: start; padding-bottom: 20px; border-bottom: 1px solid var(--clr-line); }.value-list article:last-child { padding: 0; border: 0; }.value-list span { color: var(--clr-primary); font: 700 .8rem var(--font-display); }.value-list h3 { font-size: 1.05rem; letter-spacing: -.025em; }.value-list p { margin-top: 5px; color: var(--clr-text-muted); font-size: .92rem; }

/* =========================================================
   PROCESS
   ========================================================= */
.process-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: steps; }.process-list li { position: relative; padding: 28px 19px 0 0; }.process-list li:not(:last-child)::before { content: ''; position: absolute; top: 11px; right: 0; width: 58%; height: 1px; background: linear-gradient(90deg, var(--clr-primary), var(--clr-line)); }.process-list span { display: grid; width: 23px; height: 23px; place-items: center; border: 1px solid var(--clr-primary); border-radius: 50%; color: var(--clr-primary); background: var(--clr-bg); font: 700 .59rem var(--font-display); }.process-list h3 { margin-top: 21px; font-size: 1rem; }.process-list p { margin-top: 8px; padding-right: 10px; color: var(--clr-text-muted); font-size: .87rem; line-height: 1.6; }

/* =========================================================
   ELENIS PROJECT
   ========================================================= */
.project-section { padding-top: 72px; }.project-card { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; overflow: hidden; padding: 67px; border: 1px solid var(--clr-primary-mid); border-radius: 29px; background: var(--gradient-surface); }.project-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 87% 12%, var(--clr-primary-mid), transparent 25%), linear-gradient(135deg, transparent, var(--clr-secondary-soft)); }.project-copy { position: relative; z-index: 1; }.project-copy .eyebrow { color: var(--clr-primary-light); }.project-copy .eyebrow-dot { background: var(--clr-primary); }.project-copy h2 { max-width: 550px; margin-top: 16px; color: var(--clr-text); }.project-copy h2 em { color: var(--clr-primary); }.project-copy h3 { margin-top: 31px; color: var(--clr-primary-light); font-size: 1.4rem; }.project-copy > p:not(.project-statement) { max-width: 540px; margin-top: 9px; color: var(--clr-text-muted); }.tech-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 0; padding: 0; list-style: none; }.tech-list li { padding: 5px 10px; border: 1px solid var(--clr-line-strong); border-radius: 20px; color: var(--clr-text); background: var(--clr-primary-faint); font-size: .71rem; font-weight: 600; }.project-statement { margin: 25px 0 26px; color: var(--clr-text); font-weight: 600; }.elenis-preview { position: relative; z-index: 1; min-height: 385px; overflow: hidden; align-self: center; border: 1px solid var(--clr-line-strong); border-radius: 18px; background: var(--clr-surface); box-shadow: 0 22px 45px var(--clr-shadow-deep); transform: perspective(1200px) rotateY(-7deg) rotateX(3deg); }.preview-top { display: flex; align-items: center; height: 38px; gap: 6px; padding-left: 14px; background: var(--clr-surface-hi); }.preview-top span { width: 7px; height: 7px; border-radius: 50%; background: var(--clr-text-dim); }.preview-top span:first-child { background: var(--clr-primary); }.preview-side { position: absolute; top: 38px; bottom: 0; width: 68px; padding: 21px 18px; background: var(--clr-surface-low); }.preview-side b { display: block; width: 100%; height: 6px; margin-bottom: 22px; border-radius: 6px; background: var(--clr-text-dim); }.preview-side b:first-child { background: var(--clr-primary); }.preview-body { min-height: 347px; margin-left: 68px; padding: 27px 21px; background: var(--clr-bg); }.preview-head { display: flex; align-items: center; gap: 10px; padding-bottom: 18px; border-bottom: 1px solid var(--clr-line); color: var(--clr-text); }.preview-head i { width: 28px; height: 28px; border-radius: 50%; background: var(--gradient-primary); }.preview-head strong,.preview-head small { display: block; font: 700 .73rem var(--font-body); }.preview-head small { margin-top: 2px; color: var(--clr-text-dim); font-size: .59rem; }.message { width: max-content; max-width: 85%; margin-top: 18px; padding: 9px 11px; border-radius: 8px 8px 8px 2px; color: var(--clr-text-muted); background: var(--clr-surface-hi); font-size: .68rem; line-height: 1.35; }.message--out { margin-left: auto; border-radius: 8px 8px 2px; color: var(--clr-on-primary); background: var(--clr-primary); }.message--last { margin-top: 12px; }.preview-chip { position: absolute; right: -12px; bottom: 25px; padding: 9px 12px; border-radius: 10px; color: var(--clr-text); background: var(--clr-surface-hi); box-shadow: 0 9px 22px var(--clr-shadow-soft); font-size: .68rem; font-weight: 700; }.preview-chip span { display: inline-block; width: 6px; height: 6px; margin-left: 6px; border-radius: 50%; background: var(--clr-primary); }

/* =========================================================
   ABOUT + CTA + FOOTER
   ========================================================= */
.about { padding-top: 138px; }.about-grid { display: grid; grid-template-columns: 1fr .92fr; gap: 106px; }.about-grid .eyebrow { margin-bottom: 15px; }.about-grid > div:last-child { padding-top: 22px; }.about-grid > div:last-child p { color: var(--clr-text-muted); font-size: 1.06rem; }.about-grid > div:last-child p + p { margin-top: 21px; color: var(--clr-text); }
.contact-section { padding: 30px 0 110px; }.contact-card { position: relative; overflow: hidden; padding: 74px 80px; border: 1px solid var(--clr-primary-mid); border-radius: 28px; color: var(--clr-text); background: var(--gradient-surface); }.contact-card::after { content: ''; position: absolute; width: 370px; height: 370px; right: -110px; top: -165px; border: 44px solid var(--clr-primary-soft); border-radius: 50%; }.contact-card > * { position: relative; z-index: 1; }.contact-card .eyebrow { color: var(--clr-primary); }.contact-card h2 { max-width: 730px; margin-top: 14px; }.contact-card > p:last-of-type { max-width: 610px; margin: 18px 0 28px; color: var(--clr-text-muted); font-size: 1.08rem; }.contact-card .button { background: var(--gradient-primary); color: var(--clr-on-primary); }.contact-card .button:hover { box-shadow: var(--shadow-primary); }
.footer { padding: 44px 0 36px; border-top: 1px solid var(--clr-line); }.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 35px; align-items: end; }.footer .brand { display: inline-block; }.footer p { margin-top: 9px; color: var(--clr-text-dim); font-size: .84rem; }.footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 17px; }.footer nav a,.copyright { color: var(--clr-text-muted); font-size: .81rem; font-weight: 600; }.footer nav a:hover { color: var(--clr-primary); }.footer .copyright { margin: 0; white-space: nowrap; }

/* =========================================================
   WHATSAPP
   ========================================================= */
.whatsapp-float { position: fixed; z-index: 30; right: 2rem; bottom: 2rem; display: grid; width: 58px; height: 58px; place-items: center; border: 1px solid var(--clr-line-strong); border-radius: 50%; color: var(--clr-on-primary); background: var(--gradient-primary); box-shadow: 0 8px 28px var(--clr-primary-glow); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }.whatsapp-float:hover { transform: scale(1.1); box-shadow: var(--shadow-primary); }.whatsapp-float svg { width: 30px; height: 30px; fill: currentColor; }.whatsapp-float::before { content: 'Hablar por WhatsApp'; position: absolute; right: calc(100% + 12px); width: max-content; padding: 7px 10px; border: 1px solid var(--clr-line); border-radius: 8px; color: var(--clr-text); background: var(--clr-surface-hi); font-size: .75rem; font-weight: 700; opacity: 0; transform: translateX(5px); pointer-events: none; transition: opacity .2s var(--ease), transform .2s var(--ease); }.whatsapp-float:hover::before { opacity: 1; transform: translateX(0); }

/* =========================================================
   ANIMATIONS
   ========================================================= */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: calc(var(--reveal-delay, 0) * 1ms); }[data-reveal][data-delay="60"] { --reveal-delay: 60; }[data-reveal][data-delay="90"] { --reveal-delay: 90; }[data-reveal][data-delay="120"] { --reveal-delay: 120; }[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { *,*::before,*::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; } }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1000px) { .nav-links { gap: 16px; }.hero-grid { gap: 30px; }.software-visual { min-height: 405px; }.app-window { inset: 34px 2px 14px 25px; }.services-grid { grid-template-columns: repeat(2, 1fr); }.value-panel { gap: 42px; padding: 50px; }.project-card { gap: 35px; padding: 51px; }.about-grid { gap: 62px; } }
@media (max-width: 780px) { .container { width: min(var(--max), calc(100% - 36px)); }.section { padding: 84px 0; }.site-header { background: var(--clr-header); border-color: var(--clr-line); backdrop-filter: blur(14px); }.nav { min-height: 65px; }.nav-links,.nav-cta { display: none; }.menu-toggle { display: flex; flex-direction: column; justify-content: center; width: 40px; height: 40px; gap: 5px; margin-left: auto; padding: 9px; border: 1px solid var(--clr-line); border-radius: 10px; color: var(--clr-text); background: transparent; cursor: pointer; }.menu-toggle span { width: 100%; height: 1.5px; background: currentColor; transition: transform .2s var(--ease), opacity .2s var(--ease); }.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(6.5px) rotate(45deg); }.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-6.5px) rotate(-45deg); }.mobile-menu { position: absolute; top: 66px; left: 0; right: 0; display: grid; gap: 4px; max-height: 0; padding: 0 18px; overflow: hidden; border-bottom: 1px solid transparent; background: var(--clr-bg); opacity: 0; transition: max-height .28s var(--ease), padding .28s var(--ease), opacity .2s var(--ease); }.mobile-menu.is-open { max-height: 480px; padding: 16px 18px 20px; border-color: var(--clr-line); opacity: 1; }.mobile-menu a:not(.button) { padding: 10px 4px; color: var(--clr-text); font-weight: 600; }.mobile-menu .button { margin-top: 10px; }.hero { min-height: auto; padding: 127px 0 76px; }.hero-grid { grid-template-columns: 1fr; }.hero-copy { text-align: center; }.hero-copy .eyebrow { justify-content: center; }.hero-text { margin-inline: auto; }.hero-actions { justify-content: center; }.software-visual { width: min(510px, 100%); min-height: 380px; margin: 3px auto 0; }.app-window { inset: 35px 10px 12px 28px; }.floating-card--api { left: 0; }.section-heading { margin-bottom: 37px; }.value-section { padding-top: 32px; }.value-panel,.about-grid { grid-template-columns: 1fr; }.value-panel { gap: 38px; padding: 38px 29px; }.process-list { grid-template-columns: 1fr; gap: 0; }.process-list li { display: grid; grid-template-columns: 40px 1fr; column-gap: 15px; padding: 0 0 24px; }.process-list li:not(:last-child)::before { top: 25px; left: 11px; right: auto; width: 1px; height: calc(100% - 12px); background: linear-gradient(var(--clr-primary), var(--clr-line)); }.process-list span { grid-row: span 2; }.process-list h3 { margin: 1px 0 0; }.process-list p { margin: 6px 0 0; padding: 0; }.project-section { padding-top: 20px; }.project-card { grid-template-columns: 1fr; padding: 40px 29px 0; gap: 30px; }.elenis-preview { min-height: 340px; margin-bottom: 25px; transform: none; }.preview-body { min-height: 302px; }.about { padding-top: 95px; }.about-grid { gap: 12px; }.about-grid > div:last-child { padding: 0; }.contact-section { padding: 15px 0 80px; }.contact-card { padding: 44px 29px; }.contact-card::after { right: -210px; top: -190px; }.footer-grid { grid-template-columns: 1fr; gap: 25px; align-items: start; }.footer nav { justify-content: flex-start; }.whatsapp-float { right: 1.25rem; bottom: 1.25rem; width: 51px; height: 51px; }.whatsapp-float svg { width: 26px; height: 26px; }.whatsapp-float::before { display: none; } }
@media (max-width: 520px) { h1 { font-size: clamp(2.55rem, 12vw, 3.25rem); }.hero-actions { gap: 18px; }.hero-actions .button { width: 100%; }.software-visual { min-height: 319px; }.app-window { inset: 33px 0 12px 14px; border-radius: 16px; }.app-body aside { width: 49px; padding: 20px 13px; }.app-content { padding: 21px 15px; }.app-title strong { font-size: .92rem; }.chart { height: 116px; margin-top: 19px; }.chart svg { height: 98px; }.app-cards { margin-top: 17px; }.floating-card { padding: 9px 11px; }.floating-card--flow { right: -7px; }.floating-card--api { top: 3px; left: -4px; }.orbit--a { width: 360px; height: 360px; right: -60px; }.orbit--b { width: 270px; height: 270px; right: 3px; }.services-grid { grid-template-columns: 1fr; }.service-card { min-height: 0; padding: 25px; }.automation-note { align-items: flex-start; padding: 16px; font-size: .92rem; }.value-panel { border-radius: 22px; }.project-card { margin-inline: -1px; border-radius: 22px; }.project-copy h2 { font-size: 2.1rem; }.tech-list { gap: 6px; }.elenis-preview { min-height: 287px; }.preview-top { height: 31px; }.preview-side { top: 31px; width: 52px; padding: 18px 14px; }.preview-body { min-height: 256px; margin-left: 52px; padding: 19px 13px; }.preview-chip { right: -7px; bottom: 18px; }.message { margin-top: 12px; font-size: .59rem; }.contact-card { border-radius: 22px; }.footer nav { column-gap: 14px; row-gap: 7px; } }
