:root {
  --bg: #030d1b;
  --bg-soft: #061427;
  --surface: rgba(9, 27, 52, .72);
  --surface-strong: #0a1a32;
  --line: rgba(123, 164, 238, .14);
  --line-bright: rgba(72, 126, 255, .38);
  --text: #f6f8ff;
  --muted: #93a4bf;
  --blue: #1882ff;
  --blue-bright: #51a2ff;
  --violet: #713bff;
  --green: #26d9a0;
  --radius: 15px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 78px; }
body { margin: 0; color: var(--text); background: var(--bg); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.55; overflow-x: hidden; }
body::before { content: ""; position: fixed; inset: 0; z-index: -3; background-image: linear-gradient(rgba(71, 121, 205, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(71, 121, 205, .025) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to bottom, black, transparent 70%); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(1180px, calc(100% - 42px)); margin-inline: auto; }
.section { padding: 100px 0; border-top: 1px solid var(--line); }
.ambient { position: fixed; width: 520px; height: 520px; border-radius: 50%; filter: blur(150px); opacity: .13; pointer-events: none; z-index: -2; }
.ambient-one { background: #006eff; top: -260px; left: 15%; }
.ambient-two { background: #682cff; top: 310px; right: -360px; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(3, 13, 27, .78); border-bottom: 1px solid var(--line); backdrop-filter: blur(20px); }
.nav-shell { min-height: 72px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; flex-direction: column; line-height: 1; min-width: 126px; }
.brand-name { font-size: 1.08rem; font-weight: 800; letter-spacing: .31em; color: #eaf2ff; }
.brand-sub { margin-top: 7px; font-size: .54rem; text-transform: uppercase; letter-spacing: .42em; color: var(--blue-bright); }
.nav-links { display: flex; align-items: center; gap: 27px; margin: 0 auto; }
.nav-links a { position: relative; padding: 27px 0 24px; color: #b7c4d8; font-size: .83rem; font-weight: 550; transition: color .2s ease; }
.nav-links a::after { content: ""; position: absolute; left: 50%; bottom: -1px; width: 0; height: 2px; background: var(--blue); transform: translateX(-50%); transition: width .2s ease; }
.nav-links a:hover, .nav-links a.active { color: white; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 7px; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px; background: white; transition: .25s ease; }

.button { display: inline-flex; min-height: 49px; padding: 0 23px; align-items: center; justify-content: center; gap: 12px; border: 1px solid transparent; border-radius: 8px; background: linear-gradient(135deg, #1688ff, #1369f4); box-shadow: 0 10px 28px rgba(18, 112, 255, .3), inset 0 1px rgba(255,255,255,.18); color: white; font-weight: 700; font-size: .9rem; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 35px rgba(18, 112, 255, .42), inset 0 1px rgba(255,255,255,.18); }
.button-small { min-height: 42px; padding: 0 17px; font-size: .79rem; }
.button-ghost { background: rgba(8, 25, 49, .55); border-color: var(--line-bright); box-shadow: none; color: #e5edfc; }
.button-ghost:hover { border-color: var(--blue-bright); box-shadow: 0 12px 30px rgba(0,0,0,.22); }
.text-link { color: var(--blue-bright); font-size: .84rem; font-weight: 700; }
.text-link span { display: inline-block; margin-left: 5px; transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }

.hero { min-height: 700px; display: flex; align-items: center; position: relative; overflow: hidden; padding: 95px 0 75px; border: 0; }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(79,143,255,.4), transparent); }
.hero-grid { display: grid; grid-template-columns: .92fr 1.25fr; gap: 70px; align-items: center; }
.eyebrow { color: var(--blue-bright); text-transform: uppercase; letter-spacing: .15em; font-size: .69rem; font-weight: 800; }
.hero .eyebrow { display: flex; align-items: center; gap: 8px; width: fit-content; padding: 6px 10px; border: 1px solid rgba(76, 138, 255, .2); border-radius: 100px; background: rgba(20, 76, 159, .08); color: #bed8ff; }
.hero .eyebrow span { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 12px var(--blue); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 640px; margin: 19px 0 18px; font-size: clamp(2.7rem, 5.2vw, 4.65rem); line-height: .98; letter-spacing: -.052em; }
h1 em { font-style: normal; color: #a8c7ff; }
.hero-lead { max-width: 580px; margin-bottom: 30px; color: #a9b7cb; font-size: 1.03rem; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.value-points { display: flex; gap: 30px; margin-top: 34px; color: #d7e0ee; font-size: .82rem; font-weight: 650; }
.value-points span { display: flex; gap: 8px; align-items: center; }
.value-points i { display: grid; place-items: center; width: 25px; height: 25px; font-style: normal; color: var(--blue-bright); background: #0d2341; border-radius: 6px; }

.hero-visual { position: relative; min-height: 500px; display: flex; align-items: center; justify-content: center; perspective: 1200px; }
.visual-orbit { position: absolute; width: 570px; height: 410px; background: radial-gradient(ellipse, rgba(32,96,255,.28), rgba(106,44,255,.08) 45%, transparent 72%); filter: blur(18px); }
.dashboard-window { position: relative; width: 610px; height: 363px; border: 1px solid rgba(96, 146, 255, .34); border-radius: 14px; background: linear-gradient(150deg, #0b2041, #061327 70%); box-shadow: 0 32px 80px rgba(0,0,0,.55), 0 0 90px rgba(36,85,220,.12); transform: rotateY(-5deg) rotateX(2deg); overflow: hidden; }
.dashboard-window::after { content: ""; position: absolute; inset: auto 10% -14px; height: 19px; border-radius: 50%; background: #132747; filter: blur(8px); }
.dash-bar { height: 34px; display: flex; align-items: center; gap: 6px; padding: 0 13px; border-bottom: 1px solid rgba(126,164,232,.12); background: #07162c; }
.dash-bar span { width: 6px; height: 6px; border-radius: 50%; background: #23466f; }
.dash-bar b { margin-left: 15px; font-size: .52rem; letter-spacing: .28em; color: #8dbaff; }
.dash-body { height: calc(100% - 34px); display: flex; }
.dash-nav { width: 58px; display: flex; align-items: center; flex-direction: column; gap: 20px; padding: 17px 0; border-right: 1px solid rgba(126,164,232,.1); }
.dash-nav b { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 7px; background: #196fff; box-shadow: 0 0 20px rgba(25,111,255,.4); }
.dash-nav span { display: block; width: 20px; height: 4px; border-radius: 10px; background: #254268; }
.dash-nav span.selected { background: #4c91ff; }
.dash-content { flex: 1; padding: 25px 26px; }
.dash-greeting { display: flex; flex-direction: column; margin-bottom: 20px; }
.dash-greeting small, .metric-row small { color: #7288a8; font-size: .63rem; }
.dash-greeting strong { margin-top: 4px; font-size: 1.15rem; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.metric-row div { position: relative; min-height: 67px; padding: 10px; background: rgba(13,39,75,.73); border: 1px solid rgba(98,145,223,.12); border-radius: 7px; }
.metric-row b { display: block; margin-top: 4px; font-size: .9rem; }
.metric-row i { position: absolute; right: 8px; top: 10px; color: var(--green); font-size: .52rem; font-style: normal; }
.chart { position: relative; height: 150px; margin-top: 20px; border-radius: 8px; overflow: hidden; background: rgba(5,19,40,.48); }
.chart-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(71,113,180,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(71,113,180,.07) 1px, transparent 1px); background-size: 100% 30px, 60px 100%; }
.chart svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.chart .line { fill: none; stroke: #4b8dff; stroke-width: 3; filter: drop-shadow(0 0 6px #2871ff); }
.chart .area { fill: url(#chartFill); }
.phone-frame { position: absolute; right: -9px; bottom: 28px; width: 145px; height: 295px; z-index: 4; padding: 31px 14px 18px; border: 2px solid #4469ab; border-radius: 26px; background: linear-gradient(155deg, #071329 5%, #111358 64%, #491cb8); box-shadow: 0 26px 60px rgba(0,0,0,.5), 0 0 35px rgba(98,57,255,.27); overflow: hidden; }
.phone-frame::before { content: ""; position: absolute; inset: 50% -30% -20%; background: radial-gradient(circle, #582bdc 0 18%, transparent 19%), repeating-radial-gradient(ellipse at 70% 45%, transparent 0 10px, rgba(125,96,255,.36) 12px 14px, transparent 16px 25px); transform: rotate(-22deg); }
.phone-speaker { position: absolute; top: 9px; left: 50%; width: 42px; height: 5px; border-radius: 5px; background: #142648; transform: translateX(-50%); }
.phone-kicker { position: relative; font-size: .42rem; letter-spacing: .26em; color: #86b3ff; }
.phone-frame strong { position: relative; display: block; margin-top: 39px; font-size: 1.25rem; line-height: 1.05; letter-spacing: -.04em; }
.phone-frame strong em { display: block; color: #9bc3ff; font-style: normal; }
.phone-frame a { position: absolute; bottom: 16px; left: 14px; right: 14px; z-index: 2; padding: 8px 6px; text-align: center; border-radius: 6px; background: #187eff; font-size: .63rem; font-weight: 700; }
.assistant-bubble { position: absolute; right: 0; top: 17px; z-index: 6; width: 215px; padding: 11px; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(86,128,255,.43); border-radius: 10px; background: rgba(7,23,48,.85); box-shadow: 0 16px 45px rgba(0,0,0,.35); backdrop-filter: blur(15px); }
.assistant-icon { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 8px; background: #315eff; }
.assistant-bubble > span:nth-child(2) { display: flex; flex: 1; flex-direction: column; }
.assistant-bubble strong { font-size: .69rem; }
.assistant-bubble small { color: #8297b5; font-size: .58rem; }
.mini-arrow { color: #76a5ff; }

.trust-strip { padding: 30px 0 36px; border-bottom: 1px solid var(--line); }
.mini-label { margin-bottom: 18px; color: #7f91ab; text-transform: uppercase; letter-spacing: .14em; font-size: .64rem; font-weight: 750; }
.trust-grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: 35px; align-items: center; }
.company-types { display: flex; justify-content: space-between; gap: 14px; color: #9aa8bd; font-size: .76rem; font-weight: 800; letter-spacing: .06em; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.stats div { min-height: 68px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 8px; background: rgba(11,29,54,.55); }
.stats strong { font-size: 1.05rem; }
.stats span { color: #7487a5; font-size: .52rem; text-transform: uppercase; }

.services-layout { display: grid; grid-template-columns: .72fr 1.75fr; gap: 60px; align-items: start; }
.section-heading h2, .section-title-row h2, .industry-heading h2, .contact-copy h2, .cta-box h2 { margin: 9px 0 15px; font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.05; letter-spacing: -.04em; }
.section-heading > p, .section-title-row > p, .contact-copy > p, .cta-box p { color: var(--muted); font-size: .94rem; line-height: 1.75; }
.section-heading .text-link { display: inline-block; margin-top: 8px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.service-card { min-height: 224px; position: relative; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(12,35,66,.85), rgba(6,20,40,.58)); transition: transform .25s ease, border-color .25s ease, background .25s ease; overflow: hidden; }
.service-card::before { content: ""; position: absolute; width: 100px; height: 100px; top: -55px; left: -45px; border-radius: 50%; background: var(--blue); filter: blur(60px); opacity: 0; transition: opacity .25s; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(67,127,255,.45); background: linear-gradient(145deg, rgba(15,43,83,.95), rgba(6,20,40,.72)); }
.service-card:hover::before { opacity: .2; }
.icon-box { width: 43px; height: 43px; display: grid; place-items: center; margin-bottom: 36px; border: 1px solid rgba(81,142,255,.28); border-radius: 9px; color: #7cb2ff; background: #102955; box-shadow: inset 0 0 22px rgba(33,101,255,.15); font-weight: 800; }
.service-card h3 { margin-bottom: 8px; font-size: 1rem; }
.service-card p { margin-bottom: 0; color: var(--muted); font-size: .78rem; line-height: 1.55; }
.service-card > a { position: absolute; right: 20px; bottom: 17px; color: #81adf5; }

.ai-section { position: relative; background: linear-gradient(90deg, rgba(5,21,43,.88), rgba(4,14,29,.7)); }
.ai-layout { display: grid; grid-template-columns: .82fr 1.85fr; gap: 55px; align-items: center; }
.ai-layout .button { margin-top: 8px; }
.workflow { display: flex; gap: 11px; align-items: center; }
.workflow > i { color: #6481ad; font-style: normal; }
.workflow-card { flex: 1; min-height: 210px; position: relative; padding: 23px 14px; text-align: center; border: 1px solid rgba(72,125,225,.28); border-radius: 12px; background: linear-gradient(165deg, rgba(14,42,81,.8), rgba(7,21,42,.6)); }
.workflow-card > span { position: absolute; top: 10px; right: 12px; color: #49617f; font-size: .58rem; }
.workflow-icon { width: 47px; height: 47px; margin: 20px auto 24px; display: grid; place-items: center; border-radius: 12px; color: #8db8ff; background: radial-gradient(circle at 30% 20%, #244f9c, #10254d); font-size: 1.35rem; }
.workflow-card h3 { margin-bottom: 7px; font-size: .95rem; }
.workflow-card p { color: #8395b0; font-size: .67rem; line-height: 1.5; }

.section-title-row { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 35px; }
.section-title-row p { max-width: 360px; margin-bottom: 8px; text-align: right; font-size: .78rem; }
.portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.project-card { position: relative; min-width: 0; padding: 17px 17px 0; border: 1px solid var(--line); border-radius: 13px; background: rgba(8,26,50,.75); overflow: hidden; transition: transform .25s, border-color .25s; }
.project-card:hover { transform: translateY(-5px); border-color: rgba(67,127,255,.45); }
.project-meta { min-height: 58px; display: flex; justify-content: space-between; gap: 8px; }
.project-meta h3 { margin-bottom: 1px; font-size: .93rem; }
.project-meta p { color: #8495ad; font-size: .64rem; }
.project-meta > span { height: fit-content; padding: 4px 6px; border-radius: 4px; background: rgba(32,91,182,.25); color: #76a8f8; font-size: .48rem; font-weight: 800; }
.project-visual { height: 180px; position: relative; border: 1px solid rgba(70,113,183,.2); border-bottom: 0; border-radius: 8px 8px 0 0; overflow: hidden; }
.project-arrow { position: absolute; right: 12px; bottom: 13px; z-index: 3; width: 32px; height: 32px; border: 0; border-radius: 50%; background: white; color: #1f66dc; cursor: pointer; font-weight: 900; }
.dark-ui { display: flex; padding: 18px; gap: 8px; background: #07172f; }
.mini-side { width: 17%; border-radius: 3px; background: repeating-linear-gradient(to bottom,#17355f 0 5px,transparent 5px 14px); }
.mini-main { flex: 1; }
.mini-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 5px; }
.mini-kpis i { height: 33px; border: 1px solid #234978; border-radius: 3px; background: linear-gradient(135deg,#102c51,#0b203e); }
.mini-chart { height: 78px; margin-top: 9px; background: linear-gradient(150deg, transparent 49%, #317cff 50% 51%, transparent 52%), repeating-linear-gradient(to bottom,rgba(58,95,150,.14) 0 1px,transparent 1px 19px); }
.mobile-ui { background: radial-gradient(circle at 50% 15%, #193885, #0b1732 65%); }
.app-phone { position: absolute; width: 91px; height: 158px; top: 22px; left: 28px; padding: 16px 9px; display: flex; flex-direction: column; border: 2px solid #294979; border-radius: 14px; background: #0c1b3d; transform: rotate(-3deg); }
.app-phone.secondary { left: auto; right: 25px; top: 10px; transform: rotate(3deg); background: linear-gradient(#111d45,#17176a); }
.app-phone small { color: #7aa7f6; font-size: .43rem; }
.app-phone b { margin-top: 9px; font-size: .63rem; line-height: 1.2; }
.app-phone i { margin: 15px auto 8px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #1d65ef; font-style: normal; }
.app-phone span { height: 19px; margin-top: 8px; border-radius: 4px; background: #22426e; }
.light-ui { display: flex; padding: 16px; background: #e9f1fc; }
.light-side { width: 22%; border-right: 1px solid #c4d3e8; background: repeating-linear-gradient(to bottom,#a6b8d1 0 4px,transparent 4px 14px); }
.light-main { flex: 1; padding: 5px 12px; }
.light-main > b { display: block; width: 45%; height: 8px; background: #496a97; border-radius: 2px; }
.light-main > span { display: block; height: 7px; margin-top: 12px; background: #cad6e7; }
.light-main > span:nth-child(3) { width: 70%; }
.light-main > div { display: grid; grid-template-columns: repeat(3,1fr); gap: 5px; margin-top: 24px; }
.light-main i { height: 50px; border-radius: 4px; background: #b8c9e0; }
.commerce-ui { display: flex; background: linear-gradient(120deg,#f4f7fb,#dfe8f4); color: #17263b; }
.product-art { width: 42%; display: grid; place-items: center; font-size: 4.8rem; font-weight: 900; color: #1f68e8; background: radial-gradient(circle,#c8ddff,#edf4ff 70%); }
.product-copy { flex: 1; padding: 27px 13px; }
.product-copy small { text-transform: uppercase; font-size: .44rem; color: #6480a5; }
.product-copy b { display: block; margin: 7px 0 16px; font-size: .75rem; line-height: 1.25; }
.product-copy span { display: block; height: 5px; margin: 7px 0; background: #c1ccda; }
.product-copy i { display: inline-block; margin-top: 13px; padding: 5px 8px; border-radius: 3px; background: #1f68e8; color: white; font-size: .47rem; font-style: normal; }

.process-section { background: rgba(5,17,34,.6); }
.process-line { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; list-style: none; padding: 0; margin: 0; }
.process-line li { position: relative; display: flex; gap: 14px; align-items: flex-start; }
.process-line li::after { content: ""; position: absolute; top: 25px; left: 55px; right: 10px; height: 1px; background: linear-gradient(90deg,#235ed0,rgba(43,90,172,.18)); }
.process-line li:last-child::after { display: none; }
.process-line li > span { flex: 0 0 48px; height: 48px; display: grid; place-items: center; z-index: 1; border: 1px solid #286dea; border-radius: 50%; background: #091b3c; color: #b7d1ff; font-size: .76rem; font-weight: 800; box-shadow: 0 0 25px rgba(35,102,232,.15); }
.process-line div { padding-top: 6px; padding-right: 20px; }
.process-line h3 { margin-bottom: 4px; font-size: .9rem; }
.process-line p { color: #7f91ab; font-size: .67rem; }

.compact-section { padding-top: 80px; }
.tech-list { display: grid; grid-template-columns: repeat(8, 1fr); gap: 9px; }
.tech-list span { height: 60px; display: flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid var(--line); border-radius: 8px; background: rgba(9,27,52,.58); color: #c4d0e2; font-size: .72rem; }
.tech-list b { color: #58a3ff; font-size: .82rem; }
.industry-heading { margin-top: 70px; margin-bottom: 25px; }
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.industry-grid article { min-height: 90px; display: flex; gap: 15px; align-items: center; padding: 18px; border: 1px solid var(--line); border-radius: 10px; background: linear-gradient(145deg,rgba(10,31,59,.7),rgba(7,21,41,.5)); }
.industry-grid > article > span { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; background: #102d59; color: #6fa6ff; font-size: 1.08rem; }
.industry-grid h3 { margin-bottom: 2px; font-size: .85rem; }
.industry-grid p { margin: 0; color: #8091aa; font-size: .66rem; }

.testimonials-section { padding-top: 80px; background: rgba(5,18,36,.56); }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
blockquote { margin: 0; position: relative; padding: 27px 28px; border: 1px solid var(--line); border-radius: 13px; background: rgba(9,29,56,.72); }
.quote-mark { position: absolute; top: 12px; right: 20px; color: #1d4f99; font-family: Georgia,serif; font-size: 3.5rem; line-height: 1; }
blockquote > p { max-width: 86%; color: #c0cad9; font-size: .88rem; line-height: 1.75; }
blockquote footer { display: flex; align-items: center; gap: 11px; margin-top: 24px; }
.avatar { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg,#225ca4,#18345d); color: #d7e7ff; font-size: .69rem; font-weight: 800; }
.avatar.alt { background: linear-gradient(135deg,#6536d9,#282765); }
blockquote footer div { display: flex; flex-direction: column; }
blockquote footer strong { font-size: .76rem; }
blockquote footer small { color: #7185a2; font-size: .61rem; }
blockquote footer b { margin-left: auto; color: #ffba22; letter-spacing: .12em; font-size: .72rem; }

.engagement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.engagement-card { min-height: 380px; position: relative; padding: 30px; border: 1px solid var(--line); border-radius: 13px; background: rgba(8,26,49,.68); }
.engagement-card.featured { border-color: #2f71ef; background: linear-gradient(155deg,rgba(19,57,113,.9),rgba(7,24,48,.8)); box-shadow: 0 25px 60px rgba(4,54,145,.2); }
.engagement-card > span { color: #659cf5; letter-spacing: .15em; font-size: .62rem; font-weight: 800; }
.engagement-card > i { position: absolute; top: 18px; right: 18px; padding: 5px 9px; border-radius: 100px; background: #dceaff; color: #15489d; font-size: .56rem; font-style: normal; font-weight: 800; }
.engagement-card h3 { margin: 17px 0 10px; font-size: 1.35rem; }
.engagement-card > p { min-height: 70px; color: #899bb4; font-size: .8rem; line-height: 1.65; }
.engagement-card ul { padding: 0; margin: 20px 0 30px; list-style: none; color: #b3c1d3; font-size: .76rem; }
.engagement-card li { margin: 11px 0; }
.engagement-card li::before { content: "✓"; margin-right: 9px; color: #48a0ff; }
.engagement-card .button { position: absolute; left: 30px; right: 30px; bottom: 30px; }

.cta-section { padding: 0 0 95px; }
.cta-box { position: relative; min-height: 190px; padding: 40px 45px; display: flex; align-items: center; justify-content: space-between; gap: 45px; border: 1px solid #2b6fea; border-radius: 15px; background: radial-gradient(circle at 90% 50%,rgba(87,46,240,.4),transparent 28%),linear-gradient(100deg,#0a2145,#081532 70%); overflow: hidden; }
.cta-box::after { content: ""; position: absolute; right: -70px; width: 270px; height: 270px; border: 1px solid rgba(99,86,255,.5); border-radius: 50%; box-shadow: 0 0 40px #5d36f1, inset 0 0 45px rgba(48,84,255,.35); }
.cta-box > div, .cta-box .button { position: relative; z-index: 1; }
.cta-box h2 { font-size: 2rem; }
.cta-box p { margin: 0; }
.cta-box .button { flex: 0 0 auto; }

.contact-section { background: linear-gradient(180deg,rgba(5,17,34,.6),rgba(3,13,27,.95)); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.2fr; gap: 80px; align-items: start; }
.contact-points { margin-top: 38px; }
.contact-points > div { display: flex; gap: 16px; margin: 21px 0; }
.contact-points span { flex: 0 0 32px; height: 32px; display: grid; place-items: center; border-radius: 8px; background: #102c55; color: #69a6ff; font-size: .63rem; font-weight: 800; }
.contact-points p { display: flex; flex-direction: column; margin: 0; }
.contact-points strong { font-size: .83rem; }
.contact-points small { margin-top: 4px; color: #7e90a8; font-size: .7rem; }
.contact-form { position: relative; padding: 31px; border: 1px solid var(--line); border-radius: 15px; background: rgba(9,29,56,.78); box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: block; margin-bottom: 16px; color: #c8d3e3; font-size: .72rem; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 8px; padding: 13px 14px; color: #eaf1ff; border: 1px solid rgba(117,153,211,.2); border-radius: 8px; outline: 0; background: #071a34; font-size: .82rem; transition: border-color .2s, box-shadow .2s; }
.contact-form input, .contact-form select { height: 47px; }
.contact-form textarea { resize: vertical; min-height: 125px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #3685ff; box-shadow: 0 0 0 3px rgba(54,133,255,.12); }
.contact-form select { color-scheme: dark; }
.submit-button { width: 100%; margin-top: 3px; }
.form-note { margin: 12px 0 0; text-align: center; color: #667993; font-size: .61rem; }
.form-success { display: none; position: absolute; inset: 0; z-index: 3; align-items: center; justify-content: center; flex-direction: column; padding: 35px; text-align: center; border-radius: inherit; background: rgba(6,24,46,.98); }
.form-success.show { display: flex; }
.form-success span { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 50%; background: rgba(38,217,160,.15); border: 1px solid rgba(38,217,160,.4); color: var(--green); font-size: 1.5rem; }
.form-success strong { font-size: 1.2rem; }
.form-success small { max-width: 360px; margin-top: 8px; color: #8fa2bd; }

.site-footer { padding: 65px 0 24px; border-top: 1px solid var(--line); background: #020914; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 60px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-grid p, .footer-grid a { color: #7587a1; font-size: .75rem; }
.footer-grid > div:first-child p { max-width: 285px; margin-top: 10px; line-height: 1.7; }
.footer-grid strong { margin-bottom: 7px; font-size: .8rem; }
.footer-grid a:hover { color: #dce8fa; }
.footer-grid .text-link { color: var(--blue-bright); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 45px; padding-top: 22px; border-top: 1px solid var(--line); color: #596c86; font-size: .68rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .nav-links { gap: 17px; }
  .nav-links a { font-size: .75rem; }
  .hero-grid { grid-template-columns: 1fr 1.2fr; gap: 25px; }
  .dashboard-window { width: 520px; height: 330px; }
  .phone-frame { right: -15px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .ai-layout { grid-template-columns: 1fr; }
  .workflow { max-width: 800px; }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .tech-list { grid-template-columns: repeat(4,1fr); }
}

@media (max-width: 820px) {
  .nav-cta { display: none; }
  .nav-shell { justify-content: space-between; }
  .menu-toggle { display: block; z-index: 2; }
  .nav-links { position: absolute; top: 72px; left: 0; right: 0; display: none; flex-direction: column; gap: 0; padding: 10px 21px 24px; border-bottom: 1px solid var(--line); background: rgba(3,13,27,.98); box-shadow: 0 20px 35px rgba(0,0,0,.28); }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 13px 0; }
  .nav-links a::after { display: none; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 80px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero .eyebrow, .hero-lead { margin-inline: auto; }
  .hero-actions, .value-points { justify-content: center; }
  .hero-visual { min-height: 445px; margin-top: 10px; }
  .dashboard-window { width: min(620px,90vw); }
  .phone-frame { right: 2%; }
  .trust-grid { grid-template-columns: 1fr; }
  .services-layout { grid-template-columns: 1fr; gap: 35px; }
  .section-heading { max-width: 600px; }
  .industry-grid { grid-template-columns: repeat(2,1fr); }
  .process-line { grid-template-columns: 1fr 1fr; gap: 30px 0; }
  .process-line li:nth-child(2)::after { display: none; }
  .engagement-grid { grid-template-columns: 1fr; }
  .engagement-card { min-height: 350px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  .container { width: min(100% - 30px, 1180px); }
  .section { padding: 74px 0; }
  h1 { font-size: clamp(2.55rem, 13vw, 3.5rem); }
  .hero-lead { font-size: .95rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .value-points { gap: 14px; }
  .hero-visual { min-height: 360px; }
  .dashboard-window { height: 280px; transform: rotateY(-3deg) scale(.96); }
  .dash-content { padding: 18px 15px; }
  .dash-nav { width: 40px; }
  .metric-row div:nth-child(3) { display: none; }
  .metric-row { grid-template-columns: repeat(2,1fr); }
  .chart { height: 116px; }
  .phone-frame { width: 112px; height: 230px; bottom: 10px; border-radius: 22px; }
  .phone-frame strong { margin-top: 25px; font-size: 1rem; }
  .assistant-bubble { right: 1%; top: -3px; width: 190px; }
  .company-types { display: grid; grid-template-columns: repeat(2,1fr); text-align: center; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .service-grid, .portfolio-grid, .industry-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 210px; }
  .workflow { display: grid; grid-template-columns: 1fr 1fr; }
  .workflow > i { display: none; }
  .section-title-row { align-items: flex-start; flex-direction: column; margin-bottom: 27px; }
  .section-title-row p { text-align: left; }
  .process-line { grid-template-columns: 1fr; }
  .process-line li::after { display: none; }
  .tech-list { grid-template-columns: repeat(2,1fr); }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 22px; }
  .cta-box { min-height: 290px; padding: 32px 25px; flex-direction: column; align-items: flex-start; justify-content: center; }
  .cta-box::after { right: -150px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { gap: 12px; flex-direction: column; }
}

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