@import url("fonts.css");

:root {
  --navy: #0b1f3a;
  --navy-deep: #071526;
  --navy-mid: #123056;
  --blue: #1a5fa8;
  --aqua: #14b8c8;
  --aqua-bright: #3ad7d0;
  --green: #2f8f6d;
  --green-soft: #e8f6ef;
  --bg: #f5f8fb;
  --white: #ffffff;
  --text: #152033;
  --muted: #5c6b7e;
  --line: #dce6f0;
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(11, 31, 58, 0.08);
  --shadow-lg: 0 28px 70px rgba(11, 31, 58, 0.14);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1180px;
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--text);
  font-family: Outfit, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  letter-spacing: -0.011em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--navy);
  color: #fff;
  padding: 8px 12px;
  z-index: 100;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 92px 0; position: relative; }
.section.alt { background: linear-gradient(180deg, #f7fafd 0%, #fff 100%); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--aqua), var(--green));
  border-radius: 2px;
}

h1, h2, h3, .h1, .h2 {
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--navy);
  margin: 0 0 16px;
}
h1, .h1 { font-size: clamp(2.15rem, 4.4vw, 3.6rem); }
h2, .h2 { font-size: clamp(1.7rem, 3.1vw, 2.55rem); }
h3 { font-size: 1.22rem; margin-bottom: 8px; }
.lead { color: var(--muted); font-size: 1.05rem; max-width: 62ch; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary {
  background: linear-gradient(135deg, #0e3a72, #1a5fa8 55%, #14b8c8);
  color: #fff;
  box-shadow: 0 12px 28px rgba(20, 95, 168, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(20, 95, 168, 0.36); }
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.28);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: #fff; color: var(--navy); }
.btn-outline {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--aqua); color: var(--blue); transform: translateY(-2px); }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { filter: brightness(1.05); transform: translateY(-2px); }

/* NAV */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  transition: background .4s var(--ease), box-shadow .4s, backdrop-filter .4s;
}
.site-header.scrolled,
.site-header.solid {
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(11,31,58,.06);
}
.nav-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.logo img {
  height: 40px;
  width: auto;
  background: #fff;
  border-radius: 8px;
  padding: 4px 8px;
  box-shadow: 0 4px 16px rgba(11, 31, 58, 0.12);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text strong { font-size: .92rem; color: var(--navy); letter-spacing: .02em; }
.logo-text span { font-size: .68rem; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; }
.site-header:not(.scrolled):not(.solid) .logo-text strong,
.site-header:not(.scrolled):not(.solid) .nav-links a { color: #fff; }
.site-header:not(.scrolled):not(.solid) .logo-text span { color: rgba(255,255,255,.72); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 11px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-cta .btn { min-height: 44px; padding: 0 16px; font-size: .92rem; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  background: rgba(255,255,255,.14); color: inherit; border: 1px solid rgba(255,255,255,.2);
}
.site-header.scrolled .icon-btn,
.site-header.solid .icon-btn { background: var(--bg); color: var(--navy); border-color: var(--line); }
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 0; background: transparent; cursor: pointer;
  position: relative;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute; left: 11px; width: 22px; height: 2px; background: currentColor; border-radius: 2px; content: "";
  transition: transform .3s var(--ease), opacity .3s;
}
.menu-toggle span { top: 21px; }
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }
.site-header:not(.scrolled):not(.solid) .menu-toggle { color: #fff; }
.site-header.scrolled .menu-toggle,
.site-header.solid .menu-toggle { color: var(--navy); }

.mobile-drawer {
  position: fixed; inset: 0 0 0 auto; width: min(360px, 88vw);
  background: #fff; z-index: 60;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  box-shadow: -20px 0 50px rgba(11,31,58,.12);
  padding: 88px 28px 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.mobile-drawer.open { transform: none; }
.mobile-drawer a { padding: 12px 4px; font-size: 1.08rem; font-weight: 550; color: var(--navy); border-bottom: 1px solid var(--line); }
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(7,21,38,.45); z-index: 55;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy-deep);
}
.hero-media {
  position: absolute; inset: 0;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  animation: heroScale 8s var(--ease) forwards;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(7,21,38,.88) 8%, rgba(11,31,58,.55) 48%, rgba(20,184,200,.18) 100%),
    radial-gradient(circle at 80% 20%, rgba(58,215,208,.18), transparent 40%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-inner {
  position: relative; z-index: 2;
  padding: 140px 0 90px;
  max-width: 760px;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  font-size: .82rem; font-weight: 500;
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero .lead { color: rgba(255,255,255,.82); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-wave {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 90px;
  color: #fff;
}
.hero-wave svg { width: 100%; height: 100%; display: block; }

@keyframes heroScale { to { transform: scale(1); } }
.reveal { opacity: 0; transform: translateY(22px); animation: fadeUp .8s var(--ease) forwards; }
.d1 { animation-delay: .1s; }
.d2 { animation-delay: .22s; }
.d3 { animation-delay: .34s; }
.d4 { animation-delay: .46s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* TRUST */
.trust {
  background: var(--navy);
  color: #fff;
  padding: 28px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 8px 4px;
}
.trust-icon {
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(20,184,200,.14);
  color: var(--aqua-bright);
  flex-shrink: 0;
}
.trust-item strong { display: block; font-size: .98rem; }
.trust-item span { color: rgba(255,255,255,.62); font-size: .82rem; }

/* SPLIT */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.split-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow-lg);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.split-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,31,58,.28));
  pointer-events: none;
}
.glass-chip {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
  z-index: 1;
}
.glass-chip b { display: block; color: var(--navy); }
.glass-chip span { font-size: .8rem; color: var(--muted); }

/* CARDS */
.section-head { max-width: 640px; margin-bottom: 42px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform .4s var(--ease), box-shadow .4s, border-color .3s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: #b7e6ea; }
.card-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(160deg, #e8f7fb, #eef6ff);
  color: var(--blue);
  margin-bottom: 16px;
  transition: transform .4s var(--ease);
}
.card:hover .card-icon { transform: translateY(-3px) rotate(-6deg); }
.more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; color: var(--blue); font-weight: 600; font-size: .92rem;
}
.card:hover .more svg { transform: translateX(4px); }
.more svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }

