:root {
  --bg: #07110e;
  --bg-soft: #0b1713;
  --surface: #101d19;
  --surface-2: #14241f;
  --text: #f1f6f3;
  --muted: #94a49d;
  --line: #243a32;
  --green: #65dfa9;
  --green-dark: #123e31;
  --mint: #d8f5e8;
  --blue: #6f8cff;
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
  --shadow: 0 30px 90px rgba(0, 0, 0, .32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--body); overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--green); color: #072017; }
.skip-link { position: fixed; left: 15px; top: -60px; z-index: 200; background: var(--mint); color: #07110e; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { top: 15px; }
.page-noise { position: fixed; inset: 0; pointer-events: none; z-index: 100; opacity: .025; background-image: radial-gradient(rgba(255,255,255,.9) .5px, transparent .5px); background-size: 5px 5px; }

.site-header { height: 84px; max-width: 1380px; padding: 0 42px; margin: auto; position: fixed; inset: 0 0 auto; z-index: 90; display: flex; align-items: center; justify-content: space-between; transition: .3s; }
.site-header.scrolled { height: 70px; max-width: 100%; background: rgba(7,17,14,.88); border-bottom: 1px solid rgba(101,223,169,.12); backdrop-filter: blur(16px); }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; letter-spacing: -.03em; }
.brand b { color: var(--green); }
.brand-mark { width: 42px; height: 42px; position: relative; flex: 0 0 42px; color: #f7fbff; font-family: var(--display); font-style: normal; filter: drop-shadow(0 7px 14px rgba(0,0,0,.28)); animation: brandFloat 3.2s ease-in-out infinite; }
.brand-a { position: absolute; inset: 0; display: grid; place-items: center; font-style: normal; font-size: 35px; font-weight: 800; line-height: 1; letter-spacing: -.13em; transform: scaleX(.82); text-shadow: 0 0 12px rgba(116,220,255,.25); }
.brand-swoosh { width: 39px; height: 16px; position: absolute; z-index: 2; left: 1px; top: 21px; overflow: hidden; border-top: 6px solid #20d9cf; border-radius: 60% 90% 0 0; transform: rotate(-10deg) skewX(-18deg); filter: drop-shadow(0 0 6px rgba(32,217,207,.8)); }
.brand-swoosh::after { content: ""; width: 12px; height: 24px; position: absolute; top: -14px; left: -16px; background: rgba(255,255,255,.85); filter: blur(4px); animation: brandGlint 2.8s ease-in-out infinite; }
.site-header nav { display: flex; align-items: center; gap: 34px; }
.site-header nav a { color: #b9c5c0; font-size: 12px; transition: .2s; }
.site-header nav a:hover { color: var(--green); }
.header-cta { padding: 11px 16px; border: 1px solid #355044; border-radius: 24px; font-size: 12px; font-weight: 700; }
.header-cta:hover { background: var(--green); border-color: var(--green); color: #071a13; }
.header-cta span { margin-left: 7px; }
.menu-toggle { display: none; border: 0; color: var(--text); background: transparent; font-size: 21px; }

.hero { min-height: 900px; max-width: 1380px; margin: auto; padding: 175px 42px 110px; position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.hero-aurora { position: absolute; width: 800px; height: 700px; top: -180px; right: -260px; border-radius: 50%; background: radial-gradient(circle, rgba(101,223,169,.14), rgba(78,102,255,.07) 35%, transparent 70%); filter: blur(16px); pointer-events: none; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-index { font-size: 10px; letter-spacing: .19em; font-weight: 700; text-transform: uppercase; color: #a9b7b1; }
.eyebrow { display: flex; align-items: center; gap: 11px; }
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 18px var(--green); animation: pulse 2.2s infinite; }
.hero h1 { max-width: 760px; margin: 28px 0 25px; font-family: var(--display); font-size: clamp(52px, 5.6vw, 83px); line-height: 1.01; letter-spacing: -.065em; font-weight: 600; }
.hero h1 em, .section h2 em, .about h2 em, .contact h2 em { color: var(--green); font-style: normal; transition: opacity .25s, transform .25s; display: inline-block; }
.hero h1 em.swap { opacity: 0; transform: translateY(8px); }
.hero-copy > p { max-width: 670px; color: #aab8b2; font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button { min-height: 52px; padding: 0 23px; border-radius: 27px; display: inline-flex; justify-content: center; align-items: center; gap: 17px; border: 1px solid transparent; cursor: pointer; font-size: 13px; font-weight: 700; transition: transform .22s, background .22s, border-color .22s; }
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--mint); color: #092018; }
.button-primary:hover { background: var(--green); }
.button-secondary { border-color: #365047; background: rgba(17,34,29,.55); }
.button-secondary:hover { border-color: var(--green); }
.button-dark { background: #07110e; color: #eef8f3; }
.hero-trust { margin-top: 23px; display: flex; flex-wrap: wrap; gap: 9px 19px; color: #82928b; font-size: 11px; }

.hero-stage { min-height: 520px; position: relative; display: grid; place-items: center; }
.stage-orbit { position: absolute; border: 1px solid rgba(101,223,169,.1); border-radius: 50%; }
.orbit-a { width: 510px; height: 510px; }
.orbit-b { width: 360px; height: 360px; }
.product-window { width: min(550px, 95%); background: #e9f0ed; color: #10251e; border: 8px solid #14201c; border-bottom-width: 13px; border-radius: 17px; overflow: hidden; transform: perspective(900px) rotateY(-5deg) rotateX(2deg); box-shadow: var(--shadow); animation: float 6s ease-in-out infinite; }
.window-bar { height: 38px; background: #fff; display: flex; align-items: center; gap: 6px; padding: 0 13px; }
.window-bar i { width: 6px; height: 6px; border-radius: 50%; background: #b4c0bb; }
.window-bar i:first-child { background: #65dba7; }
.window-bar span { margin-left: auto; color: #8b9892; font-size: 7px; }
.window-layout { display: grid; grid-template-columns: 78px 1fr; min-height: 300px; }
.window-layout aside { padding: 22px 18px; background: #123d31; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.window-layout aside b { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 8px; background: var(--mint); font-size: 9px; }
.window-layout aside span { width: 30px; height: 5px; border-radius: 4px; background: #315e51; }
.window-dashboard { padding: 35px 28px; }
.window-dashboard > small { color: #2b856a; font-size: 7px; letter-spacing: .15em; }
.window-dashboard h2 { margin: 8px 0 21px; font-family: var(--display); font-size: 25px; }
.window-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.window-metrics span { padding: 13px; background: white; border-radius: 8px; }
.window-metrics small { display: block; color: #718079; font-size: 6px; }
.window-metrics b { display: block; margin-top: 7px; font-size: 17px; }
.window-chart { height: 85px; margin-top: 10px; padding: 14px; border-radius: 8px; background: white; display: flex; align-items: end; gap: 8px; }
.window-chart i { flex: 1; border-radius: 3px 3px 0 0; background: #c7eadc; }
.window-chart i:nth-child(1) { height: 35%; }.window-chart i:nth-child(2) { height: 52%; }.window-chart i:nth-child(3) { height: 44%; }.window-chart i:nth-child(4) { height: 72%; }.window-chart i:nth-child(5) { height: 64%; }.window-chart i:nth-child(6) { height: 88%; background: #57c99a; }
.floating-note { position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px; padding: 12px 15px; border: 1px solid #2c453b; border-radius: 11px; background: rgba(13,28,23,.92); backdrop-filter: blur(10px); box-shadow: 0 18px 35px rgba(0,0,0,.25); }
.floating-note > span { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; color: #082219; background: var(--green); font-size: 11px; }
.floating-note b, .floating-note small { display: block; }
.floating-note b { font-size: 9px; }.floating-note small { color: #83948c; font-size: 7px; margin-top: 2px; }
.note-one { left: -8px; top: 85px; }.note-two { right: -10px; bottom: 85px; }

.proof-strip { max-width: 1296px; margin: 0 auto; border-block: 1px solid var(--line); display: grid; grid-template-columns: .7fr .7fr .9fr 1.7fr; }
.proof-strip > div { min-height: 135px; padding: 27px 30px; border-left: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; }
.proof-strip > div:first-child { border-left: 0; }
.proof-strip strong { font-family: var(--display); font-size: 30px; }
.proof-strip span { color: #87978f; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.proof-cta { gap: 11px; background: var(--bg-soft); }.proof-cta a { color: var(--green); font-size: 13px; font-weight: 700; }

.section { max-width: 1380px; margin: auto; padding: 130px 42px; }
.section-heading { display: grid; grid-template-columns: 1.2fr .65fr; gap: 80px; align-items: end; margin-bottom: 65px; }
.section h2, .about h2, .contact h2 { margin: 20px 0 0; font-family: var(--display); font-size: clamp(42px, 5vw, 68px); line-height: 1.03; letter-spacing: -.055em; font-weight: 600; }
.section-heading > p { color: var(--muted); font-size: 15px; line-height: 1.8; }

.service-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 330px; padding: 30px; position: relative; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(145deg, rgba(18,35,29,.55), transparent); transition: transform .25s, background .25s; }
.service-card:hover { z-index: 2; transform: translateY(-5px); background: var(--surface); }
.service-card > small { float: right; color: #51655c; font-size: 9px; }
.service-icon { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid #355347; border-radius: 13px; color: var(--green); font-size: 20px; }
.service-card h3 { margin: 60px 0 13px; font-family: var(--display); font-size: 21px; }
.service-card p { color: var(--muted); font-size: 13px; line-height: 1.72; }
.service-card a { position: absolute; left: 30px; bottom: 28px; color: #c7d4ce; font-size: 11px; font-weight: 700; }
.service-card a span { color: var(--green); margin-left: 6px; }
.service-wide { grid-column: span 2; }

.mid-cta { max-width: 1296px; margin: 0 auto 20px; padding: 48px 55px; background: var(--green); color: #082018; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.mid-cta span { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.mid-cta h2 { max-width: 760px; margin: 10px 0 0; font-family: var(--display); font-size: clamp(24px, 3vw, 39px); line-height: 1.15; letter-spacing: -.04em; }

.case-list { display: flex; flex-direction: column; gap: 22px; }
.case-card { min-height: 575px; display: grid; grid-template-columns: 1.12fr .88fr; border: 1px solid var(--line); background: var(--bg-soft); overflow: hidden; }
.case-card:nth-child(even) .case-visual { order: 2; }.case-card:nth-child(even) .case-content { order: 1; }
.case-visual { position: relative; min-height: 520px; display: grid; place-items: center; overflow: hidden; }
.case-green .case-visual { background: radial-gradient(circle at 70% 20%, rgba(101,223,169,.22), transparent 50%), #0b1512; }
.case-blue .case-visual { background: radial-gradient(circle at 30% 30%, rgba(111,140,255,.25), transparent 50%), #0b1018; }
.case-coffee .case-visual { background: radial-gradient(circle at 70% 20%, rgba(191,124,68,.26), transparent 50%), #15100c; }
.case-purple .case-visual { background: radial-gradient(circle, rgba(143,101,230,.22), transparent 55%), #100d16; }
.case-content { padding: 60px 55px; display: flex; flex-direction: column; justify-content: center; }
.case-type { color: var(--green); font-size: 9px; letter-spacing: .16em; font-weight: 700; }
.case-content h3 { margin: 12px 0 12px; font-family: var(--display); font-size: 33px; letter-spacing: -.04em; }
.case-summary { color: #adbbb5; line-height: 1.7; }
.case-content dl { margin: 22px 0; border-top: 1px solid var(--line); }
.case-content dl > div { padding: 13px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 80px 1fr; gap: 18px; }
.case-content dt { color: #d8e1dd; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.case-content dd { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.tech-list { display: flex; flex-wrap: wrap; gap: 7px; }
.tech-list span, .case-status { padding: 7px 10px; border: 1px solid #33483f; border-radius: 18px; color: #9baba4; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.case-link { margin-top: 28px; font-size: 12px; font-weight: 700; }.case-link span { color: var(--green); margin-left: 7px; }
.case-status { width: fit-content; margin-top: 26px; }

.mock-app { width: 86%; background: #e8efec; color: #18352c; border: 8px solid #111a17; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); transform: rotate(-2deg); }
.mock-top { height: 43px; padding: 0 17px; background: white; display: flex; justify-content: space-between; align-items: center; font-size: 9px; }.mock-top span { color: #94a29d; }
.mock-body { min-height: 300px; display: grid; grid-template-columns: 80px 1fr; }.mock-body aside { padding: 24px 15px; background: #173f34; display: flex; flex-direction: column; gap: 17px; }.mock-body aside i { height: 6px; border-radius: 4px; background: #376154; }.mock-body > div { padding: 30px; }.mock-body small { color: #32806a; font-size: 7px; letter-spacing: .13em; }.mock-body h3 { margin: 8px 0 20px; }.mock-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }.mock-kpis span { padding: 12px; background: white; border-radius: 7px; }.mock-kpis small { display: block; color: #75847e; font-size: 6px; }.mock-kpis b { display: block; margin-top: 7px; font-size: 15px; }.mock-rows { margin-top: 10px; padding: 14px; background: white; border-radius: 7px; display: grid; gap: 8px; }.mock-rows i { height: 6px; border-radius: 3px; background: #e1e8e5; }
.phone-pair { height: 385px; display: flex; align-items: center; }.phone-card { width: 185px; height: 370px; padding: 32px 18px; border: 7px solid #1d2824; border-radius: 29px; background: #f1f5f3; color: #17382e; box-shadow: var(--shadow); transform: rotate(5deg); }.phone-card.back { margin-right: -35px; opacity: .72; transform: rotate(-8deg) translateY(10px); }.phone-card small, .phone-card b { display: block; }.phone-card small { color: #39836c; font-size: 7px; letter-spacing: .14em; }.phone-card > b { margin: 20px 0; }.phone-card > span { display: block; margin: 8px 0; padding: 9px; background: white; border-radius: 7px; color: #718079; font-size: 8px; }.phone-card > span strong { float: right; color: #17382e; }.phone-card em { display: block; padding: 8px; color: #a63d3d; background: #f8e5e5; border-radius: 7px; font-size: 8px; font-style: normal; }.phone-card button, .pos-card button { width: 100%; margin-top: 12px; border: 0; border-radius: 7px; padding: 10px; background: #173f34; color: white; font-size: 8px; }.scan-target { height: 120px; border: 1px dashed #63a08d; border-radius: 9px; display: grid; place-items: center; font-size: 30px; }
.pos-card { width: 73%; padding: 35px; border-radius: 13px; background: #f4eee5; color: #2f211a; box-shadow: var(--shadow); transform: rotate(-3deg); }.pos-card > div { display: flex; justify-content: space-between; }.pos-card small { color: #936b4b; font-size: 8px; }.pos-card h3 { font-family: var(--display); font-size: 28px; }.pos-card h3 em { color: #9b5e35; font-style: normal; }.pos-card ul { padding: 0; list-style: none; }.pos-card li { padding: 9px 0; border-bottom: 1px solid #dacbbb; font-size: 10px; }.pos-card li b { float: right; }
.flow-card { width: 80%; display: flex; flex-direction: column; align-items: center; }.flow-card span { width: min(320px,90%); padding: 18px; border: 1px solid #634c82; border-radius: 9px; background: #191321; text-align: center; font-size: 11px; box-shadow: 0 12px 30px rgba(0,0,0,.25); }.flow-card i { width: 1px; height: 55px; background: linear-gradient(#9c70d4, #4b3c5e); }
.other-projects { margin-top: 22px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }.other-projects > div { padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }.other-projects span { color: var(--green); font-size: 8px; letter-spacing: .14em; }.other-projects h3 { font-family: var(--display); font-size: 18px; }.other-projects p { color: var(--muted); font-size: 12px; line-height: 1.6; }

.process { border-top: 1px solid var(--line); }
.process-list { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(5,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-list li { min-height: 320px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--green); font-size: 9px; font-weight: 700; }
.process-symbol { margin: 58px 0 28px; color: #6b8178; font-size: 25px; }
.process-list h3 { font-family: var(--display); font-size: 17px; }
.process-list p { color: var(--muted); font-size: 11px; line-height: 1.7; }

.about { padding-top: 40px; }
.about-card { padding: 70px; display: grid; grid-template-columns: .55fr 1.45fr; gap: 70px; background: var(--surface); border: 1px solid var(--line); }
.about-intro { display: flex; flex-direction: column; justify-content: space-between; }
.portrait { width: 230px; aspect-ratio: 4 / 5; margin: 0; overflow: hidden; border: 0; border-radius: 0; background: transparent; box-shadow: none; -webkit-mask-image: linear-gradient(to bottom, #000 0 88%, transparent 100%); mask-image: linear-gradient(to bottom, #000 0 88%, transparent 100%); }
.portrait img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 50% 28%; border: 0; }
.about-copy h2 { font-size: clamp(38px, 4vw, 57px); }
.about-copy p { max-width: 700px; color: #9aa9a2; line-height: 1.8; }
.about-copy a { display: inline-block; margin-top: 14px; color: var(--green); font-size: 12px; font-weight: 700; }

.technology { max-width: 1296px; margin: 0 auto 100px; padding: 70px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; background: var(--mint); color: #0a2119; }
.tech-copy h2 { margin: 18px 0; font-family: var(--display); font-size: 38px; line-height: 1.15; letter-spacing: -.04em; }.tech-copy p { color: #416158; line-height: 1.7; }.technology .section-index { color: #47665d; }
.technology-cloud { align-content: center; display: flex; flex-wrap: wrap; gap: 9px; }.technology-cloud span { padding: 11px 14px; border: 1px solid rgba(7,32,23,.2); border-radius: 23px; font-size: 11px; font-weight: 700; }

.contact { padding-top: 30px; }
.contact-shell { padding: 75px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; border: 1px solid var(--line); background: radial-gradient(circle at 10% 90%, rgba(101,223,169,.12), transparent 35%), var(--surface); }
.contact-copy > p { color: var(--muted); line-height: 1.7; }.contact-direct { margin-top: 45px; display: flex; flex-direction: column; gap: 7px; }.contact-direct small { color: #6f8178; font-size: 8px; letter-spacing: .13em; }.contact-direct a { color: var(--green); font-size: 20px; font-weight: 700; }.contact-direct span { color: #71837a; font-size: 10px; }
.contact form { padding: 34px; background: #091510; border: 1px solid #2a4037; border-radius: 13px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
label { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; color: #9caaa4; font-size: 10px; font-weight: 600; }
input, select, textarea { width: 100%; border: 1px solid #31483e; border-radius: 8px; padding: 13px 14px; outline: 0; background: #0e1d18; color: var(--text); resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(101,223,169,.08); }
select option { background: #0e1d18; }.contact form .button { width: 100%; margin-top: 4px; }.privacy-note { display: block; margin-top: 12px; color: #61746b; text-align: center; font-size: 9px; }

.final-cta { max-width: 1296px; margin: 0 auto 100px; padding: 80px 55px; text-align: center; background: var(--green); color: #082018; }.final-cta > span { font-size: 9px; letter-spacing: .16em; font-weight: 700; }.final-cta h2 { max-width: 800px; margin: 17px auto 30px; font-family: var(--display); font-size: clamp(36px, 5vw, 62px); line-height: 1.08; letter-spacing: -.055em; }
footer { max-width: 1296px; margin: auto; padding: 35px 10px 55px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; color: #7f9188; font-size: 10px; }footer p { text-align: center; }footer > a:nth-of-type(2) { text-align: right; }footer small { grid-column: 1/-1; margin-top: 30px; color: #506159; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; min-height: 49px; padding: 0 17px 0 9px; border-radius: 27px; display: flex; align-items: center; gap: 9px; color: #092118; background: var(--green); box-shadow: 0 15px 35px rgba(0,0,0,.35); transition: transform .22s; }.whatsapp-float:hover { transform: translateY(-3px); }.whatsapp-float span { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: #0c3b2d; color: white; }.whatsapp-float b { font-size: 11px; }
.toast { position: fixed; left: 50%; bottom: 25px; z-index: 150; padding: 13px 18px; border-radius: 9px; color: #092018; background: var(--mint); font-size: 11px; font-weight: 700; opacity: 0; transform: translate(-50%, 80px); transition: .25s; }.toast.show { opacity: 1; transform: translate(-50%, 0); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }.reveal.visible { opacity: 1; transform: none; }.delay-1 { transition-delay: .1s; }.delay-2 { transition-delay: .2s; }

@keyframes pulse { 50% { opacity: .35; box-shadow: 0 0 6px var(--green); } }
@keyframes float { 50% { transform: perspective(900px) rotateY(-2deg) rotateX(1deg) translateY(-8px); } }
@keyframes brandFloat { 50% { transform: translateY(-2px); } }
@keyframes brandGlint { 0%, 42% { left: -16px; opacity: 0; } 50% { opacity: 1; } 68%, 100% { left: 48px; opacity: 0; } }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; padding-top: 155px; }
  .hero-copy { max-width: 820px; }
  .hero-stage { position: absolute; width: 520px; right: -210px; top: 245px; opacity: .35; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .proof-strip { grid-template-columns: repeat(3,1fr); }.proof-cta { grid-column: 1/-1; }
  .case-card { grid-template-columns: 1fr; }.case-card:nth-child(even) .case-visual { order: 1; }.case-card:nth-child(even) .case-content { order: 2; }
  .process-list { grid-template-columns: repeat(3,1fr); }
  .contact-shell { grid-template-columns: 1fr; gap: 45px; }
  .site-header nav { gap: 20px; }
}

@media (max-width: 760px) {
  .site-header { height: 70px; padding: 0 18px; }.site-header.scrolled { height: 64px; }
  .header-cta { display: none; }.menu-toggle { display: block; }
  .site-header nav { position: fixed; inset: 64px 0 auto; z-index: -1; padding: 24px; display: flex; flex-direction: column; align-items: flex-start; background: rgba(7,17,14,.98); border-bottom: 1px solid var(--line); transform: translateY(-140%); transition: .3s; }.site-header nav.open { transform: none; }
  .hero { min-height: 810px; padding: 135px 20px 80px; }.hero h1 { font-size: 48px; }.hero-copy > p { font-size: 15px; }.hero-stage { width: 460px; right: -275px; top: 330px; opacity: .22; }.floating-note { display: none; }
  .proof-strip { margin-inline: 20px; grid-template-columns: 1fr 1fr; }.proof-strip > div { min-height: 105px; padding: 20px; }.proof-strip > div:nth-child(3) { border-left: 0; }.proof-cta { grid-column: 1/-1; }
  .section { padding: 90px 20px; }.section h2, .about h2, .contact h2 { font-size: 42px; }
  .service-grid { grid-template-columns: 1fr; }.service-wide { grid-column: auto; }.service-card { min-height: 290px; }
  .mid-cta { margin-inline: 20px; padding: 38px 28px; flex-direction: column; align-items: flex-start; }
  .case-card { min-height: 0; }.case-visual { min-height: 380px; }.case-content { padding: 38px 25px; }.mock-app { width: 96%; }.mock-body { grid-template-columns: 55px 1fr; }.mock-body > div { padding: 20px 12px; }.mock-kpis span { padding: 8px; }.mock-kpis b { font-size: 11px; }.phone-card { height: 330px; width: 165px; }.pos-card { width: 90%; padding: 25px; }
  .other-projects { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }.process-list li { min-height: 230px; }.process-symbol { margin: 35px 0 20px; }
  .about-card { padding: 38px 25px; grid-template-columns: 1fr; gap: 35px; }.portrait { width: 130px; }
  .technology { margin-inline: 20px; padding: 38px 25px; grid-template-columns: 1fr; gap: 35px; }.tech-copy h2 { font-size: 31px; }
  .contact-shell { padding: 40px 20px; }.contact form { padding: 23px 17px; }.form-grid { grid-template-columns: 1fr; }
  .final-cta { margin: 0 20px 75px; padding: 55px 24px; }
  footer { margin-inline: 20px; grid-template-columns: 1fr; gap: 14px; padding-inline: 0; }footer p, footer > a:nth-of-type(2) { text-align: left; }footer small { margin-top: 12px; }
  .whatsapp-float { right: 14px; bottom: 14px; }.whatsapp-float b { display: none; }.whatsapp-float { padding-right: 9px; }
}

@media (max-width: 430px) {
  .brand > span:last-child { font-size: 13px; }.hero h1 { font-size: 42px; }.hero-actions { flex-direction: column; align-items: stretch; }.hero-trust { flex-direction: column; }.proof-strip { grid-template-columns: 1fr; }.proof-strip > div { border-left: 0; }.proof-cta { grid-column: auto; }.window-layout { grid-template-columns: 58px 1fr; }.window-dashboard { padding: 25px 12px; }.mock-kpis { gap: 4px; }.phone-pair { transform: scale(.88); }.case-content dl > div { grid-template-columns: 1fr; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

