/*
Theme Name: ABM Soft
Theme URI: http://localhost:8080
Author: ABM Soft
Description: A bespoke, conversion-focused theme for ABM Soft.
Version: 1.0.0
Text Domain: abmsoft
*/

:root {
  --ink: #08152f;
  --ink-2: #102243;
  --muted: #60708b;
  --line: #dce4ef;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --blue: #246bfd;
  --blue-dark: #1554d4;
  --coral: #ff795f;
  --navy: #06142d;
  --radius: 20px;
  --shadow: 0 24px 70px rgba(12, 36, 76, .12);
  --container: min(1160px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -100px; z-index: 999; background: #fff; padding: 10px 14px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.11);
}
.nav-wrap { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: #fff; font-size: 21px; font-weight: 800; letter-spacing: -.5px; }
.brand-mark { width: 35px; height: 35px; display: grid; place-items: center; background: var(--blue); border-radius: 10px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); }
.brand-mark svg { width: 21px; }
.brand em { color: #72a4ff; font-style: normal; }
.brand-logo { width: auto; max-width: min(220px, 42vw); object-fit: contain; }
.brand-logo-header { max-height: 58px; }
.brand-logo-footer { max-height: 72px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { color: rgba(255,255,255,.76); font-size: 14px; font-weight: 650; transition: color .2s; }
.nav-links a:hover, .nav-links a:focus { color: #fff; }
.nav-cta { padding: 11px 18px; border: 1px solid rgba(255,255,255,.35); border-radius: 9px; color: #fff !important; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255,255,255,.24); border-radius: 10px; color: #fff; background: transparent; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; transition: .2s; }

.hero {
  position: relative;
  min-height: 790px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 150px; background: linear-gradient(transparent, rgba(2,10,26,.5)); pointer-events: none; }
.hero-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .86; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,15,38,.99) 0%, rgba(4,15,38,.94) 33%, rgba(4,15,38,.33) 64%, rgba(4,15,38,.1) 100%); }
.hero-inner { position: relative; z-index: 2; padding-top: 96px; }
.hero-copy { max-width: 650px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 22px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.hero .eyebrow { color: #8db5ff; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 25px; font-size: clamp(49px, 6.1vw, 82px); line-height: 1.01; letter-spacing: -4.2px; font-weight: 760; }
h1 span { color: #79aaff; }
.hero-lead { max-width: 590px; margin-bottom: 34px; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.75; }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; }
.btn { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border: 1px solid transparent; border-radius: 10px; font-size: 14px; font-weight: 750; transition: transform .2s, background .2s, border-color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--blue); box-shadow: 0 14px 35px rgba(36,107,253,.3); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-ghost { color: #fff; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.06); backdrop-filter: blur(7px); }
.btn svg { width: 17px; height: 17px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 50px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.62); font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }
.hero-proof span { display: flex; align-items: center; gap: 8px; }
.hero-proof i { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px rgba(255,121,95,.1); }

.value-strip { position: relative; z-index: 4; margin-top: -1px; background: #07162f; color: #fff; border-top: 1px solid rgba(255,255,255,.1); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.value-item { min-height: 130px; padding: 31px 26px; border-left: 1px solid rgba(255,255,255,.1); }
.value-item:last-child { border-right: 1px solid rgba(255,255,255,.1); }
.value-number { margin-bottom: 3px; color: #fff; font-size: 22px; font-weight: 800; letter-spacing: -.5px; }
.value-label { color: rgba(255,255,255,.52); font-size: 12px; line-height: 1.45; text-transform: uppercase; letter-spacing: .8px; }

.section { padding: 112px 0; }
.section-soft { background: var(--soft); }
.section-dark { color: #fff; background: var(--navy); }
.section-heading { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: end; margin-bottom: 58px; }
.section-heading h2 { max-width: 670px; margin-bottom: 0; font-size: clamp(38px, 4.2vw, 58px); line-height: 1.08; letter-spacing: -2.7px; }
.section-heading .intro { max-width: 510px; margin: 0 0 5px auto; color: var(--muted); }
.section-dark .section-heading .intro { color: rgba(255,255,255,.6); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: 0 15px 50px rgba(22,48,87,.06); }
.service-card { min-height: 355px; padding: 40px 35px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s, transform .25s; }
.service-card:nth-child(3n) { border-right: 0; }
.service-card:nth-last-child(-n+3) { border-bottom: 0; }
.service-card:hover { position: relative; z-index: 2; background: #f9fbff; box-shadow: 0 20px 45px rgba(20,55,110,.09); }
.service-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 45px; color: var(--blue); background: #eaf1ff; border-radius: 13px; }
.service-icon svg { width: 24px; }
.service-card h3 { margin-bottom: 12px; font-size: 20px; letter-spacing: -.5px; }
.service-card p { margin-bottom: 24px; color: var(--muted); font-size: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-size: 13px; font-weight: 800; }
.text-link::after { content: "\2192"; transition: transform .2s; }
.text-link:hover::after { transform: translateX(4px); }

.work-layout { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.product-visual { position: relative; min-height: 565px; overflow: hidden; border-radius: 26px; background: linear-gradient(145deg,#102c63,#07162f); box-shadow: var(--shadow); }
.product-visual::before { content: ""; position: absolute; width: 330px; height: 330px; right: -80px; top: -90px; border-radius: 50%; background: #256bfd; filter: blur(80px); opacity: .4; }
.dashboard { position: absolute; inset: 70px -80px 55px 65px; padding: 22px; border: 1px solid rgba(255,255,255,.2); border-radius: 18px; background: rgba(255,255,255,.96); transform: rotate(-3deg); box-shadow: 0 30px 70px rgba(0,0,0,.3); }
.dash-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.dash-dots { display: flex; gap: 5px; }
.dash-dots i { width: 7px; height: 7px; border-radius: 50%; background: #d7deea; }
.dash-pill { width: 75px; height: 8px; border-radius: 8px; background: #e8edf5; }
.dash-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 14px; }
.dash-card { padding: 19px; border: 1px solid #e5eaf1; border-radius: 13px; }
.dash-card.big { grid-row: span 2; }
.dash-label { width: 65px; height: 7px; margin-bottom: 17px; background: #dfe6f0; border-radius: 5px; }
.dash-total { margin-bottom: 22px; color: #10244a; font-size: 27px; font-weight: 800; }
.bars { height: 140px; display: flex; align-items: flex-end; gap: 9px; }
.bars i { width: 24px; border-radius: 4px 4px 0 0; background: #3c79fb; }
.bars i:nth-child(1){height:38%}.bars i:nth-child(2){height:58%}.bars i:nth-child(3){height:47%}.bars i:nth-child(4){height:82%}.bars i:nth-child(5){height:67%}.bars i:nth-child(6){height:94%}.bars i:nth-child(7){height:78%}
.mini-lines i { display: block; height: 7px; margin: 11px 0; border-radius: 5px; background: #e7ecf3; }
.mini-lines i:nth-child(2) { width: 75%; background: #bcd0ff; }
.visual-tag { position: absolute; left: 28px; bottom: 28px; z-index: 2; padding: 12px 16px; color: #fff; border: 1px solid rgba(255,255,255,.19); border-radius: 10px; background: rgba(5,18,43,.78); backdrop-filter: blur(10px); font-size: 12px; font-weight: 750; }
.work-copy h2 { margin-bottom: 24px; font-size: clamp(38px,4.2vw,57px); line-height: 1.08; letter-spacing: -2.6px; }
.work-copy > p { color: var(--muted); }
.feature-list { margin: 32px 0 37px; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; padding: 15px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.feature-list li::before { content: "\2713"; width: 23px; height: 23px; display: grid; place-items: center; color: var(--blue); background: #eaf1ff; border-radius: 50%; font-size: 12px; }
.work-copy .btn-ghost { color: var(--ink); border-color: var(--line); background: #fff; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 62px; counter-reset: process; }
.process-step { position: relative; padding: 0 30px 0 0; counter-increment: process; }
.process-step:not(:last-child)::after { content: ""; position: absolute; top: 25px; right: 18px; width: calc(100% - 72px); border-top: 1px dashed rgba(255,255,255,.24); transform: translateX(100%); }
.step-number { width: 51px; height: 51px; display: grid; place-items: center; margin-bottom: 32px; color: #8fb5ff; border: 1px solid rgba(120,169,255,.4); border-radius: 50%; background: rgba(36,107,253,.11); font-size: 13px; font-weight: 800; }
.process-step h3 { margin-bottom: 12px; font-size: 18px; }
.process-step p { color: rgba(255,255,255,.53); font-size: 13px; }

.why-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.why-intro h2 { margin-bottom: 25px; font-size: clamp(38px,4.2vw,58px); line-height: 1.08; letter-spacing: -2.6px; }
.why-intro p:not(.eyebrow) { color: var(--muted); }
.why-items { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-card { min-height: 220px; padding: 30px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.why-card strong { display: block; margin-bottom: 15px; color: var(--blue); font-size: 13px; letter-spacing: 1px; }
.why-card h3 { margin-bottom: 10px; font-size: 18px; }
.why-card p { margin: 0; color: var(--muted); font-size: 13px; }

.cta-section { padding: 0 0 90px; }
.cta-box { position: relative; overflow: hidden; padding: 80px; color: #fff; border-radius: 26px; background: #0b1d42; }
.cta-box::before { content:""; position:absolute; right:-110px; top:-210px; width:520px; height:520px; border-radius:50%; background:#256bfd; opacity:.55; filter:blur(30px); }
.cta-box::after { content:""; position:absolute; right:210px; bottom:-160px; width:300px; height:300px; border:1px solid rgba(255,255,255,.15); border-radius:50%; }
.cta-content { position: relative; z-index: 2; max-width: 700px; }
.cta-content h2 { margin-bottom: 20px; font-size: clamp(39px,4.6vw,61px); line-height: 1.06; letter-spacing: -2.7px; }
.cta-content p { max-width: 570px; margin-bottom: 30px; color: rgba(255,255,255,.65); }

.site-footer { padding: 70px 0 24px; color: #fff; background: #051126; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr .7fr; gap: 60px; padding-bottom: 58px; }
.footer-about p { max-width: 330px; margin: 22px 0; color: rgba(255,255,255,.5); font-size: 13px; }
.footer-email { color: #8eb5ff; font-weight: 700; }
.footer-col h3 { margin-bottom: 20px; color: rgba(255,255,255,.42); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; }
.footer-col a { display: block; margin: 11px 0; color: rgba(255,255,255,.72); font-size: 13px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; color: rgba(255,255,255,.36); border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }

/* Services page */
.nav-links a[aria-current="page"] { color: #fff; }
.services-hero { position: relative; min-height: 670px; display: grid; align-items: center; overflow: hidden; color: #fff; background: #06142d; }
.services-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 77% 55%, rgba(36,107,253,.2), transparent 34%), linear-gradient(90deg,rgba(6,20,45,.15),rgba(6,20,45,.7)); pointer-events: none; }
.services-hero-grid { position: absolute; width: 620px; height: 620px; right: 4%; top: 80px; opacity: .2; background-image: linear-gradient(rgba(123,169,255,.25) 1px, transparent 1px), linear-gradient(90deg,rgba(123,169,255,.25) 1px,transparent 1px); background-size: 45px 45px; transform: perspective(500px) rotateX(58deg) rotateZ(-12deg); mask-image: radial-gradient(circle,#000 18%,transparent 70%); }
.services-orb { position: absolute; border-radius: 50%; border: 1px solid rgba(134,177,255,.32); box-shadow: inset 0 0 70px rgba(36,107,253,.25), 0 0 70px rgba(36,107,253,.13); }
.services-orb-one { width: 310px; height: 310px; right: 15%; top: 185px; }
.services-orb-one::before, .services-orb-one::after { content:""; position:absolute; border-radius:50%; border:1px solid rgba(255,255,255,.15); }
.services-orb-one::before { inset: 42px; }
.services-orb-one::after { inset: 94px; background: radial-gradient(circle at 35% 30%,#65a2ff,#1554d4 45%,#08245c 75%); box-shadow: 0 0 55px rgba(36,107,253,.55); }
.services-orb-two { width: 110px; height: 110px; right: 7%; top: 150px; background: rgba(36,107,253,.12); }
.services-hero-inner { position: relative; z-index: 2; padding-top: 90px; }
.services-hero-inner > h1 { max-width: 850px; margin-bottom: 25px; font-size: clamp(52px,6vw,78px); }
.services-hero-inner > p:not(.eyebrow) { max-width: 650px; margin-bottom: 34px; color: rgba(255,255,255,.67); font-size: 18px; }
.services-hero-note { display: flex; flex-wrap: wrap; gap: 25px; margin-top: 42px; color: rgba(255,255,255,.56); font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .65px; }
.services-hero-note span { display: flex; align-items: center; gap: 8px; }
.services-hero-note span::before { content:""; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.service-jump { color: #fff; background: #0a1a37; border-top: 1px solid rgba(255,255,255,.1); }
.service-jump-inner { min-height: 78px; display: flex; align-items: center; gap: 30px; overflow-x: auto; white-space: nowrap; }
.service-jump span { color: rgba(255,255,255,.36); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; }
.service-jump a { color: rgba(255,255,255,.72); font-size: 13px; font-weight: 700; }
.service-jump a:hover { color: #fff; }

.service-catalog { background: #fff; }
.industry-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.industry-card { scroll-margin-top: 24px; min-height: 485px; display: flex; flex-direction: column; padding: 34px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 10px 35px rgba(20,48,88,.045); transition: transform .22s, box-shadow .22s, border-color .22s; }
.industry-card:hover { transform: translateY(-5px); border-color: #b9cef8; box-shadow: 0 22px 50px rgba(20,48,88,.1); }
.industry-card-featured { grid-column: span 1; min-height: 530px; color: #fff; border-color: transparent; background: linear-gradient(145deg,#102b60,#07162f); box-shadow: 0 20px 55px rgba(7,22,47,.18); }
.industry-card-featured:first-child { grid-column: span 2; }
.industry-card-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 33px; }
.industry-icon { flex: 0 0 auto; width: 50px; height: 50px; display: grid; place-items: center; color: var(--blue); border-radius: 13px; background: #eaf1ff; }
.industry-icon svg { width: 25px; }
.industry-card-featured .industry-icon { color: #9cbdff; background: rgba(63,121,244,.17); border: 1px solid rgba(144,183,255,.18); }
.industry-label { color: #7a899e; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.1px; }
.industry-card-featured .industry-label { color: rgba(255,255,255,.43); }
.industry-card h3 { margin-bottom: 14px; font-size: 24px; line-height: 1.2; letter-spacing: -.8px; }
.industry-card > p { color: var(--muted); font-size: 14px; }
.industry-card-featured > p { max-width: 600px; color: rgba(255,255,255,.61); }
.industry-features { margin: 14px 0 27px; padding: 0; list-style: none; }
.industry-features li { position: relative; margin: 9px 0; padding-left: 19px; color: #3f5069; font-size: 12px; }
.industry-features li::before { content:""; position:absolute; left:0; top:.68em; width:6px; height:6px; border-radius:50%; background:#8fb4ff; }
.industry-card-featured .industry-features li { color: rgba(255,255,255,.66); }
.industry-card .text-link { margin-top: auto; }
.industry-card-featured .text-link { color: #90b5ff; }

.service-platform { color: #fff; background: var(--navy); }
.platform-layout { display: grid; grid-template-columns: .83fr 1.17fr; gap: 90px; align-items: center; }
.platform-copy h2 { margin-bottom: 25px; font-size: clamp(38px,4.2vw,57px); line-height: 1.08; letter-spacing: -2.6px; }
.platform-copy > p:not(.eyebrow) { color: rgba(255,255,255,.55); }
.platform-grid { display: grid; grid-template-columns: repeat(2,1fr); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; overflow: hidden; }
.platform-grid div { min-height: 95px; display: flex; align-items: center; gap: 20px; padding: 24px; border-right: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.platform-grid div:nth-child(2n) { border-right: 0; }
.platform-grid div:nth-last-child(-n+2) { border-bottom: 0; }
.platform-grid strong { color: #759fea; font-size: 11px; }
.platform-grid span { font-weight: 750; }
.service-fit { background: var(--soft); }
.fit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.fit-grid article { padding: 35px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.fit-grid article > span { display: block; margin-bottom: 42px; color: var(--blue); font-size: 12px; font-weight: 800; }
.fit-grid h3 { margin-bottom: 12px; font-size: 20px; }
.fit-grid p { margin: 0; color: var(--muted); font-size: 13px; }

/* Contact page */
.contact-hero { position: relative; min-height: 550px; display: grid; align-items: center; overflow: hidden; color: #fff; background: var(--navy); }
.contact-hero::before { content:""; position:absolute; inset:0; opacity:.17; background-image: linear-gradient(rgba(126,169,249,.2) 1px,transparent 1px),linear-gradient(90deg,rgba(126,169,249,.2) 1px,transparent 1px); background-size: 68px 68px; mask-image: linear-gradient(90deg,transparent,#000); }
.contact-glow { position:absolute; width:560px; height:560px; right:-40px; top:10px; border-radius:50%; background:radial-gradient(circle,rgba(36,107,253,.45),rgba(36,107,253,.08) 42%,transparent 70%); }
.contact-glow::before, .contact-glow::after { content:""; position:absolute; border:1px solid rgba(125,171,255,.18); border-radius:50%; }
.contact-glow::before { inset:72px; }
.contact-glow::after { inset:150px; }
.contact-hero-inner { position:relative; z-index:2; padding-top:88px; }
.contact-hero h1 { max-width:870px; margin-bottom:25px; font-size:clamp(52px,6vw,78px); }
.contact-hero-inner > p:not(.eyebrow) { max-width:650px; color:rgba(255,255,255,.67); font-size:18px; }
.contact-section { padding:110px 0; background:var(--soft); }
.contact-layout { display:grid; grid-template-columns:.78fr 1.22fr; gap:70px; align-items:start; }
.contact-aside { position:sticky; top:35px; padding-top:12px; }
.contact-aside h2 { margin-bottom:25px; font-size:clamp(34px,3.5vw,48px); line-height:1.1; letter-spacing:-2px; }
.contact-steps { margin:42px 0; padding:0; list-style:none; }
.contact-steps li { display:grid; grid-template-columns:42px 1fr; gap:17px; padding:21px 0; border-top:1px solid var(--line); }
.contact-steps li:last-child { border-bottom:1px solid var(--line); }
.contact-steps li > span { color:var(--blue); font-size:11px; font-weight:800; }
.contact-steps strong { display:block; margin-bottom:5px; font-size:15px; }
.contact-steps p { margin:0; color:var(--muted); font-size:12px; }
.contact-direct { display:flex; flex-direction:column; gap:5px; }
.contact-direct span { color:var(--muted); font-size:11px; text-transform:uppercase; letter-spacing:1px; }
.contact-direct a { color:var(--blue); font-size:17px; font-weight:800; }
.conversation-card { padding:50px; border:1px solid var(--line); border-radius:22px; background:#fff; box-shadow:0 22px 65px rgba(18,46,87,.09); }
.form-heading { margin-bottom:35px; }
.form-heading > span { display:block; margin-bottom:12px; color:var(--blue); font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:1.3px; }
.form-heading h2 { margin-bottom:8px; font-size:34px; letter-spacing:-1.4px; }
.form-heading p { margin:0; color:var(--muted); font-size:12px; }
.conversation-form { display:grid; gap:21px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.conversation-form label { display:grid; gap:8px; color:#30415d; font-size:12px; font-weight:750; }
.conversation-form input, .conversation-form select, .conversation-form textarea { width:100%; border:1px solid #ccd7e6; border-radius:10px; outline:0; color:var(--ink); background:#fbfcfe; transition:border-color .2s,box-shadow .2s,background .2s; }
.conversation-form input, .conversation-form select { height:52px; padding:0 15px; }
.conversation-form textarea { min-height:150px; padding:14px 15px; resize:vertical; }
.conversation-form input::placeholder, .conversation-form textarea::placeholder { color:#9aa6b7; font-weight:400; }
.conversation-form input:focus, .conversation-form select:focus, .conversation-form textarea:focus { border-color:var(--blue); background:#fff; box-shadow:0 0 0 4px rgba(36,107,253,.1); }
.form-submit-row { display:flex; align-items:center; gap:20px; margin-top:4px; }
.form-submit-row button { cursor:pointer; }
.form-submit-row p { max-width:210px; margin:0; color:var(--muted); font-size:10px; line-height:1.5; }
.form-honeypot { position:absolute!important; width:1px!important; height:1px!important; overflow:hidden!important; clip:rect(1px,1px,1px,1px)!important; }
.form-notice { display:flex; gap:14px; align-items:flex-start; margin-bottom:28px; padding:17px; border-radius:11px; font-size:13px; }
.form-notice span { flex:0 0 auto; width:25px; height:25px; display:grid; place-items:center; border-radius:50%; }
.form-notice p { margin:3px 0 0; font-size:11px; }
.form-notice-success { color:#165e42; border:1px solid #b8e4d2; background:#edf9f4; }
.form-notice-success span { color:#fff; background:#1c9b6c; }
.form-notice-error { color:#8b3128; border:1px solid #f0c7c0; background:#fff2ef; }

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

@media (max-width: 960px) {
  .nav-links { position: fixed; inset: 0; display: none; flex-direction: column; align-items: flex-start; justify-content: center; padding: 42px; background: #06142d; }
  .nav-links.is-open { display: flex; }
  .nav-links a { font-size: 24px; }
  .menu-toggle { display: block; position: relative; z-index: 3; }
  .section-heading, .work-layout, .why-grid { grid-template-columns: 1fr; gap: 30px; }
  .section-heading .intro { margin-left: 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(3n) { border-right: 1px solid var(--line); }
  .service-card:nth-child(2n) { border-right: 0; }
  .service-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .service-card:nth-last-child(-n+2) { border-bottom: 0; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 45px; }
  .process-step::after { display: none; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .services-orb-one { right: -60px; opacity: .7; }
  .services-orb-two { display: none; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .industry-card-featured:first-child { grid-column: span 2; }
  .platform-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns:1fr; gap:45px; }
  .contact-aside { position:static; }
}

@media (max-width: 680px) {
  :root { --container: min(100% - 28px, 1160px); }
  .nav-wrap { height: 76px; }
  .hero { min-height: 730px; }
  .hero-art { object-position: 61% center; opacity: .55; }
  .hero-overlay { background: linear-gradient(90deg,rgba(3,14,35,.99),rgba(3,14,35,.78)); }
  h1 { font-size: 49px; letter-spacing: -2.8px; }
  .hero-lead { font-size: 16px; }
  .hero-proof { gap: 16px; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .value-item { min-height: 105px; padding: 23px 18px; }
  .section { padding: 82px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .work-copy h2, .why-intro h2 { letter-spacing: -1.8px; }
  .services-grid, .why-items { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 30px; border-right: 0 !important; border-bottom: 1px solid var(--line) !important; }
  .service-card:last-child { border-bottom: 0 !important; }
  .service-icon { margin-bottom: 28px; }
  .product-visual { min-height: 440px; }
  .dashboard { inset: 58px -125px 48px 27px; }
  .process-grid { grid-template-columns: 1fr; gap: 15px; }
  .process-step { padding: 20px; border: 1px solid rgba(255,255,255,.12); border-radius: 15px; }
  .step-number { margin-bottom: 20px; }
  .cta-section { padding-bottom: 65px; }
  .cta-box { padding: 52px 27px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-about { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .services-hero { min-height: 720px; }
  .services-hero-inner { padding-top: 105px; }
  .services-hero-inner > h1 { font-size: 48px; letter-spacing: -2.6px; }
  .services-hero-inner > p:not(.eyebrow) { font-size: 16px; }
  .services-orb-one { width: 280px; height: 280px; right: -120px; top: 195px; opacity: .48; }
  .services-hero-note { gap: 13px 19px; }
  .service-jump-inner { gap: 23px; }
  .industry-grid { grid-template-columns: 1fr; }
  .industry-card, .industry-card-featured, .industry-card-featured:first-child { grid-column: auto; min-height: auto; padding: 29px; }
  .industry-card h3 { font-size: 22px; }
  .platform-grid { grid-template-columns: 1fr; }
  .platform-grid div { min-height: 75px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1) !important; }
  .platform-grid div:last-child { border-bottom: 0 !important; }
  .fit-grid { grid-template-columns: 1fr; }
  .contact-hero { min-height:570px; }
  .contact-hero h1 { font-size:48px; letter-spacing:-2.5px; }
  .contact-hero-inner > p:not(.eyebrow) { font-size:16px; }
  .contact-glow { right:-260px; opacity:.6; }
  .contact-section { padding:75px 0; }
  .conversation-card { padding:28px 20px; border-radius:17px; }
  .form-heading h2 { font-size:28px; }
  .form-row { grid-template-columns:1fr; }
  .form-submit-row { align-items:flex-start; flex-direction:column; }
}

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