:root {
  --bg: #020617;
  --bg-soft: #08111f;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.1);
  --text: #e5eef9;
  --muted: #94a3b8;
  --white: #ffffff;
  --deep: #0b3d59;
  --medium: #006699;
  --light: #b3e5fc;
  --orange: #f27d26;
  --orange-soft: rgba(242, 125, 38, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --container: 78rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: linear-gradient(180deg, #020617 0%, #020816 45%, #050b15 100%);
  font-family: "Montserrat", "Segoe UI", sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(120px);
}

.blob-a {
  top: 12%;
  left: -6rem;
  width: 24rem;
  height: 24rem;
  background: rgba(0, 102, 153, 0.18);
}

.blob-b {
  right: -8rem;
  bottom: 16%;
  width: 28rem;
  height: 28rem;
  background: rgba(242, 125, 38, 0.14);
}

.noise {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 0.7px, transparent 0.7px);
  background-size: 10px 10px;
  opacity: 0.08;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.glass {
  background: var(--panel);
  backdrop-filter: blur(24px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1.25rem 0;
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: 13rem;
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--orange);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.5rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(242, 125, 38, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button-full {
  width: 100%;
  border-radius: 1rem;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-atoms {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.78;
}

.atom-svg {
  width: 100%;
  height: 100%;
}

.atom-path {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.atom-path-a {
  stroke: rgba(242, 125, 38, 0.2);
}

.atom-path-b {
  stroke: rgba(179, 229, 252, 0.12);
}

.atom-path-c {
  stroke: rgba(0, 102, 153, 0.22);
}

.orbit-dot {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.25));
}

.orbit-dot-a {
  fill: var(--orange);
}

.orbit-dot-b {
  fill: var(--light);
}

.orbit-dot-c {
  fill: #7dc6ff;
}

.logo-band {
  padding: 0 0 2rem;
}

.proof-strip {
  padding: 0 0 2rem;
}

.hero-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
  align-items: center;
}

.badge,
.hero-stack,
.project-chip,
.info-card,
.about-panel,
.contact-form {
  border-radius: var(--radius-xl);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--light);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(242, 125, 38, 0.9);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", "Montserrat", sans-serif;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 8vw, 5.8rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero h1 span,
.eyebrow,
.section-link {
  color: var(--orange);
}

.hero-text,
.section-head p,
.info-card p,
.project-card p,
.contact-copy p,
.contact-item span {
  color: var(--muted);
  line-height: 1.8;
}

.hero-text {
  max-width: 36rem;
  margin: 1.5rem 0 0;
  font-size: 1.05rem;
}

.hero-text-mobile {
  display: none;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-stack {
  margin-top: 3rem;
  display: inline-flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0.7;
}

.hero-stack span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero-stack ul,
.about-content ul,
.tags {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-stack ul {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  color: var(--light);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  border: 0;
  box-shadow: none;
}

.hero-card img {
  width: 100%;
  border-radius: 0;
  min-height: 34rem;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.75));
}

.project-chip {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
}

.project-chip span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.project-chip strong {
  font-size: 1rem;
}

.project-chip a {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(242, 125, 38, 0.16);
}

.ring-a {
  top: -2.25rem;
  right: -1.75rem;
  width: 10rem;
  height: 10rem;
}

.ring-b {
  left: -3rem;
  bottom: -2rem;
  width: 15rem;
  height: 15rem;
  border-color: rgba(0, 102, 153, 0.18);
}

.section {
  padding: 6rem 0;
}

.section-head {
  max-width: 40rem;
}

.section-head.center {
  margin: 0 auto 3rem;
  text-align: center;
}

.logo-head {
  margin-bottom: 2rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.section h2,
.contact-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-head p:last-child,
.contact-copy p {
  margin-top: 1rem;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

.proof-grid,
.why-grid,
.process-grid,
.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-card,
.why-card,
.process-card,
.testimonial-card,
.standards-panel {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
}

.proof-card,
.logo-tile,
.info-card,
.why-card,
.project-card,
.testimonial-card,
.contact-item,
.standards-panel {
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease;
}

.proof-card strong,
.process-card span {
  display: block;
  color: var(--orange);
  font-weight: 800;
}

.proof-card strong {
  margin-bottom: 0.65rem;
  font-size: 1.3rem;
}

.proof-card span {
  color: var(--muted);
  line-height: 1.7;
}

.proof-card {
  position: relative;
  overflow: hidden;
}

.proof-card::after {
  content: "";
  position: absolute;
  inset: auto -1.5rem -1.5rem auto;
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 125, 38, 0.18), transparent 70%);
  transform: scale(0.6);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 125, 38, 0.22);
}

.proof-card:hover::after {
  transform: scale(1);
  opacity: 1;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-xl);
}

.logo-tile {
  min-height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-tile img {
  width: 100%;
  max-width: 8.5rem;
  max-height: 2.75rem;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform 220ms ease;
}

.logo-tile:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(179, 229, 252, 0.2);
}

.logo-tile:hover img {
  transform: scale(1.04);
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 56rem;
  margin: 0 auto;
}

.why-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.why-card h3,
.process-card h3,
.testimonial-card strong {
  font-size: 1.2rem;
}

.why-card p,
.process-card p,
.testimonial-card p {
  color: var(--muted);
  line-height: 1.8;
}

.why-card {
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(242, 125, 38, 0.08), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(179, 229, 252, 0.18);
}

.why-card:hover::before {
  opacity: 1;
}

.info-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--orange), rgba(179, 229, 252, 0.2));
  transform: scaleY(0.18);
  transform-origin: top;
  opacity: 0.6;
  transition: transform 220ms ease, opacity 220ms ease;
}