.product-card { padding: 0; overflow: hidden; }
.product-card .thumb {
  aspect-ratio: 4/3; overflow: hidden; background: #eef3f8;
}
.product-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.product-card:hover img { transform: scale(1.07); }
.product-card .body { padding: 20px 22px 22px; }
.product-card .app {
  display: inline-block;
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--green); font-weight: 600; margin-bottom: 6px;
}
.product-actions { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.product-actions .btn { min-height: 40px; padding: 0 14px; font-size: .86rem; }

/* WHY */
.why-item {
  display: grid; grid-template-columns: auto 1fr; gap: 16px;
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}
.num {
  font-size: 1.7rem; font-weight: 700; color: transparent;
  background: linear-gradient(180deg, var(--aqua), var(--blue));
  -webkit-background-clip: text; background-clip: text;
  line-height: 1;
}

/* PROCESS */
.process {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
  position: relative;
}
.process::before {
  content: "";
  position: absolute; top: 28px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, var(--aqua), var(--blue), var(--green));
  opacity: .25;
}
.process-step {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px 16px;
  text-align: center; position: relative;
}
.process-step .dot {
  width: 14px; height: 14px; border-radius: 50%;
  margin: 0 auto 12px;
  background: var(--aqua);
  box-shadow: 0 0 0 6px rgba(20,184,200,.15);
}

/* INDUSTRIES */
.industry {
  position: relative; overflow: hidden; min-height: 180px;
  border-radius: var(--radius); color: #fff; padding: 24px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--navy-mid);
}
.industry img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.industry h3, .industry p { position: relative; color: #fff; }
.industry p { color: rgba(255,255,255,.78); margin: 0; font-size: .92rem; }

/* SHOWCASE */
.showcase-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 32%);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.showcase-track figure {
  margin: 0; scroll-snap-align: start;
  border-radius: 18px; overflow: hidden; position: relative;
  min-height: 280px;
}
.showcase-track img { width: 100%; height: 320px; object-fit: cover; }
.showcase-track figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(transparent, rgba(7,21,38,.78));
  color: #fff; font-weight: 600;
}

