@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --navy-950: #04141d;
  --navy-900: #071f2c;
  --navy-800: #0b2d3d;
  --blue-700: #087eaa;
  --blue-600: #00a3c7;
  --cyan-500: #12c4d9;
  --cyan-300: #77e2ea;
  --mint-100: #ddf8f7;
  --ice-50: #f3fafb;
  --white: #fff;
  --ink: #102c39;
  --muted: #657b85;
  --line: #dce9ec;
  --shadow: 0 25px 70px rgba(6, 36, 49, .12);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 108px 0; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--cyan-500);
  color: var(--navy-950);
  font-weight: 700;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(4, 20, 29, .77);
  border-bottom: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(18px);
  transition: background .25s, box-shadow .25s;
}
.site-header.scrolled { background: rgba(4, 20, 29, .96); box-shadow: 0 10px 30px rgba(0,0,0,.15); }
.header-inner { height: 82px; display: flex; align-items: center; gap: 38px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--white); flex: 0 0 auto; }
.brand-mark {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(145deg, var(--cyan-500), #0586ba);
  box-shadow: 0 8px 24px rgba(18, 196, 217, .22);
}
.brand-mark svg { width: 35px; height: 35px; }
.brand-mark path:first-child { fill: rgba(255,255,255,.95); stroke: none; }
.brand-mark path:last-child { fill: none; stroke: var(--white); stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; letter-spacing: .02em; }
.brand-copy strong { font: 800 21px/1 'Manrope', sans-serif; }
.brand-copy small { margin-top: 4px; font: 600 9px/1 'Manrope', sans-serif; letter-spacing: .31em; color: var(--cyan-300); }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.desktop-nav a { position: relative; color: rgba(255,255,255,.74); font-size: 14px; font-weight: 600; transition: color .2s; }
.desktop-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--cyan-500); transition: right .25s; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--white); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-call { display: flex; align-items: center; gap: 10px; padding-left: 23px; border-left: 1px solid rgba(255,255,255,.16); color: var(--white); }
.header-call svg { width: 20px; fill: var(--cyan-500); }
.header-call span { display: flex; flex-direction: column; font-size: 14px; font-weight: 700; line-height: 1.35; }
.header-call small { color: rgba(255,255,255,.55); font-size: 10px; font-weight: 500; }
.menu-toggle { display: none; margin-left: auto; padding: 10px; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--white); transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 82px 0 auto; padding: 18px 20px 24px; background: var(--navy-950); border-top: 1px solid rgba(255,255,255,.08); box-shadow: 0 30px 40px rgba(0,0,0,.2); }
.mobile-menu a { display: block; padding: 14px 6px; color: rgba(255,255,255,.82); border-bottom: 1px solid rgba(255,255,255,.08); font-weight: 600; }
.mobile-menu a:last-child { margin-top: 14px; text-align: center; color: var(--navy-950); background: var(--cyan-500); border-radius: 10px; border: 0; }

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: radial-gradient(circle at 73% 37%, #0d4760 0, var(--navy-900) 34%, var(--navy-950) 73%);
  color: var(--white);
}
.hero-grid { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, black, transparent 78%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { width: 420px; height: 420px; right: -200px; top: 100px; border: 1px solid rgba(119,226,234,.15); box-shadow: 0 0 0 80px rgba(119,226,234,.018), 0 0 0 160px rgba(119,226,234,.012); }
.hero-orb-two { width: 230px; height: 230px; left: -150px; bottom: 40px; background: rgba(0,163,199,.12); filter: blur(40px); }
.hero-layout { position: relative; z-index: 2; min-height: 755px; padding-top: 116px; padding-bottom: 72px; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 64px; }
.eyebrow { margin: 0 0 22px; display: flex; align-items: center; gap: 11px; color: var(--cyan-300); font: 700 12px/1 'Manrope', sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow > span { width: 30px; height: 2px; background: var(--cyan-500); }
.eyebrow.dark { color: var(--blue-700); }
.eyebrow.light { color: var(--cyan-300); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: 'Manrope', sans-serif; letter-spacing: -.04em; }
h1 { margin-bottom: 24px; font-size: clamp(46px, 5vw, 72px); line-height: 1.05; font-weight: 700; }
h1 em, h2 em { color: var(--cyan-500); font-style: normal; }
.hero-lead { max-width: 610px; margin-bottom: 35px; color: rgba(255,255,255,.7); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 14px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; padding: 0 23px; border: 1px solid transparent; border-radius: 11px; font-weight: 700; cursor: pointer; transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy-950); background: var(--cyan-500); box-shadow: 0 13px 30px rgba(18,196,217,.2); }
.button-primary:hover { background: #2ad4e4; box-shadow: 0 16px 35px rgba(18,196,217,.3); }
.button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.04); }
.button-ghost:hover { background: rgba(255,255,255,.1); }
.hero-trust { margin-top: 31px; display: flex; gap: 27px; color: rgba(255,255,255,.55); font-size: 13px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 18px; height: 18px; padding: 3px; border-radius: 50%; background: rgba(18,196,217,.14); fill: none; stroke: var(--cyan-300); stroke-width: 2.5; }
.hero-visual { position: relative; height: 510px; }
.pool-frame { position: absolute; inset: 20px 0 0 35px; overflow: hidden; border: 1px solid rgba(255,255,255,.17); border-radius: 180px 180px 28px 28px; background: #0b394c; box-shadow: 0 45px 100px rgba(0,0,0,.32); transform: perspective(1100px) rotateY(-6deg); }
.pool-topline { position: absolute; z-index: 3; inset: 27px 33px auto; display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,.8); }
.pool-topline span { font: 800 12px 'Manrope', sans-serif; letter-spacing: .24em; }
.pool-topline small { font-size: 8px; letter-spacing: .19em; color: rgba(255,255,255,.45); }
.pool-water { position: absolute; inset: 0; overflow: hidden; background: radial-gradient(ellipse at 62% 20%, rgba(123,242,244,.55), transparent 24%), linear-gradient(145deg, #0b91b4 0, #0a6285 38%, #06364e 100%); }
.pool-water::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 10%, rgba(255,255,255,.18) 22%, transparent 34%); transform: translateX(-90%); animation: shimmer 7s ease-in-out infinite; }
.pool-tile-grid { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px); background-size: 42px 42px; transform: perspective(450px) rotateX(58deg) scale(1.6); transform-origin: bottom; }
.water-line { position: absolute; z-index: 2; height: 80px; width: 130%; left: -15%; border: 2px solid rgba(255,255,255,.34); border-radius: 50%; transform: rotate(-7deg); }
.line-one { top: 30%; }
.line-two { top: 48%; left: -5%; opacity: .5; }
.line-three { top: 66%; left: -25%; opacity: .28; }
.pool-edge { position: absolute; z-index: 4; left: 0; right: 0; bottom: 0; height: 40px; background: linear-gradient(#e9f1ef, #a7c9c9); opacity: .88; }
.floating-card { position: absolute; z-index: 5; display: flex; align-items: center; gap: 12px; padding: 14px 17px; border: 1px solid rgba(255,255,255,.22); border-radius: 14px; background: rgba(7,31,44,.78); box-shadow: 0 18px 40px rgba(0,0,0,.22); backdrop-filter: blur(15px); }
.floating-card span:not(.floating-icon):not(.pulse-dot) { display: flex; flex-direction: column; }
.floating-card small { color: rgba(255,255,255,.5); font-size: 9px; line-height: 1.3; }
.floating-card strong { color: var(--white); font: 700 13px 'Manrope', sans-serif; }
.floating-icon { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 10px; background: rgba(18,196,217,.15); }
.floating-icon svg { width: 23px; fill: none; stroke: var(--cyan-300); stroke-width: 1.8; }
.card-waterproof { left: 0; bottom: 35px; }
.card-region { right: -18px; top: 108px; }
.pulse-dot { position: relative; width: 11px; height: 11px; border-radius: 50%; background: var(--cyan-500); box-shadow: 0 0 0 6px rgba(18,196,217,.12); }
.hero-bottom-wave { position: absolute; z-index: 3; left: 0; right: 0; bottom: -2px; height: 73px; }
.hero-bottom-wave svg { width: 100%; height: 100%; }
.hero-bottom-wave path { fill: var(--white); }
@keyframes shimmer { 0%, 15% { transform: translateX(-90%); } 65%, 100% { transform: translateX(130%); } }

.section-heading { margin-bottom: 50px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; }
h2 { margin-bottom: 0; color: var(--navy-900); font-size: clamp(36px, 4.1vw, 54px); line-height: 1.12; font-weight: 700; }
.section-heading > p { max-width: 490px; margin: 0 0 5px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.service-intro { background: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 70px rgba(10,49,64,.07); }
.service-card { position: relative; min-height: 490px; display: flex; flex-direction: column; padding: 36px 29px 30px; background: var(--white); border-right: 1px solid var(--line); transition: background .25s, transform .25s; }
.service-card:last-child { border-right: 0; }
.service-card:hover { z-index: 2; background: var(--ice-50); transform: translateY(-6px); box-shadow: 0 25px 50px rgba(6,36,49,.12); }
.service-number { position: absolute; right: 25px; top: 25px; color: #c7d9dd; font: 700 12px 'Manrope', sans-serif; letter-spacing: .08em; }
.service-icon { width: 58px; height: 58px; margin-bottom: 26px; display: grid; place-items: center; border-radius: 15px; background: var(--mint-100); }
.service-icon svg { width: 30px; height: 30px; fill: none; stroke: var(--blue-700); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin-bottom: 13px; color: var(--navy-900); font: 700 20px/1.3 'Manrope', sans-serif; letter-spacing: -.02em; }
.service-card p { margin-bottom: 22px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.service-card ul { margin: 0 0 26px; padding: 0; list-style: none; }
.service-card li { position: relative; margin: 9px 0; padding-left: 18px; color: #47616d; font-size: 13px; }
.service-card li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan-500); }
.service-card > a { margin-top: auto; display: inline-flex; align-items: center; justify-content: space-between; color: var(--blue-700); font-size: 13px; font-weight: 700; }
.service-card > a span { font-size: 20px; transition: transform .2s; }
.service-card > a:hover span { transform: translateX(5px); }

.process { position: relative; overflow: hidden; color: var(--white); background: var(--navy-900); }
.process::before { content: ''; position: absolute; width: 500px; height: 500px; left: -240px; bottom: -330px; border: 1px solid rgba(119,226,234,.12); border-radius: 50%; box-shadow: 0 0 0 80px rgba(119,226,234,.025), 0 0 0 160px rgba(119,226,234,.017); }
.process-layout { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; align-items: center; }
.process h2 { color: var(--white); }
.process-copy > p:not(.eyebrow) { max-width: 450px; margin: 25px 0 28px; color: rgba(255,255,255,.6); line-height: 1.8; }
.text-link { display: inline-flex; gap: 12px; align-items: center; color: var(--cyan-300); font-weight: 700; }
.text-link span { font-size: 20px; transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }
.process-steps { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; }
.process-steps li { min-height: 175px; padding: 30px; display: flex; gap: 19px; border-left: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.process-steps li:nth-child(2n) { border-right: 1px solid rgba(255,255,255,.12); }
.process-steps li:nth-child(n+3) { border-bottom: 0; }
.step-no { flex: 0 0 auto; width: 37px; height: 37px; display: grid; place-items: center; border-radius: 50%; background: rgba(18,196,217,.12); color: var(--cyan-300); font: 700 10px 'Manrope', sans-serif; }
.process-steps h3 { margin: 3px 0 8px; color: var(--white); font: 700 17px 'Manrope', sans-serif; }
.process-steps p { margin: 0; color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.65; }

.projects { background: var(--ice-50); }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.project-placeholder { grid-column: 1 / -1; min-height: 330px; display: grid; grid-template-columns: 1fr .7fr; align-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 15px 50px rgba(6,36,49,.06); }
.placeholder-copy { padding: 48px 54px; }
.placeholder-badge { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 17px; padding: 7px 11px; border-radius: 99px; color: var(--blue-700); background: var(--mint-100); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.placeholder-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan-500); box-shadow: 0 0 0 4px rgba(18,196,217,.14); }
.placeholder-copy h3 { margin-bottom: 13px; color: var(--navy-900); font: 700 25px/1.3 'Manrope', sans-serif; }
.placeholder-copy p { max-width: 590px; margin: 0; color: var(--muted); line-height: 1.8; }
.placeholder-art { align-self: stretch; position: relative; overflow: hidden; background: linear-gradient(145deg, #0e7698, var(--navy-900)); }
.placeholder-art::before, .placeholder-art::after { content: ''; position: absolute; width: 150%; height: 110px; left: -25%; border: 2px solid rgba(255,255,255,.18); border-radius: 50%; transform: rotate(-9deg); }
.placeholder-art::before { top: 25%; }
.placeholder-art::after { top: 48%; left: -4%; }
.placeholder-art svg { position: absolute; width: 62px; height: 62px; left: 50%; top: 50%; padding: 16px; border-radius: 50%; background: rgba(255,255,255,.13); transform: translate(-50%, -50%); fill: none; stroke: var(--white); stroke-width: 1.5; }
.project-card { overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: var(--white); box-shadow: 0 15px 40px rgba(6,36,49,.07); transition: transform .2s, box-shadow .2s; }
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.project-image { aspect-ratio: 4 / 3; overflow: hidden; background: #dce9ec; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.project-card:hover img { transform: scale(1.04); }
.project-body { padding: 24px; }
.project-meta { margin-bottom: 10px; display: flex; justify-content: space-between; gap: 12px; color: var(--blue-700); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.project-body h3 { margin-bottom: 8px; font: 700 19px 'Manrope', sans-serif; }
.project-body p { margin: 0; color: var(--muted); font-size: 14px; }

.about { overflow: hidden; background: var(--white); }
.about-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 95px; align-items: center; }
.about-art { position: relative; height: 500px; border-radius: 28px; overflow: hidden; background: var(--navy-900); box-shadow: var(--shadow); }
.about-art::before { content: ''; position: absolute; inset: 0; opacity: .19; background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px); background-size: 48px 48px; }
.about-shape { position: absolute; border-radius: 50%; }
.shape-one { width: 400px; height: 400px; left: -200px; bottom: -120px; border: 50px solid rgba(18,196,217,.15); }
.shape-two { width: 360px; height: 360px; right: -180px; top: -80px; background: linear-gradient(145deg, rgba(18,196,217,.28), transparent); }
.about-mark { position: absolute; left: 50%; top: 47%; transform: translate(-50%, -50%); color: var(--white); font: 800 96px/1 'Manrope', sans-serif; letter-spacing: -.1em; }
.about-mark span { color: var(--cyan-500); }
.about-label { position: absolute; left: 30px; right: 30px; bottom: 27px; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 13px; background: rgba(4,20,29,.55); backdrop-filter: blur(10px); }
.about-label small { color: rgba(255,255,255,.5); }
.about-label strong { color: var(--white); font: 700 17px 'Manrope', sans-serif; }
.about-copy > p:not(.eyebrow) { color: var(--muted); line-height: 1.85; }
.about-copy > p:nth-of-type(2) { margin-top: 25px; }
.about-copy h2 { margin-bottom: 26px; }
.about-points { margin-top: 30px; display: grid; gap: 12px; }
.about-points span { display: flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 600; }
.about-points svg { width: 22px; height: 22px; padding: 4px; border-radius: 50%; background: var(--mint-100); fill: none; stroke: var(--blue-700); stroke-width: 2.5; }

.contact { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(135deg, var(--navy-900), #063849); }
.contact::after { content: ''; position: absolute; width: 500px; height: 500px; right: -250px; top: -250px; border: 1px solid rgba(119,226,234,.12); border-radius: 50%; box-shadow: 0 0 0 80px rgba(119,226,234,.025), 0 0 0 160px rgba(119,226,234,.015); }
.contact-shell { position: relative; z-index: 2; display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }
.contact h2 { color: var(--white); }
.contact-copy > p:not(.eyebrow) { max-width: 470px; margin: 24px 0 32px; color: rgba(255,255,255,.61); line-height: 1.8; }
.contact-phone, .contact-region { display: flex; align-items: center; gap: 15px; }
.contact-phone { margin-bottom: 20px; }
.contact-phone > span:first-child, .contact-region .pin { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px; background: rgba(18,196,217,.12); }
.contact-phone svg, .contact-region svg { width: 23px; fill: var(--cyan-300); }
.contact-region svg { fill: none; stroke: var(--cyan-300); stroke-width: 1.8; }
.contact-phone > span:last-child, .contact-region > span:last-child { display: flex; flex-direction: column; }
.contact-phone small, .contact-region small { color: rgba(255,255,255,.48); font-size: 11px; }
.contact-phone strong, .contact-region strong { color: var(--white); font: 700 17px/1.5 'Manrope', sans-serif; }
.contact-form { padding: 35px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(255,255,255,.97); color: var(--ink); box-shadow: 0 30px 80px rgba(0,0,0,.22); }
.form-heading { margin-bottom: 24px; padding-bottom: 18px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
.form-heading span { font: 700 18px 'Manrope', sans-serif; }
.form-heading small { color: var(--muted); font-size: 10px; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 17px; }
.contact-form label > span { font-size: 12px; font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #d6e5e8; border-radius: 9px; outline: 0; background: var(--ice-50); color: var(--ink); transition: border .2s, box-shadow .2s; }
.contact-form input, .contact-form select { height: 48px; padding: 0 13px; }
.contact-form textarea { padding: 12px 13px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--cyan-500); box-shadow: 0 0 0 3px rgba(18,196,217,.13); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #98aaaf; }
.form-submit { width: 100%; margin-top: 2px; color: var(--navy-950); background: var(--cyan-500); border: 0; }
.form-submit:hover { background: #2ad4e4; box-shadow: 0 12px 30px rgba(18,196,217,.2); }
.form-submit svg { stroke-width: 1.8; }
.form-note { margin: 12px 0 0; color: #82959c; text-align: center; font-size: 10px; }

.site-footer { color: rgba(255,255,255,.62); background: var(--navy-950); }
.footer-top { padding: 54px 0 40px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 45px; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer-top > p { max-width: 400px; margin: 0; font-size: 13px; }
.footer-top nav { display: flex; gap: 25px; }
.footer-top nav a { font-size: 13px; font-weight: 600; transition: color .2s; }
.footer-top nav a:hover { color: var(--white); }
.footer-bottom { padding: 21px 0; display: flex; justify-content: space-between; align-items: center; font-size: 11px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { display: inline-flex; gap: 7px; align-items: center; }
.footer-bottom a span { color: var(--cyan-500); font-size: 16px; }
.mobile-actions { display: none; }


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

@media (max-width: 1060px) {
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 12px; }
  .header-call { padding-left: 15px; }
  .hero-layout { gap: 30px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(2) { border-right: 0; }
  .service-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .contact-shell { gap: 55px; }
}

@media (max-width: 860px) {
  .desktop-nav, .header-call { display: none; }
  .menu-toggle { display: block; }
  .hero { min-height: auto; }
  .hero-layout { min-height: 0; padding-top: 155px; padding-bottom: 120px; grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 700px; margin: auto; }
  .eyebrow { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; text-align: center; }
  .section-heading .eyebrow { justify-content: center; }
  .section-heading > p { margin-inline: auto; }
  .process-layout, .about-layout, .contact-shell { grid-template-columns: 1fr; }
  .process-layout { gap: 60px; }
  .process-copy { text-align: center; }
  .process-copy .eyebrow { justify-content: center; }
  .process-copy > p:not(.eyebrow) { margin-inline: auto; }
  .project-placeholder { grid-template-columns: 1fr; }
  .placeholder-art { min-height: 180px; }
  .project-grid { grid-template-columns: 1fr 1fr; }
  .about-layout { gap: 55px; }
  .about-art { max-width: 570px; width: 100%; height: 400px; margin: auto; }
  .about-copy { text-align: center; }
  .about-copy .eyebrow { justify-content: center; }
  .about-points { justify-items: center; }
  .contact-shell { gap: 55px; }
  .contact-copy { text-align: center; }
  .contact-copy .eyebrow { justify-content: center; }
  .contact-copy > p:not(.eyebrow) { margin-inline: auto; }
  .contact-phone, .contact-region { justify-content: center; text-align: left; }
  .footer-top { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 26px; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .header-inner { height: 72px; }
  .brand-mark { width: 40px; height: 40px; border-radius: 11px; }
  .brand-mark svg { width: 31px; }
  .brand-copy strong { font-size: 18px; }
  .mobile-menu { inset-block-start: 72px; }
  h1 { font-size: clamp(39px, 12vw, 54px); }
  h2 { font-size: clamp(32px, 10vw, 43px); }
  .hero-layout { padding-top: 125px; padding-bottom: 102px; }
  .hero-lead { font-size: 16px; line-height: 1.7; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-trust { gap: 12px; flex-wrap: wrap; font-size: 11px; }
  .service-grid { grid-template-columns: 1fr; border-radius: 17px; }
  .service-card { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:nth-child(3) { border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps li, .process-steps li:nth-child(2n), .process-steps li:nth-child(n+3) { min-height: auto; padding: 24px 12px; border: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .process-steps li:last-child { border-bottom: 0; }
  .placeholder-copy { padding: 34px 25px; text-align: center; }
  .placeholder-art { min-height: 145px; }
  .project-grid { grid-template-columns: 1fr; }
  .about-art { height: 340px; border-radius: 19px; }
  .about-mark { font-size: 76px; }
  .contact-form { padding: 27px 20px; border-radius: 17px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-heading { align-items: flex-start; flex-direction: column; gap: 4px; }
  .footer-top nav { flex-wrap: wrap; justify-content: center; }
  .footer-bottom { padding-bottom: 86px; flex-direction: column; gap: 10px; }
  .mobile-actions { position: fixed; z-index: 90; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1fr; padding: 8px; gap: 8px; background: rgba(4,20,29,.96); border-top: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(14px); }
  .mobile-actions a { min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 8px; border-radius: 8px; color: var(--white); background: #0c3547; font-size: 13px; font-weight: 700; }
  .mobile-actions a:last-child { color: var(--navy-950); background: var(--cyan-500); }
  .mobile-actions svg { width: 19px; fill: currentColor; }
}