.info-card::after {
  content: "";
  position: absolute;
  inset: auto -3rem -3rem auto;
  width: 9rem;
  height: 9rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 102, 153, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 125, 38, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
}

.info-card:hover::before {
  transform: scaleY(1);
  opacity: 1;
}

.info-card:hover::after {
  opacity: 1;
}

.icon {
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 1.4rem;
  font-size: 1.1rem;
  transition: transform 220ms ease, background 220ms ease;
}

.info-card:hover .icon {
  transform: rotate(-6deg) scale(1.06);
  background: rgba(255, 255, 255, 0.08);
}

.icon-orange {
  color: var(--orange);
}

.icon-blue {
  color: var(--medium);
}

.icon-light {
  color: var(--light);
}

.info-card h3,
.project-card h3 {
  font-size: 1.35rem;
}

.info-card p {
  margin: 0.9rem 0 1.25rem;
  font-size: 0.94rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tags li {
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #7f8da2;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.about-panel {
  position: relative;
  min-height: 21rem;
  overflow: hidden;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.process-card {
  position: relative;
  overflow: hidden;
  min-height: 15.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.process-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 12rem;
  height: 12rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 125, 38, 0.18), transparent 68%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 125, 38, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
}

.process-card:hover::before {
  opacity: 1;
}

.process-topline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.95rem;
}

.process-topline span {
  margin-bottom: 0;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.process-topline i {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 125, 38, 0.55), rgba(255, 255, 255, 0.08));
}

.process-topline i::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--orange);
  transform: translateY(-50%);
  box-shadow: 0 0 16px rgba(242, 125, 38, 0.65);
}

.process-lead {
  margin: 0;
  color: var(--white);
  font-weight: 600;
  line-height: 1.5;
}

.process-card p {
  margin-top: 0.8rem;
}

.standards-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
}

.standards-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.standards-panel li {
  position: relative;
  padding: 0 0 1rem 1.35rem;
  color: var(--muted);
  line-height: 1.8;
}

.standards-panel li:last-child {
  padding-bottom: 0;
}

.standards-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--orange);
}

.standards-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(179, 229, 252, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
}

.about-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3rem;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--orange), transparent);
}