/* CTA BAND */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #071526, #123056 55%, #0e4e63);
  color: #fff;
  padding: 88px 0;
}
.cta-band h2, .cta-band p { color: #fff; }
.wave-bg {
  position: absolute; inset: 0; opacity: .35; pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 720px; }

/* FOOTER */
.site-footer {
  background: #071526;
  color: rgba(255,255,255,.78);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .9fr 1.1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.site-footer h3 { color: #fff; font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: var(--aqua-bright); }
.site-footer p { margin-top: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding: 18px 0 88px;
  font-size: .86rem;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; color: #fff; font-weight: 700; }
.footer-logo img { height: 32px; }

/* PAGE HERO */
.page-hero {
  position: relative;
  padding: 150px 0 72px;
  background: linear-gradient(120deg, #071526 0%, #123056 60%, #14607a 100%);
  color: #fff;
  overflow: hidden;
}
.page-hero h1, .page-hero p { color: #fff; }
.page-hero p { color: rgba(255,255,255,.8); max-width: 60ch; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; }
.info-card, .form-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 28px; box-shadow: var(--shadow);
}
.info-row { display: flex; gap: 12px; margin: 16px 0; }
.info-row svg { flex-shrink: 0; color: var(--blue); margin-top: 4px; }
label { display: block; font-weight: 550; font-size: .9rem; margin: 12px 0 6px; }
input, select, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 14px; background: #fbfcfe; color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--aqua); box-shadow: 0 0 0 4px rgba(20,184,200,.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.success-box {
  display: none; padding: 18px; border-radius: 14px;
  background: var(--green-soft); color: #145c43; margin-top: 14px;
}
.success-box.show { display: block; }
.map-wrap { border-radius: 18px; overflow: hidden; min-height: 280px; margin-top: 22px; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 320px; border: 0; }

/* GALLERY */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.filter-btn {
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: 8px 14px; cursor: pointer; font-weight: 550;
}
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.masonry {
  columns: 3;
  column-gap: 16px;
}
.masonry a {
  break-inside: avoid;
  display: block; margin-bottom: 16px;
  border-radius: 16px; overflow: hidden; position: relative;
}
.masonry img { width: 100%; transition: transform .6s var(--ease); }
.masonry a:hover img { transform: scale(1.05); }

.lightbox {
  position: fixed; inset: 0; background: rgba(7,21,38,.92);
  z-index: 80; display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(92vw, 1100px); max-height: 82vh; border-radius: 12px; }
.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.14); color: #fff;
}
.lb-prev { left: 18px; } .lb-next { right: 18px; }
.lb-close { top: 18px; right: 18px; transform: none; }

/* SERVICE DETAIL */
.service-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  margin: 48px 0;
}
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-block img { width: 100%; height: 380px; object-fit: cover; border-radius: 22px; }
.feature-list { margin: 14px 0 0; }
.feature-list li {
  position: relative; padding-left: 22px; margin: 8px 0; color: var(--muted);
}
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 9px; height: 9px; border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua), var(--green));
}

/* PRODUCT DETAIL */
.pd-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: start; }
.pd-gallery { border-radius: 20px; overflow: hidden; background: #eef3f8; }
.pd-gallery img { width: 100%; max-height: 520px; object-fit: cover; }
.spec-table { width: 100%; border-collapse: collapse; margin: 12px 0 22px; }
.spec-table th, .spec-table td { text-align: left; padding: 10px 0; border-bottom: 1px solid var(--line); }
.spec-table th { color: var(--muted); font-weight: 500; width: 42%; }

/* FLOATING */
.float-btns {
  position: fixed; right: 18px; bottom: 28px; z-index: 40;
  display: flex; flex-direction: column; gap: 10px;
}
.float-btns a {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 10px 24px rgba(11,31,58,.2);
}
.float-btns .wa { background: #25d366; }
.float-btns .call { background: var(--blue); }

.mobile-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr 1fr 1fr;
}
.mobile-bar a {
  padding: 12px 8px 14px; text-align: center; font-size: .82rem; font-weight: 600; color: var(--navy);
}
.mobile-bar a:nth-child(2) { color: #128c4a; background: #f1fbf5; }

/* REVEAL ON SCROLL */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].in { opacity: 1; transform: none; }

/* LEGAL */
.prose { max-width: 760px; }
.prose h2 { margin-top: 32px; }
.prose p, .prose li { color: var(--muted); }
.prose ul { padding-left: 18px; list-style: disc; }

@media (max-width: 1024px) {
  .split, .pd-grid, .contact-grid, .service-block, .service-block.reverse { grid-template-columns: 1fr; direction: ltr; }
  .process, .trust-grid { grid-template-columns: 1fr 1fr; }
  .process::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta .btn-primary { display: none; }
  .menu-toggle, .icon-btn { display: inline-flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .hero { min-height: 92vh; }
  .float-btns { display: none; }
  .mobile-bar { display: grid; }
  .footer-bottom { padding-bottom: 96px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .section { padding: 64px 0; }
  .trust-grid, .process, .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .hero-actions .btn { width: 100%; }
  .logo-text { display: none; }
}

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