:root {
  --maroon: #78042d;
  --maroon-dark: #4d001d;
  --maroon-bright: #a20b45;
  --ink: #172235;
  --muted: #5e6878;
  --line: #e5e7eb;
  --paper: #ffffff;
  --soft: #f7f4f3;
  --cream: #fbfaf8;
  --green: #1f9d72;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(31, 14, 22, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "DM Sans", sans-serif; font-size: 16px; line-height: 1.65; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; }
.skip-link { position: fixed; z-index: 1000; left: 20px; top: -80px; padding: 12px 18px; color: #fff; background: var(--maroon); border-radius: 10px; transition: .2s; }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: 84px; display: flex; align-items: center; background: rgba(255,255,255,.9); border-bottom: 1px solid rgba(120,4,45,.08); backdrop-filter: blur(18px); transition: box-shadow .25s, height .25s; }
.site-header.scrolled { height: 72px; box-shadow: 0 10px 40px rgba(23,34,53,.08); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.brand img { width: 190px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 30px; font-weight: 600; font-size: .95rem; }
.main-nav > a:not(.nav-cta) { position: relative; padding: 8px 0; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; inset: auto 0 0; height: 2px; background: var(--maroon); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.main-nav > a:hover::after, .main-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 11px 20px; border-radius: 999px; color: #fff; background: var(--maroon); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 6px auto; background: var(--ink); transition: .25s; }

.hero { position: relative; overflow: hidden; min-height: 790px; padding: 170px 0 100px; background: linear-gradient(135deg, #fff 0%, #fff 55%, #f6ecef 100%); }
.hero::before { content: ""; position: absolute; width: 620px; height: 620px; right: -180px; top: -220px; border-radius: 50%; background: radial-gradient(circle, rgba(162,11,69,.18), rgba(162,11,69,0) 66%); }
.hero-grid { position: absolute; inset: 0; opacity: .32; background-image: linear-gradient(rgba(120,4,45,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(120,4,45,.055) 1px, transparent 1px); background-size: 50px 50px; mask-image: linear-gradient(to right, transparent, #000 45%, #000); }
.hero-layout { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 86px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 24px; color: var(--maroon); font-weight: 800; font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span { width: 24px; height: 2px; background: currentColor; }
.eyebrow.light { color: #e3a6bc; }
.eyebrow.dark { color: var(--maroon); }
h1, h2, h3 { margin-top: 0; font-family: "Manrope", sans-serif; letter-spacing: -.035em; line-height: 1.13; }
h1 { max-width: 720px; margin-bottom: 28px; font-size: clamp(3rem, 6vw, 5.25rem); font-weight: 800; }
h1 em { color: var(--maroon); font-style: normal; }
.hero-lead { max-width: 670px; margin: 0 0 35px; color: var(--muted); font-size: 1.2rem; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 13px 23px; border: 1px solid transparent; border-radius: 999px; font-weight: 700; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--maroon); box-shadow: 0 13px 30px rgba(120,4,45,.22); }
.button-primary:hover { background: var(--maroon-bright); box-shadow: 0 16px 36px rgba(120,4,45,.3); }
.button-ghost { border-color: #d8dadd; background: rgba(255,255,255,.65); }
.button-outline { border-color: var(--maroon); color: var(--maroon); }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 680px; margin-top: 52px; padding-top: 28px; border-top: 1px solid #ddd7da; }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { margin-bottom: 4px; color: var(--ink); font-family: "Manrope", sans-serif; }
.hero-proof span { color: var(--muted); font-size: .85rem; line-height: 1.4; }

.hero-visual { position: relative; min-height: 500px; }
.orbit-card { position: absolute; border: 1px solid rgba(120,4,45,.12); background: rgba(255,255,255,.86); box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.main-card { inset: 70px 10px 65px 10px; padding: 30px; border-radius: 30px; transform: rotate(1deg); }
.card-top { display: flex; align-items: center; gap: 9px; padding-bottom: 22px; color: var(--muted); border-bottom: 1px solid var(--line); font-size: .86rem; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(31,157,114,.12); }
.system-core { display: flex; align-items: center; gap: 18px; margin: 46px 0 40px; }
.core-logo { display: grid; place-items: center; flex: 0 0 72px; height: 72px; border-radius: 22px; color: #fff; background: var(--maroon); font-family: "Manrope"; font-size: 2rem; font-weight: 800; }
.system-core b, .system-core small { display: block; }
.system-core b { font-family: "Manrope"; font-size: 1.2rem; }
.system-core small { max-width: 270px; margin-top: 6px; color: var(--muted); line-height: 1.45; }
.system-flow { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.system-flow span { padding: 14px 15px; border: 1px solid #eee6e9; border-radius: 13px; background: #fbf8f9; color: #5b2037; font-weight: 700; font-size: .86rem; }
.float-card { position: absolute; display: flex; align-items: center; gap: 11px; padding: 13px 17px; border: 1px solid rgba(120,4,45,.1); border-radius: 15px; background: #fff; box-shadow: 0 15px 40px rgba(45,18,29,.13); font-size: .82rem; animation: float 5s ease-in-out infinite; }
.float-card span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; color: #fff; background: var(--maroon); font-size: .68rem; }
.float-one { left: -36px; top: 34px; }
.float-two { right: -32px; top: 235px; animation-delay: -1.4s; }
.float-three { left: 50px; bottom: 18px; animation-delay: -2.8s; }
@keyframes float { 50% { transform: translateY(-8px); } }

.split-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }
.split-heading h2, .section-head h2, .industries-copy h2, .why-title h2, .contact-copy h2 { margin-bottom: 0; font-size: clamp(2.25rem, 4.6vw, 4rem); }
.intro-copy { color: var(--muted); font-size: 1.13rem; }
.intro-copy p:first-child { margin-top: 0; color: var(--ink); font-weight: 500; }
.intro-copy blockquote { margin: 28px 0 0; padding: 20px 24px; border-left: 4px solid var(--maroon); background: var(--soft); color: var(--maroon-dark); font-weight: 700; }

.services { background: var(--soft); }
.section-head { display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: end; margin-bottom: 56px; }
.section-head > p { margin: 0 0 8px; color: var(--muted); font-size: 1.03rem; }
.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.service-card { position: relative; min-height: 355px; padding: 30px; border: 1px solid #e3dde0; border-radius: var(--radius); background: #fff; transition: transform .3s, box-shadow .3s, border-color .3s; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(120,4,45,.28); box-shadow: var(--shadow); }
.service-number { position: absolute; right: 24px; top: 24px; color: #b4abb0; font-weight: 700; font-size: .8rem; }
.service-icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 55px; border-radius: 17px; color: #fff; background: var(--maroon); font-size: 1.5rem; }
.service-card h3 { margin-bottom: 14px; font-size: 1.3rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .95rem; }

.odoo-foundation { color: #fff; background: linear-gradient(140deg, var(--maroon-dark), var(--maroon) 60%, #941144); }
.foundation-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.foundation-copy h2 { max-width: 620px; margin-bottom: 24px; font-size: clamp(2.35rem, 4.8vw, 4rem); }
.foundation-copy > p:not(.eyebrow) { max-width: 630px; color: #e2c3ce; font-size: 1.08rem; }
.odoo-version { display: flex; align-items: baseline; gap: 15px; margin-top: 40px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.2); }
.odoo-version strong { font: 800 2.2rem/1 "Manrope",sans-serif; }
.odoo-version span { color: #e8b6c8; }
.foundation-points { display: grid; grid-template-columns: repeat(2,1fr); gap: 15px; }
.foundation-points article { min-height: 155px; padding: 28px; border: 1px solid rgba(255,255,255,.18); border-radius: 22px; background: rgba(255,255,255,.08); }
.foundation-points b, .foundation-points span { display: block; }
.foundation-points b { margin-bottom: 10px; font: 700 1.25rem/1.2 "Manrope",sans-serif; }
.foundation-points span { color: #dfc7d0; }

.architecture { background: #fff; }
.architecture-main { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.architecture-column { padding: 34px; border: 1px solid #e4dfe1; border-radius: 24px; background: var(--cream); }
.architecture-column > span { display: block; margin-bottom: 46px; color: var(--maroon); font-weight: 800; }
.architecture-column h3 { margin-bottom: 10px; font-size: 1.45rem; }
.architecture-column p { min-height: 55px; color: var(--muted); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag-cloud b { padding: 7px 10px; border-radius: 999px; color: #6d2942; background: #f1e5e9; font-size: .77rem; }
.architecture-support { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; overflow: hidden; margin-top: 20px; border-radius: 18px; background: #d9d2d5; }
.architecture-support div { padding: 24px; background: #151b28; }
.architecture-support strong, .architecture-support span { display: block; }
.architecture-support strong { margin-bottom: 5px; color: #fff; }
.architecture-support span { color: #9da6b4; font-size: .85rem; }

.industries { color: #fff; background: #151b28; }
.industries-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.industries-copy { position: sticky; top: 120px; }
.industries-copy p:not(.eyebrow) { color: #b8beca; font-size: 1.06rem; }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; color: var(--maroon); font-weight: 800; }
.industries .text-link { color: #f1b1c8; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }
.industry-list { border-top: 1px solid rgba(255,255,255,.15); }
.industry-list article { display: grid; grid-template-columns: 48px 1fr; gap: 24px; padding: 29px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.industry-list article > span { color: #d391a9; font-family: "Manrope"; font-weight: 700; }
.industry-list h3 { margin-bottom: 6px; font-size: 1.4rem; }
.industry-list p { margin: 0; color: #aab2c0; }

.projects { background: var(--cream); }
.project-feature { display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; border: 1px solid #e1dadd; border-radius: 32px; background: #fff; box-shadow: 0 22px 60px rgba(34,22,27,.08); }
.termigon-project { grid-template-columns: 1.2fr .8fr; margin-top: 28px; }
.project-copy { padding: 52px; }
.project-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.project-meta span { padding: 6px 10px; border-radius: 999px; color: var(--maroon); background: #f5e9ee; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.project-copy h3, .project-secondary h3 { margin-bottom: 14px; font-size: 2.1rem; }
.project-copy > p, .project-secondary p { color: var(--muted); }
.project-copy ul { margin: 24px 0 18px; padding: 0; list-style: none; }
.project-copy li { position: relative; margin: 11px 0; padding-left: 25px; color: #3e4857; }
.project-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.project-visual { display: flex; flex-direction: column; min-width: 0; margin: 0; padding: 28px; background: #181e2b; }
.project-visual img { width: 100%; height: 100%; min-height: 400px; object-fit: cover; object-position: left top; border-radius: 20px; }
.project-visual figcaption { padding: 18px 4px 0; color: #bcc3cf; font-size: .88rem; }
.termigon-visual { background: var(--maroon-dark); }
.termigon-visual img { object-position: center; }
.project-note { margin-top: 26px; padding: 18px 20px; border-left: 3px solid var(--maroon); background: #f8f3f5; color: #5e4250 !important; font-size: .91rem; }
.project-secondary { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; margin-top: 24px; padding: 38px 42px; border: 1px solid #e1dadd; border-radius: 25px; background: #fff; }
.termigon-mark { display: grid; place-items: center; width: 80px; height: 80px; border-radius: 24px; color: #fff; background: linear-gradient(145deg, var(--maroon), #c52260); font-family: "Manrope"; font-size: 2.3rem; font-weight: 800; }
.project-secondary h3 { margin-bottom: 5px; }
.project-secondary p { max-width: 650px; margin: 0; }

.impact { color: #fff; background: #151b28; }
.impact .section-head > p { color: #aeb6c2; }
.impact-grid { display: grid; grid-template-columns: repeat(5,1fr); border-top: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.impact-grid article { min-height: 210px; padding: 28px 22px; border-right: 1px solid rgba(255,255,255,.15); }
.impact-grid article:last-child { border-right: 0; }
.impact-grid span { display: block; margin-bottom: 55px; color: #d99db3; font-size: .8rem; font-weight: 800; text-transform: uppercase; }
.impact-grid b { font-family: "Manrope",sans-serif; line-height: 1.45; }
.impact-outcome { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 25px; }
.impact-outcome strong { padding: 18px; border-radius: 14px; color: #531027; background: #f0c5d5; text-align: center; }

.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; padding: 0; list-style: none; counter-reset: step; }
.process-grid li { min-height: 270px; padding: 34px; border: 1px solid #e4e6e9; border-right: 0; }
.process-grid li:first-child { border-radius: 22px 0 0 22px; }
.process-grid li:last-child { border-right: 1px solid #e4e6e9; border-radius: 0 22px 22px 0; }
.process-grid span { display: block; margin-bottom: 52px; color: var(--maroon); font-family: "Manrope"; font-weight: 800; }
.process-grid h3 { margin-bottom: 10px; font-size: 1.35rem; }
.process-grid p { margin: 0; color: var(--muted); font-size: .94rem; }
.method-principle { margin: 24px 0 0; padding: 18px 22px; border-radius: 14px; color: #fff; background: var(--maroon); text-align: center; font-weight: 800; }

.roadmap { background: var(--soft); }
.roadmap-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.roadmap-grid article { min-height: 225px; padding: 28px 23px; border: 1px solid #e0dadd; border-top: 4px solid var(--maroon); border-radius: 18px; background: #fff; }
.roadmap-grid span { color: var(--maroon); font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.roadmap-grid h3 { margin: 42px 0 9px; font-size: 1.3rem; }
.roadmap-grid p { margin: 0; color: var(--muted); font-size: .9rem; }
.success-factors { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 22px; padding: 20px 24px; border-radius: 16px; background: #fff; }
.success-factors strong { margin-right: 8px; color: var(--maroon); }
.success-factors span { padding: 7px 11px; border-radius: 999px; background: #f2edef; font-size: .84rem; }

.commercial { color: #fff; background: var(--maroon); }
.commercial .section-head > p { color: #e1bdca; }
.commercial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.commercial-grid article { display: flex; flex-direction: column; min-height: 320px; padding: 34px; border: 1px solid rgba(255,255,255,.18); border-radius: 23px; background: rgba(255,255,255,.08); }
.commercial-grid article > span { color: #e5a5bd; font-weight: 800; }
.commercial-grid h3 { margin: 45px 0 14px; font-size: 1.45rem; }
.commercial-grid p { color: #e5cdd6; }
.commercial-grid b { margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); text-transform: uppercase; font-size: .78rem; letter-spacing: .05em; }

.why { color: #fff; background: var(--maroon); }
.why-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.why-title { position: sticky; top: 120px; align-self: start; }
.why-points article { display: grid; grid-template-columns: 52px 1fr; gap: 24px; padding: 30px 0; border-top: 1px solid rgba(255,255,255,.18); }
.why-points article:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.why-points article > span { display: grid; place-items: center; width: 43px; height: 43px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; font-size: .8rem; font-weight: 800; }
.why-points h3 { margin-bottom: 7px; font-size: 1.35rem; }
.why-points p { margin: 0; color: #e0c1cc; }

.contact { padding-bottom: 70px; background: var(--cream); }
.contact-card { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; padding: 70px; border-radius: 34px; color: #fff; background: #151b28; box-shadow: var(--shadow); }
.contact-copy p:not(.eyebrow) { color: #b7bec9; font-size: 1.05rem; }
.contact-actions { border-top: 1px solid rgba(255,255,255,.17); }
.contact-row { display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 20px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.17); }
.contact-row span { color: #929cab; font-size: .85rem; }
.contact-row strong { overflow-wrap: anywhere; font-size: 1.08rem; }
.contact-row i { font-style: normal; transition: transform .2s; }
.contact-row:hover i { transform: translate(4px,-4px); }

.footer { padding: 65px 0 26px; color: #fff; background: #0e131e; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 40px; padding-bottom: 45px; }
.footer-logo img { width: 190px; height: auto; }
.footer-main p { margin: 0; color: #929cab; text-align: center; }
.footer-main nav { display: flex; justify-content: flex-end; gap: 23px; color: #c8cdd5; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: #7f8997; font-size: .85rem; }
.wa-float { position: fixed; z-index: 90; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 10px; padding: 9px 15px 9px 9px; border-radius: 999px; color: #fff; background: #168b5c; box-shadow: 0 14px 35px rgba(20,110,75,.3); font-size: .84rem; }
.wa-float span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.18); font-size: .7rem; font-weight: 800; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1024px) {
  .hero-layout, .split-heading, .industries-layout, .why-layout, .contact-card, .foundation-layout { grid-template-columns: 1fr; }
  .hero-visual { min-height: 470px; max-width: 650px; width: 100%; margin: 0 auto; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .industries-copy, .why-title { position: static; }
  .project-feature { grid-template-columns: 1fr; }
  .project-visual img { min-height: 340px; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .process-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .architecture-main, .commercial-grid { grid-template-columns: 1fr; }
  .architecture-support { grid-template-columns: repeat(2,1fr); }
  .impact-grid { grid-template-columns: repeat(2,1fr); }
  .impact-grid article { border-bottom: 1px solid rgba(255,255,255,.15); }
  .roadmap-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid li, .process-grid li:first-child, .process-grid li:last-child { border: 1px solid #e4e6e9; border-radius: 20px; }
  .footer-main { grid-template-columns: 1fr; text-align: center; }
  .footer-logo { margin-inline: auto; }
  .footer-main nav { justify-content: center; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 80px 0; }
  .site-header { height: 72px; }
  .brand img { width: 160px; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 72px 0 auto; display: grid; gap: 0; padding: 15px 20px 28px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 25px 40px rgba(20,24,34,.12); transform: translateY(-130%); visibility: hidden; transition: .3s; }
  .main-nav.open { transform: translateY(0); visibility: visible; }
  .main-nav a { padding: 14px 7px; }
  .nav-cta { margin-top: 8px; text-align: center; }
  .hero { min-height: auto; padding: 128px 0 75px; }
  .hero-layout { gap: 44px; }
  h1 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .hero-lead { font-size: 1.06rem; }
  .hero-actions .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; gap: 15px; }
  .hero-proof div { display: grid; grid-template-columns: 110px 1fr; align-items: center; gap: 10px; }
  .hero-visual { min-height: 420px; }
  .main-card { inset: 40px 0 45px; padding: 24px; }
  .float-one { left: -5px; top: 3px; }
  .float-two { right: -4px; top: 260px; }
  .float-three { left: 16px; bottom: 0; }
  .system-core { margin: 38px 0 30px; }
  .service-grid, .process-grid { grid-template-columns: 1fr; }
  .foundation-points, .architecture-support, .impact-grid, .impact-outcome, .roadmap-grid, .commercial-grid { grid-template-columns: 1fr; }
  .impact-grid article { min-height: auto; border-right: 0; }
  .impact-grid span { margin-bottom: 22px; }
  .service-card { min-height: 300px; }
  .service-icon { margin-bottom: 35px; }
  .industries-layout, .why-layout { gap: 55px; }
  .project-copy { padding: 30px 25px; }
  .project-visual { padding: 14px; }
  .project-visual img { min-height: 240px; }
  .project-secondary { grid-template-columns: 1fr; padding: 30px 25px; }
  .project-secondary .button { width: 100%; }
  .contact-card { gap: 45px; padding: 42px 24px; }
  .contact-row { grid-template-columns: 75px 1fr auto; gap: 10px; }
  .footer-main nav { flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .wa-float { right: 14px; bottom: 14px; }
  .wa-float b { display: none; }
  .wa-float { padding-right: 9px; }
}

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