.about-content {
  padding: 2.2rem 2.2rem 2.2rem 5rem;
}

.about-content strong {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--white);
  font-size: 1.1rem;
}

.about-content li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

.about-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--orange);
}

.projects {
  background: rgba(255, 255, 255, 0.02);
}

.section-row,
.footer-shell {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.section-link {
  font-weight: 700;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.project-card {
  position: relative;
  padding: 0.35rem;
  border-radius: calc(var(--radius-xl) + 0.35rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
}

.project-type {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.project-image {
  margin-bottom: 1.25rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.project-image img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
  object-position: top center;
  transition: transform 320ms ease;
}

.project-card p {
  margin: 0.5rem 0 1rem;
}

.project-card:hover .project-image img {
  transform: scale(1.03);
}

.project-open {
  min-height: 2.9rem;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.project-open:hover {
  transform: translateX(4px);
  background: rgba(242, 125, 38, 0.12);
  border-color: rgba(242, 125, 38, 0.22);
}

.project-dialog {
  width: min(92vw, 72rem);
  max-height: 88vh;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  background: #07101d;
  color: var(--text);
}

.project-dialog::backdrop {
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(10px);
}

.dialog-shell {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem;
}

.dialog-header span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.dialog-header h3 {
  margin-top: 0.3rem;
  font-size: 1.5rem;
}

.dialog-close {
  min-height: 2.8rem;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
}

.dialog-gallery {
  overflow: auto;
  max-height: calc(88vh - 6rem);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.dialog-gallery img {
  width: 100%;
  height: auto;
}

.dialog-gallery.multi {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.dialog-gallery.multi img {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card p {
  margin-top: 0;
  font-size: 1rem;
}

.testimonial-card strong {
  display: block;
  margin-top: 1rem;
  color: var(--white);
}

.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  color: rgba(242, 125, 38, 0.14);
  font-family: "Space Grotesk", sans-serif;
  font-size: 4rem;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px) rotate(-0.4deg);
  border-color: rgba(242, 125, 38, 0.16);
}

.contact-item {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 0.85rem;
  border-radius: 1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--orange);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  margin-bottom: 0.3rem;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(4px);
}

.contact-item:hover .contact-icon {
  background: rgba(242, 125, 38, 0.12);
}

.contact-form {
  padding: 2rem;
}

.contact-form form,
.contact-form label {
  display: grid;
  gap: 0.55rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form span {
  color: #738197;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(242, 125, 38, 0.65);
  background: rgba(255, 255, 255, 0.06);
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-shell {
  align-items: center;
}

.footer-logo {
  width: 9.5rem;
  height: auto;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.9rem;
  height: 3.9rem;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(37, 211, 102, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float svg {
  width: 1.8rem;
  height: 1.8rem;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 24px 60px rgba(37, 211, 102, 0.34);
}

@media (max-width: 1080px) {
  .proof-grid,
  .process-grid,
  .testimonial-grid,
  .client-logos,
  .services-grid,
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .standards-grid {
    gap: 2.5rem;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: relative;
    padding: 1rem 0 1.25rem;
  }

  .nav-shell,
  .section-row,
  .footer-shell,
  .hero-grid,
  .about-grid,
  .contact-grid,
  .field-row {
    grid-template-columns: 1fr;
    display: grid;
    align-items: start;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
    justify-content: center;
    padding: 0.25rem 0 0.5rem;
  }

  .nav-button {
    width: auto;
    min-height: 2.85rem;
    padding-inline: 1.1rem;
    justify-self: center;
  }

  .hero {
    min-height: auto;
    padding: 2.5rem 0 3rem;
  }

  .hero-atoms {
    opacity: 0.42;
  }

  .proof-grid,
  .why-grid,
  .process-grid,
  .services-grid,
  .client-logos,
  .testimonial-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .standards-grid {
    grid-template-columns: 1fr;
  }

  .project-image img,
  .hero-card img {
    min-height: 20rem;
    height: 20rem;
  }

  .hero-copy {
    text-align: center;
  }

  .badge {
    margin-inline: auto;
  }

  .hero-text {
    max-width: 34rem;
    margin-inline: auto;
  }

  .hero-actions,
  .hero-stack ul {
    justify-content: center;
  }

  .project-chip {
    position: static;
    margin-top: 1rem;
  }

  .client-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-tile {
    min-height: 5.5rem;
  }

  .proof-card,
  .why-card,
  .process-card,
  .testimonial-card,
  .standards-panel,
  .info-card {
    padding: 1.25rem;
  }

  .dialog-header {
    align-items: start;
    flex-direction: column;
  }

  .project-dialog {
    width: min(96vw, 42rem);
    max-height: 92vh;
    border-radius: 1.25rem;
  }

  .dialog-shell {
    padding: 0.75rem;
  }

  .dialog-gallery {
    max-height: calc(92vh - 6.5rem);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .brand {
    max-width: 9.75rem;
  }

  .site-nav {
    justify-content: center;
    gap: 0.75rem 1rem;
    font-size: 0.88rem;
  }

  .whatsapp-float {
    right: 0.75rem;
    bottom: 0.75rem;
    width: 3.35rem;
    height: 3.35rem;
  }

  .button,
  .button-full {
    width: 100%;
  }

  .nav-button {
    width: auto;
    min-width: 0;
    padding-inline: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 3.6rem);
  }

  .hero-text {
    display: none;
  }

  .hero-text-mobile {
    display: block;
    max-width: 22rem;
    margin: 1rem auto 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.96rem;
  }

  .hero-stack {
    margin-top: 2rem;
  }

  .hero-stack ul {
    gap: 0.55rem;
    justify-content: center;
  }

  .hero-stack li {
    padding: 0.4rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
  }

  .hero-atoms,
  .ring {
    opacity: 0.2;
  }

  .section {
    padding: 4.25rem 0;
  }

  .section-head.center {
    margin-bottom: 2rem;
  }

  .client-logos {
    padding: 0.75rem;
    gap: 0.75rem;
  }

  .logo-tile {
    min-height: 4.75rem;
    padding: 0.75rem;
  }

  .logo-tile img {
    max-height: 2.15rem;
  }

  .proof-grid,
  .why-grid,
  .process-grid,
  .services-grid,
  .testimonial-grid,
  .project-grid {
    gap: 0.85rem;
  }

  .mobile-hide,
  .testimonial-card,
  .proof-card span,
  .section-link,
  .hero-stack {
    display: none;
  }

  .proof-card strong {
    margin-bottom: 0;
  }

  .process-card {
    min-height: auto;
  }

  .process-card p:last-child,
  .why-card p,
  .section-head p:last-child {
    display: none;
  }

  .project-card p + p.mobile-hide {
    display: none;
  }

  .project-image img,
  .hero-card img {
    min-height: 16.5rem;
    height: 16.5rem;
  }

  .project-chip {
    left: auto;
    right: auto;
    bottom: auto;
    padding: 0.9rem 1rem;
  }

  .project-chip strong {
    font-size: 0.92rem;
  }

  .about-line {
    left: 1.5rem;
  }

  .about-content {
    padding: 1.5rem 1.5rem 1.5rem 3rem;
  }

  .info-card,
  .contact-form {
    padding: 1.3rem;
  }

  .contact-item {
    gap: 0.85rem;
    padding: 0.75rem;
  }

  .contact-icon {
    width: 2.65rem;
    height: 2.65rem;
  }

  .project-dialog {
    width: 100vw;
    max-width: 100vw;
    max-height: 100dvh;
    border-radius: 0;
  }

  .dialog-shell {
    gap: 0.75rem;
    padding: 0.5rem;
  }

  .dialog-header {
    padding: 0.5rem 0.25rem 0;
  }

  .dialog-close {
    width: 100%;
  }

  .dialog-gallery,
  .dialog-gallery.multi {
    border-radius: 0.85rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
